From 83ba34f631fc66d63966c99d2069a57e6869ce68 Mon Sep 17 00:00:00 2001 From: Jonas Dittrich <58814480+Kakadus@users.noreply.github.com> Date: Mon, 23 Sep 2024 21:42:14 +0200 Subject: [PATCH 1/8] duplicate most of AbstractBaseUser without natural_key --- evap/evaluation/models.py | 70 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 67 insertions(+), 3 deletions(-) diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py index a9789c9e5..acfa4fedd 100644 --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -9,7 +9,8 @@ from django.conf import settings from django.contrib import messages -from django.contrib.auth.models import AbstractBaseUser, BaseUserManager, Group, PermissionsMixin +from django.contrib.auth.hashers import check_password, is_password_usable, make_password +from django.contrib.auth.models import BaseUserManager, Group, PermissionsMixin from django.contrib.auth.password_validation import validate_password from django.contrib.postgres.fields import ArrayField from django.core.cache import caches @@ -1645,7 +1646,70 @@ def create_superuser(self, *, email, password=None, first_name=None, last_name=N return user -class UserProfile(AbstractBaseUser, PermissionsMixin): +class EvapBaseUser(models.Model): + """This is strongly related to the django.contrib.auth.base_user.AbstractBaseUser model, but does not define natural_key.""" + + password = models.CharField(_("password"), max_length=128) + last_login = models.DateTimeField(_("last login"), blank=True, null=True) + + # Stores the raw password if set_password() is called so that it can + # be passed to password_changed() after the model is saved. + _password = None + + class Meta: + abstract = True + + def get_username(self): + """Return the username for this User.""" + return getattr(self, self.USERNAME_FIELD) + + @property + def is_anonymous(self): + """ + Always return False. This is a way of comparing User objects to + anonymous users. + """ + return False + + @property + def is_authenticated(self): + """ + Always return True. This is a way to tell if the user has been + authenticated in templates. + """ + return True + + def set_password(self, raw_password): + self.password = make_password(raw_password) + self._password = raw_password + + def check_password(self, raw_password): + """ + Return a boolean of whether the raw_password was correct. Handles + hashing formats behind the scenes. + """ + + def setter(raw_password): + self.set_password(raw_password) + # Password hash upgrades shouldn't be considered password changes. + self._password = None + self.save(update_fields=["password"]) + + return check_password(raw_password, self.password, setter) + + def set_unusable_password(self): + # Set a value that will never be a valid hash + self.password = make_password(None) + + def has_usable_password(self): + """ + Return False if set_unusable_password() has been called for this user. + """ + return is_password_usable(self.password) + + +class UserProfile(EvapBaseUser, PermissionsMixin): + # null=True because certain external users don't have an address email = models.EmailField(max_length=255, unique=True, blank=True, null=True, verbose_name=_("email address")) @@ -1710,7 +1774,7 @@ class Meta: verbose_name_plural = _("users") USERNAME_FIELD = "email" - REQUIRED_FIELDS = [] + REQUIRED_FIELDS: list[str] = [] objects = UserProfileManager() From 06c704794008cef6d5b0292be3acdb1350b833c0 Mon Sep 17 00:00:00 2001 From: Jonas Dittrich <58814480+Kakadus@users.noreply.github.com> Date: Mon, 23 Sep 2024 21:41:54 +0200 Subject: [PATCH 2/8] ruff is happy --- evap/evaluation/models.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py index acfa4fedd..e210e87d1 100644 --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -1762,6 +1762,8 @@ class StartPage(models.TextChoices): default=StartPage.DEFAULT, ) + objects = UserProfileManager() + class Meta: # keep in sync with ordering_key ordering = [ @@ -1776,7 +1778,8 @@ class Meta: USERNAME_FIELD = "email" REQUIRED_FIELDS: list[str] = [] - objects = UserProfileManager() + def __str__(self): + return self.full_name def save(self, *args, **kwargs): # This is not guaranteed to be called on every insert. For example, the importers use bulk insertion. @@ -1824,9 +1827,6 @@ def full_name_with_additional_info(self): return name + " [ext.]" return f"{name} ({self.email})" - def __str__(self): - return self.full_name - @cached_property def is_staff(self): return self.is_manager or self.is_reviewer From 2ddc2b52af9a284c382fed1df45ec92364f9d9f0 Mon Sep 17 00:00:00 2001 From: Jonas Dittrich <58814480+Kakadus@users.noreply.github.com> Date: Mon, 23 Sep 2024 20:43:49 +0200 Subject: [PATCH 3/8] dump updated data --- evap/development/fixtures/test_data.json | 182331 +++++++++----------- 1 file changed, 86269 insertions(+), 96062 deletions(-) diff --git a/evap/development/fixtures/test_data.json b/evap/development/fixtures/test_data.json index 007f71177..97d3e6cd1 100644 --- a/evap/development/fixtures/test_data.json +++ b/evap/development/fixtures/test_data.json @@ -737,22538 +737,33405 @@ } }, { - "model": "evaluation.question", + "model": "evaluation.course", "pk": 1, "fields": { - "order": 1, - "questionnaire": 1, - "text_de": "Einzelergebnis", - "text_en": "Single result", - "allows_additional_textanswers": true, - "type": 2 + "semester": 21, + "name_de": "3D-Computergrafik I", + "name_en": "3D-Computer Graphic I", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 255, + "model": "evaluation.course", + "pk": 2, "fields": { - "order": 255, - "questionnaire": 48, - "text_de": "Aus der Vorlesung habe ich etwas mitnehmen können.", - "text_en": "I learned something in the lecture.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Advanced Data Profiling", + "name_en": "Advanced Data Profiling", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 124 + ] } }, { - "model": "evaluation.question", - "pk": 257, + "model": "evaluation.course", + "pk": 3, "fields": { - "order": 257, - "questionnaire": 48, - "text_de": "Die in der Vorlesung vermittelten Techniken schienen aktuell.", - "text_en": "The techniques taught in the lecture seemed to be up to date.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Algorithmen und Techniken der Geovisualisierung", + "name_en": "Algorithms and Techniques for Geovisualization", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 296 + ] } }, { - "model": "evaluation.question", - "pk": 258, + "model": "evaluation.course", + "pk": 4, "fields": { - "order": 258, - "questionnaire": 48, - "text_de": "Die Inhalte der Vorlesung bauten sinnvoll aufeinander auf.", - "text_en": "The content of the lecture was well structured.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Analyse & Visualisierung von 3D-Punktwolken", + "name_en": "Analysis and Visualization of 3D Point Clouds", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 89 + ] } }, { - "model": "evaluation.question", - "pk": 259, + "model": "evaluation.course", + "pk": 5, "fields": { - "order": 259, - "questionnaire": 50, - "text_de": "Die Übung trug zu meinem Verständnis bei.", - "text_en": "The exercise contributed to my comprehension of the lecture.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Automated Analysis of Formal Models", + "name_en": "Automated Analysis of Formal Models", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 938 + ] } }, { - "model": "evaluation.question", - "pk": 260, + "model": "evaluation.course", + "pk": 7, "fields": { - "order": 260, - "questionnaire": 50, - "text_de": "Vorlesung und Übung waren gut aufeinander abgestimmt", - "text_en": "Lecture and exercise were well synchronized.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "BPMN Models to SQL Queries", + "name_en": "BPMN Models to SQL Queries", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 118 + ] } }, { - "model": "evaluation.question", - "pk": 262, + "model": "evaluation.course", + "pk": 8, "fields": { - "order": 262, - "questionnaire": 50, - "text_de": "Das fachliche Niveau der Übung war angemessen.", - "text_en": "The technical level of the exercise was appropriate.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "Beautiful Data", + "name_en": "Beautiful Data", + "type": 4, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 313, + "model": "evaluation.course", + "pk": 9, "fields": { - "order": 313, - "questionnaire": 48, - "text_de": "Diese Themenblöcke fand ich besonders interessant:", - "text_en": "These topics were most interesting for me:", - "allows_additional_textanswers": false, - "type": 0 + "semester": 21, + "name_de": "Betriebssysteme I", + "name_en": "Operating Systems I", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 314, + "model": "evaluation.course", + "pk": 10, "fields": { - "order": 314, - "questionnaire": 48, - "text_de": "Diese Themenblöcke fand ich weniger interessant:", - "text_en": "These topics were less interesting for me:", - "allows_additional_textanswers": false, - "type": 0 + "semester": 19, + "name_de": "Bring your own project: IT-Projekte erfolgreich planen und managen", + "name_en": "Bring Your Own Project: How to plan and manage IT-projects successfully", + "type": 2, + "is_private": true, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 934 + ] } }, { - "model": "evaluation.question", - "pk": 315, + "model": "evaluation.course", + "pk": 11, "fields": { - "order": 315, - "questionnaire": 81, - "text_de": "Es gab ausreichend Lehrmittel (Skripte, Folien, Videos, Bücher...)", - "text_en": "The amount of provided learning material was sufficient.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Business Etikette - HPI Charm School", + "name_en": "Business Etiquette - HPI Charm School", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 210 + ] } }, { - "model": "evaluation.question", - "pk": 316, + "model": "evaluation.course", + "pk": 12, "fields": { - "order": 316, - "questionnaire": 81, - "text_de": "Die bereitgestellten Lehrmittel waren hilfreich.", - "text_en": "The provided learning material was useful.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Business Etikette - HPI Charm School", + "name_en": "Business Etiquette - HPI Charm School", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 55 + ] } }, { - "model": "evaluation.question", - "pk": 317, + "model": "evaluation.course", + "pk": 14, "fields": { - "order": 317, - "questionnaire": 81, - "text_de": "Die Lehrmittel standen rechtzeitig zur Verfügung.", - "text_en": "The learning material was provided in time.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Cloud Computing Technologien", + "name_en": "Cloud Computing Technologies", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 124 + ] } }, { - "model": "evaluation.question", - "pk": 318, + "model": "evaluation.course", + "pk": 15, "fields": { - "order": 318, - "questionnaire": 81, - "text_de": "Was waren die Stärken und die Schwächen der Lehrmittel?", - "text_en": "Which were the strengths and weaknesses of the learning material?", - "allows_additional_textanswers": false, - "type": 0 + "semester": 18, + "name_de": "Cloud und Virtualisierung", + "name_en": "Cloud and Virtualization", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 938 + ] } }, { - "model": "evaluation.question", - "pk": 319, + "model": "evaluation.course", + "pk": 16, "fields": { - "order": 319, - "questionnaire": 82, - "text_de": "Die Vorlesung hat mir Spaß/ Freude bereitet.", - "text_en": "I enjoyed the lecture.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Computergrafik II", + "name_en": "Computer Graphics II", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 320, + "model": "evaluation.course", + "pk": 17, "fields": { - "order": 320, - "questionnaire": 82, - "text_de": "Ich bin zufrieden mit dem Lernerfolg.", - "text_en": "I am satisfied with my learning success.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Computergrafik II", + "name_en": "Computer Graphics II", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 933 + ] } }, { - "model": "evaluation.question", - "pk": 321, + "model": "evaluation.course", + "pk": 18, "fields": { - "order": 321, - "questionnaire": 82, - "text_de": "Die Vorlesung hat mich in die Lage versetzt, das Thema selbständig zu vertiefen.", - "text_en": "The lecture provided all information and skills that I need to deepen my knowledge in this topic.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Creating Interactive Web-based Apps in the Context of eLearning", + "name_en": "Creating Interactive Web-based Apps in the Context of eLearning", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 113 + ] } }, { - "model": "evaluation.question", - "pk": 322, + "model": "evaluation.course", + "pk": 19, "fields": { - "order": 322, - "questionnaire": 82, - "text_de": "Die Vorlesung ist für mein Studium wichtig.", - "text_en": "The lecture is important for my studies.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Cybersecurity for the Masses", + "name_en": "Cybersecurity for the Masses", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 70 + ] } }, { - "model": "evaluation.question", - "pk": 323, + "model": "evaluation.course", + "pk": 21, "fields": { - "order": 323, - "questionnaire": 82, - "text_de": "Ich empfand den Zeitaufwand für die Veranstaltung insgesamt als angemessen.", - "text_en": "I think the expenditure of time for the course was appropriate.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Data Mining and Probabilistic Reasoning", + "name_en": "Data Mining and Probabilistic Reasoning", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 118 + ] } }, { - "model": "evaluation.question", - "pk": 324, + "model": "evaluation.course", + "pk": 22, "fields": { - "order": 324, - "questionnaire": 83, - "text_de": "Sonstige Kommentare", - "text_en": "General remarks", - "allows_additional_textanswers": false, - "type": 0 + "semester": 18, + "name_de": "Data Profiling and Data Cleansing", + "name_en": "Data Profiling and Data Cleansing", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 325, + "model": "evaluation.course", + "pk": 23, "fields": { - "order": 325, - "questionnaire": 84, - "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", - "text_en": "... showed respect for the students.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "Datenbanksysteme I", + "name_en": "Database Systems I", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 118 + ] } }, { - "model": "evaluation.question", - "pk": 326, + "model": "evaluation.course", + "pk": 24, "fields": { - "order": 326, - "questionnaire": 84, - "text_de": "... konnte mir Wissen vermitteln.", - "text_en": "... imparted knowledge.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Design Thinking Advanced Track", + "name_en": "Design Thinking Advanced Track", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 96 + ] } }, { - "model": "evaluation.question", - "pk": 327, + "model": "evaluation.course", + "pk": 25, "fields": { - "order": 327, - "questionnaire": 84, - "text_de": "... ging auf Fragen und Anregungen ein.", - "text_en": "... adressed questions and proposals.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Design Thinking Advanced Track", + "name_en": "Design Thinking Advanced Track", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 749 + ] } }, { - "model": "evaluation.question", - "pk": 328, + "model": "evaluation.course", + "pk": 26, "fields": { - "order": 328, - "questionnaire": 84, - "text_de": "... gestaltete die Veranstaltung interessant.", - "text_en": "... gave the course in an interesting way.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Design Thinking Basic Track", + "name_en": "Design Thinking Basic Track", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 118 + ] } }, { - "model": "evaluation.question", - "pk": 329, + "model": "evaluation.course", + "pk": 27, "fields": { - "order": 329, - "questionnaire": 84, - "text_de": "... wirkte gut vorbereitet.", - "text_en": "... seemed to be well prepared.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Design Thinking Basic Track", + "name_en": "Design Thinking Basic Track", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 620 + ] } }, { - "model": "evaluation.question", - "pk": 330, + "model": "evaluation.course", + "pk": 28, "fields": { - "order": 330, - "questionnaire": 50, - "text_de": "Wie bewertest du die Übung im Hinblick auf Umfang und Nutzen?", - "text_en": "How do you evaluate the exercise concerning amount and usefulness?", - "allows_additional_textanswers": false, - "type": 0 + "semester": 19, + "name_de": "Designing Interactive Systems", + "name_en": "Designing Interactive Systems", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 331, + "model": "evaluation.course", + "pk": 29, "fields": { - "order": 331, - "questionnaire": 50, - "text_de": "Wie bewertest du die Schwierigkeit der Übung?", - "text_en": "How do you evaluate the difficulty of the exercises?", - "allows_additional_textanswers": true, - "type": 6 + "semester": 17, + "name_de": "Designing Interactive Systems", + "name_en": "Designing Interactive Systems", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 749 + ] } }, { - "model": "evaluation.question", - "pk": 332, + "model": "evaluation.course", + "pk": 30, "fields": { - "order": 332, - "questionnaire": 85, - "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", - "text_en": "... showed respect for the students.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Drug Response Analysis on In-Memory Technology", + "name_en": "Drug Response Analysis on In-Memory Technology", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 938 + ] } }, { - "model": "evaluation.question", - "pk": 333, + "model": "evaluation.course", + "pk": 31, "fields": { - "order": 333, - "questionnaire": 85, - "text_de": "... konnte mir Wissen vermitteln.", - "text_en": "... imparted knowledge.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "Effizienz und Langeweile", + "name_en": "Efficiency and Boredom", + "type": 5, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 3 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 335, + "model": "evaluation.course", + "pk": 32, "fields": { - "order": 335, - "questionnaire": 85, - "text_de": "... stand auch außerhalb der regulären Übungstermine zur Verfügung.", - "text_en": "... was available even outside the regular exercise meetings.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Einführung in das Design Thinking", + "name_en": "Introduction Design Thinking", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 118 + ] } }, { - "model": "evaluation.question", - "pk": 336, + "model": "evaluation.course", + "pk": 33, "fields": { - "order": 336, - "questionnaire": 86, - "text_de": "Das Seminar hat mir Spaß/Freude bereitet.", - "text_en": "I enjoyed the seminar.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Einführung in das Design Thinking (BA)", + "name_en": "Introduction of Design Thinking (BA)", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 210 + ] } }, { - "model": "evaluation.question", - "pk": 337, + "model": "evaluation.course", + "pk": 34, "fields": { - "order": 337, - "questionnaire": 86, - "text_de": "Die Seminarthemen fand ich gut ausgewählt.", - "text_en": "The seminar's topics were chosen very well.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "Einführung in das Design Thinking (MA)", + "name_en": "Introduction Design Thinking (MA)", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 611 + ] } }, { - "model": "evaluation.question", - "pk": 338, + "model": "evaluation.course", + "pk": 35, "fields": { - "order": 338, - "questionnaire": 86, - "text_de": "Die bereitgestellten Materialien waren gute Einstiegspunkte für eigene Recherche.", - "text_en": "The provided learning material was a good start for own research.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Eingebettete Betriebssysteme", + "name_en": "Embedded Operating Systems", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 139 + ] } }, { - "model": "evaluation.question", - "pk": 339, + "model": "evaluation.course", + "pk": 36, "fields": { - "order": 339, - "questionnaire": 86, - "text_de": "Wie bewertest du den Aufwand des Seminars?", - "text_en": "How do you evaluate the expenditure of time for the course?", - "allows_additional_textanswers": true, - "type": 8 + "semester": 18, + "name_de": "Entwurf und Implementierung digitaler Schaltungen mit VHDL", + "name_en": "Digital Circuit Design using VHDL", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 932 + ] } }, { - "model": "evaluation.question", - "pk": 340, + "model": "evaluation.course", + "pk": 37, "fields": { - "order": 340, - "questionnaire": 86, - "text_de": "Aus dem Seminar habe ich etwas mitnehmen können.", - "text_en": "I learned something from the seminar.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Evolving Applications: Object -migration with Ruby and GemStone", + "name_en": "Evolving Applications: Object -migration with Ruby and GemStone", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 341, + "model": "evaluation.course", + "pk": 38, "fields": { - "order": 341, - "questionnaire": 86, - "text_de": "Ich kann nachvollziehen, wie und nach welchen Kriterien die Bewertung erfolgt.", - "text_en": "I can understand how the grading is influenced by specific criteria.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Explorative Erstellung von Visualisierungen in einem Interaktiven Programmiersystem", + "name_en": "Exploratory Authoring of Interative Content in a Live Environment", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 1 + ] } }, { - "model": "evaluation.question", - "pk": 342, + "model": "evaluation.course", + "pk": 39, "fields": { - "order": 343, - "questionnaire": 86, - "text_de": "Was hat das Seminar besonders ausgezeichnet?", - "text_en": "What were the strengths of the seminar?", - "allows_additional_textanswers": false, - "type": 0 + "semester": 19, + "name_de": "Fachspezifisches Englisch (Level 1)", + "name_en": "Subject-specific English (Level 1)", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 291 + ] } }, { - "model": "evaluation.question", - "pk": 343, + "model": "evaluation.course", + "pk": 40, "fields": { - "order": 343, - "questionnaire": 87, - "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", - "text_en": "... showed respect for the students.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "Fachspezifisches Englisch (Level 2)", + "name_en": "Subject-specific English (Level 2)", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 89 + ] } }, { - "model": "evaluation.question", - "pk": 344, + "model": "evaluation.course", + "pk": 41, "fields": { - "order": 344, - "questionnaire": 87, - "text_de": "... konnte mir Wissen vermitteln.", - "text_en": "... imparted knowledge.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Fachspezifisches Englisch (Level 2)", + "name_en": "Subject-specific English (Level 2)", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 345, + "model": "evaluation.course", + "pk": 42, "fields": { - "order": 345, - "questionnaire": 87, - "text_de": "... ging auf Fragen und Anregungen ein.", - "text_en": "... addressed questions and proposals.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Fachspezifisches Englisch (Level 3)", + "name_en": "Subject-Specific English (Level 3)", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 123 + ] } }, { - "model": "evaluation.question", - "pk": 346, + "model": "evaluation.course", + "pk": 43, "fields": { - "order": 346, - "questionnaire": 87, - "text_de": "... gestaltete das Seminar interessant.", - "text_en": "... conducted the seminar in an interesting way.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "From Creative Ideas to Well-Founded Engineering", + "name_en": "From Creative Ideas to Well-Founded Engineering", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 123 + ] } }, { - "model": "evaluation.question", - "pk": 347, + "model": "evaluation.course", + "pk": 44, "fields": { - "order": 347, - "questionnaire": 87, - "text_de": "... wirkte gut vorbereitet.", - "text_en": "... seemed to be well prepared.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Führungskompetenz", + "name_en": "Leadership Competence", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 55 + ] } }, { - "model": "evaluation.question", - "pk": 348, + "model": "evaluation.course", + "pk": 45, "fields": { - "order": 348, - "questionnaire": 87, - "text_de": "... stand auch außerhalb des Seminars zur Verfügung.", - "text_en": "... was available even outside the seminar.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "Game Programming", + "name_en": "Game Programming", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 264 + ] } }, { - "model": "evaluation.question", - "pk": 349, + "model": "evaluation.course", + "pk": 46, "fields": { - "order": 349, - "questionnaire": 87, - "text_de": "... hat mich/mein Team aktiv betreut.", - "text_en": "... made a good job in actively supporting me/my team.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Game Programming", + "name_en": "Game Programming", + "type": 5, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 350, + "model": "evaluation.course", + "pk": 47, "fields": { - "order": 350, - "questionnaire": 88, - "text_de": "Das Projekt hat mir Spaß/Freude bereitet.", - "text_en": "I enjoyed the project.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "Gamification für openHPI", + "name_en": "Gamification für openHPI", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 292 + ] } }, { - "model": "evaluation.question", - "pk": 351, + "model": "evaluation.course", + "pk": 48, "fields": { - "order": 351, - "questionnaire": 88, - "text_de": "Ich empfand den Zeitaufwand für das Projekt als angemessen.", - "text_en": "I think the expenditure of time for the project was appropriate.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Geovisualisierung", + "name_en": "Geo-Visualization", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 70 + ] } }, { - "model": "evaluation.question", - "pk": 352, + "model": "evaluation.course", + "pk": 49, "fields": { - "order": 352, - "questionnaire": 88, - "text_de": "Aus dem Projekt habe ich etwas mitnehmen können.", - "text_en": "I learned something from the project.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Geovisualisierung", + "name_en": "Geo-Visualization", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 118 + ] } }, { - "model": "evaluation.question", - "pk": 353, + "model": "evaluation.course", + "pk": 50, "fields": { - "order": 353, - "questionnaire": 89, - "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", - "text_en": "... showed respect for the students.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Global Team-Based Product Innovation & Engineering I, ME 310", + "name_en": "Global Team-Based Product Innovation & Engineering I, ME 310", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 96 + ] } }, { - "model": "evaluation.question", - "pk": 354, + "model": "evaluation.course", + "pk": 51, "fields": { - "order": 354, - "questionnaire": 89, - "text_de": "... konnte mir Wissen vermitteln.", - "text_en": "... imparted knowledge.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Global Team-Based Product Innovation & Engineering I, ME 310", + "name_en": "Global Team-Based Product Innovation & Engineering I, ME 310", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 66 + ] } }, { - "model": "evaluation.question", - "pk": 355, + "model": "evaluation.course", + "pk": 52, "fields": { - "order": 355, - "questionnaire": 89, - "text_de": "... ging auf Fragen und Anregungen ein.", - "text_en": "... addressed questions and proposals.", - "allows_additional_textanswers": true, - "type": 1 - } -}, -{ - "model": "evaluation.question", - "pk": 356, - "fields": { - "order": 356, - "questionnaire": 89, - "text_de": "... hat mich/mein Team aktiv betreut.", - "text_en": "... made a good job in actively supervising me/my team.", - "allows_additional_textanswers": true, - "type": 1 - } -}, -{ - "model": "evaluation.question", - "pk": 357, - "fields": { - "order": 357, - "questionnaire": 89, - "text_de": "... wirkte gut vorbereitet.", - "text_en": "... seemed to be well prepared.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Global Team-Based Product Innovation & Engineering II, ME 310", + "name_en": "Global Team-Based Product Innovation & Engineering II, ME 310", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 358, + "model": "evaluation.course", + "pk": 53, "fields": { - "order": 358, - "questionnaire": 90, - "text_de": "Hier kannst du Lob und Kritik an den Verantwortlichen der Lehrveranstaltung loswerden. Bitte sei höflich und konstruktiv!", - "text_en": "Please give your feedback to the responsible person here. Be polite and constructive!", - "allows_additional_textanswers": false, - "type": 0 + "semester": 18, + "name_de": "Grafikprogrammierung mit OpenGL und C++", + "name_en": "Graphics Programming with OpenGL and C++", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 359, + "model": "evaluation.course", + "pk": 54, "fields": { - "order": 359, - "questionnaire": 91, - "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", - "text_en": "... showed respect for the students.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Grundlagen digitaler Systeme", + "name_en": "Foundations of Digital Systems", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 139 + ] } }, { - "model": "evaluation.question", - "pk": 360, + "model": "evaluation.course", + "pk": 55, "fields": { - "order": 360, - "questionnaire": 91, - "text_de": "... konnte mir Wissen vermitteln.", - "text_en": "... could equip me with knowledge.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "HCI Project Seminar on Interactive Fabrication and Muscle Interfaces", + "name_en": "HCI Project Seminar on Interactive Fabrication and Muscle Interfaces", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 158 + ] } }, { - "model": "evaluation.question", - "pk": 361, + "model": "evaluation.course", + "pk": 56, "fields": { - "order": 361, - "questionnaire": 91, - "text_de": "... ging auf Fragen und Anregungen ein.", - "text_en": "... addressed questions and proposals.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "HCI Project Seminar on Kinect, Multitouch and Arduino", + "name_en": "HCI Project Seminar on Kinect, Multitouch and Arduino", + "type": 4, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 929 + ] } }, { - "model": "evaluation.question", - "pk": 362, + "model": "evaluation.course", + "pk": 57, "fields": { - "order": 362, - "questionnaire": 91, - "text_de": "... gestaltete die Übung interessant.", - "text_en": "... conducted the excercise in an interesting way.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "HCI Project Seminar on Motion Capture, On-Body Interaction & Fabrication", + "name_en": "HCI Project Seminar on Motion Capture, On-Body Interaction & Fabrication", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 89 + ] } }, { - "model": "evaluation.question", - "pk": 363, + "model": "evaluation.course", + "pk": 58, "fields": { - "order": 363, - "questionnaire": 91, - "text_de": "... wirkte gut vorbereitet.", - "text_en": "... seemed to be well-prepared.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "HCI Project: Underwater Interaction", + "name_en": "HCI Project: Underwater Interaction", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 364, + "model": "evaluation.course", + "pk": 59, "fields": { - "order": 364, - "questionnaire": 92, - "text_de": "Hier kannst du Lob und Kritik zur Person loswerden. Bitte sei höflich und konstruktiv!", - "text_en": "Please give your feedback to the person here. Be polite and constructive!", - "allows_additional_textanswers": false, - "type": 0 + "semester": 17, + "name_de": "HCI Project: Underwater Motion Capture using Depth Cameras", + "name_en": "HCI Project: Underwater Motion Capture using Depth Cameras", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 365, + "model": "evaluation.course", + "pk": 60, "fields": { - "order": 365, - "questionnaire": 93, - "text_de": "Hier kannst du Lob und Kritik zu weiteren Mitwirkenden loswerden. Bitte sei höflich und konstruktiv!", - "text_en": "Please give your feedback to additional contributors here. Be polite and constructive!", - "allows_additional_textanswers": false, - "type": 0 + "semester": 19, + "name_de": "IT-Entrepreneurship", + "name_en": "IT-Entrepreneurship", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 599 + ] } }, { - "model": "evaluation.question", - "pk": 366, + "model": "evaluation.course", + "pk": 61, "fields": { - "order": 366, - "questionnaire": 85, - "text_de": "... ging auf Fragen und Anregungen ein.", - "text_en": "... addressed questions and proposals.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "IT-Entrepreneurship I", + "name_en": "IT-Entrepreneurship I", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 568 + ] } }, { - "model": "evaluation.question", - "pk": 367, + "model": "evaluation.course", + "pk": 63, "fields": { - "order": 367, - "questionnaire": 82, - "text_de": "Ich kann nachvollziehen, wie und nach welchen Kriterien die Bewertung erfolgt.", - "text_en": "I can understand how the grading is influenced by specific criteria.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "IT-Recht", + "name_en": "Legal Aspects of Information Technology", + "type": 5, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 368, + "model": "evaluation.course", + "pk": 64, "fields": { - "order": 368, - "questionnaire": 84, - "text_de": "... stand auch außerhalb der Veranstaltung zur Verfügung.", - "text_en": "... was available even outside the course.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Implementierung einer Mehrschichtenarchitektur für das Tumor-Dokumentationssystem GTDS", + "name_en": "An implementation of a multi tier architecture for cancer documentation system GTDS", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 124 + ] } }, { - "model": "evaluation.question", - "pk": 369, + "model": "evaluation.course", + "pk": 65, "fields": { - "order": 369, - "questionnaire": 91, - "text_de": "... stand auch außerhalb der regulären Termine zur Verfügung.", - "text_en": "... was avalable even outside the regular meetings.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "In-Memory Data Management for Enhanced ERP", + "name_en": "In-Memory Data Management for Enhanced ERP", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 292 + ] } }, { - "model": "evaluation.question", - "pk": 370, + "model": "evaluation.course", + "pk": 66, "fields": { - "order": 370, - "questionnaire": 89, - "text_de": "... stand nur selten zur Verfügung.", - "text_en": "... was rarely available.", - "allows_additional_textanswers": true, - "type": 12 + "semester": 17, + "name_de": "Indoor Visualization & Software Visualization", + "name_en": "Indoor Visualization & Software Visualization", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 929 + ] } }, { - "model": "evaluation.question", - "pk": 371, + "model": "evaluation.course", + "pk": 67, "fields": { - "order": 371, - "questionnaire": 85, - "text_de": "... wirkte gut vorbereitet.", - "text_en": "... seemed to be well prepared.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "Information Retrieval", + "name_en": "Information Retrieval", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 817 + ] } }, { - "model": "evaluation.question", - "pk": 372, + "model": "evaluation.course", + "pk": 68, "fields": { - "order": 372, - "questionnaire": 88, - "text_de": "Ich kann nachvollziehen, wie und nach welchen Kriterien die Bewertung erfolgt.", - "text_en": "I can understand how the grading is influenced by specific criteria.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Informationssicherheit", + "name_en": "Information Security", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 568 + ] } }, { - "model": "evaluation.question", - "pk": 373, + "model": "evaluation.course", + "pk": 69, "fields": { - "order": 373, - "questionnaire": 86, - "text_de": "Durch welche Änderungen könnte man das Seminar noch verbessern?", - "text_en": "How could the seminar be further improved?", - "allows_additional_textanswers": false, - "type": 0 + "semester": 18, + "name_de": "Interactive Representations of Data Structures and Algorithms", + "name_en": "Interactive Representations of Data Structures and Algorithms", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 749 + ] } }, { - "model": "evaluation.question", - "pk": 374, + "model": "evaluation.course", + "pk": 70, "fields": { - "order": 374, - "questionnaire": 94, - "text_de": "Das Projekt hat mir Spaß/Freude bereitet.", - "text_en": "I enjoyed the project.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Interaktionen auf 10.000 m²-Fußböden", + "name_en": "Interaction on 10.000m² interactive floors", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 70 + ] } }, { - "model": "evaluation.question", - "pk": 375, + "model": "evaluation.course", + "pk": 71, "fields": { - "order": 375, - "questionnaire": 94, - "text_de": "Das Projekt passt inhaltlich in das bisherige Studium.", - "text_en": "The project's topic fits into my studies.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Interaktive 3D-Modelle auf mobilen Geräten", + "name_en": "Interactive 3D Models on mobile Devices", + "type": 4, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 376, + "model": "evaluation.course", + "pk": 72, "fields": { - "order": 376, - "questionnaire": 94, - "text_de": "Das Projektthema war interessant.", - "text_en": "The project's topic was interesting.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Internet-Security - Weaknesses and Targets", + "name_en": "Internet-Security - Weaknesses and Targets", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 643 + ] } }, { - "model": "evaluation.question", - "pk": 377, + "model": "evaluation.course", + "pk": 73, "fields": { - "order": 377, - "questionnaire": 94, - "text_de": "Das Projektthema passte zu meinen Interessen und Fähigkeiten.", - "text_en": "The project matched my interests and skills.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Internet-Security - Weaknesses and Targets", + "name_en": "Internet-Security - Weaknesses and Targets", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 147 + ] } }, { - "model": "evaluation.question", - "pk": 378, + "model": "evaluation.course", + "pk": 74, "fields": { - "order": 378, - "questionnaire": 94, - "text_de": "Das Projekt entsprach meiner Vorstellung.", - "text_en": "The project met my expectations.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Investigating Practical MDE-Approches", + "name_en": "Investigating Practical MDE-Approches", + "type": 5, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 379, + "model": "evaluation.course", + "pk": 75, "fields": { - "order": 379, - "questionnaire": 94, - "text_de": "Die Aufgabenstellung war klar spezifiziert.", - "text_en": "The tasks were clearly specified.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Joint Data Profiling", + "name_en": "Joint Data Profiling", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 380, + "model": "evaluation.course", + "pk": 76, "fields": { - "order": 380, - "questionnaire": 94, - "text_de": "Bei einer wiederholten Wahl würde ich das gleiche Projekt wählen.", - "text_en": "I would choose the same project again.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Kliniksystemaufsatz basierend auf In-Memory-Technologie", + "name_en": "Prototypical clinical information system based on in-memroy technology", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 291 + ] } }, { - "model": "evaluation.question", - "pk": 381, + "model": "evaluation.course", + "pk": 77, "fields": { - "order": 381, - "questionnaire": 94, - "text_de": "Was hat dir am Projekt besonders gefallen? Wie hätte man das Projekt besser gestalten können?", - "text_en": "What was the best part of the project? What could be improved?", - "allows_additional_textanswers": false, - "type": 0 + "semester": 17, + "name_de": "Knowledge-intensive Business Processes", + "name_en": "Knowledge-intensive Business Processes", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 382, + "model": "evaluation.course", + "pk": 78, "fields": { - "order": 382, - "questionnaire": 95, - "text_de": "Wie bewertest du den Zeitaufwand für das Projekt?", - "text_en": "How do you evaluate the expenditure of time for the project?", - "allows_additional_textanswers": true, - "type": 8 + "semester": 17, + "name_de": "Konflikt- und Kommunikationsmanagement", + "name_en": "Conflict and Communication managment", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 210 + ] } }, { - "model": "evaluation.question", - "pk": 383, + "model": "evaluation.course", + "pk": 79, "fields": { - "order": 383, - "questionnaire": 95, - "text_de": "Es haben sich alle Teilnehmer ausgeglichen beteiligt.", - "text_en": "All team members participated equally.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Konzepte paralleler Programmierung", + "name_en": "Parallel Programming Concepts", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 384, + "model": "evaluation.course", + "pk": 80, "fields": { - "order": 384, - "questionnaire": 95, - "text_de": "Die Zeitvorgaben für die Teil-Aufgaben waren realistisch.", - "text_en": "The deadlines for sub-task were realistic.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Konzepte und Techniken der 3D-Visualisierung", + "name_en": "Concepts and Techniques of 3D Visualization", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 70 + ] } }, { - "model": "evaluation.question", - "pk": 385, + "model": "evaluation.course", + "pk": 81, "fields": { - "order": 385, - "questionnaire": 95, - "text_de": "Es stand ausreichend Zeit zur Ausarbeitung von Pressemitteilung, Plakat und Präsentation zur Verfügung.", - "text_en": "The time for preparation of the press release, poster and presentation was sufficient.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Large Scale Duplicate Detection", + "name_en": "Large Scale Duplicate Detection", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 568 + ] } }, { - "model": "evaluation.question", - "pk": 387, + "model": "evaluation.course", + "pk": 82, "fields": { - "order": 387, - "questionnaire": 95, - "text_de": "Sonstige Kommentare zu Aufwand und Zeitplanung:", - "text_en": "Additional remarks on effort and time management:", - "allows_additional_textanswers": false, - "type": 0 + "semester": 18, + "name_de": "Management Essentials", + "name_en": "Management Essentials", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 118 + ] } }, { - "model": "evaluation.question", - "pk": 388, + "model": "evaluation.course", + "pk": 83, "fields": { - "order": 388, - "questionnaire": 96, - "text_de": "Der Professor zeigte Interesse am Projekt und dessen Ergebnis.", - "text_en": "The professor was interested in the project and its results.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Mathematik I - Diskrete Strukturen und Logik", + "name_en": "Discrete Structures and Logic", + "type": 5, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 152 + ] } }, { - "model": "evaluation.question", - "pk": 389, + "model": "evaluation.course", + "pk": 84, "fields": { - "order": 389, - "questionnaire": 96, - "text_de": "Der Professor hat sich während des Projektzeitraumes eingebracht.", - "text_en": "The professor contributed to the project.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Mathematik II", + "name_en": "Mathematics II", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 933 + ] } }, { - "model": "evaluation.question", - "pk": 390, + "model": "evaluation.course", + "pk": 85, "fields": { - "order": 390, - "questionnaire": 96, - "text_de": "Der Projektpartner hat sich während des Projektzeitraumes eingebracht.", - "text_en": "The business partner contributed to the project.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Model-Based Adaption for Embedded Systems", + "name_en": "Model-Based Adaption for Embedded Systems", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 113 + ] } }, { - "model": "evaluation.question", - "pk": 391, + "model": "evaluation.course", + "pk": 86, "fields": { - "order": 391, - "questionnaire": 96, - "text_de": "Die Betreuung durch den Lehrstuhl war zufriedenstellend.", - "text_en": "The supervision by the chair was satisfying.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Modellgetriebene Softwareentwicklung", + "name_en": "Model-driven Software Development", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 296 + ] } }, { - "model": "evaluation.question", - "pk": 392, + "model": "evaluation.course", + "pk": 87, "fields": { - "order": 392, - "questionnaire": 96, - "text_de": "Die Betreuung durch den Projektpartner war zufriedenstellend.", - "text_en": "The supervision by the business project partner was satisfying.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Modellierung I", + "name_en": "Modeling I", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 178 + ] } }, { - "model": "evaluation.question", - "pk": 393, + "model": "evaluation.course", + "pk": 88, "fields": { - "order": 393, - "questionnaire": 96, - "text_de": "Sonstige Kommentare zur Betreuung und zum Projektpartner:", - "text_en": "Additional remarks on supervision and the business partner:", - "allows_additional_textanswers": false, - "type": 0 + "semester": 21, + "name_de": "Modellierung I", + "name_en": "Modeling I", + "type": 3, + "is_private": false, + "gets_no_grade_documents": true, + "programs": [ + 1 + ], + "responsibles": [ + 749 + ] } }, { - "model": "evaluation.question", - "pk": 394, + "model": "evaluation.course", + "pk": 89, "fields": { - "order": 394, - "questionnaire": 97, - "text_de": "Mein Bachelorarbeitsthema war interessant.", - "text_en": "The topic of my bachelor thesis was interesting.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "Modellierung II", + "name_en": "Modeling II", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 395, + "model": "evaluation.course", + "pk": 90, "fields": { - "order": 395, - "questionnaire": 97, - "text_de": "Mein Bachelorarbeitsthema passte zu meinen Vertiefungsgebieten.", - "text_en": "The topic of my bachelor's thesis matched my areas of specialization.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Modern Computer-aided Software Engineering", + "name_en": "Modern Computer-aided Software Engineering", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 396, + "model": "evaluation.course", + "pk": 91, "fields": { - "order": 396, - "questionnaire": 97, - "text_de": "Es war leicht, aus dem Projektthema Themen für die Bachelorarbeiten abzuleiten.", - "text_en": "It was easy to derive the topics of the bachelor's theses out of the project's scope.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Modulsysteme", + "name_en": "Modulsystems", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 397, + "model": "evaluation.course", + "pk": 92, "fields": { - "order": 397, - "questionnaire": 97, - "text_de": "Das Thema meiner Bachelorarbeit war inhaltlich nahe am Projekt.", - "text_en": "The topic of my bachelor's thesis was directly derived from the scope of the project.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "Network Security in Practice", + "name_en": "Network Security in Practice", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 452 + ] } }, { - "model": "evaluation.question", - "pk": 398, + "model": "evaluation.course", + "pk": 93, "fields": { - "order": 398, - "questionnaire": 97, - "text_de": "Es stand ausreichend Zeit zur Ausarbeitung der Bachelorarbeit zur Verfügung.", - "text_en": "The time for the preparation of my bachelor's thesis was sufficient.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Persönlichkeits- und Selbstmanagement", + "name_en": "Personality and Selfmanagement", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 292 + ] } }, { - "model": "evaluation.question", - "pk": 399, + "model": "evaluation.course", + "pk": 94, "fields": { - "order": 399, - "questionnaire": 97, - "text_de": "Sonstige Kommentare zur Bachelorarbeit:", - "text_en": "Additional remarks on the bachelor's thesis:", - "allows_additional_textanswers": false, - "type": 0 + "semester": 18, + "name_de": "Physical Interaction across touch-sensitive rooms", + "name_en": "Physical Interaction across touch-sensitive rooms", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 567 + ] } }, { - "model": "evaluation.question", - "pk": 400, + "model": "evaluation.course", + "pk": 96, "fields": { - "order": 400, - "questionnaire": 98, - "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", - "text_en": "... showed respect for the students.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Privacy and Security in IPv6", + "name_en": "Privacy and Security in IPv6", + "type": 4, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 103 + ] } }, { - "model": "evaluation.question", - "pk": 401, + "model": "evaluation.course", + "pk": 97, "fields": { - "order": 401, - "questionnaire": 98, - "text_de": "... konnte mir Wissen vermitteln.", - "text_en": "... imparted knowledge.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Professionalisierte Lerntechniken", + "name_en": "Professionalized Learning Techniques", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 70 + ] } }, { - "model": "evaluation.question", - "pk": 402, + "model": "evaluation.course", + "pk": 98, "fields": { - "order": 402, - "questionnaire": 98, - "text_de": "... ging auf Fragen und Anregungen ein.", - "text_en": "... adressed questions and proposals.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "Projektentwicklung und -management", + "name_en": "Project Development and Management", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 103 + ] } }, { - "model": "evaluation.question", - "pk": 403, + "model": "evaluation.course", + "pk": 99, "fields": { - "order": 403, - "questionnaire": 98, - "text_de": "... gestaltete die Veranstaltung interessant.", - "text_en": "... gave the course in an interesting way.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Projektentwicklung und -management (ohne Kolloquium)", + "name_en": "Project Development and Management (without Colloquium)", + "type": 4, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 404, + "model": "evaluation.course", + "pk": 100, "fields": { - "order": 404, - "questionnaire": 99, - "text_de": "Das Projekt hat mir Spaß/Freude bereitet.", - "text_en": "I enjoyed the project.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Projektentwicklung und -management (ohne Kolloquium)", + "name_en": "Project Development and Management (without Colloquium)", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 405, + "model": "evaluation.course", + "pk": 101, "fields": { - "order": 405, - "questionnaire": 99, - "text_de": "Das Projekt passt inhaltlich in das bisherige Studium.", - "text_en": "The project's topic fits into my studies.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Prozessorientierte Informationssysteme I", + "name_en": "Process oriented Information Systems I", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 933 + ] } }, { - "model": "evaluation.question", - "pk": 406, + "model": "evaluation.course", + "pk": 102, "fields": { - "order": 406, - "questionnaire": 99, - "text_de": "Das Projektthema war interessant.", - "text_en": "The project's topic was interesting.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Prozessorientierte Informationssysteme I", + "name_en": "Process oriented Information Systems I", + "type": 5, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 296 + ] } }, { - "model": "evaluation.question", - "pk": 407, + "model": "evaluation.course", + "pk": 103, "fields": { - "order": 407, - "questionnaire": 99, - "text_de": "Das Projektthema passte zu meinen Interessen und Fähigkeiten.", - "text_en": "The project matched my interests and skills.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Präsentationsdesign und visuelle Kommunikation", + "name_en": "Präsentationsdesign und visuelle Kommunikation", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 618 + ] } }, { - "model": "evaluation.question", - "pk": 408, + "model": "evaluation.course", + "pk": 104, "fields": { - "order": 408, - "questionnaire": 99, - "text_de": "Das Projekt entsprach meiner Vorstellung.", - "text_en": "The project met my expectations.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Real-time Analysis of Genome Data", + "name_en": "Real-time Analysis of Genome Data", + "type": 5, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 89 + ] } }, { - "model": "evaluation.question", - "pk": 409, + "model": "evaluation.course", + "pk": 105, "fields": { - "order": 409, - "questionnaire": 99, - "text_de": "Die Aufgabenstellung war klar spezifiziert.", - "text_en": "The tasks were clearly specified.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Recht für Ingenieure I", + "name_en": "Law for Engineers I", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 288 + ] } }, { - "model": "evaluation.question", - "pk": 410, + "model": "evaluation.course", + "pk": 106, "fields": { - "order": 410, - "questionnaire": 99, - "text_de": "Bei einer wiederholten Wahl würde ich das gleiche Projekt wählen.", - "text_en": "I would choose the same project again.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Recht für Ingenieure II", + "name_en": "Law for Engineers II", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 149 + ] } }, { - "model": "evaluation.question", - "pk": 411, + "model": "evaluation.course", + "pk": 107, "fields": { - "order": 411, - "questionnaire": 99, - "text_de": "Was hat dir am Projekt besonders gefallen? Wie hätte man das Projekt besser gestalten können?", - "text_en": "What was the best part of the project? What could be improved?", - "allows_additional_textanswers": false, - "type": 0 + "semester": 17, + "name_de": "Recognizing Cross-cutting Concerns by Revealing Task Contexts", + "name_en": "Recognizing Cross-cutting Concerns by Revealing Task Contexts", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 103 + ] } }, { - "model": "evaluation.question", - "pk": 412, + "model": "evaluation.course", + "pk": 108, "fields": { - "order": 412, - "questionnaire": 100, - "text_de": "Wie bewertest du den Zeitaufwand?", - "text_en": "How do you evaluate the expenditure of time?", - "allows_additional_textanswers": true, - "type": 8 + "semester": 17, + "name_de": "Requirements Engineering: Elicitation and Negotiation", + "name_en": "Requirements Engineering: Elicitation and Negotiation", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 580 + ] } }, { - "model": "evaluation.question", - "pk": 413, + "model": "evaluation.course", + "pk": 109, "fields": { - "order": 413, - "questionnaire": 100, - "text_de": "Es haben sich alle Teilnehmer ausgeglichen beteiligt.", - "text_en": "All team members participated equally.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Security Testing and Surveillance for Large-Scale Software", + "name_en": "Security Testing and Surveillance for Large-Scale Software", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 294 + ] } }, { - "model": "evaluation.question", - "pk": 414, + "model": "evaluation.course", + "pk": 110, "fields": { - "order": 414, - "questionnaire": 100, - "text_de": "Die Zeitvorgaben für die Teil-Aufgaben waren realistisch.", - "text_en": "The deadlines for sub-tasks were realistic.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Semantic Multimedia", + "name_en": "Semantic Multimedia", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 298 + ] } }, { - "model": "evaluation.question", - "pk": 415, + "model": "evaluation.course", + "pk": 111, "fields": { - "order": 415, - "questionnaire": 100, - "text_de": "Sonstige Kommentare zu Aufwand und Zeitplanung:", - "text_en": "Additional remarks on effort and time management:", - "allows_additional_textanswers": false, - "type": 0 + "semester": 21, + "name_de": "Semantic Web Technologien", + "name_en": "Semantic Web Technologien", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 118 + ] } }, { - "model": "evaluation.question", - "pk": 416, + "model": "evaluation.course", + "pk": 112, "fields": { - "order": 416, - "questionnaire": 101, - "text_de": "Der Professor zeigte Interesse am Projekt und dessen Ergebnis.", - "text_en": "The professor was interested in the project and its results.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Semantische Erschließung des tele-TASK-Archivs", + "name_en": "Semantische Erschließung des tele-TASK-Archivs", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 417, + "model": "evaluation.course", + "pk": 113, "fields": { - "order": 417, - "questionnaire": 101, - "text_de": "Der Professor hat sich während des Projektzeitraumes eingebracht.", - "text_en": "The professor contributed to the project.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Seminar des Forschungskollegs", + "name_en": "Research School Seminar", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 55 + ] } }, { - "model": "evaluation.question", - "pk": 418, + "model": "evaluation.course", + "pk": 114, "fields": { - "order": 418, - "questionnaire": 101, - "text_de": "Die Betreuung durch den Lehrstuhl war zufriedenstellend.", - "text_en": "The supervision by the chair was satisfying.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Sicherheit in komplexen IT-Landschaften", + "name_en": "Security in complex-IT-landscapes", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 296 + ] } }, { - "model": "evaluation.question", - "pk": 419, + "model": "evaluation.course", + "pk": 115, "fields": { - "order": 419, - "questionnaire": 101, - "text_de": "Sonstige Kommentare zur Betreuung:", - "text_en": "Additional remarks on supervision:", - "allows_additional_textanswers": false, - "type": 0 + "semester": 17, + "name_de": "Social Reputation", + "name_en": "Social Reputation", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 66 + ] } }, { - "model": "evaluation.question", - "pk": 420, + "model": "evaluation.course", + "pk": 116, "fields": { - "order": 420, - "questionnaire": 102, - "text_de": "Mein Masterarbeitsthema war interessant.", - "text_en": "The topic of my master's thesis was interesting.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Software Adaption", + "name_en": "Software Adaption", + "type": 5, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 129 + ] } }, { - "model": "evaluation.question", - "pk": 421, + "model": "evaluation.course", + "pk": 117, "fields": { - "order": 421, - "questionnaire": 102, - "text_de": "Mein Masterarbeitsthema passte zu meinen Vertiefungsgebieten.", - "text_en": "The topic of my master thesis matched my areas of specialization.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Software Engineering for Embedded Systems", + "name_en": "Software Engineering for Embedded Systems", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 422, + "model": "evaluation.course", + "pk": 118, "fields": { - "order": 422, - "questionnaire": 102, - "text_de": "Es stand ausreichend Zeit zur Ausarbeitung der Masterarbeit zur Verfügung.", - "text_en": "The time for the preparation of my master's thesis was sufficient.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Software Profiling", + "name_en": "Software Profiling", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 89 + ] } }, { - "model": "evaluation.question", - "pk": 423, + "model": "evaluation.course", + "pk": 119, "fields": { - "order": 423, - "questionnaire": 102, - "text_de": "Sonstige Kommentare zur Masterarbeit:", - "text_en": "Additional remarks on the master's thesis:", - "allows_additional_textanswers": false, - "type": 0 + "semester": 19, + "name_de": "Software-Analyse und Visualisierung", + "name_en": "Software Analysis and Visualization", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 600 + ] } }, { - "model": "evaluation.question", - "pk": 428, + "model": "evaluation.course", + "pk": 120, "fields": { - "order": 428, - "questionnaire": 85, - "text_de": "... konnte Sachverhalte sehr gut erklären.", - "text_en": "... did explain issues very well.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Software-Design", + "name_en": "Software Design", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 118 + ] } }, { - "model": "evaluation.question", - "pk": 429, + "model": "evaluation.course", + "pk": 121, "fields": { - "order": 429, - "questionnaire": 88, - "text_de": "Was hat das Projekt besonders ausgezeichnet?", - "text_en": "What were the strengths of the project?", - "allows_additional_textanswers": false, - "type": 0 + "semester": 18, + "name_de": "Software-as-a-Service and Multi-tenancy", + "name_en": "Software-as-a-Service and Multi-tenancy", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 430, + "model": "evaluation.course", + "pk": 122, "fields": { - "order": 430, - "questionnaire": 88, - "text_de": "Durch welche Änderungen könnte man das Projekt noch verbessern?", - "text_en": "How could the project be further improved?", - "allows_additional_textanswers": false, - "type": 0 + "semester": 19, + "name_de": "Softwarearchitektur", + "name_en": "Software Architecture", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 431, + "model": "evaluation.course", + "pk": 124, "fields": { - "order": 431, - "questionnaire": 98, - "text_de": "... wirkte gut vorbereitet.", - "text_en": "... seemed to be well prepared.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "Softwaretechnik I", + "name_en": "Software Technology I", + "type": 4, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 118 + ] } }, { - "model": "evaluation.question", - "pk": 432, + "model": "evaluation.course", + "pk": 125, "fields": { - "order": 432, - "questionnaire": 104, - "text_de": "Das Projektseminar hat mir Spaß/Freude bereitet.", - "text_en": "I enjoyed the project seminar.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Softwaretechnik II", + "name_en": "Software Technology II", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 123 + ] } }, { - "model": "evaluation.question", - "pk": 433, + "model": "evaluation.course", + "pk": 126, "fields": { - "order": 433, - "questionnaire": 104, - "text_de": "Die Seminarthemen fand ich gut ausgewählt.", - "text_en": "The seminar's topics were chosen very well.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Softwarevisualisierungsverfahren", + "name_en": "Software Visualization Techniques", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 96 + ] } }, { - "model": "evaluation.question", - "pk": 434, + "model": "evaluation.course", + "pk": 127, "fields": { - "order": 434, - "questionnaire": 104, - "text_de": "Die bereitgestellten Materialien waren gute Einstiegspunkte für eigene Recherche.", - "text_en": "The provided learning material was a good start for own research.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Studienbegleitendes Seminar", + "name_en": "Accompanying Seminar", + "type": 4, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 118 + ] } }, { - "model": "evaluation.question", - "pk": 435, + "model": "evaluation.course", + "pk": 128, "fields": { - "order": 435, - "questionnaire": 104, - "text_de": "Ich empfand den Aufwand für das Projektseminar als angemessen.", - "text_en": "I think the expenditure of time for the project seminar was appropriate.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Telemedicine", + "name_en": "Telemedicine", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 182 + ] } }, { - "model": "evaluation.question", - "pk": 436, + "model": "evaluation.course", + "pk": 129, "fields": { - "order": 436, - "questionnaire": 104, - "text_de": "Aus dem Projektseminar habe ich etwas mitnehmen können.", - "text_en": "I learned something from the project seminar.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Theoretische Informatik I", + "name_en": "Theoretical Computer Science I", + "type": 5, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 437, + "model": "evaluation.course", + "pk": 130, "fields": { - "order": 437, - "questionnaire": 104, - "text_de": "Ich kann nachvollziehen, wie und nach welchen Kriterien die Bewertung erfolgt.", - "text_en": "I can understand how the grading is influenced by specific criteria.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Trends and Concepts in the Software Industry I: Inner Mechanics of In-Memory Databases", + "name_en": "Trends and Concepts in the Software Industry I: Inner Mechanics of In-Memory Databases", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 96 + ] } }, { - "model": "evaluation.question", - "pk": 438, + "model": "evaluation.course", + "pk": 131, "fields": { - "order": 438, - "questionnaire": 104, - "text_de": "Die theoretischen Inhalte des Seminars haben mir bei der Bearbeitung des Projekts geholfen.", - "text_en": "The theoretical contents of the seminar helped me working on the project.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Trends und Konzepte in der Software Industrie II - Next Generation Clinical Information Systems", + "name_en": "Trends and Concepts in Software Industry II - Next Generation Clinical Information Systems", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 439, + "model": "evaluation.course", + "pk": 132, "fields": { - "order": 439, - "questionnaire": 104, - "text_de": "Was hat das Projektseminar besonders ausgezeichnet?", - "text_en": "What were the strengths of the project seminar?", - "allows_additional_textanswers": false, - "type": 0 + "semester": 17, + "name_de": "Trends und Konzepte in der Software-Industrie II - Hauptspeicherdatenbanken für Geschäftsanwendungen.", + "name_en": "Trends and Concepts in the Software Industry II - Main Memory Databases for Enterprise Applications.", + "type": 1, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 440, + "model": "evaluation.course", + "pk": 133, "fields": { - "order": 440, - "questionnaire": 104, - "text_de": "Durch welche Änderungen könnte man das Projektseminar noch verbessern?", - "text_en": "How could the project seminar be further improved?", - "allows_additional_textanswers": false, - "type": 0 + "semester": 18, + "name_de": "VIP 2.0: Celebrity Exploration", + "name_en": "VIP 2.0: Celebrity Exploration", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 66 + ] } }, { - "model": "evaluation.question", - "pk": 441, + "model": "evaluation.course", + "pk": 134, "fields": { - "order": 441, - "questionnaire": 105, - "text_de": "Das Seminar hat mir Spaß/Freude bereitet.", - "text_en": "I enjoyed the seminar.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Virtuelle Maschinen und Ausführungsumgebungen", + "name_en": "Virtuelle Maschinen und Ausführungsumgebungen", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 938 + ] } }, { - "model": "evaluation.question", - "pk": 442, + "model": "evaluation.course", + "pk": 135, "fields": { - "order": 442, - "questionnaire": 105, - "text_de": "Das Projektthema fand ich gut ausgewählt.", - "text_en": "The project topic was chosen very well.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Visualisierungswerkzeug für Systemevolution", + "name_en": "A Visualization Tool for Software System Evolution", + "type": 5, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 70 + ] } }, { - "model": "evaluation.question", - "pk": 443, + "model": "evaluation.course", + "pk": 136, "fields": { - "order": 443, - "questionnaire": 105, - "text_de": "Ich empfand den Aufwand für das Seminar als angemessen.", - "text_en": "I think the expenditure of time for the seminar was appropriate.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 21, + "name_de": "Wer spricht worüber?", + "name_en": "Who talks about what?", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 3 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 444, + "model": "evaluation.course", + "pk": 137, "fields": { - "order": 444, - "questionnaire": 105, - "text_de": "Aus dem Seminar habe ich etwas mitnehmen können.", - "text_en": "I learned something from the seminar.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Wirtschaftliche Grundlagen", + "name_en": "Economic Basis", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 117 + ] } }, { - "model": "evaluation.question", - "pk": 445, + "model": "evaluation.course", + "pk": 138, "fields": { - "order": 445, - "questionnaire": 105, - "text_de": "Ich kann mir vorstellen, Ansätze und Methoden aus dem Design Thinking auch bei zukünftigen Projekten anzuwenden.", - "text_en": "I can imagine using design thinking principles and methods in future projects.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 19, + "name_de": "Überzeugend Präsentieren - der erste Eindruck zählt", + "name_en": "Presenting Succesfully - First Impression Counts", + "type": 4, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 22 + ] } }, { - "model": "evaluation.question", - "pk": 446, + "model": "evaluation.course", + "pk": 139, "fields": { - "order": 446, - "questionnaire": 105, - "text_de": "Das Seminar ist eine Bereicherung für meinen Studiengang.", - "text_en": "The seminar is a good additional contribution to my major subject. ", - "allows_additional_textanswers": true, - "type": 1 + "semester": 18, + "name_de": "Überzeugend Präsentieren - der erste Eindruck zählt", + "name_en": "Presenting Succesfully - First Impression Counts", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 103 + ] } }, { - "model": "evaluation.question", - "pk": 447, + "model": "evaluation.course", + "pk": 140, "fields": { - "order": 447, - "questionnaire": 105, - "text_de": "Was hat das Seminar besonders ausgezeichnet?", - "text_en": "What were the strengths of the seminar?", - "allows_additional_textanswers": false, - "type": 0 + "semester": 21, + "name_de": "Überzeugend Präsentieren - noch besser auftreten", + "name_en": "Presenting Succesfully - How to Make an Even Better Impression", + "type": 3, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 296 + ] } }, { - "model": "evaluation.question", - "pk": 448, + "model": "evaluation.course", + "pk": 141, "fields": { - "order": 448, - "questionnaire": 105, - "text_de": "Durch welche Änderungen könnte man das Seminar noch verbessern?", - "text_en": "How could the seminar be further improved?", - "allows_additional_textanswers": false, - "type": 0 + "semester": 17, + "name_de": "Überzeugend Präsentieren I", + "name_en": "Effective Presentations I", + "type": 2, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 1 + ], + "responsibles": [ + 125 + ] } }, { - "model": "evaluation.question", - "pk": 449, + "model": "evaluation.course", + "pk": 142, "fields": { - "order": 449, - "questionnaire": 106, - "text_de": "Das Studienbegleitende Seminar hat mir Spaß/Freude bereitet.", - "text_en": "I enjoyed the accompanying seminar.", - "allows_additional_textanswers": true, - "type": 1 + "semester": 17, + "name_de": "Überzeugend Präsentieren II", + "name_en": "Effective Presentations II", + "type": 4, + "is_private": false, + "gets_no_grade_documents": false, + "programs": [ + 2 + ], + "responsibles": [ + 70 + ] } }, { - "model": "evaluation.question", - "pk": 450, + "model": "evaluation.evaluation", + "pk": 34, "fields": { - "order": 450, - "questionnaire": 106, - "text_de": "Die Vorträge fand ich gut ausgewählt.", - "text_en": "The topics of the talks were chosen very well.", - "allows_additional_textanswers": true, - "type": 1 + "state": 80, + "course": 4, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 7, + "_voter_count": 5, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-06-02", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 143, + 137, + 126, + 136, + 134, + 129, + 69 + ], + "voters": [ + 126, + 136, + 134, + 129, + 69 + ] } }, { - "model": "evaluation.question", - "pk": 451, + "model": "evaluation.evaluation", + "pk": 310, "fields": { - "order": 451, - "questionnaire": 106, - "text_de": "Ich empfand den Aufwand für das Studienbegleitende Seminar als angemessen.", - "text_en": "I think the expenditure of time for the accompanying seminar was appropriate.", - "allows_additional_textanswers": true, - "type": 1 + "state": 70, + "course": 87, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2022-02-02T00:00:00", + "vote_end_date": "2022-02-12", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 270, + 234, + 299, + 231, + 334, + 242, + 37, + 277 + ], + "voters": [ + 270, + 234, + 231, + 334, + 242, + 277 + ] } }, { - "model": "evaluation.question", - "pk": 452, + "model": "evaluation.evaluation", + "pk": 311, "fields": { - "order": 452, - "questionnaire": 106, - "text_de": "Aus dem Studienbegleitenden Seminar habe ich etwas mitnehmen können.", - "text_en": "I learned something from the accompanying seminar.", - "allows_additional_textanswers": true, - "type": 1 + "state": 70, + "course": 116, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2022-02-02T00:00:00", + "vote_end_date": "2022-02-08", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 270, + 234, + 231, + 221, + 277, + 261 + ], + "voters": [ + 234, + 231 + ] } }, { - "model": "evaluation.question", - "pk": 453, + "model": "evaluation.evaluation", + "pk": 318, "fields": { - "order": 453, - "questionnaire": 106, - "text_de": "Das Studienbegleitende Seminar hat mir beim Einstieg in das Studium geholfen.", - "text_en": "The accompanying seminar helped me to get started with my studies.", - "allows_additional_textanswers": true, - "type": 1 + "state": 80, + "course": 53, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 12, + "_voter_count": 7, + "vote_start_datetime": "2022-02-02T00:00:00", + "vote_end_date": "2022-03-01", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 310, + 324, + 316, + 256, + 295, + 232, + 24, + 313, + 317, + 300, + 330, + 314 + ], + "voters": [ + 310, + 316, + 256, + 232, + 313, + 317, + 330 + ] } }, { - "model": "evaluation.question", - "pk": 454, + "model": "evaluation.evaluation", + "pk": 327, "fields": { - "order": 454, - "questionnaire": 106, - "text_de": "Was hat das Studienbegleitende Seminar besonders ausgezeichnet?", - "text_en": "What were the strengths of the accompanying seminar?", - "allows_additional_textanswers": false, - "type": 0 + "state": 80, + "course": 76, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 19, + "_voter_count": 9, + "vote_start_datetime": "2022-02-02T00:00:00", + "vote_end_date": "2022-02-12", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 310, + 240, + 316, + 336, + 327, + 329, + 244, + 232, + 319, + 269, + 325, + 313, + 241, + 284, + 317, + 265, + 300, + 330, + 326 + ], + "voters": [ + 310, + 240, + 329, + 244, + 319, + 284, + 317, + 330, + 326 + ] } }, { - "model": "evaluation.question", - "pk": 455, + "model": "evaluation.evaluation", + "pk": 329, "fields": { - "order": 455, - "questionnaire": 106, - "text_de": "Durch welche Änderungen könnte man das Studienbegleitende Seminar noch verbessern?", - "text_en": "How could the accompanying seminar be further improved?", - "allows_additional_textanswers": false, - "type": 0 + "state": 70, + "course": 128, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2022-03-01T00:00:00", + "vote_end_date": "2022-03-18", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 235, + 31, + 254, + 299, + 282, + 275, + 301, + 269, + 41, + 307, + 25, + 28, + 274 + ], + "voters": [ + 282, + 307, + 25 + ] } }, { - "model": "evaluation.question", - "pk": 457, + "model": "evaluation.evaluation", + "pk": 332, "fields": { - "order": 457, - "questionnaire": 107, - "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", - "text_en": "... showed respect for the students.", - "allows_additional_textanswers": true, - "type": 1 - } -}, -{ - "model": "evaluation.question", - "pk": 458, - "fields": { - "order": 458, - "questionnaire": 107, - "text_de": "... konnte mir Wissen vermitteln.", - "text_en": "... imparted knowledge.", - "allows_additional_textanswers": true, - "type": 1 + "state": 80, + "course": 100, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 11, + "_voter_count": 4, + "vote_start_datetime": "2022-02-28T00:00:00", + "vote_end_date": "2022-03-07", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 250, + 223, + 255, + 303, + 328, + 220, + 41, + 317, + 569, + 238, + 267 + ], + "voters": [ + 255, + 220, + 41, + 569 + ] } }, { - "model": "evaluation.question", - "pk": 459, + "model": "evaluation.evaluation", + "pk": 333, "fields": { - "order": 459, - "questionnaire": 107, - "text_de": "... ging auf Fragen und Anregungen ein.", - "text_en": "... addressed questions and proposals.", - "allows_additional_textanswers": true, - "type": 1 + "state": 70, + "course": 83, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2022-03-12T00:00:00", + "vote_end_date": "2022-03-31", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 254, + 239, + 255, + 26, + 267 + ], + "voters": [] } }, { - "model": "evaluation.question", - "pk": 460, + "model": "evaluation.evaluation", + "pk": 334, "fields": { - "order": 460, - "questionnaire": 107, - "text_de": "... gestaltete das Seminar interessant.", - "text_en": "... conducted the seminar in an interesting way.", - "allows_additional_textanswers": true, - "type": 1 + "state": 70, + "course": 113, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2022-02-02T00:00:00", + "vote_end_date": "2022-02-12", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 250, + 247, + 233, + 293, + 310, + 240, + 237, + 239, + 335, + 226, + 322, + 324, + 17, + 283, + 316, + 303, + 84, + 74, + 258, + 295, + 321, + 329, + 815, + 319, + 268, + 48, + 252, + 280, + 325, + 333, + 313, + 241, + 4, + 317, + 308, + 305, + 262, + 309, + 47, + 569, + 300, + 330, + 271, + 251, + 261, + 306, + 312, + 318, + 326, + 3, + 331 + ], + "voters": [ + 250, + 247, + 233, + 310, + 240, + 84, + 258, + 321, + 329, + 319, + 252, + 333, + 317, + 308, + 569, + 330, + 261, + 318, + 326, + 3 + ] } }, { - "model": "evaluation.question", - "pk": 461, + "model": "evaluation.evaluation", + "pk": 336, "fields": { - "order": 461, - "questionnaire": 107, - "text_de": "... wirkte gut vorbereitet.", - "text_en": "... seemed to be well prepared.", - "allows_additional_textanswers": true, - "type": 1 + "state": 80, + "course": 134, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 10, + "_voter_count": 5, + "vote_start_datetime": "2022-02-02T00:00:00", + "vote_end_date": "2022-02-12", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 235, + 924, + 279, + 256, + 321, + 37, + 248, + 305, + 274, + 281 + ], + "voters": [ + 235, + 279, + 256, + 321, + 274 + ] } }, { - "model": "evaluation.question", - "pk": 462, + "model": "evaluation.evaluation", + "pk": 345, "fields": { - "order": 462, - "questionnaire": 107, - "text_de": "... hat den Seminarablauf gut gestaltet.", - "text_en": "... created a good structure of the seminar.", - "allows_additional_textanswers": true, - "type": 1 + "state": 80, + "course": 60, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 20, + "_voter_count": 8, + "vote_start_datetime": "2022-02-02T00:00:00", + "vote_end_date": "2022-02-12", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 293, + 254, + 239, + 302, + 283, + 255, + 303, + 174, + 297, + 815, + 220, + 269, + 229, + 252, + 241, + 569, + 261, + 323, + 267, + 318 + ], + "voters": [ + 174, + 297, + 220, + 252, + 241, + 569, + 261, + 318 + ] } }, { - "model": "evaluation.question", - "pk": 463, + "model": "evaluation.evaluation", + "pk": 347, "fields": { - "order": 463, - "questionnaire": 107, - "text_de": "... hat mich/mein Team aktiv betreut.", - "text_en": "... made a good job in actively supporting me/my team.", - "allows_additional_textanswers": true, - "type": 1 + "state": 70, + "course": 34, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-05-01T00:00:00", + "vote_end_date": "2024-05-31", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 21, + 74, + 301, + 43, + 11, + 319, + 230, + 608, + 307, + 330, + 318, + 320 + ], + "voters": [ + 74, + 11, + 319, + 230, + 608, + 307, + 330, + 318, + 320 + ] } }, { - "model": "evaluation.question", - "pk": 464, + "model": "evaluation.evaluation", + "pk": 348, "fields": { - "order": 464, - "questionnaire": 107, - "text_de": "... stand auch außerhalb des Seminars zur Verfügung.", - "text_en": "... was available even outside the seminar.", - "allows_additional_textanswers": true, - "type": 1 + "state": 80, + "course": 1, + "name_de": "Softwarearchitektur", + "name_en": "Software Architecture", + "weight": 2, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 9, + "_voter_count": 8, + "vote_start_datetime": "2024-05-01T00:00:00", + "vote_end_date": "2024-05-31", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 447, + 472, + 526, + 16, + 662, + 483, + 1, + 257, + 320 + ], + "voters": [ + 447, + 472, + 526, + 16, + 483, + 1, + 257, + 320 + ] } }, { - "model": "evaluation.question", - "pk": 465, + "model": "evaluation.evaluation", + "pk": 350, "fields": { - "order": 465, - "questionnaire": 108, - "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", - "text_en": "... showed respect for the students.", - "allows_additional_textanswers": true, - "type": 1 + "state": 80, + "course": 126, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 9, + "_voter_count": 5, + "vote_start_datetime": "2022-02-02T00:00:00", + "vote_end_date": "2022-02-12", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 247, + 924, + 243, + 328, + 224, + 304, + 41, + 305, + 90 + ], + "voters": [ + 247, + 243, + 328, + 224, + 304 + ] } }, { - "model": "evaluation.question", - "pk": 466, + "model": "evaluation.evaluation", + "pk": 356, "fields": { - "order": 466, - "questionnaire": 108, - "text_de": "... konnte mir Wissen vermitteln.", - "text_en": "... imparted knowledge.", - "allows_additional_textanswers": true, - "type": 1 + "state": 80, + "course": 141, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 62, + "_voter_count": 35, + "vote_start_datetime": "2022-02-02T00:00:00", + "vote_end_date": "2022-02-12", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 378, + 393, + 355, + 438, + 368, + 470, + 488, + 558, + 461, + 512, + 548, + 356, + 467, + 374, + 452, + 473, + 532, + 390, + 439, + 507, + 484, + 544, + 458, + 353, + 382, + 466, + 527, + 341, + 408, + 369, + 413, + 489, + 508, + 462, + 418, + 364, + 420, + 530, + 476, + 546, + 500, + 437, + 395, + 371, + 388, + 522, + 370, + 376, + 397, + 440, + 663, + 444, + 347, + 366, + 396, + 384, + 425, + 497, + 474, + 480, + 448 + ], + "voters": [ + 393, + 355, + 438, + 368, + 558, + 461, + 512, + 356, + 467, + 374, + 452, + 439, + 507, + 544, + 458, + 353, + 466, + 527, + 341, + 369, + 413, + 508, + 462, + 418, + 364, + 530, + 500, + 395, + 371, + 388, + 376, + 444, + 384, + 425, + 480 + ] } }, { - "model": "evaluation.question", - "pk": 467, + "model": "evaluation.evaluation", + "pk": 358, "fields": { - "order": 467, - "questionnaire": 108, - "text_de": "... ging auf Fragen und Anregungen ein.", - "text_en": "... addressed questions and proposals.", - "allows_additional_textanswers": true, - "type": 1 + "state": 80, + "course": 69, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 78, + "_voter_count": 36, + "vote_start_datetime": "2022-02-02T00:00:00", + "vote_end_date": "2022-02-09", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 337, + 516, + 455, + 501, + 367, + 459, + 365, + 435, + 429, + 412, + 419, + 528, + 523, + 409, + 566, + 503, + 464, + 414, + 406, + 468, + 424, + 445, + 525, + 453, + 510, + 456, + 449, + 490, + 405, + 506, + 343, + 386, + 389, + 545, + 421, + 538, + 521, + 502, + 505, + 491, + 450, + 346, + 555, + 401, + 535, + 342, + 451, + 563, + 377, + 352, + 781, + 504, + 550, + 463, + 542, + 360, + 554, + 350, + 520, + 411, + 436, + 400, + 551, + 442, + 772, + 497, + 553, + 479, + 557, + 511, + 404, + 509, + 361, + 441, + 403, + 430, + 457, + 469 + ], + "voters": [ + 337, + 455, + 459, + 365, + 435, + 412, + 528, + 464, + 468, + 525, + 405, + 506, + 386, + 389, + 421, + 505, + 401, + 535, + 377, + 542, + 360, + 350, + 520, + 411, + 436, + 400, + 551, + 479, + 557, + 509, + 361, + 441, + 403, + 430, + 457, + 469 + ] } }, { - "model": "evaluation.question", - "pk": 468, + "model": "evaluation.evaluation", + "pk": 359, "fields": { - "order": 468, - "questionnaire": 108, - "text_de": "... wirkte gut vorbereitet.", - "text_en": "... seemed to be well prepared.", - "allows_additional_textanswers": true, - "type": 1 + "state": 80, + "course": 5, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 36, + "_voter_count": 14, + "vote_start_datetime": "2022-04-12T00:00:00", + "vote_end_date": "2022-04-26", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 355, + 438, + 488, + 529, + 496, + 543, + 558, + 548, + 392, + 467, + 559, + 381, + 344, + 379, + 495, + 547, + 482, + 466, + 358, + 369, + 564, + 387, + 160, + 418, + 340, + 524, + 415, + 546, + 500, + 370, + 562, + 514, + 444, + 385, + 410, + 624 + ], + "voters": [ + 355, + 438, + 488, + 496, + 379, + 466, + 387, + 160, + 418, + 415, + 500, + 370, + 562, + 444 + ] } }, { - "model": "evaluation.question", - "pk": 469, + "model": "evaluation.evaluation", + "pk": 363, "fields": { - "order": 469, - "questionnaire": 108, - "text_de": "... hat mich/mein Team aktiv betreut.", - "text_en": "... made a good job in actively supporting me/my team.", - "allows_additional_textanswers": true, - "type": 1 + "state": 80, + "course": 37, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 10, + "_voter_count": 2, + "vote_start_datetime": "2022-03-27T00:00:00", + "vote_end_date": "2022-04-04", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 416, + 517, + 426, + 372, + 417, + 536, + 380, + 533, + 485, + 357 + ], + "voters": [ + 426, + 536 + ] } }, { - "model": "evaluation.question", - "pk": 470, + "model": "evaluation.evaluation", + "pk": 370, "fields": { - "order": 470, - "questionnaire": 108, - "text_de": "... stand auch außerhalb des Seminars zur Verfügung.", - "text_en": "... was available even outside the seminar.", - "allows_additional_textanswers": true, - "type": 1 + "state": 80, + "course": 26, + "name_de": "", + "name_en": "", + "weight": 3, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 79, + "_voter_count": 41, + "vote_start_datetime": "2022-01-30T00:00:00", + "vote_end_date": "2022-02-08", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 339, + 355, + 438, + 391, + 519, + 560, + 368, + 470, + 488, + 529, + 496, + 543, + 558, + 461, + 512, + 407, + 548, + 373, + 392, + 433, + 467, + 559, + 381, + 344, + 379, + 495, + 354, + 452, + 547, + 482, + 507, + 484, + 382, + 466, + 358, + 408, + 369, + 413, + 454, + 359, + 349, + 564, + 450, + 387, + 160, + 418, + 340, + 524, + 415, + 364, + 530, + 476, + 546, + 500, + 437, + 395, + 388, + 370, + 376, + 562, + 397, + 663, + 549, + 514, + 422, + 444, + 347, + 385, + 539, + 410, + 384, + 425, + 497, + 394, + 474, + 480, + 399, + 448, + 624 + ], + "voters": [ + 339, + 355, + 438, + 368, + 488, + 496, + 543, + 558, + 407, + 373, + 433, + 559, + 379, + 495, + 452, + 547, + 482, + 507, + 466, + 369, + 413, + 454, + 349, + 387, + 160, + 415, + 364, + 530, + 546, + 500, + 395, + 388, + 370, + 562, + 549, + 514, + 444, + 385, + 539, + 394, + 480 + ] } }, { - "model": "evaluation.question", - "pk": 471, + "model": "evaluation.evaluation", + "pk": 372, "fields": { - "order": 471, - "questionnaire": 109, - "text_de": "Wie würdest du die Veranstaltung insgesamt bewerten?", - "text_en": "How would you grade the course in total?", - "allows_additional_textanswers": true, - "type": 2 + "state": 80, + "course": 26, + "name_de": "C³: Konsistente Fahrzeug Gruppierung", + "name_en": "C³: Consistent Car Clustering", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 84, + "_voter_count": 44, + "vote_start_datetime": "2022-02-02T00:00:00", + "vote_end_date": "2022-02-12", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 339, + 355, + 438, + 391, + 519, + 368, + 470, + 488, + 529, + 496, + 543, + 558, + 461, + 512, + 446, + 407, + 548, + 373, + 392, + 433, + 467, + 559, + 381, + 344, + 526, + 379, + 495, + 354, + 452, + 398, + 515, + 547, + 482, + 484, + 353, + 382, + 466, + 358, + 533, + 408, + 369, + 413, + 454, + 345, + 359, + 349, + 564, + 387, + 160, + 418, + 340, + 524, + 415, + 364, + 420, + 530, + 476, + 546, + 500, + 437, + 395, + 388, + 370, + 376, + 565, + 562, + 663, + 549, + 514, + 422, + 444, + 347, + 385, + 539, + 410, + 384, + 425, + 497, + 394, + 474, + 480, + 399, + 448, + 624 + ], + "voters": [ + 339, + 355, + 438, + 368, + 496, + 543, + 461, + 512, + 373, + 467, + 559, + 381, + 379, + 495, + 452, + 398, + 547, + 353, + 466, + 413, + 454, + 345, + 349, + 564, + 387, + 160, + 418, + 364, + 530, + 500, + 395, + 388, + 376, + 562, + 549, + 514, + 422, + 444, + 385, + 539, + 384, + 425, + 394, + 480 + ] } }, { - "model": "evaluation.question", - "pk": 472, + "model": "evaluation.evaluation", + "pk": 375, "fields": { - "order": 2, - "questionnaire": 110, - "text_de": "Würden Sie eine Fortsetzung des Kurses besuchen?", - "text_en": "Would you enroll in a continued version of this course?", - "allows_additional_textanswers": true, - "type": 3 + "state": 80, + "course": 50, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 15, + "_voter_count": 11, + "vote_start_datetime": "2022-02-02T00:00:00", + "vote_end_date": "2022-02-12", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 488, + 543, + 512, + 547, + 466, + 413, + 349, + 346, + 524, + 364, + 500, + 437, + 370, + 422, + 394 + ], + "voters": [ + 488, + 543, + 512, + 547, + 466, + 413, + 349, + 364, + 500, + 422, + 394 + ] } }, { - "model": "evaluation.question", - "pk": 473, + "model": "evaluation.evaluation", + "pk": 478, "fields": { - "order": 1, - "questionnaire": 110, - "text_de": "Fanden Sie den Kurs zu schwer?", - "text_en": "Was the course too difficult?", - "allows_additional_textanswers": true, - "type": 6 + "state": 70, + "course": 38, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2022-01-22T00:00:00", + "vote_end_date": "2022-01-23", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 55, + 582, + 334, + 181, + 187, + 581, + 66, + 210, + 583, + 182, + 152 + ], + "voters": [] } }, { - "model": "evaluation.question", - "pk": 475, + "model": "evaluation.evaluation", + "pk": 482, "fields": { - "order": 342, - "questionnaire": 86, - "text_de": "Wie empfandest du die Größe des Seminars?", - "text_en": "How do you feel about the size of the seminar?", - "allows_additional_textanswers": true, - "type": 9 + "state": 80, + "course": 44, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 74, + "_voter_count": 44, + "vote_start_datetime": "2022-02-02T00:00:00", + "vote_end_date": "2022-02-12", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 337, + 516, + 455, + 367, + 459, + 365, + 435, + 429, + 412, + 419, + 528, + 523, + 409, + 566, + 503, + 464, + 414, + 406, + 468, + 424, + 445, + 525, + 453, + 510, + 456, + 449, + 490, + 405, + 506, + 386, + 389, + 545, + 421, + 538, + 521, + 502, + 505, + 450, + 346, + 555, + 401, + 535, + 342, + 451, + 563, + 377, + 352, + 781, + 504, + 550, + 463, + 542, + 360, + 554, + 350, + 520, + 411, + 436, + 400, + 442, + 537, + 772, + 553, + 479, + 557, + 511, + 404, + 509, + 361, + 441, + 403, + 430, + 457, + 469 + ], + "voters": [ + 455, + 367, + 459, + 365, + 435, + 429, + 412, + 528, + 566, + 464, + 414, + 406, + 468, + 525, + 405, + 506, + 386, + 389, + 545, + 421, + 505, + 450, + 555, + 401, + 535, + 563, + 377, + 542, + 360, + 350, + 520, + 411, + 436, + 400, + 479, + 557, + 404, + 509, + 361, + 441, + 403, + 430, + 457, + 469 + ] } }, { - "model": "evaluation.question", - "pk": 476, + "model": "evaluation.evaluation", + "pk": 641, "fields": { - "order": 332, - "questionnaire": 50, - "text_de": "Es gab genügend Übungen.", - "text_en": "There were sufficient exercises.", - "allows_additional_textanswers": true, - "type": 7 + "state": 80, + "course": 16, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 74, + "_voter_count": 27, + "vote_start_datetime": "2022-07-09T00:00:00", + "vote_end_date": "2022-07-29", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 337, + 339, + 516, + 355, + 438, + 391, + 519, + 459, + 365, + 368, + 470, + 488, + 529, + 496, + 558, + 512, + 523, + 409, + 407, + 373, + 392, + 433, + 467, + 559, + 344, + 445, + 526, + 379, + 495, + 354, + 452, + 510, + 547, + 482, + 484, + 544, + 382, + 466, + 408, + 369, + 454, + 359, + 349, + 387, + 160, + 524, + 364, + 530, + 476, + 546, + 500, + 437, + 395, + 388, + 370, + 463, + 376, + 565, + 360, + 663, + 549, + 514, + 422, + 444, + 347, + 385, + 539, + 410, + 442, + 384, + 394, + 480, + 399, + 624 + ], + "voters": [ + 337, + 438, + 459, + 365, + 368, + 488, + 433, + 559, + 445, + 379, + 495, + 452, + 547, + 484, + 544, + 349, + 387, + 160, + 530, + 500, + 388, + 549, + 444, + 385, + 384, + 480, + 624 + ] } }, { - "model": "evaluation.question", - "pk": 477, + "model": "evaluation.evaluation", + "pk": 643, "fields": { - "order": 477, - "questionnaire": 84, - "text_de": "... ist in einem angenehmen Tempo vorangeschritten.", - "text_en": "... had a comfortable pace.", - "allows_additional_textanswers": true, - "type": 10 + "state": 80, + "course": 12, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 82, + "_voter_count": 32, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 337, + 516, + 367, + 459, + 365, + 435, + 429, + 412, + 419, + 528, + 523, + 409, + 566, + 503, + 464, + 414, + 406, + 468, + 424, + 445, + 526, + 495, + 453, + 510, + 494, + 456, + 449, + 490, + 405, + 484, + 506, + 343, + 382, + 386, + 389, + 545, + 421, + 538, + 349, + 508, + 502, + 505, + 450, + 555, + 535, + 342, + 451, + 563, + 377, + 781, + 550, + 463, + 542, + 360, + 554, + 350, + 499, + 549, + 520, + 444, + 411, + 436, + 400, + 551, + 442, + 537, + 772, + 497, + 553, + 479, + 557, + 511, + 404, + 509, + 361, + 399, + 441, + 403, + 430, + 457, + 363, + 469 + ], + "voters": [ + 337, + 459, + 365, + 435, + 429, + 412, + 528, + 424, + 445, + 495, + 494, + 405, + 484, + 389, + 421, + 502, + 505, + 555, + 535, + 350, + 520, + 444, + 400, + 551, + 553, + 479, + 361, + 441, + 403, + 430, + 457, + 469 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0009be0e-4a00-4f89-82b7-9733ff0fe35f", + "model": "evaluation.evaluation", + "pk": 648, "fields": { - "question": 340, - "contribution": 1694, - "answer": 2, - "count": 3 + "state": 80, + "course": 2, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 108, + "_voter_count": 32, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 378, + 423, + 339, + 355, + 438, + 391, + 426, + 477, + 519, + 362, + 368, + 470, + 488, + 813, + 541, + 529, + 338, + 496, + 543, + 558, + 429, + 475, + 461, + 512, + 446, + 811, + 348, + 548, + 373, + 417, + 392, + 433, + 467, + 559, + 513, + 381, + 344, + 379, + 452, + 473, + 547, + 532, + 390, + 439, + 487, + 482, + 507, + 484, + 544, + 458, + 343, + 353, + 382, + 466, + 358, + 380, + 533, + 408, + 369, + 629, + 428, + 413, + 454, + 489, + 359, + 349, + 564, + 387, + 160, + 418, + 340, + 524, + 415, + 364, + 420, + 530, + 476, + 546, + 500, + 437, + 395, + 371, + 402, + 478, + 388, + 370, + 376, + 565, + 562, + 663, + 549, + 514, + 422, + 351, + 444, + 347, + 366, + 385, + 539, + 410, + 384, + 425, + 497, + 394, + 474, + 480, + 399, + 448 + ], + "voters": [ + 339, + 355, + 438, + 519, + 368, + 541, + 475, + 559, + 344, + 452, + 547, + 507, + 484, + 544, + 458, + 353, + 413, + 489, + 349, + 160, + 418, + 364, + 500, + 402, + 388, + 376, + 549, + 444, + 385, + 425, + 480, + 448 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "000e3f79-4319-442d-91de-c10c30867d29", + "model": "evaluation.evaluation", + "pk": 652, "fields": { - "question": 355, - "contribution": 1844, - "answer": 1, - "count": 2 + "state": 80, + "course": 82, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 76, + "_voter_count": 34, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-11", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 339, + 355, + 438, + 391, + 519, + 560, + 368, + 470, + 488, + 529, + 496, + 543, + 558, + 461, + 512, + 407, + 548, + 373, + 392, + 433, + 467, + 559, + 381, + 344, + 379, + 495, + 452, + 547, + 482, + 507, + 484, + 382, + 466, + 358, + 408, + 369, + 413, + 454, + 359, + 349, + 564, + 387, + 160, + 418, + 340, + 524, + 415, + 364, + 530, + 476, + 546, + 500, + 437, + 395, + 388, + 370, + 376, + 562, + 663, + 549, + 514, + 422, + 444, + 347, + 385, + 539, + 410, + 384, + 425, + 497, + 394, + 474, + 480, + 399, + 448, + 624 + ], + "voters": [ + 339, + 355, + 438, + 519, + 368, + 488, + 512, + 392, + 559, + 381, + 344, + 495, + 452, + 547, + 507, + 466, + 564, + 387, + 160, + 418, + 364, + 530, + 500, + 395, + 388, + 376, + 562, + 549, + 539, + 384, + 474, + 480, + 448, + 624 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0021e67b-3b6b-4cb8-a870-2b6beb6c63d2", + "model": "evaluation.evaluation", + "pk": 654, "fields": { - "question": 319, - "contribution": 1612, - "answer": 2, - "count": 13 + "state": 80, + "course": 59, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 26, + "_voter_count": 10, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 438, + 368, + 470, + 813, + 529, + 461, + 407, + 433, + 556, + 513, + 381, + 484, + 458, + 382, + 375, + 369, + 418, + 340, + 476, + 500, + 388, + 376, + 444, + 497, + 474, + 399 + ], + "voters": [ + 438, + 368, + 433, + 484, + 458, + 375, + 418, + 500, + 388, + 376 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "00267cac-fd22-4e33-9624-a5ea3bb02df7", + "model": "evaluation.evaluation", + "pk": 655, "fields": { - "question": 255, - "contribution": 1626, - "answer": 2, - "count": 9 + "state": 80, + "course": 52, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 16, + "_voter_count": 4, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 378, + 426, + 362, + 381, + 494, + 532, + 518, + 413, + 564, + 471, + 485, + 418, + 340, + 371, + 383, + 404 + ], + "voters": [ + 494, + 518, + 485, + 418 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "003384b4-391f-4324-b22e-88067bdb2a82", + "model": "evaluation.evaluation", + "pk": 657, "fields": { - "question": 370, - "contribution": 4223, - "answer": 2, - "count": 2 + "state": 80, + "course": 130, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 9, + "_voter_count": 5, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 372, + 344, + 453, + 476, + 388, + 376, + 385, + 537, + 480 + ], + "voters": [ + 344, + 388, + 376, + 385, + 480 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "003e7772-5cb5-4fab-88c2-a7362fb55b9e", + "model": "evaluation.evaluation", + "pk": 663, "fields": { - "question": 355, - "contribution": 4278, - "answer": 2, - "count": 1 + "state": 80, + "course": 94, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 20, + "_voter_count": 11, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 293, + 558, + 322, + 282, + 174, + 627, + 623, + 379, + 638, + 297, + 319, + 639, + 230, + 636, + 634, + 308, + 278, + 480, + 257, + 331 + ], + "voters": [ + 282, + 627, + 638, + 297, + 319, + 639, + 230, + 308, + 480, + 257, + 331 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0042b862-99ac-4b96-885f-dfe177ef876e", + "model": "evaluation.evaluation", + "pk": 664, "fields": { - "question": 347, - "contribution": 1735, - "answer": 1, - "count": 3 + "state": 80, + "course": 115, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 27, + "_voter_count": 14, + "vote_start_datetime": "2022-07-05T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 355, + 519, + 368, + 435, + 496, + 543, + 412, + 512, + 566, + 406, + 424, + 466, + 358, + 545, + 408, + 369, + 345, + 364, + 546, + 562, + 663, + 520, + 385, + 410, + 772, + 479, + 441 + ], + "voters": [ + 355, + 519, + 368, + 435, + 412, + 512, + 424, + 345, + 364, + 562, + 520, + 385, + 479, + 441 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "00442828-25a6-463d-9d22-a0ff63b56f2a", + "model": "evaluation.evaluation", + "pk": 665, "fields": { - "question": 326, - "contribution": 3680, - "answer": 4, - "count": 3 + "state": 80, + "course": 103, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 17, + "_voter_count": 5, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 246, + 322, + 332, + 258, + 295, + 614, + 2, + 636, + 307, + 313, + 273, + 308, + 47, + 271, + 251, + 621, + 281 + ], + "voters": [ + 332, + 258, + 273, + 621, + 281 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "005c90a3-386d-4312-9357-f8c1f588b28a", + "model": "evaluation.evaluation", + "pk": 666, "fields": { - "question": 366, - "contribution": 3553, - "answer": 3, - "count": 7 + "state": 80, + "course": 35, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 19, + "_voter_count": 9, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-12", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 222, + 282, + 649, + 623, + 295, + 638, + 815, + 276, + 224, + 630, + 229, + 608, + 47, + 569, + 300, + 819, + 278, + 257, + 281 + ], + "voters": [ + 222, + 282, + 638, + 224, + 608, + 569, + 300, + 257, + 281 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0060c318-6846-474b-bb75-574e3e5292d9", + "model": "evaluation.evaluation", + "pk": 669, "fields": { - "question": 323, - "contribution": 912, - "answer": 3, - "count": 6 + "state": 80, + "course": 51, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 28, + "_voter_count": 10, + "vote_start_datetime": "2022-07-05T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 250, + 310, + 240, + 237, + 246, + 322, + 324, + 627, + 332, + 295, + 221, + 297, + 632, + 321, + 815, + 26, + 229, + 48, + 307, + 325, + 248, + 647, + 317, + 309, + 569, + 261, + 323, + 306 + ], + "voters": [ + 310, + 240, + 627, + 332, + 221, + 297, + 26, + 248, + 317, + 261 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0067ba03-c2c6-4ab5-9494-4e8e1ae8f010", + "model": "evaluation.evaluation", + "pk": 675, "fields": { - "question": 345, - "contribution": 1246, - "answer": 2, - "count": 3 + "state": 80, + "course": 86, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 7, + "_voter_count": 5, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 640, + 232, + 628, + 273, + 277, + 819 + ], + "voters": [ + 232, + 628, + 273, + 277 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "00717264-4acb-40ac-81bd-10e9f8738f48", + "model": "evaluation.evaluation", + "pk": 682, "fields": { - "question": 354, - "contribution": 1243, - "answer": 3, - "count": 1 + "state": 80, + "course": 90, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 11, + "_voter_count": 7, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 240, + 638, + 297, + 224, + 304, + 319, + 639, + 241, + 284, + 262, + 281 + ], + "voters": [ + 240, + 638, + 297, + 224, + 319, + 284, + 281 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0084d61a-3dfd-43e7-9d94-bec80418c023", + "model": "evaluation.evaluation", + "pk": 686, "fields": { - "question": 320, - "contribution": 1837, - "answer": 5, - "count": 1 + "state": 80, + "course": 73, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 23, + "_voter_count": 8, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 270, + 234, + 637, + 246, + 231, + 17, + 258, + 622, + 221, + 329, + 815, + 2, + 13, + 29, + 229, + 635, + 662, + 273, + 305, + 47, + 330, + 261 + ], + "voters": [ + 637, + 17, + 258, + 622, + 221, + 13, + 273, + 261 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "009991af-2249-4332-9e06-877903c1e6d2", + "model": "evaluation.evaluation", + "pk": 690, "fields": { - "question": 367, - "contribution": 4138, - "answer": 5, - "count": 13 + "state": 80, + "course": 121, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 10, + "_voter_count": 4, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 461, + 548, + 364, + 500, + 437, + 370, + 663, + 384, + 425, + 480 + ], + "voters": [ + 364, + 500, + 425, + 480 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "009fefa1-9bbe-45b1-a5f2-f50a737a029e", + "model": "evaluation.evaluation", + "pk": 695, "fields": { - "question": 343, - "contribution": 3405, - "answer": 5, - "count": 1 + "state": 80, + "course": 118, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": 3, + "_voter_count": 0, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 74, + 632, + 636 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "00a61c22-ed50-49fa-b91b-3747ec67b586", + "model": "evaluation.evaluation", + "pk": 697, "fields": { - "question": 339, - "contribution": 3372, - "answer": 0, - "count": 2 + "state": 80, + "course": 18, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 7, + "_voter_count": 5, + "vote_start_datetime": "2022-07-06T00:00:00", + "vote_end_date": "2022-07-19", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 245, + 260, + 627, + 230, + 631, + 655, + 326 + ], + "voters": [ + 245, + 627, + 230, + 631, + 326 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "00a92578-482f-4f55-bd7c-48967528b547", + "model": "evaluation.evaluation", + "pk": 698, "fields": { - "question": 326, - "contribution": 1778, - "answer": 1, - "count": 4 + "state": 80, + "course": 75, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 4, + "_voter_count": 2, + "vote_start_datetime": "2022-07-06T00:00:00", + "vote_end_date": "2022-07-19", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 512, + 382, + 376, + 394 + ], + "voters": [ + 376, + 394 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "00c0e409-112a-472f-a836-13b4daf0a10f", + "model": "evaluation.evaluation", + "pk": 702, "fields": { - "question": 320, - "contribution": 3390, - "answer": 5, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "00c1a454-09bf-4cfc-83ca-082022225f84", - "fields": { - "question": 343, - "contribution": 3610, - "answer": 1, - "count": 4 + "state": 80, + "course": 24, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 7, + "_voter_count": 4, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 237, + 332, + 311, + 632, + 20, + 639, + 626 + ], + "voters": [ + 332, + 20, + 639, + 626 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "00c4adad-f85c-48e6-9b02-9da6779bb4c4", + "model": "evaluation.evaluation", + "pk": 709, "fields": { - "question": 260, - "contribution": 3679, - "answer": 5, - "count": 2 + "state": 80, + "course": 55, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 6, + "_voter_count": 3, + "vote_start_datetime": "2022-07-01T00:00:00", + "vote_end_date": "2022-07-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 472, + 811, + 532, + 507, + 533, + 448 + ], + "voters": [ + 472, + 507, + 448 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "00d09b26-2a3b-40b3-9f8d-46e1ff61f808", + "model": "evaluation.evaluation", + "pk": 730, "fields": { - "question": 370, - "contribution": 4270, - "answer": 1, - "count": 1 + "state": 80, + "course": 61, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 17, + "_voter_count": 2, + "vote_start_datetime": "2022-08-17T00:00:00", + "vote_end_date": "2022-08-24", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 293, + 237, + 336, + 332, + 295, + 327, + 297, + 2, + 37, + 636, + 313, + 631, + 308, + 300, + 326, + 626, + 331 + ], + "voters": [ + 308, + 326 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "00d4b3f2-c0b4-47f6-96aa-55ea1594684f", + "model": "evaluation.evaluation", + "pk": 1454, "fields": { - "question": 343, - "contribution": 1661, - "answer": 1, - "count": 4 + "state": 80, + "course": 109, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 72, + "_voter_count": 23, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 337, + 516, + 455, + 459, + 365, + 470, + 435, + 429, + 412, + 528, + 523, + 409, + 566, + 503, + 464, + 414, + 406, + 468, + 424, + 445, + 354, + 453, + 510, + 456, + 449, + 490, + 405, + 386, + 389, + 545, + 679, + 421, + 538, + 349, + 502, + 505, + 450, + 555, + 535, + 342, + 451, + 563, + 500, + 377, + 781, + 550, + 463, + 542, + 360, + 554, + 350, + 520, + 411, + 436, + 400, + 551, + 442, + 680, + 537, + 772, + 553, + 479, + 511, + 404, + 509, + 361, + 399, + 441, + 403, + 430, + 457, + 469 + ], + "voters": [ + 455, + 459, + 365, + 435, + 412, + 453, + 510, + 405, + 389, + 545, + 505, + 450, + 555, + 535, + 500, + 350, + 520, + 436, + 479, + 361, + 403, + 430, + 457 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "00daafad-c88f-4549-b91a-95acb275cd3e", + "model": "evaluation.evaluation", + "pk": 1460, "fields": { - "question": 347, - "contribution": 919, - "answer": 2, - "count": 1 + "state": 80, + "course": 21, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": 2, + "_voter_count": 1, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 500, + 425 + ], + "voters": [ + 500 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "00dcbacf-8c26-4c2e-8ce3-d09e670dae1c", + "model": "evaluation.evaluation", + "pk": 1463, "fields": { - "question": 477, - "contribution": 1681, - "answer": -1, - "count": 1 + "state": 80, + "course": 17, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 13, + "_voter_count": 8, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 461, + 528, + 405, + 342, + 740, + 700, + 520, + 411, + 772, + 553, + 403, + 722, + 469 + ], + "voters": [ + 461, + 528, + 405, + 740, + 700, + 520, + 772, + 403 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "00faaf28-144f-4c8d-b590-edc02f91534b", + "model": "evaluation.evaluation", + "pk": 1468, "fields": { - "question": 341, - "contribution": 3735, - "answer": 4, - "count": 2 + "state": 80, + "course": 3, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": 6, + "_voter_count": 1, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 519, + 548, + 373, + 451, + 664, + 347 + ], + "voters": [ + 664 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0105e5eb-a051-4ce4-ad07-251b080570de", + "model": "evaluation.evaluation", + "pk": 1472, "fields": { - "question": 344, - "contribution": 3609, - "answer": 2, - "count": 1 + "state": 80, + "course": 131, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 58, + "_voter_count": 27, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 459, + 365, + 750, + 529, + 496, + 429, + 528, + 566, + 503, + 392, + 406, + 559, + 424, + 381, + 344, + 445, + 495, + 525, + 510, + 456, + 449, + 490, + 405, + 386, + 389, + 545, + 421, + 538, + 359, + 502, + 505, + 555, + 340, + 535, + 342, + 563, + 377, + 478, + 781, + 550, + 554, + 350, + 520, + 351, + 656, + 436, + 400, + 537, + 772, + 553, + 479, + 557, + 511, + 404, + 399, + 403, + 430, + 624 + ], + "voters": [ + 459, + 365, + 429, + 503, + 559, + 424, + 495, + 510, + 456, + 405, + 389, + 545, + 502, + 505, + 555, + 340, + 535, + 377, + 550, + 350, + 520, + 436, + 772, + 479, + 403, + 430, + 624 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0113b140-859f-4d17-9da7-01da0fb31b37", + "model": "evaluation.evaluation", + "pk": 1474, "fields": { - "question": 338, - "contribution": 1748, - "answer": 4, - "count": 1 + "state": 80, + "course": 97, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 6, + "_voter_count": 3, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 477, + 368, + 541, + 433, + 428, + 460 + ], + "voters": [ + 368, + 541, + 428 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "011a1aeb-4f2a-421a-9e9b-582f757abb6c", + "model": "evaluation.evaluation", + "pk": 1479, "fields": { - "question": 472, - "contribution": 1734, - "answer": 5, - "count": 2 + "state": 80, + "course": 30, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 30, + "_voter_count": 7, + "vote_start_datetime": "2023-04-01T00:00:00", + "vote_end_date": "2023-04-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 337, + 365, + 529, + 429, + 354, + 525, + 510, + 456, + 405, + 386, + 545, + 679, + 538, + 505, + 535, + 342, + 563, + 781, + 542, + 360, + 554, + 350, + 436, + 400, + 553, + 479, + 511, + 404, + 361, + 441 + ], + "voters": [ + 365, + 405, + 545, + 535, + 350, + 479, + 361 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "011ce17e-2383-4515-a8a9-568c723ff8ad", + "model": "evaluation.evaluation", + "pk": 1480, "fields": { - "question": 340, - "contribution": 3785, - "answer": 1, - "count": 2 + "state": 80, + "course": 82, + "name_de": "Automated Analysis of Formal Models", + "name_en": "Automated Analysis of Formal Models", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 19, + "_voter_count": 9, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-17", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 560, + 470, + 488, + 529, + 543, + 414, + 467, + 484, + 160, + 364, + 500, + 437, + 402, + 370, + 497, + 474, + 399, + 460, + 624 + ], + "voters": [ + 560, + 488, + 543, + 467, + 484, + 160, + 364, + 370, + 624 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0124959b-92f2-418b-9a43-91eabb2f7047", + "model": "evaluation.evaluation", + "pk": 1485, "fields": { - "question": 340, - "contribution": 1710, - "answer": 1, - "count": 5 + "state": 80, + "course": 28, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 14, + "_voter_count": 5, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 541, + 381, + 344, + 473, + 428, + 413, + 418, + 340, + 402, + 478, + 351, + 497, + 474, + 480 + ], + "voters": [ + 541, + 473, + 428, + 413, + 340 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0133c407-2d57-4dfe-922f-bd995be72eac", + "model": "evaluation.evaluation", + "pk": 1488, "fields": { - "question": 331, - "contribution": 4046, - "answer": 1, - "count": 2 + "state": 80, + "course": 14, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 80, + "_voter_count": 27, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 667, + 337, + 742, + 516, + 455, + 459, + 365, + 435, + 338, + 412, + 528, + 523, + 409, + 566, + 407, + 503, + 464, + 414, + 406, + 468, + 424, + 445, + 495, + 354, + 453, + 510, + 494, + 456, + 449, + 490, + 405, + 386, + 389, + 545, + 428, + 421, + 538, + 502, + 505, + 450, + 555, + 535, + 342, + 451, + 738, + 563, + 377, + 781, + 550, + 463, + 740, + 542, + 360, + 554, + 350, + 756, + 674, + 520, + 664, + 411, + 436, + 400, + 551, + 442, + 537, + 772, + 553, + 479, + 557, + 511, + 404, + 509, + 361, + 441, + 403, + 430, + 722, + 457, + 624, + 469 + ], + "voters": [ + 667, + 742, + 459, + 435, + 412, + 495, + 453, + 510, + 494, + 405, + 389, + 428, + 505, + 535, + 738, + 740, + 542, + 350, + 756, + 400, + 509, + 361, + 441, + 403, + 430, + 457, + 624 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01374454-570d-4ed8-a3d2-a4c25d047729", + "model": "evaluation.evaluation", + "pk": 1494, "fields": { - "question": 262, - "contribution": 3422, - "answer": 1, - "count": 15 + "state": 80, + "course": 29, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 84, + "_voter_count": 37, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 667, + 732, + 716, + 678, + 727, + 742, + 739, + 694, + 707, + 720, + 685, + 734, + 684, + 743, + 713, + 729, + 687, + 748, + 717, + 719, + 666, + 669, + 718, + 705, + 708, + 711, + 724, + 731, + 682, + 706, + 730, + 699, + 702, + 728, + 696, + 712, + 733, + 710, + 703, + 686, + 714, + 690, + 692, + 672, + 704, + 679, + 681, + 688, + 709, + 735, + 691, + 675, + 715, + 738, + 737, + 698, + 745, + 695, + 683, + 671, + 747, + 741, + 721, + 676, + 740, + 693, + 665, + 700, + 697, + 674, + 673, + 664, + 411, + 744, + 746, + 726, + 725, + 474, + 736, + 723, + 689, + 722, + 701 + ], + "voters": [ + 667, + 732, + 727, + 720, + 734, + 684, + 743, + 669, + 705, + 711, + 724, + 731, + 682, + 699, + 728, + 712, + 733, + 672, + 704, + 709, + 691, + 675, + 715, + 738, + 737, + 745, + 695, + 671, + 741, + 676, + 740, + 693, + 697, + 674, + 664, + 723, + 689 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "013c2916-ba54-44e3-b18f-e57b65159d48", + "model": "evaluation.evaluation", + "pk": 1497, "fields": { - "question": 258, - "contribution": 3390, - "answer": 5, - "count": 1 + "state": 80, + "course": 122, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 17, + "_voter_count": 9, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 393, + 755, + 475, + 640, + 316, + 754, + 513, + 771, + 332, + 275, + 638, + 321, + 253, + 753, + 752, + 531, + 47 + ], + "voters": [ + 475, + 754, + 513, + 771, + 332, + 275, + 638, + 253, + 752 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "013f3e26-d2fb-4ce9-91a8-208ac1d46855", + "model": "evaluation.evaluation", + "pk": 1498, "fields": { - "question": 320, - "contribution": 4138, - "answer": 1, - "count": 6 + "state": 50, + "course": 46, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2023-10-28T19:16:36.113", + "vote_end_date": "2099-09-18", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 293, + 263, + 623, + 625, + 452, + 317, + 265, + 300 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01469592-45e1-4c7a-a0c0-d8e286d87e81", + "model": "evaluation.evaluation", + "pk": 1499, "fields": { - "question": 320, - "contribution": 3683, - "answer": 1, - "count": 2 + "state": 20, + "course": 1, + "name_de": "", + "name_en": "", + "weight": 2, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-08-01T00:00:00", + "vote_end_date": "2024-08-31", + "allow_editors_to_edit": false, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 31, + 477, + 475, + 640, + 513, + 37, + 371, + 819 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01471ea1-ac10-4fd2-b20d-04718931475c", + "model": "evaluation.evaluation", + "pk": 1500, "fields": { - "question": 371, - "contribution": 1812, - "answer": 1, - "count": 2 + "state": 10, + "course": 65, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 225, + 754, + 771, + 759, + 632, + 815, + 26, + 633, + 758, + 756, + 757 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0153e59c-286f-43d3-8d37-3b7a19176728", + "model": "evaluation.evaluation", + "pk": 1502, "fields": { - "question": 475, - "contribution": 918, - "answer": 0, - "count": 4 + "state": 80, + "course": 84, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 14, + "_voter_count": 3, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 233, + 270, + 336, + 623, + 327, + 657, + 489, + 628, + 607, + 313, + 383, + 47, + 569, + 326 + ], + "voters": [ + 657, + 607, + 326 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "015d2d46-1432-4698-9287-5b20a8290f8d", + "model": "evaluation.evaluation", + "pk": 1503, "fields": { - "question": 477, - "contribution": 3680, - "answer": 1, - "count": 9 + "state": 60, + "course": 98, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-05-01T00:00:00", + "vote_end_date": "2024-05-31", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 270, + 324, + 638, + 325, + 273 + ], + "voters": [ + 270 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01692a82-de5b-4c1d-aaad-783f75f9337a", + "model": "evaluation.evaluation", + "pk": 1504, "fields": { - "question": 360, - "contribution": 3929, - "answer": 2, - "count": 7 + "state": 80, + "course": 78, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 11, + "_voter_count": 6, + "vote_start_datetime": "2023-02-04T00:00:00", + "vote_end_date": "2023-02-17", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 223, + 625, + 622, + 773, + 462, + 252, + 751, + 760, + 305, + 300 + ], + "voters": [ + 223, + 625, + 622, + 462, + 760, + 300 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "016d00f9-2738-4041-8940-4a5de5f62a7b", + "model": "evaluation.evaluation", + "pk": 1506, "fields": { - "question": 477, - "contribution": 3680, - "answer": -1, - "count": 1 + "state": 10, + "course": 102, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 627, + 295, + 758, + 621 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "017f2946-0f9a-41f2-9794-a7592f6b1fc8", + "model": "evaluation.evaluation", + "pk": 1507, "fields": { - "question": 354, - "contribution": 1849, - "answer": 4, - "count": 1 + "state": 10, + "course": 63, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 316, + 336, + 327, + 313, + 569, + 306 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0180249f-0822-4b5d-b689-b479fb96ce84", + "model": "evaluation.evaluation", + "pk": 1508, "fields": { - "question": 326, - "contribution": 881, - "answer": 5, - "count": 5 + "state": 80, + "course": 27, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 27, + "_voter_count": 9, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 233, + 293, + 637, + 335, + 754, + 513, + 622, + 518, + 764, + 319, + 628, + 636, + 534, + 758, + 383, + 752, + 308, + 561, + 531, + 47, + 366, + 481, + 264, + 847, + 331, + 281 + ], + "voters": [ + 754, + 513, + 622, + 518, + 758, + 752, + 366, + 264, + 281 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "018fab27-fdb0-4bd4-a218-0170596d361b", + "model": "evaluation.evaluation", + "pk": 1510, "fields": { - "question": 317, - "contribution": 3394, - "answer": 2, - "count": 2 + "state": 80, + "course": 70, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 9, + "_voter_count": 5, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-28", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 310, + 275, + 536, + 249, + 657, + 325, + 756, + 265, + 314 + ], + "voters": [ + 275, + 249, + 657, + 756, + 314 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "019233b0-8574-4b13-af01-78a971c1a267", + "model": "evaluation.evaluation", + "pk": 1513, "fields": { - "question": 338, - "contribution": 804, - "answer": 4, - "count": 2 + "state": 80, + "course": 119, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 25, + "_voter_count": 10, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 293, + 517, + 234, + 637, + 426, + 754, + 771, + 332, + 764, + 276, + 489, + 236, + 26, + 485, + 636, + 522, + 633, + 758, + 498, + 756, + 752, + 308, + 277, + 330, + 314 + ], + "voters": [ + 426, + 754, + 771, + 332, + 522, + 756, + 752, + 277, + 330, + 314 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0193b1d5-ae30-4865-8e94-cade2c965cb6", + "model": "evaluation.evaluation", + "pk": 1514, "fields": { - "question": 356, - "contribution": 3610, - "answer": 1, - "count": 2 + "state": 80, + "course": 120, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 63, + "_voter_count": 20, + "vote_start_datetime": "2023-01-26T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 443, + 293, + 755, + 637, + 223, + 299, + 335, + 446, + 231, + 640, + 279, + 316, + 303, + 627, + 336, + 272, + 625, + 275, + 249, + 327, + 638, + 614, + 773, + 518, + 297, + 657, + 328, + 2, + 319, + 26, + 48, + 628, + 662, + 540, + 534, + 325, + 313, + 371, + 758, + 284, + 498, + 760, + 756, + 308, + 561, + 305, + 531, + 309, + 277, + 757, + 621, + 312, + 264, + 315, + 274, + 847, + 318, + 326, + 626, + 331, + 363 + ], + "voters": [ + 279, + 627, + 272, + 625, + 275, + 249, + 638, + 518, + 328, + 760, + 756, + 561, + 277, + 264, + 315, + 318, + 326, + 626, + 363 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01955f00-d46f-4c53-85e6-bd4a00fc6fe3", + "model": "evaluation.evaluation", + "pk": 1518, "fields": { - "question": 325, - "contribution": 3684, - "answer": 2, - "count": 3 + "state": 80, + "course": 132, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 17, + "_voter_count": 4, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-03-20", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 517, + 324, + 627, + 336, + 327, + 762, + 533, + 2, + 26, + 41, + 485, + 280, + 248, + 357, + 569, + 238, + 331 + ], + "voters": [ + 517, + 627, + 762, + 238 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0196ad61-c0af-4d36-88a6-0b88d1bf4105", + "model": "evaluation.evaluation", + "pk": 1520, "fields": { - "question": 1, - "contribution": 4303, - "answer": 5, - "count": 1 + "state": 80, + "course": 7, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 40, + "_voter_count": 15, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 443, + 270, + 446, + 322, + 279, + 316, + 754, + 513, + 336, + 771, + 536, + 249, + 295, + 327, + 614, + 518, + 639, + 662, + 540, + 534, + 313, + 371, + 758, + 634, + 753, + 248, + 486, + 357, + 752, + 561, + 531, + 366, + 396, + 621, + 323, + 312, + 315, + 274, + 626, + 363 + ], + "voters": [ + 322, + 279, + 771, + 249, + 518, + 639, + 758, + 486, + 752, + 561, + 366, + 323, + 315, + 626, + 363 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0199fccf-72ef-4dc2-8db2-20840cadc4ff", + "model": "evaluation.evaluation", + "pk": 1525, "fields": { - "question": 332, - "contribution": 3592, - "answer": 1, - "count": 4 + "state": 40, + "course": 23, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2099-12-01T00:00:00", + "vote_end_date": "2099-12-31", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 639, + 323, + 312, + 315, + 626 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01a2d416-e881-442d-9673-2495d574732f", + "model": "evaluation.evaluation", + "pk": 1531, "fields": { - "question": 344, - "contribution": 3515, - "answer": 1, - "count": 5 + "state": 80, + "course": 49, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 28, + "_voter_count": 10, + "vote_start_datetime": "2023-02-02T00:00:00", + "vote_end_date": "2023-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 270, + 446, + 536, + 638, + 773, + 518, + 297, + 321, + 462, + 639, + 628, + 607, + 540, + 534, + 634, + 383, + 486, + 357, + 752, + 561, + 531, + 396, + 621, + 481, + 306, + 326, + 626, + 363 + ], + "voters": [ + 638, + 518, + 639, + 607, + 486, + 752, + 561, + 326, + 626, + 363 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01a74b2a-fac9-4c88-8a93-b7eb91f2efb1", + "model": "evaluation.evaluation", + "pk": 1534, "fields": { - "question": 315, - "contribution": 3406, - "answer": 1, - "count": 4 + "state": 80, + "course": 33, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 40, + "_voter_count": 9, + "vote_start_datetime": "2023-02-25T00:00:00", + "vote_end_date": "2023-03-03", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 293, + 263, + 234, + 335, + 231, + 245, + 640, + 316, + 334, + 272, + 625, + 258, + 763, + 622, + 773, + 759, + 762, + 319, + 630, + 29, + 41, + 229, + 37, + 761, + 252, + 636, + 751, + 633, + 631, + 753, + 760, + 752, + 561, + 47, + 757, + 278, + 847, + 281 + ], + "voters": [ + 272, + 625, + 258, + 622, + 762, + 760, + 47, + 281 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01aa9d2e-0a67-4ce5-82bf-468c39d0970d", + "model": "evaluation.evaluation", + "pk": 1540, "fields": { - "question": 355, - "contribution": 4223, - "answer": 3, - "count": 1 + "state": 80, + "course": 114, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 18, + "_voter_count": 11, + "vote_start_datetime": "2023-06-28T00:00:00", + "vote_end_date": "2023-07-04", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 455, + 459, + 429, + 412, + 528, + 503, + 445, + 696, + 490, + 421, + 542, + 664, + 411, + 436, + 400, + 509, + 457, + 469 + ], + "voters": [ + 455, + 429, + 412, + 528, + 503, + 421, + 542, + 664, + 400, + 509, + 457 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01b401e5-e3f5-46eb-b58f-5407607d66a9", + "model": "evaluation.evaluation", + "pk": 1544, "fields": { - "question": 363, - "contribution": 1806, - "answer": 3, - "count": 1 + "state": 30, + "course": 72, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-09-22", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 337, + 365, + 528, + 523, + 666, + 414, + 468, + 649, + 415, + 715, + 563, + 781 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01b5e915-d394-45cd-bf00-d6f7d10f56af", + "model": "evaluation.evaluation", + "pk": 1545, "fields": { - "question": 344, - "contribution": 4129, - "answer": 3, - "count": 4 + "state": 30, + "course": 89, + "name_de": "IT-Recht", + "name_en": "Legal Aspects of Information Technology", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2099-08-01T00:00:00", + "vote_end_date": "2099-08-31", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 494, + 253, + 761, + 540, + 431, + 775, + 396, + 323, + 481, + 776, + 326, + 363 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01cce50b-ceb6-44c5-b62c-b5910db3af74", + "model": "evaluation.evaluation", + "pk": 1547, "fields": { - "question": 326, - "contribution": 1779, - "answer": 5, - "count": 1 + "state": 80, + "course": 58, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 95, + "_voter_count": 25, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-21", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 732, + 739, + 685, + 784, + 435, + 684, + 541, + 729, + 806, + 528, + 786, + 503, + 464, + 677, + 468, + 708, + 424, + 787, + 724, + 682, + 795, + 354, + 525, + 702, + 453, + 696, + 456, + 801, + 703, + 809, + 792, + 790, + 386, + 804, + 690, + 389, + 783, + 545, + 428, + 413, + 421, + 538, + 502, + 793, + 681, + 450, + 791, + 805, + 555, + 535, + 688, + 342, + 789, + 738, + 500, + 377, + 803, + 808, + 671, + 781, + 800, + 785, + 721, + 798, + 797, + 542, + 665, + 700, + 350, + 810, + 799, + 674, + 796, + 794, + 520, + 673, + 664, + 807, + 788, + 400, + 442, + 537, + 772, + 474, + 479, + 557, + 511, + 509, + 361, + 441, + 403, + 430, + 722, + 802, + 469 + ], + "voters": [ + 739, + 684, + 541, + 729, + 724, + 682, + 702, + 696, + 809, + 804, + 389, + 681, + 555, + 535, + 542, + 700, + 350, + 799, + 674, + 664, + 788, + 479, + 361, + 403, + 430 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01cd65cb-658d-4fdf-98b1-d3299e8d3024", + "model": "evaluation.evaluation", + "pk": 1548, "fields": { - "question": 348, - "contribution": 3822, - "answer": 1, - "count": 1 + "state": 80, + "course": 117, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 5, + "_voter_count": 2, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-09-30", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 426, + 372, + 762, + 485, + 569 + ], + "voters": [ + 426, + 372 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01dadeed-c78c-4563-ac88-2a1a2e589526", + "model": "evaluation.evaluation", + "pk": 1549, "fields": { - "question": 359, - "contribution": 1799, - "answer": 3, - "count": 1 + "state": 80, + "course": 22, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 16, + "_voter_count": 8, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-21", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 426, + 322, + 458, + 328, + 485, + 635, + 402, + 631, + 284, + 498, + 357, + 569, + 396, + 776, + 306, + 331 + ], + "voters": [ + 426, + 458, + 328, + 485, + 357, + 569, + 396, + 331 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01dcb031-30a1-4bd0-8c92-23c6ecb468a1", + "model": "evaluation.evaluation", + "pk": 1550, "fields": { - "question": 255, - "contribution": 880, - "answer": 2, - "count": 7 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "01e1a607-4367-4d44-8567-c309fafd802d", - "fields": { - "question": 321, - "contribution": 3679, - "answer": 2, - "count": 8 + "state": 80, + "course": 112, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 12, + "_voter_count": 6, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 337, + 455, + 459, + 365, + 523, + 510, + 783, + 502, + 450, + 463, + 360, + 469 + ], + "voters": [ + 455, + 365, + 510, + 502, + 450, + 469 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01e40d33-c5e1-4514-83ea-f375631903aa", + "model": "evaluation.evaluation", + "pk": 1554, "fields": { - "question": 336, - "contribution": 918, - "answer": 4, - "count": 1 + "state": 80, + "course": 80, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 3, + "_voter_count": 2, + "vote_start_datetime": "2023-09-01T00:00:00", + "vote_end_date": "2023-09-15", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 536, + 305 + ], + "voters": [ + 536, + 305 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01ecff4d-376c-486b-b924-372d5be639dd", + "model": "evaluation.evaluation", + "pk": 1559, "fields": { - "question": 398, - "contribution": 3775, - "answer": 1, - "count": 6 + "state": 80, + "course": 54, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 32, + "_voter_count": 5, + "vote_start_datetime": "2023-08-12T00:00:00", + "vote_end_date": "2023-08-23", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 443, + 233, + 234, + 223, + 477, + 338, + 231, + 811, + 316, + 303, + 427, + 536, + 831, + 494, + 614, + 518, + 759, + 812, + 533, + 375, + 269, + 639, + 522, + 383, + 357, + 752, + 305, + 658, + 251, + 396, + 267, + 306 + ], + "voters": [ + 494, + 518, + 375, + 383, + 251 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01ef3da8-3f6e-4867-b5e8-24b185c08c04", + "model": "evaluation.evaluation", + "pk": 1563, "fields": { - "question": 355, - "contribution": 1849, - "answer": 1, - "count": 1 + "state": 80, + "course": 127, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 5, + "_voter_count": 4, + "vote_start_datetime": "2023-06-24T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 355, + 564, + 418, + 340, + 384 + ], + "voters": [ + 355, + 564, + 418, + 384 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "01f058ee-9b77-4467-b46f-8c4595b60916", + "model": "evaluation.evaluation", + "pk": 1564, "fields": { - "question": 340, - "contribution": 4052, - "answer": 5, - "count": 1 + "state": 80, + "course": 88, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": 4, + "_voter_count": 0, + "vote_start_datetime": "2024-05-01T00:00:00", + "vote_end_date": "2024-05-31", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 637, + 625, + 773, + 300 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "020886dd-9885-4da3-aa01-b667440bb5dc", + "model": "evaluation.evaluation", + "pk": 1568, "fields": { - "question": 348, - "contribution": 3728, - "answer": 4, - "count": 1 + "state": 80, + "course": 64, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 107, + "_voter_count": 26, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-18", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 667, + 337, + 742, + 516, + 455, + 459, + 365, + 470, + 435, + 813, + 541, + 529, + 429, + 412, + 461, + 528, + 523, + 409, + 566, + 407, + 548, + 503, + 464, + 414, + 406, + 468, + 467, + 424, + 381, + 445, + 495, + 354, + 453, + 510, + 473, + 456, + 449, + 490, + 405, + 484, + 382, + 466, + 386, + 389, + 358, + 545, + 369, + 428, + 421, + 538, + 359, + 349, + 502, + 505, + 29, + 450, + 418, + 555, + 340, + 535, + 342, + 476, + 451, + 738, + 563, + 377, + 388, + 781, + 550, + 463, + 542, + 360, + 554, + 350, + 674, + 520, + 351, + 444, + 411, + 385, + 436, + 400, + 551, + 410, + 442, + 537, + 772, + 497, + 553, + 394, + 474, + 479, + 557, + 511, + 404, + 509, + 361, + 399, + 441, + 403, + 430, + 722, + 460, + 448, + 457, + 624, + 469 + ], + "voters": [ + 667, + 742, + 516, + 365, + 429, + 412, + 405, + 389, + 428, + 421, + 505, + 450, + 555, + 535, + 388, + 542, + 350, + 674, + 444, + 436, + 479, + 404, + 361, + 441, + 403, + 430 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0216f120-d48a-4c1d-98e1-9d6b5e43ad4d", + "model": "evaluation.evaluation", + "pk": 1569, "fields": { - "question": 328, - "contribution": 3740, - "answer": 5, - "count": 3 + "state": 80, + "course": 125, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 15, + "_voter_count": 6, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 443, + 755, + 426, + 353, + 540, + 431, + 758, + 486, + 752, + 561, + 658, + 757, + 306, + 326, + 363 + ], + "voters": [ + 755, + 431, + 486, + 752, + 326, + 363 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0219dd64-0b79-4394-a561-269311bcf07e", + "model": "evaluation.evaluation", + "pk": 1570, "fields": { - "question": 340, - "contribution": 858, - "answer": 2, - "count": 1 + "state": 80, + "course": 43, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 82, + "_voter_count": 29, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 667, + 732, + 716, + 678, + 727, + 742, + 739, + 694, + 814, + 707, + 720, + 685, + 734, + 684, + 743, + 713, + 729, + 687, + 748, + 717, + 523, + 719, + 666, + 669, + 718, + 677, + 705, + 708, + 711, + 724, + 731, + 682, + 706, + 730, + 699, + 702, + 728, + 696, + 712, + 733, + 710, + 703, + 714, + 690, + 692, + 672, + 704, + 679, + 681, + 688, + 735, + 691, + 675, + 715, + 738, + 737, + 698, + 745, + 695, + 683, + 671, + 747, + 741, + 721, + 676, + 740, + 693, + 665, + 700, + 697, + 674, + 673, + 664, + 744, + 746, + 726, + 725, + 736, + 723, + 689, + 722, + 701 + ], + "voters": [ + 667, + 678, + 720, + 734, + 684, + 743, + 729, + 666, + 669, + 705, + 711, + 682, + 706, + 728, + 712, + 710, + 692, + 672, + 679, + 691, + 675, + 745, + 676, + 740, + 693, + 700, + 674, + 723, + 701 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "02282efd-7005-4458-aa9e-25d9fbad1b46", + "model": "evaluation.evaluation", + "pk": 1571, "fields": { - "question": 345, - "contribution": 3451, - "answer": 3, - "count": 3 + "state": 80, + "course": 60, + "name_de": "Business Process Compliance", + "name_en": "Business Process Compliance", + "weight": 2, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 26, + "_voter_count": 12, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 694, + 748, + 566, + 666, + 705, + 711, + 731, + 682, + 702, + 510, + 728, + 712, + 703, + 714, + 692, + 704, + 735, + 715, + 698, + 721, + 665, + 697, + 744, + 726, + 725, + 723 + ], + "voters": [ + 666, + 705, + 711, + 682, + 510, + 728, + 712, + 714, + 692, + 704, + 697, + 723 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0241e9d9-ef35-4e5c-9696-4c87050d0f2d", + "model": "evaluation.evaluation", + "pk": 1575, "fields": { - "question": 349, - "contribution": 3606, - "answer": 4, - "count": 2 + "state": 80, + "course": 77, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 9, + "_voter_count": 4, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 459, + 424, + 445, + 386, + 545, + 555, + 535, + 553, + 404 + ], + "voters": [ + 459, + 555, + 535, + 404 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "024a5bec-b2c8-4612-b36a-fa884ebfbb29", + "model": "evaluation.evaluation", + "pk": 1577, "fields": { - "question": 343, - "contribution": 1860, - "answer": 1, - "count": 4 + "state": 80, + "course": 9, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 26, + "_voter_count": 9, + "vote_start_datetime": "2024-05-01T00:00:00", + "vote_end_date": "2024-05-31", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 293, + 393, + 310, + 560, + 338, + 348, + 640, + 372, + 427, + 494, + 759, + 321, + 458, + 280, + 371, + 402, + 522, + 775, + 498, + 317, + 308, + 366, + 757, + 621, + 323, + 314 + ], + "voters": [ + 393, + 310, + 338, + 372, + 494, + 402, + 522, + 775, + 621 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "024c1be5-a961-43eb-a64d-ec2004bc8d15", + "model": "evaluation.evaluation", + "pk": 1580, "fields": { - "question": 475, - "contribution": 3508, - "answer": 0, - "count": 9 + "state": 80, + "course": 91, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 10, + "_voter_count": 5, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 365, + 429, + 407, + 405, + 535, + 563, + 554, + 551, + 442, + 430 + ], + "voters": [ + 365, + 429, + 407, + 535, + 430 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "025765bd-fa97-4d20-a555-13583ea009b9", + "model": "evaluation.evaluation", + "pk": 1583, "fields": { - "question": 338, - "contribution": 858, - "answer": 1, - "count": 7 + "state": 80, + "course": 41, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 9, + "_voter_count": 2, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 743, + 666, + 392, + 414, + 559, + 699, + 733, + 563, + 741 + ], + "voters": [ + 743, + 666 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "025bac60-e12d-4b61-a95d-518a0d20aae8", + "model": "evaluation.evaluation", + "pk": 1585, "fields": { - "question": 357, - "contribution": 1243, - "answer": 4, - "count": 1 + "state": 80, + "course": 99, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": 4, + "_voter_count": 1, + "vote_start_datetime": "2023-06-24T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 344, + 484, + 476, + 388 + ], + "voters": [ + 388 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "02680828-01bb-4951-87ac-b4c7a323d572", + "model": "evaluation.evaluation", + "pk": 1586, "fields": { - "question": 327, - "contribution": 913, - "answer": 4, - "count": 1 + "state": 10, + "course": 67, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 338, + 324, + 638, + 326 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "026904d3-6a81-4484-9436-72bf4334a7a3", + "model": "evaluation.evaluation", + "pk": 1587, "fields": { - "question": 363, - "contribution": 1835, - "answer": 4, - "count": 1 + "state": 80, + "course": 11, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": 10, + "_voter_count": 1, + "vote_start_datetime": "2023-07-12T00:00:00", + "vote_end_date": "2023-07-29", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 625, + 311, + 638, + 761, + 252, + 751, + 634, + 753, + 312, + 281 + ], + "voters": [ + 311 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "026ccd66-d402-4547-8a8c-f74469c5305d", + "model": "evaluation.evaluation", + "pk": 1595, "fields": { - "question": 361, - "contribution": 3649, - "answer": 4, - "count": 1 + "state": 80, + "course": 96, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 6, + "_voter_count": 6, + "vote_start_datetime": "2023-06-24T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 496, + 381, + 452, + 482, + 413, + 444 + ], + "voters": [ + 496, + 381, + 452, + 482, + 413, + 444 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "027e7fe3-9a7e-47b1-8013-c14a93ff7acb", + "model": "evaluation.evaluation", + "pk": 1598, "fields": { - "question": 259, - "contribution": 4138, - "answer": 2, - "count": 10 + "state": 80, + "course": 138, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 5, + "_voter_count": 3, + "vote_start_datetime": "2023-06-24T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 467, + 547, + 524, + 497, + 474 + ], + "voters": [ + 547, + 524, + 474 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0288d39d-be9d-4c32-85a7-d8863142329c", + "model": "evaluation.evaluation", + "pk": 1600, "fields": { - "question": 327, - "contribution": 881, - "answer": 5, - "count": 7 + "state": 60, + "course": 40, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-05-01T00:00:00", + "vote_end_date": "2024-05-31", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 446, + 427, + 831, + 297, + 812, + 375, + 534, + 371, + 284, + 561 + ], + "voters": [ + 446, + 831, + 534 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "02907933-7970-4993-9e53-eb3d43a40139", + "model": "evaluation.evaluation", + "pk": 1603, "fields": { - "question": 406, - "contribution": 3984, - "answer": 2, - "count": 1 + "state": 10, + "course": 57, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 658 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "029ae302-6448-4d94-8956-3379266f0705", + "model": "evaluation.evaluation", + "pk": 1605, "fields": { - "question": 337, - "contribution": 1200, - "answer": 3, - "count": 4 + "state": 80, + "course": 39, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 6, + "_voter_count": 3, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 459, + 505, + 342, + 436, + 511, + 403 + ], + "voters": [ + 505, + 436, + 403 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "029ca151-a1ec-42cd-8e72-f6ccad0a1413", + "model": "evaluation.evaluation", + "pk": 1610, "fields": { - "question": 477, - "contribution": 1777, - "answer": -2, - "count": 2 + "state": 10, + "course": 81, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 755, + 637, + 446, + 372, + 556, + 513, + 627, + 427, + 311, + 622, + 614, + 762, + 353, + 253, + 462, + 325, + 634, + 248, + 330, + 757, + 396, + 481, + 314 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "02a51d56-64eb-499f-91be-bf59cb40bf51", + "model": "evaluation.evaluation", + "pk": 1613, "fields": { - "question": 331, - "contribution": 3679, - "answer": 0, - "count": 17 + "state": 10, + "course": 93, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": 2, + "_voter_count": 0, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 473, + 819 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "02a97330-852a-4465-b431-d13d2558476c", + "model": "evaluation.evaluation", + "pk": 1614, "fields": { - "question": 360, - "contribution": 1806, - "answer": 1, - "count": 2 + "state": 40, + "course": 47, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2099-12-01T00:00:00", + "vote_end_date": "2099-12-31", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 354, + 452 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "02b92c4f-c00f-4d8c-8a2f-826c0aac0d08", + "model": "evaluation.evaluation", + "pk": 1618, "fields": { - "question": 476, - "contribution": 3406, - "answer": -1, - "count": 1 + "state": 80, + "course": 105, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 9, + "_voter_count": 4, + "vote_start_datetime": "2023-07-01T00:00:00", + "vote_end_date": "2023-07-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 293, + 223, + 754, + 622, + 759, + 761, + 636, + 751, + 760 + ], + "voters": [ + 754, + 622, + 636, + 760 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "02c28d9b-df4d-476d-970e-682aadbbfd66", + "model": "evaluation.evaluation", + "pk": 1624, "fields": { - "question": 377, - "contribution": 3781, - "answer": 2, - "count": 2 + "state": 80, + "course": 104, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 3, + "_voter_count": 2, + "vote_start_datetime": "2024-03-31T00:00:00", + "vote_end_date": "2024-04-06", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 446, + 754, + 561 + ], + "voters": [ + 754, + 561 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "02c3c4c5-bf72-4ca0-acc0-68627f4836d8", + "model": "evaluation.evaluation", + "pk": 1625, "fields": { - "question": 403, - "contribution": 3646, - "answer": 4, - "count": 2 + "state": 80, + "course": 122, + "name_de": "Piggyback Profiling: Metadata for Query Results", + "name_en": "Piggyback Profiling: Metadata for Query Results", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": 4, + "_voter_count": 1, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 863, + 461, + 663, + 499 + ], + "voters": [ + 663 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "02c95797-814a-4051-9ee0-089e8a220475", + "model": "evaluation.evaluation", + "pk": 1629, "fields": { - "question": 346, - "contribution": 887, - "answer": 1, - "count": 6 + "state": 70, + "course": 129, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-03-31T00:00:00", + "vote_end_date": "2024-04-06", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 338, + 494, + 751, + 753 + ], + "voters": [ + 338, + 494 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "02e06e21-45a8-4b63-b75a-79b05586e3dc", + "model": "evaluation.evaluation", + "pk": 1634, "fields": { - "question": 331, - "contribution": 4138, - "answer": 2, - "count": 6 + "state": 50, + "course": 8, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2099-05-08", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 452, + 505, + 555 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "02f9fd92-6f80-458c-affb-e8fcafd59e36", + "model": "evaluation.evaluation", + "pk": 1638, "fields": { - "question": 329, - "contribution": 823, - "answer": 2, - "count": 2 + "state": 80, + "course": 139, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 11, + "_voter_count": 6, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 459, + 684, + 414, + 354, + 525, + 672, + 563, + 781, + 360, + 736, + 361 + ], + "voters": [ + 459, + 684, + 414, + 672, + 563, + 361 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "02fb10ca-ddbe-4432-9330-af1cccd0ec4a", + "model": "evaluation.evaluation", + "pk": 1641, "fields": { - "question": 315, - "contribution": 1680, - "answer": 1, - "count": 1 + "state": 80, + "course": 107, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 6, + "_voter_count": 3, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 443, + 560, + 494, + 439, + 431, + 440 + ], + "voters": [ + 494, + 439, + 431 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0317220d-b476-4072-b67c-400f7909207c", + "model": "evaluation.evaluation", + "pk": 1646, "fields": { - "question": 255, - "contribution": 3390, - "answer": 3, - "count": 7 + "state": 10, + "course": 142, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": 4, + "_voter_count": 0, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 354, + 449, + 405, + 550 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0317f6b4-75eb-4ce1-9d6d-5ddf829f8415", + "model": "evaluation.evaluation", + "pk": 1647, "fields": { - "question": 335, - "contribution": 3881, - "answer": 1, - "count": 7 + "state": 80, + "course": 48, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 6, + "_voter_count": 3, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 378, + 368, + 536, + 370, + 631, + 357 + ], + "voters": [ + 378, + 368, + 370 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "031b3eb7-dbec-49fe-8e76-237044116074", + "model": "evaluation.evaluation", + "pk": 1648, "fields": { - "question": 255, - "contribution": 1634, - "answer": 3, - "count": 9 + "state": 80, + "course": 19, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 7, + "_voter_count": 4, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-16", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 378, + 368, + 475, + 848, + 635, + 761, + 531 + ], + "voters": [ + 378, + 368, + 848, + 531 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0320a4f6-7455-4f4c-89cf-308dfcb1b5b0", + "model": "evaluation.evaluation", + "pk": 1649, "fields": { - "question": 348, - "contribution": 3515, - "answer": 1, - "count": 10 + "state": 80, + "course": 135, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": 3, + "_voter_count": 1, + "vote_start_datetime": "2024-03-31T00:00:00", + "vote_end_date": "2024-04-06", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 640, + 536, + 631 + ], + "voters": [ + 536 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "032ab558-28b1-4bd2-bf74-ca4010a5a744", + "model": "evaluation.evaluation", + "pk": 1651, "fields": { - "question": 472, - "contribution": 822, - "answer": 1, - "count": 6 + "state": 80, + "course": 137, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 38, + "_voter_count": 17, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 732, + 739, + 435, + 729, + 717, + 528, + 409, + 566, + 503, + 677, + 424, + 724, + 682, + 525, + 702, + 696, + 703, + 386, + 502, + 450, + 688, + 342, + 709, + 738, + 377, + 542, + 665, + 350, + 674, + 673, + 664, + 400, + 557, + 509, + 441, + 430, + 722, + 469 + ], + "voters": [ + 739, + 729, + 528, + 566, + 682, + 696, + 709, + 542, + 665, + 350, + 674, + 664, + 400, + 441, + 430, + 722, + 469 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "033ab346-5ac8-4b30-ac70-60229e49f2ef", + "model": "evaluation.evaluation", + "pk": 1653, "fields": { - "question": 317, - "contribution": 3679, - "answer": 1, - "count": 7 + "state": 10, + "course": 71, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 455, + 523, + 350, + 557 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0343b5b8-ea6c-48e6-86d9-747571c33f56", + "model": "evaluation.evaluation", + "pk": 1655, "fields": { - "question": 341, - "contribution": 3486, - "answer": 2, - "count": 6 + "state": 80, + "course": 79, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": 4, + "_voter_count": 1, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 372, + 328, + 422, + 306 + ], + "voters": [ + 372 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "03463d1f-67a9-4eca-a51d-b73ae8dccbad", + "model": "evaluation.evaluation", + "pk": 1656, "fields": { - "question": 367, - "contribution": 4118, - "answer": 3, - "count": 2 + "state": 80, + "course": 74, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 6, + "_voter_count": 3, + "vote_start_datetime": "2024-03-31T00:00:00", + "vote_end_date": "2024-04-06", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 426, + 372, + 831, + 485, + 492, + 757 + ], + "voters": [ + 426, + 372, + 485 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "03483ba7-3162-43a6-82a7-2971e9874692", + "model": "evaluation.evaluation", + "pk": 1657, "fields": { - "question": 360, - "contribution": 3921, - "answer": 4, - "count": 1 + "state": 80, + "course": 108, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": 10, + "_voter_count": 1, + "vote_start_datetime": "2024-02-11T00:00:00", + "vote_end_date": "2024-02-16", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 381, + 536, + 552, + 762, + 485, + 418, + 631, + 775, + 481, + 267 + ], + "voters": [ + 762 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "035b359c-6cbd-4006-8bc9-fc9afebe149f", + "model": "evaluation.evaluation", + "pk": 1660, "fields": { - "question": 462, - "contribution": 4283, - "answer": 3, - "count": 2 + "state": 80, + "course": 85, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 20, + "_voter_count": 11, + "vote_start_datetime": "2024-01-28T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 678, + 734, + 687, + 523, + 409, + 666, + 464, + 718, + 414, + 706, + 495, + 702, + 712, + 505, + 563, + 740, + 697, + 537, + 725, + 511 + ], + "voters": [ + 678, + 734, + 666, + 414, + 706, + 495, + 712, + 505, + 563, + 740, + 511 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0367eaab-b1c2-43ed-a0a7-0c7896735fe6", + "model": "evaluation.evaluation", + "pk": 1663, "fields": { - "question": 476, - "contribution": 3679, - "answer": 1, - "count": 2 + "state": 80, + "course": 66, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 24, + "_voter_count": 8, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 378, + 434, + 438, + 501, + 427, + 272, + 374, + 493, + 311, + 759, + 552, + 762, + 382, + 341, + 508, + 252, + 751, + 923, + 752, + 531, + 422, + 757, + 267 + ], + "voters": [ + 378, + 438, + 272, + 374, + 311, + 762, + 508, + 531 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "036c32ca-ebc1-4bb5-91e6-10879dfa2e7f", + "model": "evaluation.evaluation", + "pk": 1668, "fields": { - "question": 346, - "contribution": 1661, - "answer": 2, - "count": 1 + "state": 10, + "course": 56, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 414, + 421, + 377, + 442, + 537, + 479 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "037d0887-2435-4ae9-82bd-20099d2b134b", + "model": "evaluation.evaluation", + "pk": 1673, "fields": { - "question": 344, - "contribution": 3939, - "answer": 4, - "count": 1 + "state": 50, + "course": 140, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-06-01T00:00:00", + "vote_end_date": "2099-12-31", + "allow_editors_to_edit": false, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 459, + 412, + 445, + 452, + 453, + 490, + 545, + 323, + 457 + ], + "voters": [ + 459, + 412, + 545 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0385fa33-bca8-41d6-89c8-4b348e9f86cf", + "model": "evaluation.evaluation", + "pk": 1679, "fields": { - "question": 356, - "contribution": 1786, - "answer": 2, - "count": 3 + "state": 80, + "course": 32, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 84, + "_voter_count": 51, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-05", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 846, + 851, + 919, + 854, + 837, + 862, + 875, + 893, + 874, + 889, + 860, + 909, + 873, + 855, + 849, + 883, + 910, + 878, + 930, + 887, + 877, + 908, + 920, + 867, + 857, + 703, + 912, + 917, + 866, + 905, + 672, + 916, + 921, + 901, + 838, + 894, + 869, + 892, + 903, + 841, + 898, + 911, + 871, + 881, + 884, + 907, + 861, + 902, + 870, + 876, + 890, + 845, + 914, + 913, + 885, + 918, + 700, + 872, + 891, + 839, + 904, + 858, + 900, + 879, + 896, + 897, + 899, + 882, + 843, + 880, + 852, + 895, + 850, + 886, + 842, + 888, + 922, + 868, + 915, + 853, + 844, + 840, + 859, + 906 + ], + "voters": [ + 846, + 851, + 854, + 837, + 862, + 875, + 893, + 874, + 889, + 873, + 849, + 910, + 878, + 887, + 920, + 912, + 917, + 866, + 905, + 672, + 916, + 838, + 894, + 892, + 841, + 911, + 881, + 907, + 870, + 890, + 845, + 914, + 913, + 891, + 839, + 858, + 900, + 896, + 882, + 843, + 852, + 895, + 886, + 842, + 888, + 868, + 915, + 853, + 844, + 840, + 859 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "038dd66b-47aa-4ee5-8db5-c25209394e9b", + "model": "evaluation.evaluation", + "pk": 1682, "fields": { - "question": 355, - "contribution": 1189, - "answer": 2, - "count": 3 + "state": 50, + "course": 111, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-01-01T00:00:00", + "vote_end_date": "2099-12-31", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 528, + 386, + 411, + 441 + ], + "voters": [ + 528, + 386, + 411 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "03915d8d-a684-40b9-b093-68ec03e404ce", + "model": "evaluation.evaluation", + "pk": 1683, "fields": { - "question": 338, - "contribution": 1748, - "answer": 3, - "count": 1 + "state": 10, + "course": 124, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 503, + 456, + 400, + 404, + 403 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "039249e3-2b3d-4339-90cd-966e628a79ab", + "model": "evaluation.evaluation", + "pk": 1684, "fields": { - "question": 337, - "contribution": 862, - "answer": 1, - "count": 4 + "state": 80, + "course": 68, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 19, + "_voter_count": 10, + "vote_start_datetime": "2024-03-07T00:00:00", + "vote_end_date": "2024-03-16", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 378, + 379, + 374, + 452, + 831, + 833, + 465, + 508, + 269, + 628, + 415, + 364, + 751, + 431, + 923, + 499, + 621, + 384, + 480 + ], + "voters": [ + 378, + 379, + 452, + 833, + 508, + 269, + 415, + 364, + 384, + 480 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "039d5f06-18dd-4f2e-9adf-598a7b716fea", + "model": "evaluation.evaluation", + "pk": 1687, "fields": { - "question": 378, - "contribution": 3775, - "answer": 2, - "count": 3 + "state": 80, + "course": 42, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 81, + "_voter_count": 28, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-07", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 667, + 732, + 337, + 716, + 678, + 727, + 742, + 739, + 694, + 707, + 720, + 734, + 684, + 743, + 713, + 729, + 687, + 748, + 717, + 523, + 666, + 669, + 718, + 677, + 705, + 708, + 711, + 724, + 731, + 682, + 931, + 706, + 354, + 730, + 699, + 702, + 696, + 712, + 733, + 710, + 703, + 714, + 690, + 692, + 672, + 704, + 679, + 681, + 688, + 735, + 691, + 675, + 715, + 738, + 737, + 698, + 745, + 695, + 683, + 671, + 747, + 741, + 721, + 676, + 740, + 693, + 665, + 700, + 697, + 674, + 673, + 664, + 744, + 746, + 726, + 725, + 736, + 723, + 689, + 722, + 701 + ], + "voters": [ + 667, + 678, + 684, + 729, + 748, + 666, + 669, + 705, + 708, + 711, + 706, + 712, + 692, + 672, + 704, + 675, + 715, + 737, + 745, + 676, + 740, + 665, + 700, + 674, + 744, + 723, + 722, + 701 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "039f18be-d9b9-4c90-9535-fac04222e2b4", + "model": "evaluation.evaluation", + "pk": 1693, "fields": { - "question": 367, - "contribution": 3683, - "answer": 2, - "count": 1 + "state": 20, + "course": 92, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-08-01T00:00:00", + "vote_end_date": "2024-08-31", + "allow_editors_to_edit": false, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 406, + 773, + 564, + 709, + 776, + 480, + 399 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "03b54971-759f-4a82-98f1-ecf71b8f88d6", + "model": "evaluation.evaluation", + "pk": 1694, "fields": { - "question": 316, - "contribution": 3474, - "answer": 2, - "count": 5 + "state": 50, + "course": 89, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-06-01T00:00:00", + "vote_end_date": "2099-12-31", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 640, + 354, + 473, + 323 + ], + "voters": [ + 640 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "03c4e6a2-50d8-4017-9091-2c122dee9e7d", + "model": "evaluation.evaluation", + "pk": 1695, "fields": { - "question": 329, - "contribution": 3859, - "answer": 1, - "count": 25 + "state": 80, + "course": 106, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 48, + "_voter_count": 17, + "vote_start_datetime": "2024-02-04T00:00:00", + "vote_end_date": "2024-02-16", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 443, + 434, + 393, + 517, + 755, + 391, + 501, + 519, + 368, + 512, + 373, + 427, + 344, + 379, + 848, + 398, + 536, + 493, + 473, + 439, + 458, + 382, + 466, + 369, + 489, + 349, + 485, + 635, + 415, + 540, + 546, + 431, + 371, + 775, + 376, + 498, + 926, + 440, + 357, + 561, + 531, + 422, + 444, + 385, + 481, + 480, + 847, + 363 + ], + "voters": [ + 368, + 512, + 373, + 344, + 379, + 848, + 473, + 458, + 466, + 415, + 431, + 775, + 531, + 444, + 385, + 481, + 480 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "03c7892c-71c0-4d1d-883a-c048b23db352", + "model": "evaluation.evaluation", + "pk": 1696, "fields": { - "question": 428, - "contribution": 4205, - "answer": 1, - "count": 1 + "state": 80, + "course": 110, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 18, + "_voter_count": 8, + "vote_start_datetime": "2024-02-05T00:00:00", + "vote_end_date": "2024-02-12", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 519, + 560, + 368, + 475, + 461, + 373, + 473, + 439, + 341, + 833, + 834, + 492, + 486, + 440, + 663, + 422, + 832, + 928 + ], + "voters": [ + 368, + 373, + 473, + 834, + 492, + 486, + 663, + 832 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "03c8cd90-9647-4544-8a59-65bd22b29432", + "model": "evaluation.evaluation", + "pk": 1697, "fields": { - "question": 344, - "contribution": 4191, - "answer": 3, - "count": 2 + "state": 80, + "course": 36, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 76, + "_voter_count": 32, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 732, + 337, + 716, + 678, + 727, + 739, + 694, + 707, + 720, + 734, + 684, + 743, + 729, + 687, + 748, + 717, + 523, + 666, + 669, + 718, + 677, + 705, + 708, + 711, + 724, + 731, + 682, + 445, + 706, + 730, + 525, + 699, + 702, + 728, + 696, + 712, + 733, + 710, + 703, + 714, + 690, + 692, + 672, + 704, + 545, + 681, + 688, + 709, + 735, + 691, + 675, + 715, + 737, + 698, + 745, + 695, + 683, + 671, + 747, + 741, + 721, + 676, + 693, + 542, + 665, + 700, + 697, + 673, + 744, + 882, + 726, + 725, + 736, + 723, + 689, + 701 + ], + "voters": [ + 678, + 734, + 684, + 729, + 666, + 669, + 705, + 711, + 682, + 445, + 706, + 696, + 712, + 692, + 672, + 704, + 681, + 735, + 691, + 675, + 715, + 737, + 745, + 671, + 741, + 676, + 693, + 542, + 665, + 744, + 723, + 701 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "03dbde73-efc4-4b69-aedc-e7b83edd737e", + "model": "evaluation.evaluation", + "pk": 1698, "fields": { - "question": 472, - "contribution": 3372, - "answer": 5, - "count": 3 + "state": 80, + "course": 101, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 12, + "_voter_count": 5, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 739, + 707, + 874, + 849, + 706, + 408, + 681, + 683, + 781, + 890, + 839, + 689 + ], + "voters": [ + 874, + 849, + 706, + 681, + 839 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "03e5e231-49d3-4069-9ba0-8b116c97782f", + "model": "evaluation.evaluation", + "pk": 1701, "fields": { - "question": 376, - "contribution": 3711, - "answer": 1, - "count": 4 + "state": 80, + "course": 10, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 28, + "_voter_count": 16, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": false, + "participants": [ + 519, + 560, + 512, + 372, + 494, + 473, + 295, + 439, + 552, + 458, + 375, + 833, + 564, + 492, + 522, + 370, + 925, + 498, + 926, + 383, + 486, + 440, + 752, + 561, + 819, + 396, + 384, + 481 + ], + "voters": [ + 519, + 512, + 372, + 494, + 473, + 439, + 375, + 564, + 492, + 522, + 370, + 383, + 486, + 561, + 384, + 481 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "03efaa80-6f01-4e78-b5e0-59e5b2041972", + "model": "evaluation.evaluation", + "pk": 1706, "fields": { - "question": 322, - "contribution": 4118, - "answer": 2, - "count": 1 + "state": 80, + "course": 25, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 81, + "_voter_count": 39, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-10", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 846, + 851, + 919, + 854, + 837, + 862, + 875, + 893, + 874, + 889, + 860, + 909, + 873, + 677, + 855, + 849, + 883, + 910, + 878, + 887, + 877, + 908, + 920, + 867, + 857, + 912, + 917, + 866, + 905, + 916, + 921, + 901, + 838, + 894, + 869, + 892, + 903, + 841, + 898, + 911, + 871, + 881, + 884, + 907, + 861, + 902, + 870, + 876, + 890, + 845, + 914, + 913, + 885, + 918, + 872, + 891, + 839, + 904, + 858, + 900, + 879, + 896, + 897, + 899, + 882, + 843, + 880, + 852, + 895, + 850, + 886, + 842, + 888, + 922, + 868, + 915, + 853, + 844, + 840, + 859, + 906 + ], + "voters": [ + 846, + 851, + 854, + 837, + 862, + 875, + 889, + 873, + 849, + 878, + 887, + 857, + 917, + 905, + 916, + 838, + 892, + 911, + 881, + 907, + 845, + 914, + 913, + 885, + 891, + 839, + 858, + 896, + 899, + 843, + 852, + 895, + 886, + 842, + 888, + 868, + 853, + 844, + 859 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04029d43-9e29-4cfa-b21c-c46773d2c385", + "model": "evaluation.evaluation", + "pk": 1707, "fields": { - "question": 367, - "contribution": 4084, - "answer": 1, - "count": 22 + "state": 80, + "course": 15, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 48, + "_voter_count": 9, + "vote_start_datetime": "2024-04-06T00:00:00", + "vote_end_date": "2024-04-13", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 732, + 716, + 678, + 727, + 516, + 684, + 713, + 717, + 409, + 566, + 406, + 677, + 708, + 731, + 682, + 730, + 699, + 702, + 696, + 712, + 733, + 703, + 690, + 389, + 681, + 688, + 735, + 691, + 675, + 451, + 715, + 738, + 698, + 745, + 695, + 683, + 721, + 676, + 693, + 665, + 700, + 554, + 674, + 746, + 551, + 442, + 736, + 557 + ], + "voters": [ + 406, + 682, + 712, + 389, + 735, + 691, + 675, + 715, + 665 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "040bc817-c259-495e-8f44-fec661d125ff", + "model": "evaluation.evaluation", + "pk": 1710, "fields": { - "question": 255, - "contribution": 3739, - "answer": 2, - "count": 6 + "state": 80, + "course": 133, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 80, + "_voter_count": 42, + "vote_start_datetime": "2024-02-01T00:00:00", + "vote_end_date": "2024-02-14", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 846, + 851, + 919, + 854, + 837, + 862, + 875, + 893, + 874, + 889, + 860, + 909, + 873, + 855, + 849, + 883, + 910, + 878, + 930, + 887, + 877, + 908, + 920, + 867, + 857, + 912, + 917, + 866, + 905, + 916, + 921, + 901, + 838, + 894, + 869, + 892, + 903, + 841, + 898, + 911, + 871, + 881, + 884, + 907, + 861, + 902, + 870, + 876, + 890, + 845, + 913, + 885, + 918, + 872, + 891, + 839, + 904, + 858, + 900, + 879, + 896, + 897, + 899, + 882, + 843, + 880, + 852, + 895, + 850, + 886, + 842, + 888, + 922, + 868, + 915, + 853, + 844, + 840, + 859, + 906 + ], + "voters": [ + 846, + 851, + 837, + 862, + 875, + 893, + 874, + 889, + 873, + 849, + 910, + 878, + 887, + 912, + 917, + 905, + 916, + 838, + 894, + 892, + 911, + 881, + 907, + 870, + 845, + 913, + 885, + 891, + 839, + 858, + 900, + 896, + 899, + 843, + 852, + 895, + 886, + 842, + 888, + 915, + 853, + 844 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0425574f-a6a0-4515-ab7b-f42935edb28e", + "model": "evaluation.evaluation", + "pk": 1712, "fields": { - "question": 317, - "contribution": 3721, - "answer": 3, - "count": 2 + "state": 20, + "course": 45, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": false, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": null, + "_voter_count": null, + "vote_start_datetime": "2024-08-01T00:00:00", + "vote_end_date": "2024-08-31", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [ + 729, + 452, + 709, + 333, + 563, + 262, + 34 + ], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0429ff1e-34b8-4e18-9b98-8cd13630b4a6", + "model": "evaluation.evaluation", + "pk": 1713, "fields": { - "question": 327, - "contribution": 3463, - "answer": 3, - "count": 1 + "state": 80, + "course": 136, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": true, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 31, + "_voter_count": 31, + "vote_start_datetime": "2023-11-01T00:00:00", + "vote_end_date": "2023-11-01", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": false, + "participants": [], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "042aaf42-eea9-4a06-a001-03d06e3b96fb", + "model": "evaluation.evaluation", + "pk": 1714, "fields": { - "question": 475, - "contribution": 3372, - "answer": -2, - "count": 1 + "state": 70, + "course": 31, + "name_de": "", + "name_en": "", + "weight": 1, + "is_single_result": true, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": true, + "_participant_count": 50, + "_voter_count": 50, + "vote_start_datetime": "2023-10-01T00:00:00", + "vote_end_date": "2023-10-01", + "allow_editors_to_edit": false, + "wait_for_grade_upload_before_publishing": false, + "participants": [], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "042caf00-ffce-463a-9fae-c5a6e7a67a8b", + "model": "evaluation.evaluation", + "pk": 1715, "fields": { - "question": 317, - "contribution": 1837, - "answer": 2, - "count": 11 + "state": 80, + "course": 1, + "name_de": "CG quick", + "name_en": "CG quick", + "weight": 1, + "is_single_result": true, + "is_rewarded": true, + "is_midterm_evaluation": false, + "can_publish_text_results": false, + "_participant_count": 23, + "_voter_count": 23, + "vote_start_datetime": "2024-06-20T00:00:00", + "vote_end_date": "2024-06-20", + "allow_editors_to_edit": true, + "wait_for_grade_upload_before_publishing": true, + "participants": [], + "voters": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "042e4544-5a37-40e8-9e9a-313b4d91263e", + "model": "evaluation.contribution", + "pk": 89, "fields": { - "question": 326, - "contribution": 3722, - "answer": 3, - "count": 5 + "evaluation": 34, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04326379-cf2c-4871-aae7-6a460b4f7ca9", + "model": "evaluation.contribution", + "pk": 90, "fields": { - "question": 345, - "contribution": 1809, - "answer": 1, - "count": 7 + "evaluation": 34, + "contributor": 89, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 107 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0435ecb7-0068-4e49-8671-b471b957cbb2", + "model": "evaluation.contribution", + "pk": 788, "fields": { - "question": 344, - "contribution": 1203, - "answer": 2, - "count": 2 + "evaluation": 310, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "043a4708-58ac-4a9e-83d9-99c67814b1ed", + "model": "evaluation.contribution", + "pk": 789, "fields": { - "question": 316, - "contribution": 4128, - "answer": 1, - "count": 1 + "evaluation": 310, + "contributor": 105, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 90, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0443756e-fc2d-4b05-b0d1-91cb2cb7407a", + "model": "evaluation.contribution", + "pk": 790, "fields": { - "question": 255, - "contribution": 3390, - "answer": 2, - "count": 6 + "evaluation": 311, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 88, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04437b12-1f00-4370-9500-411f66942209", + "model": "evaluation.contribution", + "pk": 791, "fields": { - "question": 260, - "contribution": 880, - "answer": 4, - "count": 3 + "evaluation": 311, + "contributor": 105, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04446c86-1cf6-4360-831d-c81678cff501", + "model": "evaluation.contribution", + "pk": 804, "fields": { - "question": 384, - "contribution": 3775, - "answer": 2, - "count": 1 + "evaluation": 318, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04452003-d86e-4721-a5a6-a474b2c6003e", + "model": "evaluation.contribution", + "pk": 805, "fields": { - "question": 329, - "contribution": 885, - "answer": 1, - "count": 31 + "evaluation": 318, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04476804-2e3f-45e7-8935-589279a2b705", + "model": "evaluation.contribution", + "pk": 822, "fields": { - "question": 258, - "contribution": 3462, - "answer": 1, - "count": 2 + "evaluation": 327, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "044f7e63-e020-4443-b977-48a8264c146c", + "model": "evaluation.contribution", + "pk": 823, "fields": { - "question": 262, - "contribution": 3422, - "answer": 2, - "count": 4 + "evaluation": 327, + "contributor": 291, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "046765ae-f7f0-4241-b088-fb6cad1bdb40", + "model": "evaluation.contribution", + "pk": 826, "fields": { - "question": 347, - "contribution": 4188, - "answer": 1, - "count": 5 + "evaluation": 329, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0468efc6-3465-4626-8859-7fe5a2fc25a8", + "model": "evaluation.contribution", + "pk": 827, "fields": { - "question": 322, - "contribution": 4046, - "answer": 1, - "count": 6 + "evaluation": 329, + "contributor": 70, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04710f27-043c-4909-adbd-d63eeb6bb78e", + "model": "evaluation.contribution", + "pk": 832, "fields": { - "question": 319, - "contribution": 3390, - "answer": 5, - "count": 3 + "evaluation": 332, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0472892d-679f-44f7-b5c5-91a985ed1b01", + "model": "evaluation.contribution", + "pk": 833, "fields": { - "question": 319, - "contribution": 1837, - "answer": 2, - "count": 15 + "evaluation": 332, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0482a5cf-8c72-405e-b6f5-8bc595f13a94", + "model": "evaluation.contribution", + "pk": 834, "fields": { - "question": 473, - "contribution": 3739, - "answer": 2, - "count": 1 + "evaluation": 333, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "048f8a99-5467-4c28-bc31-daa010504b99", + "model": "evaluation.contribution", + "pk": 835, "fields": { - "question": 352, - "contribution": 3735, - "answer": 1, - "count": 4 + "evaluation": 333, + "contributor": 117, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0491c75e-62d6-450d-8e2c-0ce13a86be58", + "model": "evaluation.contribution", + "pk": 836, "fields": { - "question": 356, - "contribution": 4227, - "answer": 1, - "count": 3 + "evaluation": 334, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04941dcb-6c94-4ca4-9976-c820001a0c53", + "model": "evaluation.contribution", + "pk": 837, "fields": { - "question": 382, - "contribution": 3711, - "answer": 0, - "count": 4 + "evaluation": 334, + "contributor": 55, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 85 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0499a053-1b3e-4b3e-b6d2-57fa8aba006f", + "model": "evaluation.contribution", + "pk": 840, "fields": { - "question": 326, - "contribution": 4047, - "answer": 2, - "count": 2 + "evaluation": 336, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "049dde44-5b9e-4915-9b77-11df742b4669", + "model": "evaluation.contribution", + "pk": 841, "fields": { - "question": 346, - "contribution": 3487, - "answer": 2, - "count": 1 + "evaluation": 336, + "contributor": 938, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "049fe589-1d3c-4ac3-a9dd-2e69697907c2", - "fields": { - "question": 337, - "contribution": 3466, - "answer": 1, - "count": 1 + "model": "evaluation.contribution", + "pk": 858, + "fields": { + "evaluation": 345, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04a20af4-42fd-442a-b665-be7e2ecfa1cc", + "model": "evaluation.contribution", + "pk": 859, "fields": { - "question": 473, - "contribution": 3508, - "answer": -2, - "count": 1 + "evaluation": 345, + "contributor": 123, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04a41872-7691-4b85-8851-3ba0bc0aa5e8", + "model": "evaluation.contribution", + "pk": 862, "fields": { - "question": 473, - "contribution": 1638, - "answer": 2, - "count": 2 + "evaluation": 347, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 82, + 86, + 93, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04adb0af-f96f-4933-ba86-4ab278cb741a", + "model": "evaluation.contribution", + "pk": 863, "fields": { - "question": 475, - "contribution": 3372, - "answer": -1, - "count": 1 + "evaluation": 347, + "contributor": 292, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04c49be4-51a2-4d82-b528-b1ca2e939369", + "model": "evaluation.contribution", + "pk": 864, "fields": { - "question": 338, - "contribution": 832, - "answer": 2, - "count": 1 + "evaluation": 348, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 82, + 88, + 93, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04cc3725-4d1a-4b88-b000-5c37a6bb2b67", + "model": "evaluation.contribution", + "pk": 865, "fields": { - "question": 477, - "contribution": 3680, - "answer": 2, - "count": 1 + "evaluation": 348, + "contributor": 292, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04d182c9-e240-48b3-a322-d7104b82cba2", + "model": "evaluation.contribution", + "pk": 868, "fields": { - "question": 316, - "contribution": 1634, - "answer": 1, - "count": 12 + "evaluation": 350, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04d5a525-945a-4b6b-a2a3-c59467cb156a", + "model": "evaluation.contribution", + "pk": 869, "fields": { - "question": 366, - "contribution": 3592, - "answer": 1, - "count": 5 + "evaluation": 350, + "contributor": 96, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04d8b841-df6d-45b2-a372-7e727dfc0ba7", + "model": "evaluation.contribution", + "pk": 880, "fields": { - "question": 319, - "contribution": 3406, - "answer": 2, - "count": 4 + "evaluation": 356, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04e765f8-0f81-4d68-a512-1de73a3b6920", + "model": "evaluation.contribution", + "pk": 881, "fields": { - "question": 325, - "contribution": 4101, - "answer": 3, - "count": 6 + "evaluation": 356, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04f03bcb-d6aa-4118-b63c-8a6447d27ae2", + "model": "evaluation.contribution", + "pk": 884, "fields": { - "question": 343, - "contribution": 4190, - "answer": 1, - "count": 6 + "evaluation": 358, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04f3aff9-bdf7-44de-83fd-706e94c641ec", + "model": "evaluation.contribution", + "pk": 885, "fields": { - "question": 349, - "contribution": 1809, - "answer": 2, - "count": 1 + "evaluation": 358, + "contributor": 749, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04f85bd5-7975-44f7-86bb-2c6b3f0f1eca", + "model": "evaluation.contribution", + "pk": 886, "fields": { - "question": 353, - "contribution": 4269, - "answer": 1, - "count": 1 + "evaluation": 359, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "04f9a426-95a8-46dc-b9ce-ecfd298c47fe", + "model": "evaluation.contribution", + "pk": 887, "fields": { - "question": 347, - "contribution": 4129, - "answer": 3, - "count": 2 + "evaluation": 359, + "contributor": 938, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "05046921-69a3-4f17-b41e-d4ac70ac69dd", + "model": "evaluation.contribution", + "pk": 894, "fields": { - "question": 351, - "contribution": 832, - "answer": 3, - "count": 1 + "evaluation": 363, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "05068226-4875-48e9-9cbf-b8fe271eb90c", + "model": "evaluation.contribution", + "pk": 895, "fields": { - "question": 331, - "contribution": 4138, - "answer": 0, - "count": 24 + "evaluation": 363, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "051e1d47-8361-440d-bdd3-03ed48c5f381", + "model": "evaluation.contribution", + "pk": 908, "fields": { - "question": 345, - "contribution": 1863, - "answer": 2, - "count": 2 + "evaluation": 370, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "052cb582-62a3-470d-b592-509cf31911a7", + "model": "evaluation.contribution", + "pk": 909, "fields": { - "question": 344, - "contribution": 4233, - "answer": 1, - "count": 3 + "evaluation": 370, + "contributor": 118, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "053852d8-d3e5-427c-9077-0bb30ce26979", + "model": "evaluation.contribution", + "pk": 912, "fields": { - "question": 394, - "contribution": 3711, - "answer": 1, - "count": 2 + "evaluation": 372, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 93, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "053e7ca9-a9af-4234-9acc-c33fe92111a5", + "model": "evaluation.contribution", + "pk": 913, "fields": { - "question": 473, - "contribution": 4138, - "answer": 1, - "count": 13 + "evaluation": 372, + "contributor": 123, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0540b1da-bb9a-49ba-9c3a-94ab08b52779", + "model": "evaluation.contribution", + "pk": 918, "fields": { - "question": 405, - "contribution": 4038, - "answer": 1, - "count": 3 + "evaluation": 375, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0544c47b-2527-44d5-9924-d349336991fa", + "model": "evaluation.contribution", + "pk": 919, "fields": { - "question": 473, - "contribution": 3422, - "answer": 2, - "count": 4 + "evaluation": 375, + "contributor": 96, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "054aa3f9-2a34-4c47-9283-7b4f223c2c86", + "model": "evaluation.contribution", + "pk": 1144, "fields": { - "question": 346, - "contribution": 3451, - "answer": 4, - "count": 1 + "evaluation": 478, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 86, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "054c3fc0-0072-4ab2-a048-54ee7483882d", + "model": "evaluation.contribution", + "pk": 1145, "fields": { - "question": 328, - "contribution": 3473, - "answer": 3, - "count": 1 + "evaluation": 478, + "contributor": 93, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 87, + 85, + 91, + 89, + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "054d178e-7cc8-41a7-b3c7-47245d85ac30", + "model": "evaluation.contribution", + "pk": 1146, "fields": { - "question": 356, - "contribution": 4223, - "answer": 1, - "count": 1 + "evaluation": 478, + "contributor": 1, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 2, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0582b27c-7801-4fc8-a4ee-8c38f38daf49", + "model": "evaluation.contribution", + "pk": 1151, "fields": { - "question": 255, - "contribution": 1612, - "answer": 1, - "count": 13 + "evaluation": 332, + "contributor": 152, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "059220a9-2f15-498b-96ce-f2bb8264eebf", + "model": "evaluation.contribution", + "pk": 1154, "fields": { - "question": 343, - "contribution": 4021, - "answer": 1, - "count": 2 + "evaluation": 370, + "contributor": 181, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 89, + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "05a2ac21-d4fc-4830-97d8-050d122e90d7", + "model": "evaluation.contribution", + "pk": 1156, "fields": { - "question": 328, - "contribution": 1778, - "answer": 4, - "count": 1 + "evaluation": 363, + "contributor": 177, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "05a6a8af-0403-4a82-913f-826828282ee4", + "model": "evaluation.contribution", + "pk": 1157, "fields": { - "question": 257, - "contribution": 1626, - "answer": 1, - "count": 6 + "evaluation": 363, + "contributor": 190, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "05ae0c05-e892-4c8b-a0cb-bc4fc54e1aa4", + "model": "evaluation.contribution", + "pk": 1165, "fields": { - "question": 257, - "contribution": 4120, - "answer": 4, - "count": 1 + "evaluation": 333, + "contributor": 152, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "05c484b1-5b97-4e78-8f82-2e131320eaa4", + "model": "evaluation.contribution", + "pk": 1186, "fields": { - "question": 476, - "contribution": 3434, - "answer": -2, - "count": 2 + "evaluation": 370, + "contributor": 19, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "05d95a4d-58d6-4ab2-9bfb-eee2ca9539f8", + "model": "evaluation.contribution", + "pk": 1187, "fields": { - "question": 354, - "contribution": 4244, - "answer": 1, - "count": 2 + "evaluation": 370, + "contributor": 518, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 89 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "05da33cb-73c4-457c-b082-4ce5d368c725", + "model": "evaluation.contribution", + "pk": 1188, "fields": { - "question": 341, - "contribution": 3372, - "answer": 2, - "count": 4 + "evaluation": 370, + "contributor": 398, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 89 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "05ecba19-52b7-4ec1-b132-f4687e3e095c", + "model": "evaluation.contribution", + "pk": 1189, "fields": { - "question": 477, - "contribution": 3473, - "answer": 0, - "count": 5 + "evaluation": 370, + "contributor": 534, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 89 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "05f4134c-235a-49aa-900a-f53528bb8f5f", + "model": "evaluation.contribution", + "pk": 1194, "fields": { - "question": 347, - "contribution": 3900, - "answer": 4, - "count": 1 + "evaluation": 363, + "contributor": 588, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "05fb0a1c-4b19-4ec2-a0b0-6f5392e7685d", + "model": "evaluation.contribution", + "pk": 1200, "fields": { - "question": 315, - "contribution": 880, - "answer": 1, - "count": 4 + "evaluation": 482, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "05fbb0ba-f59f-4033-8c6e-9df0fed65a51", + "model": "evaluation.contribution", + "pk": 1201, "fields": { - "question": 262, - "contribution": 880, - "answer": 2, - "count": 6 + "evaluation": 482, + "contributor": 55, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "060290ff-bb1e-4a96-95e9-4de2b403f661", + "model": "evaluation.contribution", + "pk": 1202, "fields": { - "question": 333, - "contribution": 1884, - "answer": 2, - "count": 1 + "evaluation": 482, + "contributor": 10, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0605c8fa-f01c-4fed-a014-dd4c63de32cd", + "model": "evaluation.contribution", + "pk": 1203, "fields": { - "question": 354, - "contribution": 1242, - "answer": 1, - "count": 5 + "evaluation": 482, + "contributor": 258, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06072ba8-6673-4992-9d5f-1b144de1c63d", + "model": "evaluation.contribution", + "pk": 1204, "fields": { - "question": 328, - "contribution": 1725, - "answer": 2, - "count": 1 + "evaluation": 482, + "contributor": 4, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 4, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0617f3a8-9f88-4ea1-aaa8-194069518e50", + "model": "evaluation.contribution", + "pk": 1205, "fields": { - "question": 262, - "contribution": 1626, - "answer": 1, - "count": 9 + "evaluation": 482, + "contributor": 20, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 5, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06180bed-ca4e-497e-b8fe-6b583fa4a977", + "model": "evaluation.contribution", + "pk": 1206, "fields": { - "question": 347, - "contribution": 1203, - "answer": 2, - "count": 2 + "evaluation": 482, + "contributor": 261, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 6, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0633058d-d85a-4370-b68f-e2dccab7b67b", + "model": "evaluation.contribution", + "pk": 1207, "fields": { - "question": 344, - "contribution": 3545, - "answer": 3, - "count": 3 + "evaluation": 482, + "contributor": 268, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 7, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0634d2d9-931a-41a8-843d-1a663a39d38e", + "model": "evaluation.contribution", + "pk": 1217, "fields": { - "question": 255, - "contribution": 3394, - "answer": 2, - "count": 1 + "evaluation": 356, + "contributor": 208, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "063d38c2-6580-4859-8dbf-304e871a9bfa", + "model": "evaluation.contribution", + "pk": 1228, "fields": { - "question": 323, - "contribution": 884, - "answer": 2, - "count": 6 + "evaluation": 318, + "contributor": 595, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0640ea96-c2a5-4b99-bcbb-f6b3aff49994", + "model": "evaluation.contribution", + "pk": 1235, "fields": { - "question": 352, - "contribution": 4022, - "answer": 4, - "count": 1 + "evaluation": 310, + "contributor": 178, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "065938b3-7dc0-4133-bb38-cd765816a73f", + "model": "evaluation.contribution", + "pk": 1242, "fields": { - "question": 259, - "contribution": 3462, - "answer": 2, - "count": 1 + "evaluation": 310, + "contributor": 320, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 89 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0663a048-3b13-4fe3-b137-853431bd374b", + "model": "evaluation.contribution", + "pk": 1243, "fields": { - "question": 346, - "contribution": 1228, - "answer": 2, - "count": 3 + "evaluation": 310, + "contributor": 43, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 89 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "066b35a6-3832-4a97-af2d-781b2080c0a1", + "model": "evaluation.contribution", + "pk": 1244, "fields": { - "question": 357, - "contribution": 3849, - "answer": 1, - "count": 5 + "evaluation": 311, + "contributor": 129, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "066bc967-c350-4ae5-ab90-4181af31ae4f", + "model": "evaluation.contribution", + "pk": 1246, "fields": { - "question": 343, - "contribution": 841, - "answer": 2, - "count": 1 + "evaluation": 359, + "contributor": 598, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "066c4ff2-936f-4ebc-988a-fde48661a8ab", + "model": "evaluation.contribution", + "pk": 1247, "fields": { - "question": 349, - "contribution": 3934, - "answer": 1, - "count": 1 + "evaluation": 359, + "contributor": 597, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0686014a-de89-4c5a-9d85-0ab570e17012", + "model": "evaluation.contribution", + "pk": 1249, "fields": { - "question": 473, - "contribution": 868, - "answer": 0, - "count": 5 + "evaluation": 329, + "contributor": 182, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "068ab4d1-0bc4-49f8-bceb-cb6aed6077d4", + "model": "evaluation.contribution", + "pk": 1250, "fields": { - "question": 328, - "contribution": 4085, - "answer": 4, - "count": 8 + "evaluation": 345, + "contributor": 599, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "068c352a-e3d7-43c0-b244-d71f710b40d3", + "model": "evaluation.contribution", + "pk": 1253, "fields": { - "question": 367, - "contribution": 3721, - "answer": 2, - "count": 7 + "evaluation": 329, + "contributor": 28, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "068f948b-d2d6-4bcb-aaf3-10f7b8410def", + "model": "evaluation.contribution", + "pk": 1256, "fields": { - "question": 329, - "contribution": 4023, - "answer": 2, - "count": 1 + "evaluation": 348, + "contributor": 601, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 0, + "questionnaires": [ + 89 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06935cf3-16e2-40eb-b293-22a9f88f6ea5", + "model": "evaluation.contribution", + "pk": 1257, "fields": { - "question": 473, - "contribution": 1658, - "answer": 0, - "count": 11 + "evaluation": 348, + "contributor": 602, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 89 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0693c852-2d4b-4785-a3ff-e135e4dffc42", + "model": "evaluation.contribution", + "pk": 1258, "fields": { - "question": 323, - "contribution": 1612, - "answer": 4, - "count": 2 + "evaluation": 348, + "contributor": 603, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 89 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06976351-9351-42b5-91be-b92a15775e17", + "model": "evaluation.contribution", + "pk": 1266, "fields": { - "question": 349, - "contribution": 3855, - "answer": 1, - "count": 6 + "evaluation": 311, + "contributor": 604, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "069a2cb7-1c77-4e18-b28a-12dd1dfa89fd", + "model": "evaluation.contribution", + "pk": 1282, "fields": { - "question": 477, - "contribution": 1617, - "answer": 0, - "count": 25 + "evaluation": 327, + "contributor": 590, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 85 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06b640f7-e68a-45b6-bd60-9b58a87e54b7", + "model": "evaluation.contribution", + "pk": 1283, "fields": { - "question": 260, - "contribution": 880, - "answer": 5, - "count": 3 + "evaluation": 327, + "contributor": 589, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 85 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06b78164-69f1-4009-baf7-a44df64535b4", + "model": "evaluation.contribution", + "pk": 1284, "fields": { - "question": 258, - "contribution": 884, - "answer": 4, - "count": 1 + "evaluation": 327, + "contributor": 605, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 85 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06bc020b-c579-4855-a84b-0c9cca2f6b7e", + "model": "evaluation.contribution", + "pk": 1287, "fields": { - "question": 349, - "contribution": 3609, - "answer": 1, - "count": 5 + "evaluation": 372, + "contributor": 600, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06bc362b-6485-4051-8f01-3ccb23d5f284", + "model": "evaluation.contribution", + "pk": 1288, "fields": { - "question": 366, - "contribution": 1884, - "answer": 1, - "count": 4 + "evaluation": 372, + "contributor": 609, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06bcef58-76b9-41b6-994e-ff4bffe31448", + "model": "evaluation.contribution", + "pk": 1297, "fields": { - "question": 317, - "contribution": 912, - "answer": 2, - "count": 10 + "evaluation": 347, + "contributor": 611, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06c74de7-33ec-4788-a3ea-ae876de114bd", + "model": "evaluation.contribution", + "pk": 1298, "fields": { - "question": 337, - "contribution": 4052, - "answer": 5, - "count": 1 + "evaluation": 347, + "contributor": 612, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06cde0b3-d6bd-4406-b5ff-933eb85025a7", + "model": "evaluation.contribution", + "pk": 1612, "fields": { - "question": 367, - "contribution": 3739, - "answer": 4, - "count": 1 + "evaluation": 641, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06d057a5-2091-4160-a83a-26656cc3644f", + "model": "evaluation.contribution", + "pk": 1613, "fields": { - "question": 343, - "contribution": 1874, - "answer": 1, - "count": 3 + "evaluation": 641, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06e618d4-4e76-4a5e-94cc-680470c81c4e", + "model": "evaluation.contribution", + "pk": 1617, "fields": { - "question": 257, - "contribution": 4128, - "answer": 3, - "count": 3 + "evaluation": 643, + "contributor": 55, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06e9597f-4348-4661-8246-2729fc46dc84", + "model": "evaluation.contribution", + "pk": 1626, "fields": { - "question": 344, - "contribution": 3608, - "answer": 2, - "count": 1 + "evaluation": 648, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06f07827-2f2d-412a-828d-617984ea79ad", + "model": "evaluation.contribution", + "pk": 1634, "fields": { - "question": 321, - "contribution": 4116, - "answer": 4, - "count": 3 + "evaluation": 652, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "06fd8efb-52fe-47a0-aa2c-0680b996abee", + "model": "evaluation.contribution", + "pk": 1635, "fields": { - "question": 359, - "contribution": 3917, - "answer": 2, - "count": 1 + "evaluation": 652, + "contributor": 118, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "070c046c-0faa-4de3-9a57-da46579332f5", + "model": "evaluation.contribution", + "pk": 1638, "fields": { - "question": 316, - "contribution": 4116, - "answer": 1, - "count": 2 + "evaluation": 654, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07190377-c98b-43b8-ba74-4ad5d4b17e33", + "model": "evaluation.contribution", + "pk": 1639, "fields": { - "question": 320, - "contribution": 4128, - "answer": 4, - "count": 3 + "evaluation": 654, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "071c6b0f-95d7-4ee3-bdfd-97a5dc4e0848", + "model": "evaluation.contribution", + "pk": 1640, "fields": { - "question": 319, - "contribution": 880, - "answer": 5, - "count": 4 + "evaluation": 655, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "071dacf4-a098-44c3-91fa-77cfd915a0a9", + "model": "evaluation.contribution", + "pk": 1641, "fields": { - "question": 348, - "contribution": 4189, - "answer": 2, - "count": 2 + "evaluation": 655, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07257265-3e73-4ebe-84eb-13b76209e28e", + "model": "evaluation.contribution", + "pk": 1644, "fields": { - "question": 367, - "contribution": 4046, - "answer": 3, - "count": 1 + "evaluation": 657, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "073a2f35-6ec6-4c91-9b23-7e257dd1de9a", + "model": "evaluation.contribution", + "pk": 1645, "fields": { - "question": 316, - "contribution": 3434, - "answer": 2, - "count": 11 + "evaluation": 657, + "contributor": 96, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "073e8922-f331-45dd-88ea-9879712dd2fd", + "model": "evaluation.contribution", + "pk": 1656, "fields": { - "question": 475, - "contribution": 3735, - "answer": -1, - "count": 2 + "evaluation": 663, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07444d72-9372-44cd-907f-01c0a2bec0a3", + "model": "evaluation.contribution", + "pk": 1657, "fields": { - "question": 322, - "contribution": 3422, - "answer": 1, - "count": 7 + "evaluation": 663, + "contributor": 567, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0745d772-e323-40be-b7e4-775f43e4fd39", + "model": "evaluation.contribution", + "pk": 1658, "fields": { - "question": 438, - "contribution": 4140, - "answer": 5, - "count": 2 + "evaluation": 664, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0745f4e4-6a4b-4350-83ff-1e6b583e3b6f", + "model": "evaluation.contribution", + "pk": 1659, "fields": { - "question": 322, - "contribution": 3721, - "answer": 4, - "count": 6 + "evaluation": 664, + "contributor": 66, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0756a515-81fb-494e-a473-927a24ec63b7", + "model": "evaluation.contribution", + "pk": 1660, "fields": { - "question": 461, - "contribution": 4091, - "answer": 5, - "count": 1 + "evaluation": 665, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "075d1106-afd7-490c-9c88-d7372774a242", + "model": "evaluation.contribution", + "pk": 1661, "fields": { - "question": 336, - "contribution": 3416, - "answer": 2, - "count": 1 + "evaluation": 665, + "contributor": 618, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0764a8c2-8a40-4610-9895-e9700f406e05", + "model": "evaluation.contribution", + "pk": 1662, "fields": { - "question": 259, - "contribution": 3422, - "answer": 5, - "count": 1 + "evaluation": 666, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 93, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0765b245-9042-4fec-8051-8df95dc94d5f", + "model": "evaluation.contribution", + "pk": 1663, "fields": { - "question": 257, - "contribution": 4116, - "answer": 1, - "count": 3 + "evaluation": 666, + "contributor": 139, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0766ef7e-6c8b-4f04-93ef-96ad84f2128f", + "model": "evaluation.contribution", + "pk": 1668, "fields": { - "question": 473, - "contribution": 3434, - "answer": 1, - "count": 3 + "evaluation": 669, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07697a8c-2659-4b5b-a4e7-b63528f674e1", + "model": "evaluation.contribution", + "pk": 1669, "fields": { - "question": 328, - "contribution": 1154, - "answer": 5, - "count": 2 + "evaluation": 669, + "contributor": 66, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07708c42-b296-4942-b023-9bcaf6f86311", + "model": "evaluation.contribution", + "pk": 1680, "fields": { - "question": 344, - "contribution": 1206, - "answer": 2, - "count": 3 + "evaluation": 675, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "078ea0e7-5ad1-404c-a89a-b018f74d47fb", + "model": "evaluation.contribution", + "pk": 1681, "fields": { - "question": 337, - "contribution": 3795, - "answer": 2, - "count": 1 + "evaluation": 675, + "contributor": 296, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0792bedf-6ae0-47f3-b271-b25693216f15", + "model": "evaluation.contribution", + "pk": 1694, "fields": { - "question": 367, - "contribution": 4100, - "answer": 4, - "count": 1 + "evaluation": 682, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07976da0-d4b2-4d31-bad5-73f0e59f521f", + "model": "evaluation.contribution", + "pk": 1695, "fields": { - "question": 402, - "contribution": 4041, - "answer": 3, - "count": 1 + "evaluation": 682, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07987117-098b-4a80-adc8-a4377adb00a7", + "model": "evaluation.contribution", + "pk": 1702, "fields": { - "question": 346, - "contribution": 3536, - "answer": 1, - "count": 2 + "evaluation": 686, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "079c7307-dd6c-4fc3-a570-1f99dbcba033", + "model": "evaluation.contribution", + "pk": 1703, "fields": { - "question": 362, - "contribution": 1806, - "answer": 1, - "count": 2 + "evaluation": 686, + "contributor": 147, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07a3c5e1-c557-4a56-814e-d5e5151a5cbd", + "model": "evaluation.contribution", + "pk": 1710, "fields": { - "question": 477, - "contribution": 4085, - "answer": -3, - "count": 1 + "evaluation": 690, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07a554db-643e-40f8-badc-c7eee0655a6a", + "model": "evaluation.contribution", + "pk": 1720, "fields": { - "question": 260, - "contribution": 836, - "answer": 2, - "count": 6 + "evaluation": 695, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 50, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07abeb55-953a-444a-8939-d05194912623", + "model": "evaluation.contribution", + "pk": 1721, "fields": { - "question": 453, - "contribution": 4185, - "answer": 2, - "count": 10 + "evaluation": 695, + "contributor": 89, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07aed2d1-7064-44e5-b0d7-896475e0fd6e", + "model": "evaluation.contribution", + "pk": 1724, "fields": { - "question": 459, - "contribution": 4091, - "answer": 3, - "count": 1 + "evaluation": 697, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07bdd4ca-7c7e-4677-add4-e833ca017e53", + "model": "evaluation.contribution", + "pk": 1725, "fields": { - "question": 472, - "contribution": 3486, - "answer": 1, - "count": 8 + "evaluation": 697, + "contributor": 113, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07c10309-4000-4b77-a23b-0967c8adc8a4", + "model": "evaluation.contribution", + "pk": 1726, "fields": { - "question": 258, - "contribution": 880, - "answer": 3, - "count": 8 + "evaluation": 698, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07d1e338-78fd-45d3-bbca-9f2462e4983e", + "model": "evaluation.contribution", + "pk": 1727, "fields": { - "question": 351, - "contribution": 3440, - "answer": 5, - "count": 1 + "evaluation": 698, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07ecc537-7731-4dc2-ab87-728386a4f54d", + "model": "evaluation.contribution", + "pk": 1734, "fields": { - "question": 347, - "contribution": 1749, - "answer": 2, - "count": 1 + "evaluation": 702, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07fb15ab-cf73-4c17-b8c3-91ae480ebc5f", + "model": "evaluation.contribution", + "pk": 1735, "fields": { - "question": 343, - "contribution": 1639, - "answer": 1, - "count": 1 + "evaluation": 702, + "contributor": 96, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "07fcd6bb-7f27-4a85-ab9b-f2fd2c86c254", + "model": "evaluation.contribution", + "pk": 1748, "fields": { - "question": 463, - "contribution": 4091, - "answer": 2, - "count": 1 + "evaluation": 709, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "080b1bd8-b662-4005-9616-6f3810ebefe9", + "model": "evaluation.contribution", + "pk": 1749, "fields": { - "question": 370, - "contribution": 3546, - "answer": 4, - "count": 1 + "evaluation": 709, + "contributor": 158, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08153459-8089-48a4-aac8-91174b497e39", + "model": "evaluation.contribution", + "pk": 1776, "fields": { - "question": 343, - "contribution": 3516, - "answer": 1, - "count": 11 + "evaluation": 652, + "contributor": 181, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "082a8987-bbb1-439d-b070-077b1b042339", + "model": "evaluation.contribution", + "pk": 1777, "fields": { - "question": 473, - "contribution": 4120, - "answer": 1, - "count": 7 + "evaluation": 652, + "contributor": 19, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08305b21-85ca-42e9-95e1-3ae3dff680ff", + "model": "evaluation.contribution", + "pk": 1778, "fields": { - "question": 376, - "contribution": 3755, - "answer": 2, - "count": 1 + "evaluation": 652, + "contributor": 215, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0834db74-48bc-4b78-8ded-0da4e1a805ed", + "model": "evaluation.contribution", + "pk": 1779, "fields": { - "question": 477, - "contribution": 3556, - "answer": 1, - "count": 6 + "evaluation": 652, + "contributor": 571, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0835a88d-efec-4624-94d1-30a803b1b7ea", + "model": "evaluation.contribution", + "pk": 1780, "fields": { - "question": 475, - "contribution": 3685, - "answer": -1, - "count": 1 + "evaluation": 652, + "contributor": 132, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 4, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "084861dc-696e-4b8f-a5c9-de8830d0fe55", + "model": "evaluation.contribution", + "pk": 1781, "fields": { - "question": 473, - "contribution": 4100, - "answer": -1, - "count": 7 + "evaluation": 652, + "contributor": 247, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 5, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "084a5f0c-bf26-4c92-b4b7-16e30d2a929e", + "model": "evaluation.contribution", + "pk": 1782, "fields": { - "question": 402, - "contribution": 3646, - "answer": 5, - "count": 1 + "evaluation": 652, + "contributor": 30, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 6, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "084d1164-fee1-46b2-a3dc-fb442aa3917d", + "model": "evaluation.contribution", + "pk": 1783, "fields": { - "question": 339, - "contribution": 868, - "answer": 1, - "count": 1 + "evaluation": 652, + "contributor": 626, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 7, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0859aea3-e5e2-4435-ba42-92fe8e74f11b", + "model": "evaluation.contribution", + "pk": 1784, "fields": { - "question": 336, - "contribution": 4094, - "answer": 1, - "count": 7 + "evaluation": 652, + "contributor": 518, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 8, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0867d7b7-454c-46e9-8006-c6d8084c7857", + "model": "evaluation.contribution", + "pk": 1785, "fields": { - "question": 356, - "contribution": 3847, - "answer": 1, - "count": 1 + "evaluation": 652, + "contributor": 398, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 9, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "086b45d1-f870-4860-bdb1-6c6abba7ac4f", + "model": "evaluation.contribution", + "pk": 1786, "fields": { - "question": 319, - "contribution": 1634, - "answer": 1, - "count": 7 + "evaluation": 652, + "contributor": 534, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 10, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "086e9512-fa6f-4796-94e0-3144fe03fdf5", + "model": "evaluation.contribution", + "pk": 1797, "fields": { - "question": 340, - "contribution": 1694, - "answer": 4, - "count": 1 - } + "evaluation": 675, + "contributor": 641, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 92 + ] + } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08713abd-3557-4032-8625-b5582b14ed32", + "model": "evaluation.contribution", + "pk": 1798, "fields": { - "question": 259, - "contribution": 3739, - "answer": 3, - "count": 1 + "evaluation": 675, + "contributor": 334, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0882dccd-40c3-4e7e-8057-0ac656ab032c", + "model": "evaluation.contribution", + "pk": 1799, "fields": { - "question": 323, - "contribution": 4120, - "answer": 1, - "count": 18 + "evaluation": 675, + "contributor": 1, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0889ab4d-142d-4f54-8572-ecbe3f96794d", + "model": "evaluation.contribution", + "pk": 1802, "fields": { - "question": 325, - "contribution": 3684, - "answer": 1, - "count": 5 + "evaluation": 648, + "contributor": 573, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "088d248a-56e1-49a4-b297-4fbd37e368a3", + "model": "evaluation.contribution", + "pk": 1803, "fields": { - "question": 349, - "contribution": 1809, - "answer": 4, - "count": 1 + "evaluation": 648, + "contributor": 480, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08914f95-f609-4c69-ae78-a4165e1efbc8", + "model": "evaluation.contribution", + "pk": 1804, "fields": { - "question": 315, - "contribution": 3462, - "answer": 3, - "count": 2 + "evaluation": 648, + "contributor": 343, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08a569be-9cad-4f43-a22b-be852b02d11b", + "model": "evaluation.contribution", + "pk": 1805, "fields": { - "question": 337, - "contribution": 3785, - "answer": 1, - "count": 1 + "evaluation": 648, + "contributor": 585, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08afc646-aae2-4726-b869-df5cfddeef1e", + "model": "evaluation.contribution", + "pk": 1806, "fields": { - "question": 353, - "contribution": 1786, - "answer": 1, - "count": 7 + "evaluation": 648, + "contributor": 587, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 4, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08b6735f-950d-474a-b898-eea3c6435a96", + "model": "evaluation.contribution", + "pk": 1807, "fields": { - "question": 348, - "contribution": 4129, - "answer": 5, - "count": 1 + "evaluation": 648, + "contributor": 584, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 5, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08b7626e-d90c-4678-8e94-a69ac93422f1", + "model": "evaluation.contribution", + "pk": 1808, "fields": { - "question": 325, - "contribution": 1154, - "answer": 4, - "count": 5 + "evaluation": 648, + "contributor": 931, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 6, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08bb8a1a-e102-4601-8193-6fa395618b60", + "model": "evaluation.contribution", + "pk": 1809, "fields": { - "question": 348, - "contribution": 1228, - "answer": 2, - "count": 1 + "evaluation": 663, + "contributor": 643, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08c21dd2-3f51-4aaa-aa54-7fcaf7a34055", + "model": "evaluation.contribution", + "pk": 1810, "fields": { - "question": 320, - "contribution": 1634, - "answer": 5, - "count": 4 + "evaluation": 648, + "contributor": 586, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08c50cae-2652-41bf-a70a-58dc313253b1", + "model": "evaluation.contribution", + "pk": 1811, "fields": { - "question": 477, - "contribution": 3463, - "answer": 0, - "count": 5 + "evaluation": 648, + "contributor": 644, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08c65e57-b256-4209-a802-6d578ac28ff3", + "model": "evaluation.contribution", + "pk": 1812, "fields": { - "question": 476, - "contribution": 3739, - "answer": 1, - "count": 4 + "evaluation": 648, + "contributor": 645, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 85, + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08cc68c8-75df-48d7-817a-0d84174e1ffc", + "model": "evaluation.contribution", + "pk": 1822, "fields": { - "question": 346, - "contribution": 4003, - "answer": 1, - "count": 4 + "evaluation": 665, + "contributor": 57, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08d8046b-74e0-457b-a73d-da4cdf8403d8", + "model": "evaluation.contribution", + "pk": 1824, "fields": { - "question": 327, - "contribution": 1154, - "answer": 4, - "count": 1 + "evaluation": 665, + "contributor": 646, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08d81756-6c6e-432c-a4bc-6fcf38c70745", + "model": "evaluation.contribution", + "pk": 1825, "fields": { - "question": 473, - "contribution": 3785, - "answer": 0, - "count": 3 + "evaluation": 641, + "contributor": 286, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08f5b57e-5972-4a8b-a6f9-c2d42e4ebdd8", + "model": "evaluation.contribution", + "pk": 1826, "fields": { - "question": 367, - "contribution": 3390, - "answer": 3, - "count": 3 + "evaluation": 641, + "contributor": 100, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "08fc27b8-8e0e-495a-9404-f175212c778d", + "model": "evaluation.contribution", + "pk": 1827, "fields": { - "question": 359, - "contribution": 1805, - "answer": 5, - "count": 2 + "evaluation": 641, + "contributor": 218, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0902cb10-62d5-491f-9d68-acd6769c6651", + "model": "evaluation.contribution", + "pk": 1828, "fields": { - "question": 339, - "contribution": 3440, - "answer": 1, - "count": 4 + "evaluation": 698, + "contributor": 91, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "091adbdc-058c-4503-af28-061998354729", + "model": "evaluation.contribution", + "pk": 1835, "fields": { - "question": 477, - "contribution": 1297, - "answer": 0, - "count": 9 + "evaluation": 643, + "contributor": 531, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0934568b-3f67-4d39-8b2a-f7de06d36c4b", + "model": "evaluation.contribution", + "pk": 1836, "fields": { - "question": 320, - "contribution": 1680, - "answer": 1, - "count": 2 + "evaluation": 643, + "contributor": 546, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "093a6e10-f7ce-4dad-a388-523fce9e768c", + "model": "evaluation.contribution", + "pk": 1837, "fields": { - "question": 319, - "contribution": 3422, - "answer": 3, - "count": 8 + "evaluation": 643, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 48, + 81, + 82, + 50, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0942bcd3-caf9-493c-8c88-d256e0d06a8a", + "model": "evaluation.contribution", + "pk": 1842, "fields": { - "question": 337, - "contribution": 3466, - "answer": 2, - "count": 3 + "evaluation": 686, + "contributor": 210, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "09447c87-2418-4c34-a75b-0ced4bedbb19", + "model": "evaluation.contribution", + "pk": 1843, "fields": { - "question": 460, - "contribution": 4141, - "answer": 1, - "count": 3 + "evaluation": 686, + "contributor": 106, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0953c460-6f0e-454d-b7a7-b0c10f2bce67", + "model": "evaluation.contribution", + "pk": 1844, "fields": { - "question": 327, - "contribution": 3740, - "answer": 5, - "count": 4 + "evaluation": 686, + "contributor": 38, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "09568f69-0a6e-4bed-81fe-db8227494ac7", + "model": "evaluation.contribution", + "pk": 1845, "fields": { - "question": 328, - "contribution": 3726, - "answer": 1, - "count": 11 + "evaluation": 686, + "contributor": 97, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0958478f-886b-4d29-aa69-d44a86dddab3", + "model": "evaluation.contribution", + "pk": 1849, "fields": { - "question": 353, - "contribution": 3834, - "answer": 1, - "count": 2 + "evaluation": 686, + "contributor": 648, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 4, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "095920a7-b70a-4efe-983d-db6d35656262", + "model": "evaluation.contribution", + "pk": 1851, "fields": { - "question": 351, - "contribution": 3466, - "answer": 4, - "count": 1 + "evaluation": 698, + "contributor": 190, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "096bcc78-1512-4ecb-adfc-c55c5b650410", + "model": "evaluation.contribution", + "pk": 1852, "fields": { - "question": 339, - "contribution": 4052, - "answer": 2, - "count": 1 + "evaluation": 648, + "contributor": 124, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 0, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "096c2cc5-3ee5-429f-99e4-958fec4ea6ca", + "model": "evaluation.contribution", + "pk": 1860, "fields": { - "question": 346, - "contribution": 3796, - "answer": 2, - "count": 1 + "evaluation": 690, + "contributor": 595, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "097099db-1c11-4c79-941d-a3326d4120b2", + "model": "evaluation.contribution", + "pk": 1863, "fields": { - "question": 325, - "contribution": 1802, - "answer": 2, - "count": 8 + "evaluation": 709, + "contributor": 593, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "09745678-6d05-440e-8a98-0978d4bb6782", + "model": "evaluation.contribution", + "pk": 1866, "fields": { - "question": 351, - "contribution": 788, - "answer": 1, - "count": 4 + "evaluation": 690, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 0, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0975c15a-5c27-40df-a1f8-e773b4437422", + "model": "evaluation.contribution", + "pk": 1867, "fields": { - "question": 360, - "contribution": 3647, - "answer": 3, - "count": 1 + "evaluation": 654, + "contributor": 208, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "097830cc-a6aa-4013-9e38-8dde9fbc8d9e", + "model": "evaluation.contribution", + "pk": 1868, "fields": { - "question": 322, - "contribution": 822, - "answer": 1, - "count": 2 + "evaluation": 654, + "contributor": 591, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "097e91ef-eb8a-4eb8-b012-afbeb47a2c2b", + "model": "evaluation.contribution", + "pk": 1869, "fields": { - "question": 356, - "contribution": 1242, - "answer": 1, - "count": 6 + "evaluation": 654, + "contributor": 651, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "09986690-a6cf-45f0-914f-4ec1348884db", + "model": "evaluation.contribution", + "pk": 1870, "fields": { - "question": 328, - "contribution": 909, - "answer": 5, - "count": 1 + "evaluation": 654, + "contributor": 75, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "099b6ac3-d20f-42d9-9187-a6f74ed77570", + "model": "evaluation.contribution", + "pk": 1871, "fields": { - "question": 357, - "contribution": 1849, - "answer": 1, - "count": 1 + "evaluation": 654, + "contributor": 592, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 4, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "09a0ad83-9417-43ec-95fa-f39fc67db12a", + "model": "evaluation.contribution", + "pk": 1872, "fields": { - "question": 390, - "contribution": 3775, - "answer": 1, - "count": 1 + "evaluation": 655, + "contributor": 208, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "09abf002-5b77-4079-bbae-6b4efc3a82f3", + "model": "evaluation.contribution", + "pk": 1873, "fields": { - "question": 322, - "contribution": 836, - "answer": 3, - "count": 1 + "evaluation": 655, + "contributor": 591, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "09c45818-0cde-4842-975e-2073beb385cd", + "model": "evaluation.contribution", + "pk": 1874, "fields": { - "question": 473, - "contribution": 3354, - "answer": -1, - "count": 1 + "evaluation": 655, + "contributor": 652, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "09c92176-5e2c-4ea9-8f32-0c4f9e6b165d", + "model": "evaluation.contribution", + "pk": 1880, "fields": { - "question": 367, - "contribution": 1634, - "answer": 4, - "count": 8 + "evaluation": 682, + "contributor": 594, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "09d23d80-72ad-4b52-9f3e-1acdd12c8310", + "model": "evaluation.contribution", + "pk": 1881, "fields": { - "question": 341, - "contribution": 3727, - "answer": 1, - "count": 2 + "evaluation": 682, + "contributor": 356, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "09df2b85-0c23-4f4c-b72b-4ab216fe598e", + "model": "evaluation.contribution", + "pk": 1884, "fields": { - "question": 331, - "contribution": 3390, - "answer": 0, - "count": 8 + "evaluation": 697, + "contributor": 187, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "09e9a0a4-2081-4645-8a52-4e10675df49b", + "model": "evaluation.contribution", + "pk": 1921, "fields": { - "question": 475, - "contribution": 1656, - "answer": 0, - "count": 8 + "evaluation": 730, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "09e9c837-109b-4331-b19d-7184a3160382", + "model": "evaluation.contribution", + "pk": 1922, "fields": { - "question": 337, - "contribution": 3723, - "answer": 2, - "count": 1 + "evaluation": 730, + "contributor": 568, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a0c4439-e95a-4b79-8114-4cef160a3962", + "model": "evaluation.contribution", + "pk": 3354, "fields": { - "question": 322, - "contribution": 4138, - "answer": 2, - "count": 8 + "evaluation": 1454, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 93, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a1533cd-8570-4b9d-89f4-24908a8abee9", + "model": "evaluation.contribution", + "pk": 3355, "fields": { - "question": 340, - "contribution": 3372, - "answer": 5, - "count": 2 + "evaluation": 1454, + "contributor": 294, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a261569-7a42-4c2e-9e9c-4e70457286d0", + "model": "evaluation.contribution", + "pk": 3366, "fields": { - "question": 354, - "contribution": 4269, - "answer": 1, - "count": 1 + "evaluation": 1460, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a2ff308-14dd-46a6-a638-7919cdf826de", + "model": "evaluation.contribution", + "pk": 3367, "fields": { - "question": 336, - "contribution": 832, - "answer": 3, - "count": 1 + "evaluation": 1460, + "contributor": 118, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a32e10c-5341-4131-a462-977a2c3857c5", + "model": "evaluation.contribution", + "pk": 3372, "fields": { - "question": 354, - "contribution": 1188, - "answer": 1, - "count": 4 + "evaluation": 1463, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a3304f3-d206-4b62-b773-4909c067b649", + "model": "evaluation.contribution", + "pk": 3373, "fields": { - "question": 336, - "contribution": 3645, - "answer": 2, - "count": 5 + "evaluation": 1463, + "contributor": 933, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a4223a7-cb14-4b77-963f-e48fa22929c2", + "model": "evaluation.contribution", + "pk": 3382, "fields": { - "question": 337, - "contribution": 1200, - "answer": 5, - "count": 1 + "evaluation": 1468, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a46d4ee-57fb-4570-9635-75b8cdc74421", + "model": "evaluation.contribution", + "pk": 3383, "fields": { - "question": 349, - "contribution": 3451, - "answer": 4, - "count": 1 + "evaluation": 1468, + "contributor": 296, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a4c82c3-205d-4d89-b2b8-a7053ce5f29e", + "model": "evaluation.contribution", + "pk": 3390, "fields": { - "question": 319, - "contribution": 3472, - "answer": 2, - "count": 6 + "evaluation": 1472, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a5954c4-937d-48c8-8b2c-2178ab9aa5ef", + "model": "evaluation.contribution", + "pk": 3391, "fields": { - "question": 331, - "contribution": 880, - "answer": 1, - "count": 4 + "evaluation": 1472, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a64584a-1435-4783-965e-cfaff7f0e513", + "model": "evaluation.contribution", + "pk": 3394, "fields": { - "question": 316, - "contribution": 4100, - "answer": 2, - "count": 12 + "evaluation": 1474, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 88, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a649717-f1bf-4d0a-8a35-8177aa01e9f0", + "model": "evaluation.contribution", + "pk": 3395, "fields": { - "question": 354, - "contribution": 1785, - "answer": 2, - "count": 4 + "evaluation": 1474, + "contributor": 70, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 90, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a6ff6bf-da32-4991-a6f5-20ec2a78ca58", + "model": "evaluation.contribution", + "pk": 3404, "fields": { - "question": 328, - "contribution": 1297, - "answer": 1, - "count": 9 + "evaluation": 1479, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a70b1f8-7146-47fd-8ee0-d25f270fed5a", + "model": "evaluation.contribution", + "pk": 3405, "fields": { - "question": 321, - "contribution": 3390, - "answer": 1, - "count": 6 + "evaluation": 1479, + "contributor": 938, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a716eb0-2ff8-43e7-8edb-c96c603ff93d", + "model": "evaluation.contribution", + "pk": 3406, "fields": { - "question": 475, - "contribution": 4094, - "answer": 0, - "count": 7 + "evaluation": 1480, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a85caee-7fa7-49f2-b72f-954ea4ae3fe1", + "model": "evaluation.contribution", + "pk": 3407, "fields": { - "question": 321, - "contribution": 3462, - "answer": 2, - "count": 1 + "evaluation": 1480, + "contributor": 113, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a8f26fb-bdc6-4e58-a924-33b4d996eb6b", + "model": "evaluation.contribution", + "pk": 3416, "fields": { - "question": 366, - "contribution": 4155, - "answer": 1, - "count": 11 + "evaluation": 1485, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a96d11a-fe28-4d8d-b425-95930294b278", + "model": "evaluation.contribution", + "pk": 3417, "fields": { - "question": 322, - "contribution": 3406, - "answer": 1, - "count": 3 + "evaluation": 1485, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0a9f5fdc-a00d-4c83-9fb4-c99fcdcd029c", + "model": "evaluation.contribution", + "pk": 3422, "fields": { - "question": 400, - "contribution": 4177, - "answer": 1, - "count": 7 + "evaluation": 1488, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0aafc27a-9c88-4a33-8661-758b92efbd10", + "model": "evaluation.contribution", + "pk": 3423, "fields": { - "question": 332, - "contribution": 3552, - "answer": 4, - "count": 2 + "evaluation": 1488, + "contributor": 124, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ab29da6-c992-4999-9a6c-87eee7414ff5", + "model": "evaluation.contribution", + "pk": 3434, "fields": { - "question": 336, - "contribution": 3645, - "answer": 3, - "count": 2 + "evaluation": 1494, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0abca48c-fb04-43c3-ac73-30e026528e83", + "model": "evaluation.contribution", + "pk": 3435, "fields": { - "question": 437, - "contribution": 4140, - "answer": 4, - "count": 2 + "evaluation": 1494, + "contributor": 749, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0abf6eba-e3c9-4d41-a067-1e05cd161361", + "model": "evaluation.contribution", + "pk": 3440, "fields": { - "question": 395, - "contribution": 3711, - "answer": 1, - "count": 2 + "evaluation": 1497, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0aca57d5-5a54-40a1-a0c6-3aa3121d9262", + "model": "evaluation.contribution", + "pk": 3442, "fields": { - "question": 473, - "contribution": 4138, - "answer": 0, - "count": 17 + "evaluation": 1498, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ad926dd-6aae-4d24-b837-14fc023c2377", + "model": "evaluation.contribution", + "pk": 3443, "fields": { - "question": 372, - "contribution": 4046, - "answer": 4, - "count": 1 + "evaluation": 1498, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 2, + "questionnaires": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ada73c7-2f9d-432e-b010-7a7539f91bff", + "model": "evaluation.contribution", + "pk": 3444, "fields": { - "question": 338, - "contribution": 4072, - "answer": 2, - "count": 1 + "evaluation": 1499, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 104, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0add8b03-b2ed-4504-9217-d92fe6dfe90b", + "model": "evaluation.contribution", + "pk": 3445, "fields": { - "question": 473, - "contribution": 3372, - "answer": 0, - "count": 4 + "evaluation": 1499, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0aeef51b-64c1-4d7c-9c04-d552af734812", + "model": "evaluation.contribution", + "pk": 3446, "fields": { - "question": 320, - "contribution": 4138, - "answer": 3, - "count": 12 + "evaluation": 1500, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0afc4500-081c-438f-a17b-b64e8da80993", + "model": "evaluation.contribution", + "pk": 3447, "fields": { - "question": 335, - "contribution": 3593, - "answer": 3, - "count": 4 + "evaluation": 1500, + "contributor": 292, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0afee008-cd41-4dd6-be8c-9188a483b2d0", + "model": "evaluation.contribution", + "pk": 3450, "fields": { - "question": 349, - "contribution": 1873, - "answer": 2, - "count": 1 + "evaluation": 1502, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b0189b9-28fc-4b42-b4a6-a36622a512e2", + "model": "evaluation.contribution", + "pk": 3451, "fields": { - "question": 328, - "contribution": 1287, - "answer": 1, - "count": 19 + "evaluation": 1502, + "contributor": 933, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b07e77b-24e9-47e5-9d11-6aa7e076de8a", + "model": "evaluation.contribution", + "pk": 3452, "fields": { - "question": 325, - "contribution": 3423, - "answer": 5, - "count": 1 + "evaluation": 1503, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b1382ca-c4b8-4087-96eb-fdb36eca8cbf", + "model": "evaluation.contribution", + "pk": 3453, "fields": { - "question": 317, - "contribution": 1626, - "answer": 5, - "count": 6 + "evaluation": 1503, + "contributor": 103, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b165249-8f08-487d-8c5c-f628e2932d16", + "model": "evaluation.contribution", + "pk": 3454, "fields": { - "question": 327, - "contribution": 3684, - "answer": 1, - "count": 5 + "evaluation": 1504, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b2aa752-2984-4803-8e66-1a75e37a9ce6", + "model": "evaluation.contribution", + "pk": 3455, "fields": { - "question": 260, - "contribution": 3721, - "answer": 3, - "count": 3 + "evaluation": 1504, + "contributor": 210, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b2ff4ca-a1e3-4ff7-8c52-237e9eb90f56", + "model": "evaluation.contribution", + "pk": 3458, "fields": { - "question": 321, - "contribution": 3462, - "answer": 3, - "count": 2 + "evaluation": 1506, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b45e457-7994-4434-985c-d9d24e861ea1", + "model": "evaluation.contribution", + "pk": 3459, "fields": { - "question": 337, - "contribution": 804, - "answer": 5, - "count": 1 + "evaluation": 1506, + "contributor": 296, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b4b66f2-7243-46a2-aef6-440aded530ad", + "model": "evaluation.contribution", + "pk": 3460, "fields": { - "question": 316, - "contribution": 3394, - "answer": 1, - "count": 1 + "evaluation": 1507, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b503941-e974-443d-9d80-1acd53e8fb8f", + "model": "evaluation.contribution", + "pk": 3461, "fields": { - "question": 337, - "contribution": 3404, - "answer": 2, - "count": 3 + "evaluation": 1507, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b632657-9fe7-4975-87d8-c67e98cabc4c", + "model": "evaluation.contribution", + "pk": 3462, "fields": { - "question": 349, - "contribution": 3545, - "answer": 4, - "count": 1 + "evaluation": 1508, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b6ced82-c589-412c-9b9c-5fa06ab19a6a", + "model": "evaluation.contribution", + "pk": 3463, "fields": { - "question": 349, - "contribution": 3609, - "answer": 2, - "count": 1 + "evaluation": 1508, + "contributor": 620, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b6d9171-30c3-4556-9f82-a89e46b6a811", + "model": "evaluation.contribution", + "pk": 3466, "fields": { - "question": 356, - "contribution": 1845, - "answer": 5, - "count": 1 + "evaluation": 1510, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b75c442-dd49-457c-b773-4bd593a6076e", + "model": "evaluation.contribution", + "pk": 3467, "fields": { - "question": 366, - "contribution": 3553, - "answer": 1, - "count": 2 + "evaluation": 1510, + "contributor": 70, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 90, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b7b5d1b-c070-48ff-9583-51e521fd39e7", + "model": "evaluation.contribution", + "pk": 3472, "fields": { - "question": 360, - "contribution": 3944, - "answer": 2, - "count": 1 + "evaluation": 1513, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b7c0bba-e165-4ea9-9d9e-27a78c0aec8e", + "model": "evaluation.contribution", + "pk": 3473, "fields": { - "question": 369, - "contribution": 3919, - "answer": 3, - "count": 1 + "evaluation": 1513, + "contributor": 600, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b7c66d0-6859-4f53-a6d5-097c2bf6a450", + "model": "evaluation.contribution", + "pk": 3474, "fields": { - "question": 465, - "contribution": 4115, - "answer": 1, - "count": 1 + "evaluation": 1514, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b7c99f3-9bfc-4bac-98e0-d94e23aa2f5e", + "model": "evaluation.contribution", + "pk": 3475, "fields": { - "question": 341, - "contribution": 3486, - "answer": 3, - "count": 5 + "evaluation": 1514, + "contributor": 118, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b7ce541-86ba-4024-976c-50d3de7a2989", + "model": "evaluation.contribution", + "pk": 3482, "fields": { - "question": 348, - "contribution": 3912, - "answer": 2, - "count": 1 + "evaluation": 1518, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b8ea524-477d-4729-99e1-23bea0864611", + "model": "evaluation.contribution", + "pk": 3483, "fields": { - "question": 258, - "contribution": 3434, - "answer": 1, - "count": 18 + "evaluation": 1518, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b972fcc-4fc0-44aa-8dc6-28a23dfb81e4", + "model": "evaluation.contribution", + "pk": 3486, "fields": { - "question": 255, - "contribution": 3725, - "answer": 2, - "count": 5 + "evaluation": 1520, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0b9fa3de-4351-4001-92de-5882c75c03f7", + "model": "evaluation.contribution", + "pk": 3487, "fields": { - "question": 323, - "contribution": 1680, - "answer": 1, - "count": 1 + "evaluation": 1520, + "contributor": 118, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ba31bce-67bc-4e76-93a8-de6081ac940c", + "model": "evaluation.contribution", + "pk": 3496, "fields": { - "question": 326, - "contribution": 1617, - "answer": 2, - "count": 7 + "evaluation": 1525, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ba73f0d-c415-4790-94fc-0e4f7f91faab", + "model": "evaluation.contribution", + "pk": 3497, "fields": { - "question": 326, - "contribution": 4203, - "answer": 4, - "count": 1 + "evaluation": 1525, + "contributor": 118, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ba84644-87ac-4904-ba78-46168fb8a199", + "model": "evaluation.contribution", + "pk": 3508, "fields": { - "question": 434, - "contribution": 4140, - "answer": 2, - "count": 3 + "evaluation": 1531, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0bb20e59-39ff-41c1-a6a3-dd30eaddc77a", + "model": "evaluation.contribution", + "pk": 3509, "fields": { - "question": 328, - "contribution": 1635, - "answer": 5, - "count": 2 + "evaluation": 1531, + "contributor": 118, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0bcd4b3d-a95a-40b1-a753-52e7108dc2a6", + "model": "evaluation.contribution", + "pk": 3515, "fields": { - "question": 344, - "contribution": 3728, - "answer": 5, - "count": 1 + "evaluation": 1531, + "contributor": 215, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0bcd8898-7ad4-4c4e-ab41-10890d17d466", + "model": "evaluation.contribution", + "pk": 3516, "fields": { - "question": 348, - "contribution": 1663, - "answer": 2, - "count": 2 + "evaluation": 1520, + "contributor": 247, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0bd1beb8-a1b4-416e-a278-1dc9275ec1b1", + "model": "evaluation.contribution", + "pk": 3517, "fields": { - "question": 333, - "contribution": 3595, - "answer": 2, - "count": 1 + "evaluation": 1520, + "contributor": 19, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0bd3aa65-2be5-46b7-b382-69c1fb110737", + "model": "evaluation.contribution", + "pk": 3518, "fields": { - "question": 361, - "contribution": 1811, - "answer": 5, - "count": 1 + "evaluation": 1520, + "contributor": 132, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 87, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0bd5916a-914c-439b-aff1-75df587d3ec2", + "model": "evaluation.contribution", + "pk": 3519, "fields": { - "question": 331, - "contribution": 1612, - "answer": 1, - "count": 3 + "evaluation": 1514, + "contributor": 213, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0bdc846a-4e08-4a39-9286-af63579d3787", + "model": "evaluation.contribution", + "pk": 3525, "fields": { - "question": 348, - "contribution": 1851, - "answer": 1, - "count": 1 + "evaluation": 1460, + "contributor": 19, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0bf13fe6-39c2-4315-8d54-48aab0e69078", + "model": "evaluation.contribution", + "pk": 3526, "fields": { - "question": 475, - "contribution": 89, - "answer": 3, - "count": 2 + "evaluation": 1460, + "contributor": 626, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0bf7177d-d8c5-4dd5-a750-ce7b4616a957", + "model": "evaluation.contribution", + "pk": 3528, "fields": { - "question": 355, - "contribution": 3528, - "answer": 3, - "count": 2 + "evaluation": 1510, + "contributor": 110, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0bf781d6-bb60-4526-917d-a3721f3b3340", + "model": "evaluation.contribution", + "pk": 3529, "fields": { - "question": 343, - "contribution": 1247, - "answer": 1, - "count": 1 + "evaluation": 1474, + "contributor": 11, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0bf95c73-cc34-47db-baad-b3a95042805c", + "model": "evaluation.contribution", + "pk": 3530, "fields": { - "question": 326, - "contribution": 4101, - "answer": 2, - "count": 9 + "evaluation": 1474, + "contributor": 110, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c053ff6-abd7-4f60-b5a6-1cc01b9df164", + "model": "evaluation.contribution", + "pk": 3536, "fields": { - "question": 476, - "contribution": 4138, - "answer": 2, - "count": 2 + "evaluation": 1518, + "contributor": 152, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c210a40-a148-4ef9-a186-b02a6d4cc1ca", + "model": "evaluation.contribution", + "pk": 3545, "fields": { - "question": 348, - "contribution": 3935, - "answer": 1, - "count": 1 + "evaluation": 1497, + "contributor": 356, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c293b59-f176-4115-8713-e8a71cfb7c3a", + "model": "evaluation.contribution", + "pk": 3546, "fields": { - "question": 340, - "contribution": 3795, - "answer": 2, - "count": 2 + "evaluation": 1497, + "contributor": 158, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c2a12f5-f1ad-4bc5-a755-cd3756445fb2", + "model": "evaluation.contribution", + "pk": 3551, "fields": { - "question": 356, - "contribution": 3831, - "answer": 2, - "count": 1 + "evaluation": 1472, + "contributor": 595, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c2b1011-d58d-4304-8ce3-bd7bc9f7c902", + "model": "evaluation.contribution", + "pk": 3552, "fields": { - "question": 316, - "contribution": 3474, - "answer": 4, - "count": 3 + "evaluation": 1472, + "contributor": 650, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c37465b-cb3c-4c44-99e2-9dd6868fd1b0", + "model": "evaluation.contribution", + "pk": 3553, "fields": { - "question": 355, - "contribution": 3528, - "answer": 2, - "count": 1 + "evaluation": 1472, + "contributor": 32, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c38fb14-05b9-446b-99f9-7ef550e0f0c4", + "model": "evaluation.contribution", + "pk": 3555, "fields": { - "question": 332, - "contribution": 4204, - "answer": 1, - "count": 17 + "evaluation": 1485, + "contributor": 652, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c4335ca-f2b5-45c8-a92f-2bf6b3213f25", + "model": "evaluation.contribution", + "pk": 3556, "fields": { - "question": 344, - "contribution": 1250, - "answer": 1, - "count": 6 + "evaluation": 1514, + "contributor": 765, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c482d17-1f63-4a51-96b8-47d59ca0e26e", + "model": "evaluation.contribution", + "pk": 3560, "fields": { - "question": 323, - "contribution": 1658, - "answer": 1, - "count": 12 + "evaluation": 1497, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 0, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c5397ed-e45f-4d4b-90b4-d433aeb71517", + "model": "evaluation.contribution", + "pk": 3566, "fields": { - "question": 340, - "contribution": 3454, - "answer": 1, - "count": 5 + "evaluation": 1480, + "contributor": 654, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c5592a1-80c6-44a6-9097-af4f468ed8c6", + "model": "evaluation.contribution", + "pk": 3589, "fields": { - "question": 344, - "contribution": 1881, - "answer": 4, - "count": 2 + "evaluation": 1513, + "contributor": 298, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c5a9c8d-31d5-4211-9cfd-474e06e3ac61", + "model": "evaluation.contribution", + "pk": 3592, "fields": { - "question": 469, - "contribution": 4115, - "answer": 1, - "count": 1 + "evaluation": 1488, + "contributor": 587, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c6818a0-0276-42a5-b911-65591194c219", + "model": "evaluation.contribution", + "pk": 3593, "fields": { - "question": 476, - "contribution": 3474, - "answer": 3, - "count": 2 + "evaluation": 1488, + "contributor": 679, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c769508-c0ca-43e9-bd34-20636568c9ec", + "model": "evaluation.contribution", + "pk": 3594, "fields": { - "question": 367, - "contribution": 3665, - "answer": 3, - "count": 3 + "evaluation": 1488, + "contributor": 585, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c794ba0-b16b-457a-9640-4211edbad2ff", + "model": "evaluation.contribution", + "pk": 3595, "fields": { - "question": 437, - "contribution": 4140, - "answer": 5, - "count": 1 + "evaluation": 1488, + "contributor": 931, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c7b2626-88ae-454c-a0c9-de70c4c37962", + "model": "evaluation.contribution", + "pk": 3596, "fields": { - "question": 345, - "contribution": 3509, - "answer": 1, - "count": 1 + "evaluation": 1488, + "contributor": 584, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 4, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c86c3bf-0b58-4303-9a71-054d347fcd63", + "model": "evaluation.contribution", + "pk": 3597, "fields": { - "question": 380, - "contribution": 3775, - "answer": 2, - "count": 2 + "evaluation": 1488, + "contributor": 769, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 5, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c87418a-bae4-4e17-89d1-a8ed7754276a", + "model": "evaluation.contribution", + "pk": 3598, "fields": { - "question": 390, - "contribution": 3711, - "answer": 1, - "count": 2 + "evaluation": 1488, + "contributor": 770, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 6, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c906de2-fca4-478e-92b7-b7dba7bbada8", + "model": "evaluation.contribution", + "pk": 3603, "fields": { - "question": 349, - "contribution": 4192, - "answer": 1, - "count": 3 + "evaluation": 1479, + "contributor": 597, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c9115c7-c44e-4ed2-815c-6e9bd6d79092", + "model": "evaluation.contribution", + "pk": 3606, "fields": { - "question": 355, - "contribution": 3923, - "answer": 1, - "count": 2 + "evaluation": 1479, + "contributor": 598, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c94eb5d-2b5e-4315-b0e5-865b1e48a2b5", + "model": "evaluation.contribution", + "pk": 3607, "fields": { - "question": 332, - "contribution": 1884, - "answer": 1, - "count": 5 + "evaluation": 1504, + "contributor": 577, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 89, + 90, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0c9d264d-a158-4182-87f6-f4e9b20a6219", + "model": "evaluation.contribution", + "pk": 3608, "fields": { - "question": 369, - "contribution": 3647, - "answer": 1, - "count": 4 + "evaluation": 1504, + "contributor": 178, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 89, + 90, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ca68c32-7a5f-4f88-be83-44d910a63ffc", + "model": "evaluation.contribution", + "pk": 3609, "fields": { - "question": 475, - "contribution": 826, - "answer": -2, - "count": 1 + "evaluation": 1504, + "contributor": 320, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 87, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ca93f77-4f44-4f88-98ee-576ce94731f5", + "model": "evaluation.contribution", + "pk": 3610, "fields": { - "question": 355, - "contribution": 1783, - "answer": 1, - "count": 4 + "evaluation": 1504, + "contributor": 37, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 87, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0cb14e5e-8dac-459c-82e0-a0af3b71b239", + "model": "evaluation.contribution", + "pk": 3620, "fields": { - "question": 258, - "contribution": 4084, - "answer": 1, - "count": 12 + "evaluation": 1504, + "contributor": 106, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 4, + "questionnaires": [ + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0cb59544-6ad2-457c-a17e-8fc7f1188cf7", + "model": "evaluation.contribution", + "pk": 3631, "fields": { - "question": 343, - "contribution": 3728, - "answer": 3, - "count": 1 + "evaluation": 1454, + "contributor": 90, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 85 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0cbd12ed-b881-4ac7-ab58-7550c7cb2dce", + "model": "evaluation.contribution", + "pk": 3634, "fields": { - "question": 344, - "contribution": 1860, - "answer": 3, - "count": 1 + "evaluation": 1468, + "contributor": 334, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0cbfad2c-a168-4e6e-9167-f0df87002774", + "model": "evaluation.contribution", + "pk": 3635, "fields": { - "question": 320, - "contribution": 3422, - "answer": 4, - "count": 4 + "evaluation": 1468, + "contributor": 641, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0cc49531-03e0-4905-babb-09456975a4b6", + "model": "evaluation.contribution", + "pk": 3636, "fields": { - "question": 471, - "contribution": 4090, - "answer": 4, - "count": 1 + "evaluation": 1468, + "contributor": 203, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0cca930d-2911-4a05-8571-8ec55636da2f", + "model": "evaluation.contribution", + "pk": 3637, "fields": { - "question": 378, - "contribution": 3711, - "answer": 2, - "count": 1 + "evaluation": 1468, + "contributor": 670, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0cceed3f-05e5-4681-952c-e81a2d80f01d", + "model": "evaluation.contribution", + "pk": 3638, "fields": { - "question": 258, - "contribution": 4100, - "answer": 2, - "count": 8 + "evaluation": 1468, + "contributor": 642, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 4, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0cd01b52-ad7a-4fab-b59d-543aa2c00a46", + "model": "evaluation.contribution", + "pk": 3645, "fields": { - "question": 477, - "contribution": 3666, - "answer": 1, - "count": 1 + "evaluation": 1534, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0cf810f3-16d8-45b4-837d-d9a6e6257c83", + "model": "evaluation.contribution", + "pk": 3646, "fields": { - "question": 345, - "contribution": 4123, - "answer": 1, - "count": 3 + "evaluation": 1534, + "contributor": 147, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 98, + 90, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0cf974bc-f373-4459-9af3-effcf672a5fd", + "model": "evaluation.contribution", + "pk": 3647, "fields": { - "question": 343, - "contribution": 1151, - "answer": 2, - "count": 1 + "evaluation": 1534, + "contributor": 210, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 2, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d0fa026-6572-4556-93ec-f50d47a5b303", + "model": "evaluation.contribution", + "pk": 3648, "fields": { - "question": 475, - "contribution": 1644, - "answer": 0, - "count": 4 + "evaluation": 1534, + "contributor": 155, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d17d0c0-0c69-4c23-8fae-f0e4f4c4ec14", + "model": "evaluation.contribution", + "pk": 3649, "fields": { - "question": 320, - "contribution": 862, - "answer": 1, - "count": 9 + "evaluation": 1534, + "contributor": 577, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 4, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d24fcda-ff95-40a1-b6d9-d5d3c056b56b", + "model": "evaluation.contribution", + "pk": 3650, "fields": { - "question": 337, - "contribution": 1734, - "answer": 2, - "count": 1 + "evaluation": 1534, + "contributor": 38, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 5, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d2880a8-de43-4466-8ad0-b4a891f24ac0", + "model": "evaluation.contribution", + "pk": 3651, "fields": { - "question": 320, - "contribution": 884, - "answer": 3, - "count": 5 + "evaluation": 1534, + "contributor": 648, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 6, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d2ac159-4ea5-42fa-9294-0d994c097981", + "model": "evaluation.contribution", + "pk": 3652, "fields": { - "question": 328, - "contribution": 3680, - "answer": 3, - "count": 3 + "evaluation": 1534, + "contributor": 97, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 7, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d2fcd5c-1b8a-43f3-aad4-7abbc935d4fa", + "model": "evaluation.contribution", + "pk": 3653, "fields": { - "question": 319, - "contribution": 822, - "answer": 3, - "count": 4 + "evaluation": 1534, + "contributor": 604, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 8, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d35d81a-3226-4501-935e-f34428ab937f", + "model": "evaluation.contribution", + "pk": 3654, "fields": { - "question": 475, - "contribution": 3404, - "answer": 3, - "count": 3 + "evaluation": 1534, + "contributor": 178, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 9, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d39455a-96f6-4362-8856-7d3be09c31b6", + "model": "evaluation.contribution", + "pk": 3665, "fields": { - "question": 258, - "contribution": 3725, - "answer": 1, - "count": 20 + "evaluation": 1540, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d39a570-8def-47d4-9b9b-05c0bf0c1ecd", + "model": "evaluation.contribution", + "pk": 3666, "fields": { - "question": 332, - "contribution": 1282, - "answer": 1, - "count": 4 + "evaluation": 1540, + "contributor": 296, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d4c2e18-2846-4da7-9c6d-3cf649348f3c", + "model": "evaluation.contribution", + "pk": 3673, "fields": { - "question": 320, - "contribution": 4100, - "answer": 4, - "count": 2 + "evaluation": 1544, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d5a07d8-1b72-404f-b8ce-ba3fda55c29e", + "model": "evaluation.contribution", + "pk": 3674, "fields": { - "question": 323, - "contribution": 822, - "answer": 3, - "count": 1 + "evaluation": 1544, + "contributor": 643, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d679cad-d3a1-4e35-a660-f8ecba991541", + "model": "evaluation.contribution", + "pk": 3675, "fields": { - "question": 316, - "contribution": 3422, - "answer": 5, - "count": 1 + "evaluation": 1545, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d6aa880-9b4c-478e-a735-c91dfc7e4664", + "model": "evaluation.contribution", + "pk": 3676, "fields": { - "question": 344, - "contribution": 1842, - "answer": 2, - "count": 2 + "evaluation": 1545, + "contributor": 643, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d6d82f3-d7e9-4da3-9721-925075329a62", + "model": "evaluation.contribution", + "pk": 3679, "fields": { - "question": 338, - "contribution": 1694, - "answer": 4, - "count": 1 + "evaluation": 1547, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d7150f8-d9ad-4d51-ab7f-ad85757821cd", + "model": "evaluation.contribution", + "pk": 3680, "fields": { - "question": 323, - "contribution": 3406, - "answer": 3, - "count": 1 + "evaluation": 1547, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d75eb32-2a92-4015-bb53-fd28cd043a6c", + "model": "evaluation.contribution", + "pk": 3681, "fields": { - "question": 343, - "contribution": 1822, - "answer": 1, - "count": 4 + "evaluation": 1548, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d78836e-ac64-46ed-a44c-c35d8de9edf9", + "model": "evaluation.contribution", + "pk": 3682, "fields": { - "question": 347, - "contribution": 3935, - "answer": 1, - "count": 1 + "evaluation": 1548, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d798961-10d8-473f-831f-d8b2d1da876a", + "model": "evaluation.contribution", + "pk": 3683, "fields": { - "question": 320, - "contribution": 3472, - "answer": 2, - "count": 4 + "evaluation": 1549, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 82, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d7ac8be-d7f3-4610-b493-f383cbcc030b", + "model": "evaluation.contribution", + "pk": 3684, "fields": { - "question": 327, - "contribution": 3530, - "answer": 1, - "count": 3 + "evaluation": 1549, + "contributor": 286, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d990417-56cb-4de7-a3f9-0fdceb3f6ec5", + "model": "evaluation.contribution", + "pk": 3685, "fields": { - "question": 336, - "contribution": 3404, - "answer": 5, - "count": 1 + "evaluation": 1550, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0d9ed6ad-7c93-47dc-95f6-9c3b2317bc9f", + "model": "evaluation.contribution", + "pk": 3686, "fields": { - "question": 343, - "contribution": 1206, - "answer": 2, - "count": 2 + "evaluation": 1550, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0dae24ae-5614-4006-ac51-bc7023245fb9", + "model": "evaluation.contribution", + "pk": 3693, "fields": { - "question": 260, - "contribution": 4084, - "answer": 2, - "count": 13 + "evaluation": 1554, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0db6f60a-f185-44ae-b054-05223e9c9690", + "model": "evaluation.contribution", + "pk": 3694, "fields": { - "question": 353, - "contribution": 1257, - "answer": 1, - "count": 6 + "evaluation": 1554, + "contributor": 70, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0dbd3fed-2ed5-443f-b7e4-7d8304e44536", + "model": "evaluation.contribution", + "pk": 3703, "fields": { - "question": 339, - "contribution": 4094, - "answer": -1, - "count": 1 + "evaluation": 1559, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0dd1889e-303b-48f2-91a7-99060a346ad2", + "model": "evaluation.contribution", + "pk": 3704, "fields": { - "question": 322, - "contribution": 3474, - "answer": 3, - "count": 6 + "evaluation": 1559, + "contributor": 139, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0dd38983-3316-4f7f-8272-332fab52f11e", + "model": "evaluation.contribution", + "pk": 3711, "fields": { - "question": 350, - "contribution": 788, - "answer": 2, - "count": 1 + "evaluation": 1563, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 94, + 95, + 96, + 97, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0dda50e3-4656-4b70-af97-171b4fa39301", + "model": "evaluation.contribution", + "pk": 3712, "fields": { - "question": 379, - "contribution": 3775, - "answer": 3, - "count": 3 + "evaluation": 1563, + "contributor": 118, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0dfc02aa-193f-4271-aa89-c63b2bcbbfbe", + "model": "evaluation.contribution", + "pk": 3713, "fields": { - "question": 368, - "contribution": 3473, - "answer": 1, - "count": 6 + "evaluation": 1564, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0dfd0f2c-833b-4287-a235-a2fb9c2406dc", + "model": "evaluation.contribution", + "pk": 3714, "fields": { - "question": 339, - "contribution": 3440, - "answer": 3, - "count": 3 + "evaluation": 1564, + "contributor": 749, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0dfd66dd-7393-4e15-ac6d-a564caf5d905", + "model": "evaluation.contribution", + "pk": 3721, "fields": { - "question": 354, - "contribution": 4244, - "answer": 2, - "count": 1 + "evaluation": 1568, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e00d385-93da-4df7-89ea-05cb162ce2c7", + "model": "evaluation.contribution", + "pk": 3722, "fields": { - "question": 473, - "contribution": 4072, - "answer": 1, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "0e0d9751-61e4-4571-ae0b-f334a2af4f85", - "fields": { - "question": 319, - "contribution": 884, - "answer": 4, - "count": 3 + "evaluation": 1568, + "contributor": 124, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e11bcb7-4da9-40f3-a05b-798d1b46eb1e", + "model": "evaluation.contribution", + "pk": 3723, "fields": { - "question": 339, - "contribution": 918, - "answer": 1, - "count": 2 + "evaluation": 1569, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e2b8be8-ab79-46cf-91cc-d8d4917155a4", + "model": "evaluation.contribution", + "pk": 3724, "fields": { - "question": 343, - "contribution": 1641, - "answer": 1, - "count": 1 + "evaluation": 1569, + "contributor": 123, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e36fb9f-12fc-4404-9b7a-fa55afd6010a", + "model": "evaluation.contribution", + "pk": 3725, "fields": { - "question": 327, - "contribution": 4085, - "answer": 1, - "count": 25 + "evaluation": 1570, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e3b4008-2199-4123-88b5-a75da136e6c3", + "model": "evaluation.contribution", + "pk": 3726, "fields": { - "question": 344, - "contribution": 1204, - "answer": 2, - "count": 6 + "evaluation": 1570, + "contributor": 123, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e5379ae-b793-48c6-a8b4-ec3a5e6ccff9", + "model": "evaluation.contribution", + "pk": 3727, "fields": { - "question": 337, - "contribution": 1200, - "answer": 4, - "count": 1 + "evaluation": 1571, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e61350d-9af5-4fde-bc0b-90f1bb0e20c4", + "model": "evaluation.contribution", + "pk": 3728, "fields": { - "question": 347, - "contribution": 4187, - "answer": 3, - "count": 1 + "evaluation": 1571, + "contributor": 933, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e6170a7-bfe6-474f-bf3d-0e3dc82f6db3", + "model": "evaluation.contribution", + "pk": 3735, "fields": { - "question": 338, - "contribution": 1694, - "answer": 3, - "count": 1 + "evaluation": 1575, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e646e9c-ff14-4f1c-95c8-cdf8033efd85", + "model": "evaluation.contribution", + "pk": 3736, "fields": { - "question": 343, - "contribution": 3608, - "answer": 3, - "count": 1 + "evaluation": 1575, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e688ed8-e8d6-4126-97b2-8f3773f92f4b", + "model": "evaluation.contribution", + "pk": 3739, "fields": { - "question": 317, - "contribution": 3462, - "answer": 1, - "count": 4 + "evaluation": 1577, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e72bf86-ea99-44f5-8970-a6e4b0fb242f", + "model": "evaluation.contribution", + "pk": 3740, "fields": { - "question": 323, - "contribution": 908, - "answer": 3, - "count": 8 + "evaluation": 1577, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e747970-2d20-4b66-8da2-66fae1142ba2", + "model": "evaluation.contribution", + "pk": 3745, "fields": { - "question": 343, - "contribution": 4191, - "answer": 2, - "count": 1 + "evaluation": 1580, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e7daf7e-c9ae-4b33-a30b-fa234f8de50c", + "model": "evaluation.contribution", + "pk": 3746, "fields": { - "question": 321, - "contribution": 880, - "answer": 3, - "count": 8 + "evaluation": 1580, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e813827-2536-4cca-a047-5e0f557df8a9", + "model": "evaluation.contribution", + "pk": 3751, "fields": { - "question": 325, - "contribution": 3463, - "answer": 1, - "count": 5 + "evaluation": 1583, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e90c187-2999-4520-b38a-a872a6cbc01b", + "model": "evaluation.contribution", + "pk": 3752, "fields": { - "question": 315, - "contribution": 3679, - "answer": 1, - "count": 15 + "evaluation": 1583, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0e9827b8-82bb-404b-ac5f-9bdecf626629", + "model": "evaluation.contribution", + "pk": 3755, "fields": { - "question": 362, - "contribution": 3649, - "answer": 1, - "count": 5 + "evaluation": 1585, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 94, + 95, + 96, + 97, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ea0a4f3-f355-48d6-9c55-ccc167ae7318", + "model": "evaluation.contribution", + "pk": 3756, "fields": { - "question": 344, - "contribution": 1922, - "answer": 1, - "count": 2 + "evaluation": 1585, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0eb374cd-f1e7-4650-81b8-eb0ae4d74b79", + "model": "evaluation.contribution", + "pk": 3757, "fields": { - "question": 343, - "contribution": 3822, - "answer": 2, - "count": 3 + "evaluation": 1586, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ebdce89-dc50-4d9a-97f4-55e5e77f6453", + "model": "evaluation.contribution", + "pk": 3758, "fields": { - "question": 322, - "contribution": 884, - "answer": 2, - "count": 10 + "evaluation": 1586, + "contributor": 817, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ec99f2e-19e3-46e1-ab09-19de3953b424", + "model": "evaluation.contribution", + "pk": 3759, "fields": { - "question": 370, - "contribution": 1845, - "answer": 1, - "count": 2 + "evaluation": 1587, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ecc0f43-cf4c-4e01-bf96-e5898c0e8c9a", + "model": "evaluation.contribution", + "pk": 3760, "fields": { - "question": 435, - "contribution": 4140, - "answer": 2, - "count": 3 + "evaluation": 1587, + "contributor": 210, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ed8b163-5682-4ef6-bae0-18703d4ba7a6", + "model": "evaluation.contribution", + "pk": 3775, "fields": { - "question": 355, - "contribution": 3545, - "answer": 2, - "count": 3 + "evaluation": 1595, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 94, + 95, + 96, + 97, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0edf6856-89a9-4143-87b1-0d7c4c3eb77b", + "model": "evaluation.contribution", + "pk": 3776, "fields": { - "question": 331, - "contribution": 1668, - "answer": 1, - "count": 2 + "evaluation": 1595, + "contributor": 103, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ee2a4ea-f0be-4983-9088-4280089add4a", + "model": "evaluation.contribution", + "pk": 3781, "fields": { - "question": 354, - "contribution": 1786, - "answer": 2, - "count": 2 + "evaluation": 1598, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 94, + 95, + 96, + 97, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ee86595-a7ab-492c-94eb-69ac5c962292", + "model": "evaluation.contribution", + "pk": 3782, "fields": { - "question": 366, - "contribution": 3961, - "answer": 1, - "count": 1 + "evaluation": 1598, + "contributor": 44, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ef194fe-a234-4789-8ee1-b925b34fea18", + "model": "evaluation.contribution", + "pk": 3785, "fields": { - "question": 341, - "contribution": 1660, - "answer": 1, - "count": 1 + "evaluation": 1600, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0efcea4b-43e0-4fa8-bce4-63758145b12f", + "model": "evaluation.contribution", + "pk": 3786, "fields": { - "question": 260, - "contribution": 4046, - "answer": 3, - "count": 1 + "evaluation": 1600, + "contributor": 89, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f0877ca-b262-49aa-a01a-6a17618dbc20", + "model": "evaluation.contribution", + "pk": 3791, "fields": { - "question": 354, - "contribution": 3545, - "answer": 3, - "count": 2 + "evaluation": 1603, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f123c50-495e-4fb4-80b9-736a3e3344cf", + "model": "evaluation.contribution", + "pk": 3792, "fields": { - "question": 345, - "contribution": 3879, - "answer": 2, - "count": 3 + "evaluation": 1603, + "contributor": 89, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f1b55b0-647d-4455-be2a-b57d8e577eb2", + "model": "evaluation.contribution", + "pk": 3795, "fields": { - "question": 355, - "contribution": 1243, - "answer": 2, - "count": 1 + "evaluation": 1605, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f1ebe91-d0bb-4c10-96de-77903a8d8771", + "model": "evaluation.contribution", + "pk": 3796, "fields": { - "question": 333, - "contribution": 4152, - "answer": 4, - "count": 4 + "evaluation": 1605, + "contributor": 291, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f21bfc3-288e-4b24-a3dd-7863244ae947", + "model": "evaluation.contribution", + "pk": 3805, "fields": { - "question": 436, - "contribution": 4140, - "answer": 4, - "count": 1 + "evaluation": 1610, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f244edb-c03d-4cf5-be92-f68cc98b641c", + "model": "evaluation.contribution", + "pk": 3806, "fields": { - "question": 257, - "contribution": 908, - "answer": 1, - "count": 11 + "evaluation": 1610, + "contributor": 568, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f2ec52d-9c6b-4f39-94ee-781116d8e423", + "model": "evaluation.contribution", + "pk": 3811, "fields": { - "question": 378, - "contribution": 3775, - "answer": 1, - "count": 2 + "evaluation": 1613, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f2fa43f-caba-4fd5-8e7a-dd52afa4a733", + "model": "evaluation.contribution", + "pk": 3812, "fields": { - "question": 360, - "contribution": 3651, - "answer": 1, - "count": 2 + "evaluation": 1613, + "contributor": 292, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f313d2c-fee7-4f02-a49c-b668ab4b8944", + "model": "evaluation.contribution", + "pk": 3813, "fields": { - "question": 347, - "contribution": 3373, - "answer": 4, - "count": 1 + "evaluation": 1614, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 104, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f3a945e-4e2b-4527-8612-4cd3dd880d57", + "model": "evaluation.contribution", + "pk": 3814, "fields": { - "question": 346, - "contribution": 4095, - "answer": 1, - "count": 8 + "evaluation": 1614, + "contributor": 292, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f3b2c2b-0b5a-49f1-a0a6-b4f83f45a793", + "model": "evaluation.contribution", + "pk": 3821, "fields": { - "question": 348, - "contribution": 1749, - "answer": 1, - "count": 1 + "evaluation": 1618, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f3ee64b-8242-466e-a1de-9ab88fc69b47", + "model": "evaluation.contribution", + "pk": 3822, "fields": { - "question": 391, - "contribution": 3755, - "answer": 1, - "count": 1 + "evaluation": 1618, + "contributor": 288, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f4d51b0-37e1-4daa-8c92-ec8a1e818f92", + "model": "evaluation.contribution", + "pk": 3831, "fields": { - "question": 1, - "contribution": 4303, - "answer": 2, - "count": 8 + "evaluation": 1585, + "contributor": 779, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f52cf86-36bc-48ec-8996-24789f37a36a", + "model": "evaluation.contribution", + "pk": 3832, "fields": { - "question": 348, - "contribution": 1661, - "answer": 1, - "count": 2 + "evaluation": 1585, + "contributor": 778, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f63af69-a0a4-49b4-9c5f-0bd1c10492ac", + "model": "evaluation.contribution", + "pk": 3834, "fields": { - "question": 340, - "contribution": 858, - "answer": 3, - "count": 2 + "evaluation": 1598, + "contributor": 22, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f6b494a-9639-475d-a4a9-116bc87d1f75", + "model": "evaluation.contribution", + "pk": 3835, "fields": { - "question": 348, - "contribution": 3610, - "answer": 1, - "count": 3 + "evaluation": 1598, + "contributor": 106, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f6cb22f-1bed-442f-8767-cfbf69fdb94c", + "model": "evaluation.contribution", + "pk": 3847, "fields": { - "question": 348, - "contribution": 4123, - "answer": 3, - "count": 1 + "evaluation": 1563, + "contributor": 215, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f817503-fcf6-4b03-bf99-f6ae700492ae", + "model": "evaluation.contribution", + "pk": 3848, "fields": { - "question": 353, - "contribution": 1844, - "answer": 1, - "count": 2 + "evaluation": 1563, + "contributor": 19, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f83c1ef-34df-4b47-ad90-ff650a6d30ca", + "model": "evaluation.contribution", + "pk": 3849, "fields": { - "question": 475, - "contribution": 1638, - "answer": 0, - "count": 6 + "evaluation": 1595, + "contributor": 620, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f87f8cd-1330-44db-9220-cc762ec333ed", + "model": "evaluation.contribution", + "pk": 3852, "fields": { - "question": 343, - "contribution": 3367, - "answer": 1, - "count": 1 + "evaluation": 1595, + "contributor": 820, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0f966468-3ff9-4430-8c60-0007e453e179", + "model": "evaluation.contribution", + "pk": 3855, "fields": { - "question": 476, - "contribution": 880, - "answer": -1, - "count": 1 + "evaluation": 1569, + "contributor": 599, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0fa1938e-c7f2-4bb8-b172-7e29ae4f166e", + "model": "evaluation.contribution", + "pk": 3859, "fields": { - "question": 368, - "contribution": 3391, - "answer": 4, - "count": 1 + "evaluation": 1570, + "contributor": 609, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0fa93f14-252a-4a08-b13b-24e7fcc44504", + "model": "evaluation.contribution", + "pk": 3862, "fields": { - "question": 368, - "contribution": 4101, - "answer": 5, - "count": 1 + "evaluation": 1600, + "contributor": 821, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0faa5dc4-7bee-4a2a-a4e8-7d74b5ade8d4", + "model": "evaluation.contribution", + "pk": 3879, "fields": { - "question": 337, - "contribution": 3821, - "answer": 2, - "count": 2 + "evaluation": 1559, + "contributor": 822, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0fadb16c-35e8-4748-bff2-320c284d38fe", + "model": "evaluation.contribution", + "pk": 3881, "fields": { - "question": 321, - "contribution": 3390, - "answer": 5, - "count": 4 + "evaluation": 1540, + "contributor": 453, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0fb01aa7-e855-4a95-a1ff-c4ec5c1ade60", + "model": "evaluation.contribution", + "pk": 3882, "fields": { - "question": 477, - "contribution": 1186, - "answer": -2, - "count": 5 + "evaluation": 1540, + "contributor": 466, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0fb1bc68-25ae-4c8e-83ed-2728cf06f4c4", + "model": "evaluation.contribution", + "pk": 3883, "fields": { - "question": 336, - "contribution": 3486, - "answer": 4, - "count": 1 + "evaluation": 1540, + "contributor": 517, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0fbb9054-0aa1-4018-adaa-3afae948d02f", + "model": "evaluation.contribution", + "pk": 3884, "fields": { - "question": 476, - "contribution": 3721, - "answer": -2, - "count": 1 + "evaluation": 1540, + "contributor": 373, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0fc00c6a-44b0-4311-b7cd-454adc75b793", + "model": "evaluation.contribution", + "pk": 3885, "fields": { - "question": 346, - "contribution": 3545, - "answer": 2, - "count": 2 + "evaluation": 1549, + "contributor": 91, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0fde0d33-a2c1-4e91-817b-fc73fb65622a", + "model": "evaluation.contribution", + "pk": 3886, "fields": { - "question": 343, - "contribution": 4146, - "answer": 1, - "count": 3 + "evaluation": 1549, + "contributor": 616, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0fe63311-7ec8-4f0e-8bed-e1ca01873d8a", + "model": "evaluation.contribution", + "pk": 3890, "fields": { - "question": 322, - "contribution": 1680, - "answer": 2, - "count": 3 + "evaluation": 1548, + "contributor": 152, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0fe66cfc-6dc4-461c-843b-b5424829ab69", + "model": "evaluation.contribution", + "pk": 3893, "fields": { - "question": 347, - "contribution": 4021, - "answer": 2, - "count": 1 + "evaluation": 1547, + "contributor": 768, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0fe9ad1a-c56c-4374-9ec6-8ba442ae2b6f", + "model": "evaluation.contribution", + "pk": 3894, "fields": { - "question": 473, - "contribution": 886, - "answer": 0, - "count": 6 + "evaluation": 1550, + "contributor": 768, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ff4db42-04a5-4537-b50d-a573566aad49", + "model": "evaluation.contribution", + "pk": 3895, "fields": { - "question": 339, - "contribution": 1200, - "answer": -1, - "count": 12 + "evaluation": 1550, + "contributor": 100, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "0ffe77c8-7300-4892-8c76-f834065922b8", + "model": "evaluation.contribution", + "pk": 3896, "fields": { - "question": 323, - "contribution": 4116, - "answer": 3, - "count": 1 + "evaluation": 1550, + "contributor": 588, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10096104-b201-4af2-8907-193cf39bcd2e", + "model": "evaluation.contribution", + "pk": 3899, "fields": { - "question": 343, - "contribution": 1228, - "answer": 2, - "count": 2 + "evaluation": 1605, + "contributor": 605, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "100d4c53-9a4b-4afe-9405-6ff869855d04", + "model": "evaluation.contribution", + "pk": 3900, "fields": { - "question": 475, - "contribution": 886, - "answer": 3, - "count": 1 + "evaluation": 1605, + "contributor": 606, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10122da0-9872-4244-985b-3648c48c3c07", + "model": "evaluation.contribution", + "pk": 3909, "fields": { - "question": 473, - "contribution": 1734, - "answer": -1, - "count": 1 + "evaluation": 1549, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 0, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "101c621d-793e-4b1d-a9e0-8168bf791818", + "model": "evaluation.contribution", + "pk": 3912, "fields": { - "question": 257, - "contribution": 3474, - "answer": 3, - "count": 3 + "evaluation": 1618, + "contributor": 777, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1024dec7-fbeb-4d02-8a99-993420867820", + "model": "evaluation.contribution", + "pk": 3913, "fields": { - "question": 326, - "contribution": 3722, - "answer": 4, - "count": 1 + "evaluation": 1618, + "contributor": 825, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1026fdd5-c6bc-449f-b8b0-c4cac1f094c6", + "model": "evaluation.contribution", + "pk": 3914, "fields": { - "question": 340, - "contribution": 918, - "answer": 4, - "count": 1 + "evaluation": 1618, + "contributor": 826, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "103aaa61-49a7-4126-ac3b-869e7e21a1dc", + "model": "evaluation.contribution", + "pk": 3915, "fields": { - "question": 476, - "contribution": 4138, - "answer": 0, - "count": 13 + "evaluation": 1564, + "contributor": 827, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1046123e-12ec-4e9a-a174-f75142aae9e6", + "model": "evaluation.contribution", + "pk": 3916, "fields": { - "question": 333, - "contribution": 837, - "answer": 2, - "count": 3 + "evaluation": 1568, + "contributor": 738, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "105e7b39-68fd-4960-860e-010ed9eb584d", + "model": "evaluation.contribution", + "pk": 3917, "fields": { - "question": 347, - "contribution": 4123, - "answer": 1, - "count": 2 + "evaluation": 1568, + "contributor": 828, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1061bd69-377d-4943-9925-428f3ffa8794", + "model": "evaluation.contribution", + "pk": 3918, "fields": { - "question": 345, - "contribution": 1246, - "answer": 5, - "count": 2 + "evaluation": 1568, + "contributor": 350, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10759dfa-693d-4dea-ae21-4cdb16f653d4", + "model": "evaluation.contribution", + "pk": 3919, "fields": { - "question": 326, - "contribution": 3884, - "answer": 3, - "count": 1 + "evaluation": 1568, + "contributor": 587, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1075edab-cdae-481a-952d-4840e48b24b5", + "model": "evaluation.contribution", + "pk": 3920, "fields": { - "question": 332, - "contribution": 4261, - "answer": 1, - "count": 11 + "evaluation": 1568, + "contributor": 585, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 4, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "107cf8a2-6886-446e-b9c5-7873b35fbad3", + "model": "evaluation.contribution", + "pk": 3921, "fields": { - "question": 347, - "contribution": 1247, - "answer": 1, - "count": 1 + "evaluation": 1568, + "contributor": 674, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 5, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10830cbd-c1f9-4db6-b3a9-5c6ac5c328c2", + "model": "evaluation.contribution", + "pk": 3922, "fields": { - "question": 255, - "contribution": 4128, - "answer": 1, - "count": 8 + "evaluation": 1568, + "contributor": 769, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 6, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "108a039c-9615-4d3e-9a03-6813276d4833", + "model": "evaluation.contribution", + "pk": 3923, "fields": { - "question": 329, - "contribution": 4085, - "answer": 2, - "count": 15 + "evaluation": 1554, + "contributor": 11, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "108f3c7b-9e84-4579-b1bf-02147d6186b1", + "model": "evaluation.contribution", + "pk": 3929, "fields": { - "question": 347, - "contribution": 3546, - "answer": 2, - "count": 4 + "evaluation": 1547, + "contributor": 829, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1093e66c-77c1-481e-a6d3-0a016e480cb7", + "model": "evaluation.contribution", + "pk": 3932, "fields": { - "question": 344, - "contribution": 3890, - "answer": 1, - "count": 1 + "evaluation": 1577, + "contributor": 32, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1098070a-a64b-4b8e-a190-f79e3f4e62f0", + "model": "evaluation.contribution", + "pk": 3934, "fields": { - "question": 349, - "contribution": 4003, - "answer": 2, - "count": 1 + "evaluation": 1583, + "contributor": 591, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10a0ec22-6d5a-4b28-83ba-739b37aa8f27", + "model": "evaluation.contribution", + "pk": 3935, "fields": { - "question": 319, - "contribution": 1626, - "answer": 4, - "count": 4 + "evaluation": 1583, + "contributor": 659, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10a12287-fbfc-4fce-a421-862d1aa17909", + "model": "evaluation.contribution", + "pk": 3936, "fields": { - "question": 319, - "contribution": 4120, - "answer": 5, - "count": 4 + "evaluation": 1577, + "contributor": 356, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10a43955-27d0-4cb4-800f-c508a8f7cea0", + "model": "evaluation.contribution", + "pk": 3939, "fields": { - "question": 473, - "contribution": 880, - "answer": -1, - "count": 8 + "evaluation": 1580, + "contributor": 146, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10a729df-4042-4ffc-b908-1ea834609d60", + "model": "evaluation.contribution", + "pk": 3941, "fields": { - "question": 332, - "contribution": 1283, - "answer": 4, - "count": 1 + "evaluation": 1575, + "contributor": 595, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10b27542-f8dd-4020-b59b-eb6486faa0e1", + "model": "evaluation.contribution", + "pk": 3942, "fields": { - "question": 317, - "contribution": 4084, - "answer": 2, - "count": 12 + "evaluation": 1575, + "contributor": 32, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10b33318-bf16-484d-b822-0763ab7cdde3", + "model": "evaluation.contribution", + "pk": 3943, "fields": { - "question": 343, - "contribution": 3608, - "answer": 1, - "count": 4 + "evaluation": 1575, + "contributor": 650, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10bbc800-b6f1-4aad-8095-1c82202f1293", + "model": "evaluation.contribution", + "pk": 3944, "fields": { - "question": 332, - "contribution": 1283, - "answer": 1, - "count": 5 + "evaluation": 1575, + "contributor": 823, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 91, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10c9bbf4-a2f1-48fe-bc3d-641c898d2b82", + "model": "evaluation.contribution", + "pk": 3960, "fields": { - "question": 255, - "contribution": 4084, - "answer": 4, - "count": 7 + "evaluation": 1587, + "contributor": 97, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10d10dfa-7044-40b0-a5e9-74d717a07f40", + "model": "evaluation.contribution", + "pk": 3961, "fields": { - "question": 340, - "contribution": 1662, - "answer": 2, - "count": 1 + "evaluation": 1587, + "contributor": 648, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10e2169c-a00e-4635-b69f-17c82108dfd7", + "model": "evaluation.contribution", + "pk": 3974, "fields": { - "question": 366, - "contribution": 3631, - "answer": 5, - "count": 1 + "evaluation": 1624, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 99, + 100, + 101, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10e5eed3-d0ac-4994-a48b-a1280e1b6152", + "model": "evaluation.contribution", + "pk": 3975, "fields": { - "question": 344, - "contribution": 4189, - "answer": 2, - "count": 2 + "evaluation": 1624, + "contributor": 89, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10e9adb0-7bde-41fa-9657-8c19f02521ca", + "model": "evaluation.contribution", + "pk": 3976, "fields": { - "question": 347, - "contribution": 3516, - "answer": 3, - "count": 1 + "evaluation": 1625, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 104, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10f249d1-16c2-4bf6-b4b7-79cff1b760dc", + "model": "evaluation.contribution", + "pk": 3977, "fields": { - "question": 329, - "contribution": 4047, - "answer": 1, - "count": 9 + "evaluation": 1625, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10fc1917-8948-4658-995a-95a59db580ee", + "model": "evaluation.contribution", + "pk": 3984, "fields": { - "question": 326, - "contribution": 3423, - "answer": 2, - "count": 9 + "evaluation": 1629, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 99, + 100, + 101, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "10ff3a9b-3009-4da8-a771-6c31b20ac27f", + "model": "evaluation.contribution", + "pk": 3985, "fields": { - "question": 452, - "contribution": 4185, - "answer": 3, - "count": 3 + "evaluation": 1629, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1104ee8a-a041-45dd-8b94-43c42aa537e9", + "model": "evaluation.contribution", + "pk": 3994, "fields": { - "question": 475, - "contribution": 1200, - "answer": -1, - "count": 2 + "evaluation": 1634, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 94, + 95, + 96, + 97, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "110c5d05-0e70-4794-87dd-e5d483b2cd21", + "model": "evaluation.contribution", + "pk": 3995, "fields": { - "question": 348, - "contribution": 4191, - "answer": 2, - "count": 1 + "evaluation": 1634, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "110cd4f2-8f68-48e1-b3c5-4306afa3fb41", + "model": "evaluation.contribution", + "pk": 4002, "fields": { - "question": 322, - "contribution": 4128, - "answer": 2, - "count": 5 + "evaluation": 1638, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "110f76da-c6d9-4589-b156-ed91f94a67bf", + "model": "evaluation.contribution", + "pk": 4003, "fields": { - "question": 335, - "contribution": 3886, - "answer": 2, - "count": 1 + "evaluation": 1638, + "contributor": 103, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1111c45b-bef4-4acd-81fa-87df511f3d0a", + "model": "evaluation.contribution", + "pk": 4008, "fields": { - "question": 255, - "contribution": 3434, - "answer": 1, - "count": 21 + "evaluation": 1641, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 104, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11186798-e48e-443b-80d0-3240a33e5d72", + "model": "evaluation.contribution", + "pk": 4009, "fields": { - "question": 320, - "contribution": 1680, - "answer": 2, - "count": 2 + "evaluation": 1641, + "contributor": 103, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "112c53bb-c6e1-43a3-a6c1-cd7592605e92", + "model": "evaluation.contribution", + "pk": 4018, "fields": { - "question": 354, - "contribution": 1783, - "answer": 1, - "count": 4 + "evaluation": 1646, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "113b8221-42c7-4416-87b6-ebfff5a2869b", + "model": "evaluation.contribution", + "pk": 4019, "fields": { - "question": 348, - "contribution": 3610, - "answer": 2, - "count": 1 + "evaluation": 1646, + "contributor": 70, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1141522a-7792-4e7f-87e9-82ea456fbca1", + "model": "evaluation.contribution", + "pk": 4020, "fields": { - "question": 348, - "contribution": 1867, - "answer": 3, - "count": 1 + "evaluation": 1647, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "114b3132-0a8e-410d-9e4e-00a81734f190", + "model": "evaluation.contribution", + "pk": 4021, "fields": { - "question": 326, - "contribution": 881, - "answer": 1, - "count": 2 + "evaluation": 1647, + "contributor": 70, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "115098c3-8c83-4f9c-b2d2-cb77f14a9b8a", + "model": "evaluation.contribution", + "pk": 4022, "fields": { - "question": 337, - "contribution": 1638, - "answer": 3, - "count": 3 + "evaluation": 1648, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11534985-b5a8-4607-98a3-191bd592ef84", + "model": "evaluation.contribution", + "pk": 4023, "fields": { - "question": 328, - "contribution": 4047, - "answer": 1, - "count": 4 + "evaluation": 1648, + "contributor": 70, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "115623b1-f6bf-467e-9cdc-c303937689ea", + "model": "evaluation.contribution", + "pk": 4024, "fields": { - "question": 257, - "contribution": 3721, - "answer": 4, - "count": 3 + "evaluation": 1649, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 99, + 100, + 101, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "115c9bbc-3a44-44e5-a810-7853727bd451", + "model": "evaluation.contribution", + "pk": 4025, "fields": { - "question": 329, - "contribution": 909, - "answer": 2, - "count": 10 + "evaluation": 1649, + "contributor": 70, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "115d8af6-ab0b-4f8c-a88b-988d42b335a3", + "model": "evaluation.contribution", + "pk": 4028, "fields": { - "question": 355, - "contribution": 4279, - "answer": 3, - "count": 1 + "evaluation": 1651, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1169f5c6-5297-422c-8ec0-7ea3660844cb", + "model": "evaluation.contribution", + "pk": 4029, "fields": { - "question": 345, - "contribution": 3607, - "answer": 4, - "count": 1 + "evaluation": 1651, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1170694d-6f89-4ae2-803b-176510e6365d", + "model": "evaluation.contribution", + "pk": 4032, "fields": { - "question": 322, - "contribution": 862, - "answer": 3, - "count": 1 + "evaluation": 1653, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11760382-cb0e-48df-a86a-9d87a73e061a", + "model": "evaluation.contribution", + "pk": 4033, "fields": { - "question": 328, - "contribution": 885, - "answer": 2, - "count": 2 + "evaluation": 1653, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1176bf2d-7d5f-4b99-9806-d7d1cd710c8a", + "model": "evaluation.contribution", + "pk": 4036, "fields": { - "question": 436, - "contribution": 3976, - "answer": 1, - "count": 1 + "evaluation": 1655, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "117b272f-6759-4c1c-8c38-ac1ccc6f9c49", + "model": "evaluation.contribution", + "pk": 4037, "fields": { - "question": 325, - "contribution": 4085, - "answer": 2, - "count": 10 + "evaluation": 1655, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 89 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "117d4c6e-80d4-4db3-9f60-3b86cbc1a4fc", + "model": "evaluation.contribution", + "pk": 4038, "fields": { - "question": 473, - "contribution": 858, - "answer": 0, - "count": 6 + "evaluation": 1656, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 99, + 100, + 101, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "119084ef-f06f-4844-8c94-0bbe534ef182", + "model": "evaluation.contribution", + "pk": 4039, "fields": { - "question": 473, - "contribution": 884, - "answer": -1, - "count": 5 + "evaluation": 1656, + "contributor": 117, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11a04c07-aec0-44ae-9717-43a393b4f1b9", + "model": "evaluation.contribution", + "pk": 4040, "fields": { - "question": 353, - "contribution": 3528, - "answer": 1, - "count": 2 + "evaluation": 1657, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11a56534-314a-42dd-b233-6c12ed8e7ef0", + "model": "evaluation.contribution", + "pk": 4041, "fields": { - "question": 340, - "contribution": 1660, - "answer": 1, - "count": 4 + "evaluation": 1657, + "contributor": 580, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 98, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11a9d734-996b-446e-a23a-e8f0c31ae988", + "model": "evaluation.contribution", + "pk": 4046, "fields": { - "question": 347, - "contribution": 869, - "answer": 1, - "count": 4 + "evaluation": 1660, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 88, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11b77207-e9c5-4052-a025-28b4b9fa1a6d", + "model": "evaluation.contribution", + "pk": 4047, "fields": { - "question": 352, - "contribution": 788, - "answer": 2, - "count": 2 + "evaluation": 1660, + "contributor": 113, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11bc75eb-3c4a-4cfa-ac08-aada340bced3", + "model": "evaluation.contribution", + "pk": 4052, "fields": { - "question": 336, - "contribution": 1656, - "answer": 1, - "count": 6 + "evaluation": 1663, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 86, + 104, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11c47755-2e08-422d-9e96-81b1cf1088c4", + "model": "evaluation.contribution", + "pk": 4053, "fields": { - "question": 348, - "contribution": 1645, - "answer": 4, - "count": 1 + "evaluation": 1663, + "contributor": 929, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11d418e6-3043-4e94-9c11-8ce3dfeb854f", + "model": "evaluation.contribution", + "pk": 4062, "fields": { - "question": 477, - "contribution": 1780, - "answer": 1, - "count": 4 + "evaluation": 1668, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11e39b37-8f86-400f-95b6-f342446ee6a5", + "model": "evaluation.contribution", + "pk": 4063, "fields": { - "question": 328, - "contribution": 4153, - "answer": 2, - "count": 4 + "evaluation": 1668, + "contributor": 929, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11f602ca-bc19-4e71-a4f0-3309c2da79e1", + "model": "evaluation.contribution", + "pk": 4072, "fields": { - "question": 257, - "contribution": 4120, - "answer": 5, - "count": 2 + "evaluation": 1673, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11f70250-446b-4cbe-b30d-2b58b7d8883d", + "model": "evaluation.contribution", + "pk": 4073, "fields": { - "question": 349, - "contribution": 3899, - "answer": 2, - "count": 1 + "evaluation": 1673, + "contributor": 296, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "11ff041f-be5c-4951-9da2-3292803decc4", + "model": "evaluation.contribution", + "pk": 4084, "fields": { - "question": 352, - "contribution": 832, - "answer": 2, - "count": 2 + "evaluation": 1679, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12010c34-67ad-4ec8-adf1-243a6633fa76", + "model": "evaluation.contribution", + "pk": 4085, "fields": { - "question": 329, - "contribution": 4101, - "answer": 4, - "count": 1 + "evaluation": 1679, + "contributor": 118, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12092bfe-2b4f-4283-991b-97f9b6b88e5f", + "model": "evaluation.contribution", + "pk": 4090, "fields": { - "question": 346, - "contribution": 919, - "answer": 3, - "count": 1 + "evaluation": 1682, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 104, + 110, + 83, + 109 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1209cc1e-ff1c-4aa4-9621-75deb60c9bd9", + "model": "evaluation.contribution", + "pk": 4091, "fields": { - "question": 323, - "contribution": 1680, - "answer": 2, - "count": 3 + "evaluation": 1682, + "contributor": 118, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "120e8ccf-9ba1-4484-a603-d0d454e1e47d", + "model": "evaluation.contribution", + "pk": 4092, "fields": { - "question": 344, - "contribution": 3728, - "answer": 4, - "count": 2 + "evaluation": 1683, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 110 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "120efff0-c668-457a-a219-b85d757bc8e4", + "model": "evaluation.contribution", + "pk": 4093, "fields": { - "question": 410, - "contribution": 4038, - "answer": 1, - "count": 3 + "evaluation": 1683, + "contributor": 118, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12154236-9832-4a97-a059-3a56781adc78", + "model": "evaluation.contribution", + "pk": 4094, "fields": { - "question": 337, - "contribution": 3440, - "answer": 5, - "count": 1 + "evaluation": 1684, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "121913bc-2927-4ee8-ae5b-9a44b9ef3382", + "model": "evaluation.contribution", + "pk": 4095, "fields": { - "question": 368, - "contribution": 3859, - "answer": 3, - "count": 1 + "evaluation": 1684, + "contributor": 568, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1228c20c-65b2-4580-bc95-cf8af5ce2497", + "model": "evaluation.contribution", + "pk": 4100, "fields": { - "question": 336, - "contribution": 1656, - "answer": 4, - "count": 1 + "evaluation": 1687, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "122b7fed-eb83-4f94-af0f-f44eecaebb60", + "model": "evaluation.contribution", + "pk": 4101, "fields": { - "question": 431, - "contribution": 4148, - "answer": 2, - "count": 3 + "evaluation": 1687, + "contributor": 123, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12391a51-7787-4524-a2f4-f0d0e24375ca", + "model": "evaluation.contribution", + "pk": 4112, "fields": { - "question": 356, - "contribution": 3546, - "answer": 3, - "count": 2 + "evaluation": 1693, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "123fca2a-3b77-4fb4-843a-59b37108a548", + "model": "evaluation.contribution", + "pk": 4113, "fields": { - "question": 321, - "contribution": 1626, - "answer": 5, - "count": 5 + "evaluation": 1693, + "contributor": 452, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "124522f6-34bb-4bbf-8594-7ac4fab72478", + "model": "evaluation.contribution", + "pk": 4114, "fields": { - "question": 322, - "contribution": 1658, - "answer": 3, - "count": 2 + "evaluation": 1694, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 105, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "124f0710-2aa3-4d81-a332-aa4816aabcd1", + "model": "evaluation.contribution", + "pk": 4115, "fields": { - "question": 323, - "contribution": 884, - "answer": 1, - "count": 10 + "evaluation": 1694, + "contributor": 125, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 108, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1254fcee-6f6e-476a-abc7-18287bb4d857", + "model": "evaluation.contribution", + "pk": 4116, "fields": { - "question": 355, - "contribution": 3546, - "answer": 3, - "count": 1 + "evaluation": 1695, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "125bcb11-5ad6-47db-b681-d15ef9befffa", + "model": "evaluation.contribution", + "pk": 4117, "fields": { - "question": 339, - "contribution": 3821, - "answer": 2, - "count": 2 + "evaluation": 1695, + "contributor": 149, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1265b86b-c28d-4839-b1ec-72884862fbe5", + "model": "evaluation.contribution", + "pk": 4118, "fields": { - "question": 346, - "contribution": 4095, - "answer": 2, - "count": 2 + "evaluation": 1696, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "126d452a-a7a7-4472-8bd1-3dee1890417a", + "model": "evaluation.contribution", + "pk": 4119, "fields": { - "question": 341, - "contribution": 3372, - "answer": 1, - "count": 1 + "evaluation": 1696, + "contributor": 298, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 98, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1273a0f4-2663-4ecb-ab62-d7d217803991", + "model": "evaluation.contribution", + "pk": 4120, "fields": { - "question": 392, - "contribution": 3775, - "answer": 3, - "count": 1 + "evaluation": 1697, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1274ad22-36a9-469b-8c03-a683ae519e73", + "model": "evaluation.contribution", + "pk": 4121, "fields": { - "question": 344, - "contribution": 3900, - "answer": 4, - "count": 3 + "evaluation": 1697, + "contributor": 932, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1276dea6-4697-4e3b-b701-106e7b896a62", + "model": "evaluation.contribution", + "pk": 4122, "fields": { - "question": 341, - "contribution": 3685, - "answer": 1, - "count": 2 + "evaluation": 1698, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 86, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1283bc6c-2ee4-4a2b-acd6-dcd9ca207391", + "model": "evaluation.contribution", + "pk": 4123, "fields": { - "question": 345, - "contribution": 919, - "answer": 2, - "count": 4 + "evaluation": 1698, + "contributor": 933, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "128a6875-2fc1-4da4-be5d-6336ff667aad", + "model": "evaluation.contribution", + "pk": 4128, "fields": { - "question": 370, - "contribution": 4037, - "answer": 1, - "count": 1 + "evaluation": 1701, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "128accb4-2cc2-4b90-9aea-027836957eaf", + "model": "evaluation.contribution", + "pk": 4129, "fields": { - "question": 327, - "contribution": 3463, - "answer": 4, - "count": 1 + "evaluation": 1701, + "contributor": 934, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "128b2f2d-bb8d-437f-84e6-696070400a97", + "model": "evaluation.contribution", + "pk": 4138, "fields": { - "question": 344, - "contribution": 1156, - "answer": 1, - "count": 1 + "evaluation": 1706, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "129f0447-aeb3-46ba-a683-cc566284ea1f", + "model": "evaluation.contribution", + "pk": 4139, "fields": { - "question": 368, - "contribution": 4152, - "answer": 3, - "count": 1 + "evaluation": 1706, + "contributor": 749, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12a2490f-6282-472d-8e89-a1a4397b1487", + "model": "evaluation.contribution", + "pk": 4140, "fields": { - "question": 343, - "contribution": 3900, - "answer": 3, - "count": 1 + "evaluation": 1707, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 104, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12a280be-c810-4370-9fbc-f6ed4d097aa3", + "model": "evaluation.contribution", + "pk": 4141, "fields": { - "question": 340, - "contribution": 1726, - "answer": 1, - "count": 2 + "evaluation": 1707, + "contributor": 938, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12aa75ad-5672-4a9a-8263-96159b136ae2", + "model": "evaluation.contribution", + "pk": 4146, "fields": { - "question": 464, - "contribution": 4073, - "answer": 2, - "count": 1 + "evaluation": 1641, + "contributor": 222, + "role": 1, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12ab3ea5-8b71-4f54-bbce-8f137ac9beb4", + "model": "evaluation.contribution", + "pk": 4148, "fields": { - "question": 322, - "contribution": 3406, - "answer": 2, - "count": 3 + "evaluation": 1687, + "contributor": 935, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 98, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12ad2be6-d34a-4fac-8c30-6ae4dff06aaa", + "model": "evaluation.contribution", + "pk": 4152, "fields": { - "question": 317, - "contribution": 836, - "answer": 2, - "count": 8 + "evaluation": 1679, + "contributor": 30, + "role": 1, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 85, + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12c4e318-a9dc-46e3-bc1a-047d63a65434", + "model": "evaluation.contribution", + "pk": 4153, "fields": { - "question": 329, - "contribution": 3684, - "answer": 2, - "count": 2 + "evaluation": 1679, + "contributor": 19, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12cdc932-ba39-41b2-9611-024d364994ff", + "model": "evaluation.contribution", + "pk": 4154, "fields": { - "question": 321, - "contribution": 4118, - "answer": 2, - "count": 3 + "evaluation": 1679, + "contributor": 279, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12ce7dff-5c9a-45dc-aae9-5000a99a1df1", + "model": "evaluation.contribution", + "pk": 4155, "fields": { - "question": 344, - "contribution": 3405, - "answer": 5, - "count": 1 + "evaluation": 1679, + "contributor": 398, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12cf356e-80c3-4b64-841e-0cc4fe86de41", + "model": "evaluation.contribution", + "pk": 4156, "fields": { - "question": 323, - "contribution": 3390, - "answer": 3, - "count": 3 + "evaluation": 1679, + "contributor": 546, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 4, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12df5e5c-6c22-49d5-b618-dce01724a945", + "model": "evaluation.contribution", + "pk": 4161, "fields": { - "question": 326, - "contribution": 4152, - "answer": 3, - "count": 3 + "evaluation": 1625, + "contributor": 595, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12e309a7-f1e8-4347-a04f-b4c73747ec80", + "model": "evaluation.contribution", + "pk": 4177, "fields": { - "question": 366, - "contribution": 4152, - "answer": 3, - "count": 3 + "evaluation": 1696, + "contributor": 600, + "role": 1, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 98, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12e6890f-3485-4979-bb8e-e5fbf9839847", + "model": "evaluation.contribution", + "pk": 4185, "fields": { - "question": 255, - "contribution": 908, - "answer": 3, - "count": 9 + "evaluation": 1710, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 106, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "12f709d0-3bbd-4d5c-b4f4-22b4f3ca9712", + "model": "evaluation.contribution", + "pk": 4186, "fields": { - "question": 340, - "contribution": 1748, - "answer": 1, - "count": 2 + "evaluation": 1710, + "contributor": 66, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 90 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1310e12e-db39-413f-b58d-a6d568b0d6e5", + "model": "evaluation.contribution", + "pk": 4187, "fields": { - "question": 360, - "contribution": 3637, - "answer": 2, - "count": 1 + "evaluation": 1710, + "contributor": 253, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1310eaf7-721a-43ff-b239-5f1754e23ed9", + "model": "evaluation.contribution", + "pk": 4188, "fields": { - "question": 327, - "contribution": 3883, - "answer": 2, - "count": 3 + "evaluation": 1710, + "contributor": 492, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1314ad6e-df05-4043-ba00-7f0beb2108ca", + "model": "evaluation.contribution", + "pk": 4189, "fields": { - "question": 347, - "contribution": 3912, - "answer": 2, - "count": 1 + "evaluation": 1710, + "contributor": 663, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 4, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13157ba1-78d7-49bf-afcc-737103440f9c", + "model": "evaluation.contribution", + "pk": 4190, "fields": { - "question": 363, - "contribution": 3919, - "answer": 3, - "count": 1 + "evaluation": 1710, + "contributor": 373, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 5, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13194f3e-823a-46dc-be01-1dc2aebd7c07", + "model": "evaluation.contribution", + "pk": 4191, "fields": { - "question": 326, - "contribution": 4117, - "answer": 3, - "count": 2 + "evaluation": 1710, + "contributor": 755, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 6, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13302a8f-bb51-4edd-9476-62bc86d180bd", + "model": "evaluation.contribution", + "pk": 4192, "fields": { - "question": 316, - "contribution": 4084, - "answer": 2, - "count": 19 + "evaluation": 1710, + "contributor": 446, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 7, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "133a729b-6f27-44d7-8469-63204de47e07", + "model": "evaluation.contribution", + "pk": 4203, "fields": { - "question": 475, - "contribution": 4072, - "answer": 0, - "count": 1 + "evaluation": 1651, + "contributor": 286, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "134def3c-7ec7-4b63-a43c-3779ea544e3f", + "model": "evaluation.contribution", + "pk": 4204, "fields": { - "question": 345, - "contribution": 1869, - "answer": 3, - "count": 1 + "evaluation": 1651, + "contributor": 768, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "134f9abd-7e48-427e-ad98-04b2d3cd2ede", + "model": "evaluation.contribution", + "pk": 4205, "fields": { - "question": 347, - "contribution": 3528, - "answer": 4, - "count": 1 + "evaluation": 1651, + "contributor": 829, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "135b84b5-be8f-4efd-840b-a097b0ed1c20", + "model": "evaluation.contribution", + "pk": 4223, "fields": { - "question": 371, - "contribution": 3551, - "answer": 3, - "count": 4 + "evaluation": 1663, + "contributor": 97, + "role": 1, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "135ce1ba-9fe8-48c6-903d-89a78cd3f5ba", + "model": "evaluation.contribution", + "pk": 4227, "fields": { - "question": 323, - "contribution": 4128, - "answer": 3, - "count": 2 + "evaluation": 1656, + "contributor": 286, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13616a90-f5cc-4bbd-ae06-a48695a400f3", + "model": "evaluation.contribution", + "pk": 4228, "fields": { - "question": 260, - "contribution": 836, - "answer": 3, - "count": 1 + "evaluation": 1656, + "contributor": 91, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1364c521-f892-4ca2-9e9d-3316fb898074", + "model": "evaluation.contribution", + "pk": 4229, "fields": { - "question": 255, - "contribution": 4128, - "answer": 5, - "count": 1 + "evaluation": 1655, + "contributor": 286, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "136ddf15-057c-4370-bd09-9ed2cb64939a", + "model": "evaluation.contribution", + "pk": 4232, "fields": { - "question": 473, - "contribution": 3739, - "answer": 0, - "count": 2 + "evaluation": 1624, + "contributor": 821, + "role": 1, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 89 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "136f22da-02fe-453e-b8e9-9e64786c0d65", + "model": "evaluation.contribution", + "pk": 4233, "fields": { - "question": 257, - "contribution": 3390, - "answer": 1, - "count": 3 + "evaluation": 1647, + "contributor": 780, + "role": 1, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13756e4a-fdcf-4d65-ba77-cd291e701cfa", + "model": "evaluation.contribution", + "pk": 4234, "fields": { - "question": 477, - "contribution": 1777, - "answer": -1, - "count": 7 + "evaluation": 1647, + "contributor": 14, + "role": 1, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 87, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "137b93ef-695a-4811-9a23-b64c57cd18a6", + "model": "evaluation.contribution", + "pk": 4243, "fields": { - "question": 321, - "contribution": 1626, - "answer": 1, - "count": 8 + "evaluation": 1649, + "contributor": 87, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "137e0dfd-6447-448d-a15b-039ca1adc74c", + "model": "evaluation.contribution", + "pk": 4244, "fields": { - "question": 477, - "contribution": 1780, - "answer": 0, - "count": 26 + "evaluation": 1648, + "contributor": 87, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 85, + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1380edc1-cbe3-4062-be0f-66949277b9aa", + "model": "evaluation.contribution", + "pk": 4261, "fields": { - "question": 357, - "contribution": 1258, - "answer": 1, - "count": 5 + "evaluation": 1660, + "contributor": 654, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "138968b7-aa8d-4c5c-98e9-14d29f7977b2", + "model": "evaluation.contribution", + "pk": 4265, "fields": { - "question": 260, - "contribution": 3462, - "answer": 2, - "count": 2 + "evaluation": 1663, + "contributor": 22, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13910a66-757a-4600-b637-c86747757c7d", + "model": "evaluation.contribution", + "pk": 4266, "fields": { - "question": 366, - "contribution": 3882, - "answer": 3, - "count": 1 + "evaluation": 1663, + "contributor": 44, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "139203e2-0d8c-49ea-8fe8-a99416cacafd", + "model": "evaluation.contribution", + "pk": 4267, "fields": { - "question": 357, - "contribution": 3545, - "answer": 5, - "count": 1 + "evaluation": 1663, + "contributor": 13, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "139ffd5a-4f91-40e4-9cb5-525685424bba", + "model": "evaluation.contribution", + "pk": 4268, "fields": { - "question": 316, - "contribution": 836, - "answer": 5, - "count": 1 + "evaluation": 1663, + "contributor": 67, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13af9401-e951-403d-be7f-00aea1247b32", + "model": "evaluation.contribution", + "pk": 4269, "fields": { - "question": 340, - "contribution": 3693, - "answer": 1, - "count": 2 + "evaluation": 1663, + "contributor": 299, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 4, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13bcf703-2379-48e6-a358-bfc9f35bbe20", + "model": "evaluation.contribution", + "pk": 4270, "fields": { - "question": 258, - "contribution": 4120, - "answer": 1, - "count": 21 + "evaluation": 1663, + "contributor": 129, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 5, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13c57829-91dd-4520-a797-44b6c9e4075f", + "model": "evaluation.contribution", + "pk": 4271, "fields": { - "question": 438, - "contribution": 4008, - "answer": 1, - "count": 1 + "evaluation": 1663, + "contributor": 42, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 6, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13d29f59-baba-4a86-b87f-f10c9b0e6b5f", + "model": "evaluation.contribution", + "pk": 4272, "fields": { - "question": 337, - "contribution": 3645, - "answer": 4, - "count": 2 + "evaluation": 1663, + "contributor": 604, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 7, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13d976c6-2da8-4e08-afdd-6ed75fad7154", + "model": "evaluation.contribution", + "pk": 4278, "fields": { - "question": 331, - "contribution": 3679, - "answer": 2, - "count": 1 + "evaluation": 1629, + "contributor": 779, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13dfd4b5-e5ac-4858-bf91-3c38da042da6", + "model": "evaluation.contribution", + "pk": 4279, "fields": { - "question": 257, - "contribution": 1634, - "answer": 3, - "count": 5 + "evaluation": 1629, + "contributor": 778, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 89, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13f0d5e8-5fdd-41e5-9d9d-9f4c31babae9", + "model": "evaluation.contribution", + "pk": 4283, "fields": { - "question": 368, - "contribution": 3423, - "answer": 1, - "count": 8 + "evaluation": 1707, + "contributor": 598, + "role": 1, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13f1d4d0-a84c-4d2b-81ba-c5bd787a09da", + "model": "evaluation.contribution", + "pk": 4284, "fields": { - "question": 258, - "contribution": 908, - "answer": 4, - "count": 3 + "evaluation": 1707, + "contributor": 597, + "role": 1, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "13f68908-562d-4b7f-9df9-04f24678bc14", + "model": "evaluation.contribution", + "pk": 4292, "fields": { - "question": 332, - "contribution": 3936, - "answer": 2, - "count": 5 + "evaluation": 1712, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 48, + 81, + 82, + 50, + 110, + 83 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "140ef011-3606-496b-bd3d-e64f3ae2771f", + "model": "evaluation.contribution", + "pk": 4293, "fields": { - "question": 319, - "contribution": 3739, - "answer": 1, - "count": 1 + "evaluation": 1712, + "contributor": 264, + "role": 1, + "textanswer_visibility": "GENERAL", + "label": "", + "order": 1, + "questionnaires": [ + 84, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1414ca76-ce3f-4874-ad26-36747591fc0f", + "model": "evaluation.contribution", + "pk": 4294, "fields": { - "question": 463, - "contribution": 4283, - "answer": 3, - "count": 2 + "evaluation": 1712, + "contributor": 272, + "role": 1, + "textanswer_visibility": "OWN", + "label": "", + "order": 2, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "141713ae-6879-4615-80d6-7c22bb01a9a1", + "model": "evaluation.contribution", + "pk": 4295, "fields": { - "question": 473, - "contribution": 4185, - "answer": -1, - "count": 6 + "evaluation": 1693, + "contributor": 356, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 85, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "141b20b9-12ad-463b-bc14-a644c870f763", + "model": "evaluation.contribution", + "pk": 4296, "fields": { - "question": 357, - "contribution": 1187, - "answer": 2, - "count": 2 + "evaluation": 1499, + "contributor": 452, + "role": 1, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "142646d8-692c-4cd9-b5c8-7fccb6db4985", + "model": "evaluation.contribution", + "pk": 4297, "fields": { - "question": 339, - "contribution": 3482, - "answer": 0, - "count": 3 + "evaluation": 1586, + "contributor": 53, + "role": 0, + "textanswer_visibility": "OWN", + "label": "Guest lecturer", + "order": 0, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1427b2bc-187f-4568-8284-8473ed84fcd8", + "model": "evaluation.contribution", + "pk": 4298, "fields": { - "question": 255, - "contribution": 1634, - "answer": 4, - "count": 3 + "evaluation": 1673, + "contributor": 213, + "role": 0, + "textanswer_visibility": "OWN", + "label": "Assistant", + "order": 0, + "questionnaires": [ + 107, + 92 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "142c90d7-a04b-4743-bb3f-92b5f73bf8c7", + "model": "evaluation.contribution", + "pk": 4300, "fields": { - "question": 327, - "contribution": 1297, - "answer": 1, - "count": 9 + "evaluation": 1713, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 1 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1434e829-b65d-4557-9db6-f8baa5fe6592", + "model": "evaluation.contribution", + "pk": 4302, "fields": { - "question": 346, - "contribution": 4190, - "answer": 2, - "count": 1 + "evaluation": 1714, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 0, + "questionnaires": [ + 1 + ] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "143f84c9-a5a7-4729-ac51-5643c5c871fc", + "model": "evaluation.contribution", + "pk": 4303, "fields": { - "question": 346, - "contribution": 1202, - "answer": 1, - "count": 8 + "evaluation": 1715, + "contributor": null, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": -1, + "questionnaires": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14429ac5-fc06-4a10-9af6-6c294a4add72", + "model": "evaluation.contribution", + "pk": 4304, "fields": { - "question": 355, - "contribution": 3518, - "answer": 1, - "count": 3 + "evaluation": 1498, + "contributor": 566, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 1, + "questionnaires": [] } }, { - "model": "evaluation.ratinganswercounter", - "pk": "144a20c9-71b5-4396-b691-81acd96fbeea", + "model": "evaluation.question", + "pk": 1, "fields": { - "question": 255, - "contribution": 3474, - "answer": 2, - "count": 4 + "order": 1, + "questionnaire": 1, + "text_de": "Einzelergebnis", + "text_en": "Single result", + "allows_additional_textanswers": true, + "type": 2 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1455543f-b1c3-43ad-9151-3dd50f5d2fa1", + "model": "evaluation.question", + "pk": 255, "fields": { - "question": 348, - "contribution": 3383, - "answer": 1, - "count": 1 + "order": 255, + "questionnaire": 48, + "text_de": "Aus der Vorlesung habe ich etwas mitnehmen können.", + "text_en": "I learned something in the lecture.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1460600d-0d14-4c7a-b1f7-4e87cbf5a206", + "model": "evaluation.question", + "pk": 257, "fields": { - "question": 346, - "contribution": 3546, - "answer": 5, - "count": 2 + "order": 257, + "questionnaire": 48, + "text_de": "Die in der Vorlesung vermittelten Techniken schienen aktuell.", + "text_en": "The techniques taught in the lecture seemed to be up to date.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14615172-ef08-43b2-9056-be1daa879dcd", + "model": "evaluation.question", + "pk": 258, "fields": { - "question": 432, - "contribution": 4090, - "answer": 1, - "count": 1 + "order": 258, + "questionnaire": 48, + "text_de": "Die Inhalte der Vorlesung bauten sinnvoll aufeinander auf.", + "text_en": "The content of the lecture was well structured.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "147053ee-2f2c-480b-9af7-8f92bfc44dbb", + "model": "evaluation.question", + "pk": 259, "fields": { - "question": 325, - "contribution": 1780, - "answer": 1, - "count": 7 + "order": 259, + "questionnaire": 50, + "text_de": "Die Übung trug zu meinem Verständnis bei.", + "text_en": "The exercise contributed to my comprehension of the lecture.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1470924d-ac17-4685-9354-8580170071d9", + "model": "evaluation.question", + "pk": 260, "fields": { - "question": 325, - "contribution": 4101, - "answer": 2, - "count": 8 + "order": 260, + "questionnaire": 50, + "text_de": "Vorlesung und Übung waren gut aufeinander abgestimmt", + "text_en": "Lecture and exercise were well synchronized.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14741071-02c0-4da7-9c4a-98afae49b732", + "model": "evaluation.question", + "pk": 262, "fields": { - "question": 360, - "contribution": 3648, - "answer": 1, - "count": 2 + "order": 262, + "questionnaire": 50, + "text_de": "Das fachliche Niveau der Übung war angemessen.", + "text_en": "The technical level of the exercise was appropriate.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14800118-cab9-46d7-b23e-385f0032444a", + "model": "evaluation.question", + "pk": 313, "fields": { - "question": 326, - "contribution": 1154, - "answer": 5, - "count": 1 + "order": 313, + "questionnaire": 48, + "text_de": "Diese Themenblöcke fand ich besonders interessant:", + "text_en": "These topics were most interesting for me:", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "148d0235-7200-40a6-b952-aba60db3df17", + "model": "evaluation.question", + "pk": 314, "fields": { - "question": 328, - "contribution": 4101, - "answer": 5, - "count": 2 + "order": 314, + "questionnaire": 48, + "text_de": "Diese Themenblöcke fand ich weniger interessant:", + "text_en": "These topics were less interesting for me:", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "148dff94-9e16-406f-aa67-6f9915f08fbf", + "model": "evaluation.question", + "pk": 315, "fields": { - "question": 363, - "contribution": 3916, - "answer": 2, - "count": 1 + "order": 315, + "questionnaire": 81, + "text_de": "Es gab ausreichend Lehrmittel (Skripte, Folien, Videos, Bücher...)", + "text_en": "The amount of provided learning material was sufficient.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14903d66-80f3-4085-a649-abecb83fbff8", + "model": "evaluation.question", + "pk": 316, "fields": { - "question": 345, - "contribution": 919, - "answer": 1, - "count": 7 + "order": 316, + "questionnaire": 81, + "text_de": "Die bereitgestellten Lehrmittel waren hilfreich.", + "text_en": "The provided learning material was useful.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "149a16d0-1fe2-469a-a9ee-d8da7197f8f3", + "model": "evaluation.question", + "pk": 317, "fields": { - "question": 326, - "contribution": 3885, - "answer": 2, - "count": 2 + "order": 317, + "questionnaire": 81, + "text_de": "Die Lehrmittel standen rechtzeitig zur Verfügung.", + "text_en": "The learning material was provided in time.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "149e606d-4992-4db5-95f0-829abd9632ae", + "model": "evaluation.question", + "pk": 318, "fields": { - "question": 350, - "contribution": 4022, - "answer": 2, - "count": 1 + "order": 318, + "questionnaire": 81, + "text_de": "Was waren die Stärken und die Schwächen der Lehrmittel?", + "text_en": "Which were the strengths and weaknesses of the learning material?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14a6374b-20da-42d8-b95d-34d737bf796f", + "model": "evaluation.question", + "pk": 319, "fields": { - "question": 262, - "contribution": 1837, - "answer": 2, - "count": 7 + "order": 319, + "questionnaire": 82, + "text_de": "Die Vorlesung hat mir Spaß/ Freude bereitet.", + "text_en": "I enjoyed the lecture.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14a86fd3-4c41-49ea-83bb-86700563d5dc", + "model": "evaluation.question", + "pk": 320, "fields": { - "question": 320, - "contribution": 908, - "answer": 3, - "count": 9 + "order": 320, + "questionnaire": 82, + "text_de": "Ich bin zufrieden mit dem Lernerfolg.", + "text_en": "I am satisfied with my learning success.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14c26311-e35b-424c-b8a8-2838fe31ab82", + "model": "evaluation.question", + "pk": 321, "fields": { - "question": 327, - "contribution": 3722, - "answer": 5, - "count": 1 + "order": 321, + "questionnaire": 82, + "text_de": "Die Vorlesung hat mich in die Lage versetzt, das Thema selbständig zu vertiefen.", + "text_en": "The lecture provided all information and skills that I need to deepen my knowledge in this topic.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14c455c5-2725-42f6-a122-ce33734f482e", + "model": "evaluation.question", + "pk": 322, "fields": { - "question": 354, - "contribution": 1782, - "answer": 3, - "count": 1 + "order": 322, + "questionnaire": 82, + "text_de": "Die Vorlesung ist für mein Studium wichtig.", + "text_en": "The lecture is important for my studies.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14c47939-5ecd-43a8-80b5-b25f0a5365e7", + "model": "evaluation.question", + "pk": 323, "fields": { - "question": 355, - "contribution": 1244, - "answer": 1, - "count": 2 + "order": 323, + "questionnaire": 82, + "text_de": "Ich empfand den Zeitaufwand für die Veranstaltung insgesamt als angemessen.", + "text_en": "I think the expenditure of time for the course was appropriate.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14c6b4d1-e2c1-4007-9bca-0c0ed01293e1", + "model": "evaluation.question", + "pk": 324, "fields": { - "question": 321, - "contribution": 3679, - "answer": 4, - "count": 2 + "order": 324, + "questionnaire": 83, + "text_de": "Sonstige Kommentare", + "text_en": "General remarks", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14c92d10-54e7-4166-908c-99513af71d98", + "model": "evaluation.question", + "pk": 325, "fields": { - "question": 339, - "contribution": 858, - "answer": 0, - "count": 5 + "order": 325, + "questionnaire": 84, + "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", + "text_en": "... showed respect for the students.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14cddbae-598d-49d9-b821-03cb2a85fa97", + "model": "evaluation.question", + "pk": 326, "fields": { - "question": 258, - "contribution": 4100, - "answer": 3, - "count": 3 + "order": 326, + "questionnaire": 84, + "text_de": "... konnte mir Wissen vermitteln.", + "text_en": "... imparted knowledge.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14d3449a-0d64-40e3-b1f5-df206c6b1c62", + "model": "evaluation.question", + "pk": 327, "fields": { - "question": 336, - "contribution": 788, - "answer": 1, - "count": 5 + "order": 327, + "questionnaire": 84, + "text_de": "... ging auf Fragen und Anregungen ein.", + "text_en": "... adressed questions and proposals.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14d57a84-9609-41ee-af37-6b83eebc609b", + "model": "evaluation.question", + "pk": 328, "fields": { - "question": 317, - "contribution": 3422, - "answer": 1, - "count": 19 + "order": 328, + "questionnaire": 84, + "text_de": "... gestaltete die Veranstaltung interessant.", + "text_en": "... gave the course in an interesting way.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14d9252d-993a-4584-ab79-038ad065c3e1", + "model": "evaluation.question", + "pk": 329, "fields": { - "question": 366, - "contribution": 4205, - "answer": 3, - "count": 1 + "order": 329, + "questionnaire": 84, + "text_de": "... wirkte gut vorbereitet.", + "text_en": "... seemed to be well prepared.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14df2655-5b00-487b-b8eb-9dd0f1e02a6b", + "model": "evaluation.question", + "pk": 330, "fields": { - "question": 370, - "contribution": 3712, - "answer": 2, - "count": 1 + "order": 330, + "questionnaire": 50, + "text_de": "Wie bewertest du die Übung im Hinblick auf Umfang und Nutzen?", + "text_en": "How do you evaluate the exercise concerning amount and usefulness?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14e3e0f4-d893-43af-a670-9ec47687dd28", + "model": "evaluation.question", + "pk": 331, "fields": { - "question": 356, - "contribution": 1187, - "answer": 2, - "count": 2 + "order": 331, + "questionnaire": 50, + "text_de": "Wie bewertest du die Schwierigkeit der Übung?", + "text_en": "How do you evaluate the difficulty of the exercises?", + "allows_additional_textanswers": true, + "type": 6 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14efc04d-e44f-445b-8bdf-f377515e03b6", + "model": "evaluation.question", + "pk": 332, "fields": { - "question": 475, - "contribution": 4072, - "answer": -2, - "count": 1 + "order": 332, + "questionnaire": 85, + "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", + "text_en": "... showed respect for the students.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14f3aedf-b64d-4bbd-9f9e-caa116cdb029", + "model": "evaluation.question", + "pk": 333, "fields": { - "question": 348, - "contribution": 1869, - "answer": 1, - "count": 1 + "order": 333, + "questionnaire": 85, + "text_de": "... konnte mir Wissen vermitteln.", + "text_en": "... imparted knowledge.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14f8e825-7d26-4695-a3e9-eb9ab98e9620", + "model": "evaluation.question", + "pk": 335, "fields": { - "question": 332, - "contribution": 4154, - "answer": 1, - "count": 9 + "order": 335, + "questionnaire": 85, + "text_de": "... stand auch außerhalb der regulären Übungstermine zur Verfügung.", + "text_en": "... was available even outside the regular exercise meetings.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "14fd3267-a314-4485-8eb4-a36c76cb4baf", + "model": "evaluation.question", + "pk": 336, "fields": { - "question": 370, - "contribution": 4232, - "answer": 1, - "count": 2 + "order": 336, + "questionnaire": 86, + "text_de": "Das Seminar hat mir Spaß/Freude bereitet.", + "text_en": "I enjoyed the seminar.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "151876e3-7dab-4a73-bad8-0ffea55c3fcf", + "model": "evaluation.question", + "pk": 337, "fields": { - "question": 319, - "contribution": 3683, - "answer": 3, - "count": 2 + "order": 337, + "questionnaire": 86, + "text_de": "Die Seminarthemen fand ich gut ausgewählt.", + "text_en": "The seminar's topics were chosen very well.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "151905e0-aac7-40d7-9870-908a0c95c803", + "model": "evaluation.question", + "pk": 338, "fields": { - "question": 362, - "contribution": 1804, - "answer": 5, - "count": 1 + "order": 338, + "questionnaire": 86, + "text_de": "Die bereitgestellten Materialien waren gute Einstiegspunkte für eigene Recherche.", + "text_en": "The provided learning material was a good start for own research.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "151b4c91-17c0-4f2c-93ce-b5c61405bd11", + "model": "evaluation.question", + "pk": 339, "fields": { - "question": 257, - "contribution": 3354, - "answer": 1, - "count": 17 + "order": 339, + "questionnaire": 86, + "text_de": "Wie bewertest du den Aufwand des Seminars?", + "text_en": "How do you evaluate the expenditure of time for the course?", + "allows_additional_textanswers": true, + "type": 8 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15390996-3950-4425-a187-b3954ab85a6c", + "model": "evaluation.question", + "pk": 340, "fields": { - "question": 353, - "contribution": 4223, - "answer": 1, - "count": 1 + "order": 340, + "questionnaire": 86, + "text_de": "Aus dem Seminar habe ich etwas mitnehmen können.", + "text_en": "I learned something from the seminar.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "153f11fa-c123-49fd-b146-e6f23612150b", + "model": "evaluation.question", + "pk": 341, "fields": { - "question": 336, - "contribution": 3703, - "answer": 2, - "count": 4 + "order": 341, + "questionnaire": 86, + "text_de": "Ich kann nachvollziehen, wie und nach welchen Kriterien die Bewertung erfolgt.", + "text_en": "I can understand how the grading is influenced by specific criteria.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15494577-311a-4a52-800a-03289aa71917", + "model": "evaluation.question", + "pk": 342, "fields": { - "question": 434, - "contribution": 4008, - "answer": 2, - "count": 1 + "order": 343, + "questionnaire": 86, + "text_de": "Was hat das Seminar besonders ausgezeichnet?", + "text_en": "What were the strengths of the seminar?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "154998fd-b5df-47d9-95dd-d8fc6a242ada", + "model": "evaluation.question", + "pk": 343, "fields": { - "question": 477, - "contribution": 1802, - "answer": -2, - "count": 1 + "order": 343, + "questionnaire": 87, + "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", + "text_en": "... showed respect for the students.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "154af46b-53c9-4342-a769-e3f07076d68a", + "model": "evaluation.question", + "pk": 344, "fields": { - "question": 326, - "contribution": 3885, - "answer": 1, - "count": 6 + "order": 344, + "questionnaire": 87, + "text_de": "... konnte mir Wissen vermitteln.", + "text_en": "... imparted knowledge.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "154c2a4b-2018-4c47-ba3d-4e9bb482e0bc", + "model": "evaluation.question", + "pk": 345, "fields": { - "question": 347, - "contribution": 4095, - "answer": 1, - "count": 9 + "order": 345, + "questionnaire": 87, + "text_de": "... ging auf Fragen und Anregungen ein.", + "text_en": "... addressed questions and proposals.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "155368e9-15d4-477e-aeea-fa1306c06c07", + "model": "evaluation.question", + "pk": 346, "fields": { - "question": 367, - "contribution": 3683, - "answer": 3, - "count": 2 + "order": 346, + "questionnaire": 87, + "text_de": "... gestaltete das Seminar interessant.", + "text_en": "... conducted the seminar in an interesting way.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "155c9b08-07b8-4ae8-90c4-ce11b945cb50", + "model": "evaluation.question", + "pk": 347, "fields": { - "question": 378, - "contribution": 3775, - "answer": 3, - "count": 1 + "order": 347, + "questionnaire": 87, + "text_de": "... wirkte gut vorbereitet.", + "text_en": "... seemed to be well prepared.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "155e26b4-9814-4235-85d7-b3d1b49c45fc", + "model": "evaluation.question", + "pk": 348, "fields": { - "question": 343, - "contribution": 1157, - "answer": 1, - "count": 1 + "order": 348, + "questionnaire": 87, + "text_de": "... stand auch außerhalb des Seminars zur Verfügung.", + "text_en": "... was available even outside the seminar.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15631ef9-9d30-4e08-a4fa-0e83a1a31032", + "model": "evaluation.question", + "pk": 349, "fields": { - "question": 340, - "contribution": 4002, - "answer": 1, - "count": 6 + "order": 349, + "questionnaire": 87, + "text_de": "... hat mich/mein Team aktiv betreut.", + "text_en": "... made a good job in actively supporting me/my team.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "156a586a-0611-4528-9331-94cc18792a4b", + "model": "evaluation.question", + "pk": 350, "fields": { - "question": 321, - "contribution": 4120, - "answer": 5, - "count": 1 + "order": 350, + "questionnaire": 88, + "text_de": "Das Projekt hat mir Spaß/Freude bereitet.", + "text_en": "I enjoyed the project.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "156fcf0f-da1c-41ad-bab5-a5c36e964b42", + "model": "evaluation.question", + "pk": 351, "fields": { - "question": 343, - "contribution": 3960, - "answer": 1, - "count": 1 + "order": 351, + "questionnaire": 88, + "text_de": "Ich empfand den Zeitaufwand für das Projekt als angemessen.", + "text_en": "I think the expenditure of time for the project was appropriate.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "157114ea-4c38-4a05-a088-5a86136f1b08", + "model": "evaluation.question", + "pk": 352, "fields": { - "question": 341, - "contribution": 1640, - "answer": 2, - "count": 1 + "order": 352, + "questionnaire": 88, + "text_de": "Aus dem Projekt habe ich etwas mitnehmen können.", + "text_en": "I learned something from the project.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "157db1c3-fd3c-4b48-9bb0-ab1a5a36a83d", + "model": "evaluation.question", + "pk": 353, "fields": { - "question": 338, - "contribution": 3821, - "answer": 2, - "count": 3 + "order": 353, + "questionnaire": 89, + "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", + "text_en": "... showed respect for the students.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1580d4b3-3ffa-49b7-88f8-74ab87a909f1", + "model": "evaluation.question", + "pk": 354, "fields": { - "question": 317, - "contribution": 3354, - "answer": 3, - "count": 4 + "order": 354, + "questionnaire": 89, + "text_de": "... konnte mir Wissen vermitteln.", + "text_en": "... imparted knowledge.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15822dc7-7a1e-431e-ba0f-f30732cd1911", + "model": "evaluation.question", + "pk": 355, "fields": { - "question": 335, - "contribution": 1282, - "answer": 3, - "count": 2 + "order": 355, + "questionnaire": 89, + "text_de": "... ging auf Fragen und Anregungen ein.", + "text_en": "... addressed questions and proposals.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1586514e-86a9-4b96-9eb3-b0bebe315d40", + "model": "evaluation.question", + "pk": 356, "fields": { - "question": 316, - "contribution": 3462, - "answer": 1, - "count": 1 + "order": 356, + "questionnaire": 89, + "text_de": "... hat mich/mein Team aktiv betreut.", + "text_en": "... made a good job in actively supervising me/my team.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1599028a-e402-471d-83dc-9e69f081c464", + "model": "evaluation.question", + "pk": 357, "fields": { - "question": 320, - "contribution": 4138, - "answer": 2, - "count": 16 + "order": 357, + "questionnaire": 89, + "text_de": "... wirkte gut vorbereitet.", + "text_en": "... seemed to be well prepared.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15a0823b-fac2-4a08-812d-d53b87fdbad2", + "model": "evaluation.question", + "pk": 358, "fields": { - "question": 368, - "contribution": 3884, - "answer": 1, - "count": 8 + "order": 358, + "questionnaire": 90, + "text_de": "Hier kannst du Lob und Kritik an den Verantwortlichen der Lehrveranstaltung loswerden. Bitte sei höflich und konstruktiv!", + "text_en": "Please give your feedback to the responsible person here. Be polite and constructive!", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15abcc83-ba51-4759-bd21-3b5b22e2520a", + "model": "evaluation.question", + "pk": 359, "fields": { - "question": 328, - "contribution": 4023, - "answer": 2, - "count": 2 + "order": 359, + "questionnaire": 91, + "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", + "text_en": "... showed respect for the students.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15b0d749-5efc-434a-971f-4a17c2e7582a", + "model": "evaluation.question", + "pk": 360, "fields": { - "question": 328, - "contribution": 3666, - "answer": 2, - "count": 1 + "order": 360, + "questionnaire": 91, + "text_de": "... konnte mir Wissen vermitteln.", + "text_en": "... could equip me with knowledge.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15b95270-3913-4996-9e26-41274b1f3f88", + "model": "evaluation.question", + "pk": 361, "fields": { - "question": 473, - "contribution": 3727, - "answer": 2, - "count": 1 + "order": 361, + "questionnaire": 91, + "text_de": "... ging auf Fragen und Anregungen ein.", + "text_en": "... addressed questions and proposals.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15bed7a3-8190-4b86-9132-123b7a771821", + "model": "evaluation.question", + "pk": 362, "fields": { - "question": 355, - "contribution": 1781, - "answer": 1, - "count": 8 + "order": 362, + "questionnaire": 91, + "text_de": "... gestaltete die Übung interessant.", + "text_en": "... conducted the excercise in an interesting way.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15bf9aab-f035-4724-98a6-b184a4b0c169", + "model": "evaluation.question", + "pk": 363, "fields": { - "question": 369, - "contribution": 3652, - "answer": 3, - "count": 1 + "order": 363, + "questionnaire": 91, + "text_de": "... wirkte gut vorbereitet.", + "text_en": "... seemed to be well-prepared.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15c5d34e-f0b6-48a1-95e7-2fd7a18bb02d", + "model": "evaluation.question", + "pk": 364, "fields": { - "question": 438, - "contribution": 4090, - "answer": 3, - "count": 1 + "order": 364, + "questionnaire": 92, + "text_de": "Hier kannst du Lob und Kritik zur Person loswerden. Bitte sei höflich und konstruktiv!", + "text_en": "Please give your feedback to the person here. Be polite and constructive!", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15db40a0-c610-4aaf-ae33-48eb2244044b", + "model": "evaluation.question", + "pk": 365, "fields": { - "question": 331, - "contribution": 1626, - "answer": 0, - "count": 19 + "order": 365, + "questionnaire": 93, + "text_de": "Hier kannst du Lob und Kritik zu weiteren Mitwirkenden loswerden. Bitte sei höflich und konstruktiv!", + "text_en": "Please give your feedback to additional contributors here. Be polite and constructive!", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15dd8b33-9bb8-49f7-91a4-798d6756f957", + "model": "evaluation.question", + "pk": 366, "fields": { - "question": 354, - "contribution": 4037, - "answer": 1, - "count": 1 + "order": 366, + "questionnaire": 85, + "text_de": "... ging auf Fragen und Anregungen ein.", + "text_en": "... addressed questions and proposals.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15e5f498-6f7f-4847-b41b-d46caa227254", + "model": "evaluation.question", + "pk": 367, "fields": { - "question": 431, - "contribution": 4177, - "answer": 1, - "count": 5 + "order": 367, + "questionnaire": 82, + "text_de": "Ich kann nachvollziehen, wie und nach welchen Kriterien die Bewertung erfolgt.", + "text_en": "I can understand how the grading is influenced by specific criteria.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15eaa01f-f020-4d59-b64b-ed40e8d12518", + "model": "evaluation.question", + "pk": 368, "fields": { - "question": 346, - "contribution": 4191, - "answer": 2, - "count": 2 + "order": 368, + "questionnaire": 84, + "text_de": "... stand auch außerhalb der Veranstaltung zur Verfügung.", + "text_en": "... was available even outside the course.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "15f79145-6710-4326-af5d-715064a6962e", + "model": "evaluation.question", + "pk": 369, "fields": { - "question": 357, - "contribution": 1785, - "answer": 2, - "count": 4 + "order": 369, + "questionnaire": 91, + "text_de": "... stand auch außerhalb der regulären Termine zur Verfügung.", + "text_en": "... was avalable even outside the regular meetings.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "160bc143-a003-4b1e-b027-c9732d70276e", + "model": "evaluation.question", + "pk": 370, "fields": { - "question": 331, - "contribution": 4084, - "answer": 0, - "count": 22 + "order": 370, + "questionnaire": 89, + "text_de": "... stand nur selten zur Verfügung.", + "text_en": "... was rarely available.", + "allows_additional_textanswers": true, + "type": 12 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16160e8e-41e9-4f81-b99f-e793f88670fc", + "model": "evaluation.question", + "pk": 371, "fields": { - "question": 368, - "contribution": 1780, - "answer": 1, - "count": 4 + "order": 371, + "questionnaire": 85, + "text_de": "... wirkte gut vorbereitet.", + "text_en": "... seemed to be well prepared.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "161d175e-d18a-4240-8269-eccc14a3bb48", + "model": "evaluation.question", + "pk": 372, "fields": { - "question": 335, - "contribution": 3932, - "answer": 1, - "count": 2 + "order": 372, + "questionnaire": 88, + "text_de": "Ich kann nachvollziehen, wie und nach welchen Kriterien die Bewertung erfolgt.", + "text_en": "I can understand how the grading is influenced by specific criteria.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1639a352-f257-4dee-a7a5-8a114dc2cfa8", + "model": "evaluation.question", + "pk": 373, "fields": { - "question": 353, - "contribution": 4037, - "answer": 1, - "count": 1 + "order": 373, + "questionnaire": 86, + "text_de": "Durch welche Änderungen könnte man das Seminar noch verbessern?", + "text_en": "How could the seminar be further improved?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "163fe5bd-a8be-417f-bfc6-892fda83b9a8", + "model": "evaluation.question", + "pk": 374, "fields": { - "question": 332, - "contribution": 3552, - "answer": 2, - "count": 13 + "order": 374, + "questionnaire": 94, + "text_de": "Das Projekt hat mir Spaß/Freude bereitet.", + "text_en": "I enjoyed the project.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "163ffbe1-17bc-4401-af40-c45fb0b8294f", + "model": "evaluation.question", + "pk": 375, "fields": { - "question": 361, - "contribution": 3920, - "answer": 2, - "count": 2 + "order": 375, + "questionnaire": 94, + "text_de": "Das Projekt passt inhaltlich in das bisherige Studium.", + "text_en": "The project's topic fits into my studies.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "164b04d0-8593-43d8-aed6-eb29b756a0aa", + "model": "evaluation.question", + "pk": 376, "fields": { - "question": 348, - "contribution": 3934, - "answer": 1, - "count": 1 + "order": 376, + "questionnaire": 94, + "text_de": "Das Projektthema war interessant.", + "text_en": "The project's topic was interesting.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "164d00ec-ee5a-45f3-8042-d6b279c56f13", + "model": "evaluation.question", + "pk": 377, "fields": { - "question": 344, - "contribution": 887, - "answer": 5, - "count": 1 + "order": 377, + "questionnaire": 94, + "text_de": "Das Projektthema passte zu meinen Interessen und Fähigkeiten.", + "text_en": "The project matched my interests and skills.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "165260d6-86db-4e13-a2fa-fe249d69235c", + "model": "evaluation.question", + "pk": 378, "fields": { - "question": 475, - "contribution": 4094, - "answer": -1, - "count": 1 + "order": 378, + "questionnaire": 94, + "text_de": "Das Projekt entsprach meiner Vorstellung.", + "text_en": "The project met my expectations.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16528038-be16-4c9f-b41e-8220c5295f0c", + "model": "evaluation.question", + "pk": 379, "fields": { - "question": 338, - "contribution": 3681, - "answer": 1, - "count": 2 + "order": 379, + "questionnaire": 94, + "text_de": "Die Aufgabenstellung war klar spezifiziert.", + "text_en": "The tasks were clearly specified.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16564790-8728-4b70-a435-634cac313e94", + "model": "evaluation.question", + "pk": 380, "fields": { - "question": 356, - "contribution": 4278, - "answer": 1, - "count": 2 + "order": 380, + "questionnaire": 94, + "text_de": "Bei einer wiederholten Wahl würde ich das gleiche Projekt wählen.", + "text_en": "I would choose the same project again.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "165c6bb0-4fa6-46b6-ae44-81d5bebf8d12", + "model": "evaluation.question", + "pk": 381, "fields": { - "question": 406, - "contribution": 3974, - "answer": 2, - "count": 1 + "order": 381, + "questionnaire": 94, + "text_de": "Was hat dir am Projekt besonders gefallen? Wie hätte man das Projekt besser gestalten können?", + "text_en": "What was the best part of the project? What could be improved?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "165ee96e-0b9e-47a5-938f-a3e206bbdd23", + "model": "evaluation.question", + "pk": 382, "fields": { - "question": 260, - "contribution": 4120, - "answer": 2, - "count": 6 + "order": 382, + "questionnaire": 95, + "text_de": "Wie bewertest du den Zeitaufwand für das Projekt?", + "text_en": "How do you evaluate the expenditure of time for the project?", + "allows_additional_textanswers": true, + "type": 8 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16622595-1abd-42e1-9cd1-c686580a2fbe", + "model": "evaluation.question", + "pk": 383, "fields": { - "question": 338, - "contribution": 886, - "answer": 4, - "count": 4 + "order": 383, + "questionnaire": 95, + "text_de": "Es haben sich alle Teilnehmer ausgeglichen beteiligt.", + "text_en": "All team members participated equally.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "166d6029-ac02-4f41-9e9e-6423434fde40", + "model": "evaluation.question", + "pk": 384, "fields": { - "question": 368, - "contribution": 4085, - "answer": 3, - "count": 4 + "order": 384, + "questionnaire": 95, + "text_de": "Die Zeitvorgaben für die Teil-Aufgaben waren realistisch.", + "text_en": "The deadlines for sub-task were realistic.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "166f7835-fe77-4a8c-be33-9c7610d41368", + "model": "evaluation.question", + "pk": 385, "fields": { - "question": 323, - "contribution": 862, - "answer": 4, - "count": 1 + "order": 385, + "questionnaire": 95, + "text_de": "Es stand ausreichend Zeit zur Ausarbeitung von Pressemitteilung, Plakat und Präsentation zur Verfügung.", + "text_en": "The time for preparation of the press release, poster and presentation was sufficient.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1674fa96-03aa-456c-9163-eafde03d7438", + "model": "evaluation.question", + "pk": 387, "fields": { - "question": 357, - "contribution": 1784, - "answer": 2, - "count": 3 + "order": 387, + "questionnaire": 95, + "text_de": "Sonstige Kommentare zu Aufwand und Zeitplanung:", + "text_en": "Additional remarks on effort and time management:", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1677d1e1-0ef2-4941-a65d-c8ccd58179aa", + "model": "evaluation.question", + "pk": 388, "fields": { - "question": 345, - "contribution": 1880, - "answer": 2, - "count": 4 + "order": 388, + "questionnaire": 96, + "text_de": "Der Professor zeigte Interesse am Projekt und dessen Ergebnis.", + "text_en": "The professor was interested in the project and its results.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "167d7517-bd41-43c8-8e72-de52ac14be91", + "model": "evaluation.question", + "pk": 389, "fields": { - "question": 257, - "contribution": 822, - "answer": 2, - "count": 4 + "order": 389, + "questionnaire": 96, + "text_de": "Der Professor hat sich während des Projektzeitraumes eingebracht.", + "text_en": "The professor contributed to the project.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16821891-e3c7-4f5b-bc9e-95f5778c4960", + "model": "evaluation.question", + "pk": 390, "fields": { - "question": 328, - "contribution": 3859, - "answer": 2, - "count": 7 + "order": 390, + "questionnaire": 96, + "text_de": "Der Projektpartner hat sich während des Projektzeitraumes eingebracht.", + "text_en": "The business partner contributed to the project.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "168fc63e-a967-42ae-baba-b794b8d6acdd", + "model": "evaluation.question", + "pk": 391, "fields": { - "question": 356, - "contribution": 3834, - "answer": 1, - "count": 3 + "order": 391, + "questionnaire": 96, + "text_de": "Die Betreuung durch den Lehrstuhl war zufriedenstellend.", + "text_en": "The supervision by the chair was satisfying.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16904a96-08cd-49ad-9d51-478ba53721e4", + "model": "evaluation.question", + "pk": 392, "fields": { - "question": 477, - "contribution": 1777, - "answer": -3, - "count": 1 + "order": 392, + "questionnaire": 96, + "text_de": "Die Betreuung durch den Projektpartner war zufriedenstellend.", + "text_en": "The supervision by the business project partner was satisfying.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1691bf42-1b50-472f-bb6d-11fe67a4e7d5", + "model": "evaluation.question", + "pk": 393, "fields": { - "question": 326, - "contribution": 1681, - "answer": 2, - "count": 1 + "order": 393, + "questionnaire": 96, + "text_de": "Sonstige Kommentare zur Betreuung und zum Projektpartner:", + "text_en": "Additional remarks on supervision and the business partner:", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16921958-a126-489c-be2d-c09950d07b6b", + "model": "evaluation.question", + "pk": 394, "fields": { - "question": 255, - "contribution": 4022, - "answer": 3, - "count": 2 + "order": 394, + "questionnaire": 97, + "text_de": "Mein Bachelorarbeitsthema war interessant.", + "text_en": "The topic of my bachelor thesis was interesting.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "169b0753-b7e8-4e82-9788-2ba06475ad66", + "model": "evaluation.question", + "pk": 395, "fields": { - "question": 472, - "contribution": 4185, - "answer": 1, - "count": 4 + "order": 395, + "questionnaire": 97, + "text_de": "Mein Bachelorarbeitsthema passte zu meinen Vertiefungsgebieten.", + "text_en": "The topic of my bachelor's thesis matched my areas of specialization.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "169d8ccd-bca2-46b5-84dc-d447f74cf9a6", + "model": "evaluation.question", + "pk": 396, "fields": { - "question": 257, - "contribution": 3422, - "answer": 4, - "count": 2 + "order": 396, + "questionnaire": 97, + "text_de": "Es war leicht, aus dem Projektthema Themen für die Bachelorarbeiten abzuleiten.", + "text_en": "It was easy to derive the topics of the bachelor's theses out of the project's scope.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16a65bc8-0099-4352-bbc7-b54dcfcfe880", + "model": "evaluation.question", + "pk": 397, "fields": { - "question": 337, - "contribution": 3450, - "answer": 3, - "count": 1 + "order": 397, + "questionnaire": 97, + "text_de": "Das Thema meiner Bachelorarbeit war inhaltlich nahe am Projekt.", + "text_en": "The topic of my bachelor's thesis was directly derived from the scope of the project.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16b47a14-80e8-400d-bc08-651ed8cb1c3c", + "model": "evaluation.question", + "pk": 398, "fields": { - "question": 317, - "contribution": 884, - "answer": 4, - "count": 2 + "order": 398, + "questionnaire": 97, + "text_de": "Es stand ausreichend Zeit zur Ausarbeitung der Bachelorarbeit zur Verfügung.", + "text_en": "The time for the preparation of my bachelor's thesis was sufficient.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16b7e1ec-8140-4581-b9e3-6a916a1f5586", + "model": "evaluation.question", + "pk": 399, "fields": { - "question": 319, - "contribution": 3721, - "answer": 3, - "count": 5 + "order": 399, + "questionnaire": 97, + "text_de": "Sonstige Kommentare zur Bachelorarbeit:", + "text_en": "Additional remarks on the bachelor's thesis:", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16ba7f72-e2c5-462d-a33f-fe706623a557", + "model": "evaluation.question", + "pk": 400, "fields": { - "question": 357, - "contribution": 1187, - "answer": 1, - "count": 5 + "order": 400, + "questionnaire": 98, + "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", + "text_en": "... showed respect for the students.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16bcb375-eb01-4e70-88bb-e1edcfba940b", + "model": "evaluation.question", + "pk": 401, "fields": { - "question": 368, - "contribution": 1780, - "answer": 2, - "count": 2 + "order": 401, + "questionnaire": 98, + "text_de": "... konnte mir Wissen vermitteln.", + "text_en": "... imparted knowledge.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16c23b2d-3742-4de4-a6c0-9a7f61780141", + "model": "evaluation.question", + "pk": 402, "fields": { - "question": 317, - "contribution": 822, - "answer": 2, - "count": 3 + "order": 402, + "questionnaire": 98, + "text_de": "... ging auf Fragen und Anregungen ein.", + "text_en": "... adressed questions and proposals.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16c545e9-0e90-412f-bb92-060cbda64249", + "model": "evaluation.question", + "pk": 403, "fields": { - "question": 337, - "contribution": 4122, - "answer": 2, - "count": 1 + "order": 403, + "questionnaire": 98, + "text_de": "... gestaltete die Veranstaltung interessant.", + "text_en": "... gave the course in an interesting way.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16cd6aa2-65bf-4737-9e2b-951aef7cc7c6", + "model": "evaluation.question", + "pk": 404, "fields": { - "question": 340, - "contribution": 858, - "answer": 5, - "count": 1 + "order": 404, + "questionnaire": 99, + "text_de": "Das Projekt hat mir Spaß/Freude bereitet.", + "text_en": "I enjoyed the project.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16d2da6f-bec4-4ab1-a6c1-9db0507a6093", + "model": "evaluation.question", + "pk": 405, "fields": { - "question": 336, - "contribution": 3723, - "answer": 2, - "count": 2 + "order": 405, + "questionnaire": 99, + "text_de": "Das Projekt passt inhaltlich in das bisherige Studium.", + "text_en": "The project's topic fits into my studies.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16d3fc9f-b0c4-486c-b82c-192cb29d620f", + "model": "evaluation.question", + "pk": 406, "fields": { - "question": 473, - "contribution": 3685, - "answer": 0, - "count": 5 + "order": 406, + "questionnaire": 99, + "text_de": "Das Projektthema war interessant.", + "text_en": "The project's topic was interesting.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16dbfa52-b4ac-4740-bf07-d54b70f54e28", + "model": "evaluation.question", + "pk": 407, "fields": { - "question": 349, - "contribution": 3939, - "answer": 1, - "count": 1 + "order": 407, + "questionnaire": 99, + "text_de": "Das Projektthema passte zu meinen Interessen und Fähigkeiten.", + "text_en": "The project matched my interests and skills.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16dd7ea9-1d8a-4936-886a-3d9fd9bd573b", + "model": "evaluation.question", + "pk": 408, "fields": { - "question": 433, - "contribution": 4052, - "answer": 2, - "count": 2 + "order": 408, + "questionnaire": 99, + "text_de": "Das Projekt entsprach meiner Vorstellung.", + "text_en": "The project met my expectations.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16f89fdd-3803-45bd-82e3-3a4dedefce47", + "model": "evaluation.question", + "pk": 409, "fields": { - "question": 345, - "contribution": 3607, - "answer": 1, - "count": 4 + "order": 409, + "questionnaire": 99, + "text_de": "Die Aufgabenstellung war klar spezifiziert.", + "text_en": "The tasks were clearly specified.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "16fe34d5-85c3-4ea1-8c3a-f04355b54566", + "model": "evaluation.question", + "pk": 410, "fields": { - "question": 348, - "contribution": 1735, - "answer": 1, - "count": 1 + "order": 410, + "questionnaire": 99, + "text_de": "Bei einer wiederholten Wahl würde ich das gleiche Projekt wählen.", + "text_en": "I would choose the same project again.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17060440-f7e8-494e-b732-3576676b2440", + "model": "evaluation.question", + "pk": 411, "fields": { - "question": 473, - "contribution": 1702, - "answer": 0, - "count": 3 + "order": 411, + "questionnaire": 99, + "text_de": "Was hat dir am Projekt besonders gefallen? Wie hätte man das Projekt besser gestalten können?", + "text_en": "What was the best part of the project? What could be improved?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17208c67-f17d-4eb5-9d08-9974e9307adf", + "model": "evaluation.question", + "pk": 412, "fields": { - "question": 333, - "contribution": 837, - "answer": 1, - "count": 13 + "order": 412, + "questionnaire": 100, + "text_de": "Wie bewertest du den Zeitaufwand?", + "text_en": "How do you evaluate the expenditure of time?", + "allows_additional_textanswers": true, + "type": 8 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1728c38c-6462-4ed6-8b1b-59a6ab3f93ef", + "model": "evaluation.question", + "pk": 413, "fields": { - "question": 359, - "contribution": 1807, - "answer": 5, - "count": 1 + "order": 413, + "questionnaire": 100, + "text_de": "Es haben sich alle Teilnehmer ausgeglichen beteiligt.", + "text_en": "All team members participated equally.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1731538c-978c-42b4-b10a-4f7d6f8e5651", + "model": "evaluation.question", + "pk": 414, "fields": { - "question": 319, - "contribution": 3665, - "answer": 1, - "count": 7 + "order": 414, + "questionnaire": 100, + "text_de": "Die Zeitvorgaben für die Teil-Aufgaben waren realistisch.", + "text_en": "The deadlines for sub-tasks were realistic.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17344dd0-587a-4c37-86c7-4b7c9ff9c9b2", + "model": "evaluation.question", + "pk": 415, "fields": { - "question": 477, - "contribution": 1613, - "answer": -1, - "count": 4 + "order": 415, + "questionnaire": 100, + "text_de": "Sonstige Kommentare zu Aufwand und Zeitplanung:", + "text_en": "Additional remarks on effort and time management:", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "173ca170-3b1a-4faf-b55a-cc52e8578a97", + "model": "evaluation.question", + "pk": 416, "fields": { - "question": 328, - "contribution": 1659, - "answer": 2, - "count": 2 + "order": 416, + "questionnaire": 101, + "text_de": "Der Professor zeigte Interesse am Projekt und dessen Ergebnis.", + "text_en": "The professor was interested in the project and its results.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1742b96e-1f90-4cc4-a7c7-ec04d42de108", + "model": "evaluation.question", + "pk": 417, "fields": { - "question": 473, - "contribution": 4138, - "answer": 3, - "count": 4 + "order": 417, + "questionnaire": 101, + "text_de": "Der Professor hat sich während des Projektzeitraumes eingebracht.", + "text_en": "The professor contributed to the project.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "174495ef-1dfb-41b3-8f5a-80b73586125f", + "model": "evaluation.question", + "pk": 418, "fields": { - "question": 349, - "contribution": 4129, - "answer": 5, - "count": 1 + "order": 418, + "questionnaire": 101, + "text_de": "Die Betreuung durch den Lehrstuhl war zufriedenstellend.", + "text_en": "The supervision by the chair was satisfying.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17462482-0882-401e-80a8-780d0dd0ca4c", + "model": "evaluation.question", + "pk": 419, "fields": { - "question": 320, - "contribution": 3474, - "answer": 1, - "count": 2 + "order": 419, + "questionnaire": 101, + "text_de": "Sonstige Kommentare zur Betreuung:", + "text_en": "Additional remarks on supervision:", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1756943c-7c74-4f75-83ce-466c2122f618", + "model": "evaluation.question", + "pk": 420, "fields": { - "question": 328, - "contribution": 837, - "answer": 3, - "count": 4 + "order": 420, + "questionnaire": 102, + "text_de": "Mein Masterarbeitsthema war interessant.", + "text_en": "The topic of my master's thesis was interesting.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1758a822-e715-469d-9960-f6b06daaee9f", + "model": "evaluation.question", + "pk": 421, "fields": { - "question": 346, - "contribution": 4129, - "answer": 4, - "count": 3 + "order": 421, + "questionnaire": 102, + "text_de": "Mein Masterarbeitsthema passte zu meinen Vertiefungsgebieten.", + "text_en": "The topic of my master thesis matched my areas of specialization.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "175b832a-5f48-4240-be08-f401459af98a", + "model": "evaluation.question", + "pk": 422, "fields": { - "question": 337, - "contribution": 826, - "answer": 2, - "count": 1 + "order": 422, + "questionnaire": 102, + "text_de": "Es stand ausreichend Zeit zur Ausarbeitung der Masterarbeit zur Verfügung.", + "text_en": "The time for the preparation of my master's thesis was sufficient.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "175cc14e-45a5-4d6f-8eee-0cd87a491f80", + "model": "evaluation.question", + "pk": 423, "fields": { - "question": 377, - "contribution": 3711, - "answer": 1, - "count": 4 + "order": 423, + "questionnaire": 102, + "text_de": "Sonstige Kommentare zur Masterarbeit:", + "text_en": "Additional remarks on the master's thesis:", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17609df2-cfe6-4105-a174-ea5d3c57c95d", + "model": "evaluation.question", + "pk": 428, "fields": { - "question": 340, - "contribution": 3645, - "answer": 3, - "count": 2 + "order": 428, + "questionnaire": 85, + "text_de": "... konnte Sachverhalte sehr gut erklären.", + "text_en": "... did explain issues very well.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1762304c-efde-4a27-9981-509e2aaaf0ce", + "model": "evaluation.question", + "pk": 429, "fields": { - "question": 473, - "contribution": 840, - "answer": 0, - "count": 3 + "order": 429, + "questionnaire": 88, + "text_de": "Was hat das Projekt besonders ausgezeichnet?", + "text_en": "What were the strengths of the project?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17624337-bb3f-40bc-b467-7369fadb3394", + "model": "evaluation.question", + "pk": 430, "fields": { - "question": 347, - "contribution": 1151, - "answer": 1, - "count": 3 + "order": 430, + "questionnaire": 88, + "text_de": "Durch welche Änderungen könnte man das Projekt noch verbessern?", + "text_en": "How could the project be further improved?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17644e77-9819-4961-84ab-479e84ec56b0", + "model": "evaluation.question", + "pk": 431, "fields": { - "question": 371, - "contribution": 4261, - "answer": 2, - "count": 5 + "order": 431, + "questionnaire": 98, + "text_de": "... wirkte gut vorbereitet.", + "text_en": "... seemed to be well prepared.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1769a6e2-2aa9-45de-8655-4aba37f82f31", + "model": "evaluation.question", + "pk": 432, "fields": { - "question": 335, - "contribution": 3592, - "answer": 1, - "count": 4 + "order": 432, + "questionnaire": 104, + "text_de": "Das Projektseminar hat mir Spaß/Freude bereitet.", + "text_en": "I enjoyed the project seminar.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "177059ce-d22d-4faa-a40b-b9f6b861578e", + "model": "evaluation.question", + "pk": 433, "fields": { - "question": 476, - "contribution": 1626, - "answer": -1, - "count": 1 + "order": 433, + "questionnaire": 104, + "text_de": "Die Seminarthemen fand ich gut ausgewählt.", + "text_en": "The seminar's topics were chosen very well.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1776de1d-bf5c-4bb6-b690-b469548fcd89", + "model": "evaluation.question", + "pk": 434, "fields": { - "question": 360, - "contribution": 1826, - "answer": 5, - "count": 1 + "order": 434, + "questionnaire": 104, + "text_de": "Die bereitgestellten Materialien waren gute Einstiegspunkte für eigene Recherche.", + "text_en": "The provided learning material was a good start for own research.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1781ae55-79dd-4509-b8f6-f53e4bbb3661", + "model": "evaluation.question", + "pk": 435, "fields": { - "question": 473, - "contribution": 3440, - "answer": 3, - "count": 1 + "order": 435, + "questionnaire": 104, + "text_de": "Ich empfand den Aufwand für das Projektseminar als angemessen.", + "text_en": "I think the expenditure of time for the project seminar was appropriate.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1798c77b-1c4d-459e-b1ca-86d3f5415c75", + "model": "evaluation.question", + "pk": 436, "fields": { - "question": 257, - "contribution": 4084, - "answer": 2, - "count": 24 + "order": 436, + "questionnaire": 104, + "text_de": "Aus dem Projektseminar habe ich etwas mitnehmen können.", + "text_en": "I learned something from the project seminar.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "179baf6f-afd2-44ec-b42d-b8621a95e881", + "model": "evaluation.question", + "pk": 437, "fields": { - "question": 337, - "contribution": 804, - "answer": 4, - "count": 1 + "order": 437, + "questionnaire": 104, + "text_de": "Ich kann nachvollziehen, wie und nach welchen Kriterien die Bewertung erfolgt.", + "text_en": "I can understand how the grading is influenced by specific criteria.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "179ddc37-5bd3-4f24-a45b-5a2e115f18e7", + "model": "evaluation.question", + "pk": 438, "fields": { - "question": 343, - "contribution": 3912, - "answer": 1, - "count": 2 + "order": 438, + "questionnaire": 104, + "text_de": "Die theoretischen Inhalte des Seminars haben mir bei der Bearbeitung des Projekts geholfen.", + "text_en": "The theoretical contents of the seminar helped me working on the project.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17a4918d-3527-4122-879e-9f3b16835395", + "model": "evaluation.question", + "pk": 439, "fields": { - "question": 262, - "contribution": 3390, - "answer": 1, - "count": 3 + "order": 439, + "questionnaire": 104, + "text_de": "Was hat das Projektseminar besonders ausgezeichnet?", + "text_en": "What were the strengths of the project seminar?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17a4d1ec-5a5b-440e-a333-7213fcbc54cb", + "model": "evaluation.question", + "pk": 440, "fields": { - "question": 319, - "contribution": 908, - "answer": 1, - "count": 8 + "order": 440, + "questionnaire": 104, + "text_de": "Durch welche Änderungen könnte man das Projektseminar noch verbessern?", + "text_en": "How could the project seminar be further improved?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17a7155e-8b6c-4454-8839-408175ddfd56", + "model": "evaluation.question", + "pk": 441, "fields": { - "question": 363, - "contribution": 1826, - "answer": 3, - "count": 2 + "order": 441, + "questionnaire": 105, + "text_de": "Das Seminar hat mir Spaß/Freude bereitet.", + "text_en": "I enjoyed the seminar.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17a8276e-d177-40fa-9936-46fef8799102", + "model": "evaluation.question", + "pk": 442, "fields": { - "question": 356, - "contribution": 1781, - "answer": 2, - "count": 2 + "order": 442, + "questionnaire": 105, + "text_de": "Das Projektthema fand ich gut ausgewählt.", + "text_en": "The project topic was chosen very well.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17a99b4c-f147-4190-8fa9-80b8902c2a21", + "model": "evaluation.question", + "pk": 443, "fields": { - "question": 332, - "contribution": 4152, - "answer": 2, - "count": 9 + "order": 443, + "questionnaire": 105, + "text_de": "Ich empfand den Aufwand für das Seminar als angemessen.", + "text_en": "I think the expenditure of time for the seminar was appropriate.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17afc56d-276a-4209-899b-72c7e7a628d8", + "model": "evaluation.question", + "pk": 444, "fields": { - "question": 473, - "contribution": 3727, - "answer": 1, - "count": 4 + "order": 444, + "questionnaire": 105, + "text_de": "Aus dem Seminar habe ich etwas mitnehmen können.", + "text_en": "I learned something from the seminar.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17afd253-fa4e-4be1-9798-3ff7e78fa969", + "model": "evaluation.question", + "pk": 445, "fields": { - "question": 477, - "contribution": 4203, - "answer": 2, - "count": 1 + "order": 445, + "questionnaire": 105, + "text_de": "Ich kann mir vorstellen, Ansätze und Methoden aus dem Design Thinking auch bei zukünftigen Projekten anzuwenden.", + "text_en": "I can imagine using design thinking principles and methods in future projects.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17b0f665-a22d-4652-8a05-52704de57b52", + "model": "evaluation.question", + "pk": 446, "fields": { - "question": 355, - "contribution": 3517, - "answer": 1, - "count": 4 + "order": 446, + "questionnaire": 105, + "text_de": "Das Seminar ist eine Bereicherung für meinen Studiengang.", + "text_en": "The seminar is a good additional contribution to my major subject. ", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17b48ce6-b05c-4a65-a184-0be5ec45f934", + "model": "evaluation.question", + "pk": 447, "fields": { - "question": 327, - "contribution": 3556, - "answer": 1, - "count": 9 + "order": 447, + "questionnaire": 105, + "text_de": "Was hat das Seminar besonders ausgezeichnet?", + "text_en": "What were the strengths of the seminar?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17bba9ce-c093-4938-a4cb-d15892df0b41", + "model": "evaluation.question", + "pk": 448, "fields": { - "question": 371, - "contribution": 3551, - "answer": 5, - "count": 1 + "order": 448, + "questionnaire": 105, + "text_de": "Durch welche Änderungen könnte man das Seminar noch verbessern?", + "text_en": "How could the seminar be further improved?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17c3dbf6-17f2-498b-b772-9550fff4e098", + "model": "evaluation.question", + "pk": 449, "fields": { - "question": 344, - "contribution": 4095, - "answer": 1, - "count": 10 + "order": 449, + "questionnaire": 106, + "text_de": "Das Studienbegleitende Seminar hat mir Spaß/Freude bereitet.", + "text_en": "I enjoyed the accompanying seminar.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17c3eb37-6531-4601-9cdd-d59a9db591b8", + "model": "evaluation.question", + "pk": 450, "fields": { - "question": 463, - "contribution": 4073, - "answer": 2, - "count": 1 + "order": 450, + "questionnaire": 106, + "text_de": "Die Vorträge fand ich gut ausgewählt.", + "text_en": "The topics of the talks were chosen very well.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17c83b55-a482-4de0-a729-0fc9e7ee561f", + "model": "evaluation.question", + "pk": 451, "fields": { - "question": 336, - "contribution": 3645, - "answer": 1, - "count": 2 + "order": 451, + "questionnaire": 106, + "text_de": "Ich empfand den Aufwand für das Studienbegleitende Seminar als angemessen.", + "text_en": "I think the expenditure of time for the accompanying seminar was appropriate.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17d6f025-1383-4dc4-a376-f9abd4a1213e", + "model": "evaluation.question", + "pk": 452, "fields": { - "question": 348, - "contribution": 3525, - "answer": 1, - "count": 1 + "order": 452, + "questionnaire": 106, + "text_de": "Aus dem Studienbegleitenden Seminar habe ich etwas mitnehmen können.", + "text_en": "I learned something from the accompanying seminar.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17deb6ba-a763-43bd-a854-586fb32c85e8", + "model": "evaluation.question", + "pk": 453, "fields": { - "question": 327, - "contribution": 1613, - "answer": 2, - "count": 7 + "order": 453, + "questionnaire": 106, + "text_de": "Das Studienbegleitende Seminar hat mir beim Einstieg in das Studium geholfen.", + "text_en": "The accompanying seminar helped me to get started with my studies.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17df033f-b1d4-4ae5-9f9a-84c81733ac3b", + "model": "evaluation.question", + "pk": 454, "fields": { - "question": 353, - "contribution": 3609, - "answer": 1, - "count": 3 + "order": 454, + "questionnaire": 106, + "text_de": "Was hat das Studienbegleitende Seminar besonders ausgezeichnet?", + "text_en": "What were the strengths of the accompanying seminar?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17e014c1-6e04-4573-b4bf-efc187bae006", + "model": "evaluation.question", + "pk": 455, "fields": { - "question": 323, - "contribution": 4138, - "answer": 2, - "count": 17 + "order": 455, + "questionnaire": 106, + "text_de": "Durch welche Änderungen könnte man das Studienbegleitende Seminar noch verbessern?", + "text_en": "How could the accompanying seminar be further improved?", + "allows_additional_textanswers": false, + "type": 0 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17e21b7e-4c0d-457e-9994-0a59149afd62", + "model": "evaluation.question", + "pk": 457, "fields": { - "question": 464, - "contribution": 4283, - "answer": 1, - "count": 1 + "order": 457, + "questionnaire": 107, + "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", + "text_en": "... showed respect for the students.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17e70e61-bcda-4bb0-8a74-38d39fb8ec9d", + "model": "evaluation.question", + "pk": 458, "fields": { - "question": 321, - "contribution": 3679, - "answer": 5, - "count": 1 + "order": 458, + "questionnaire": 107, + "text_de": "... konnte mir Wissen vermitteln.", + "text_en": "... imparted knowledge.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "17e8cd5c-7146-4773-a712-b54487f6c73f", + "model": "evaluation.question", + "pk": 459, "fields": { - "question": 360, - "contribution": 1827, - "answer": 2, - "count": 1 + "order": 459, + "questionnaire": 107, + "text_de": "... ging auf Fragen und Anregungen ein.", + "text_en": "... addressed questions and proposals.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "181464e8-d24c-4533-9f70-3272ad418a8e", + "model": "evaluation.question", + "pk": 460, "fields": { - "question": 451, - "contribution": 4185, - "answer": 2, - "count": 5 + "order": 460, + "questionnaire": 107, + "text_de": "... gestaltete das Seminar interessant.", + "text_en": "... conducted the seminar in an interesting way.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1816a9e2-ec19-4c72-81cb-0592a84d4c93", + "model": "evaluation.question", + "pk": 461, "fields": { - "question": 327, - "contribution": 3391, - "answer": 3, - "count": 4 + "order": 461, + "questionnaire": 107, + "text_de": "... wirkte gut vorbereitet.", + "text_en": "... seemed to be well prepared.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1817a7c3-cde8-408a-bd51-e04baaf8bfff", + "model": "evaluation.question", + "pk": 462, "fields": { - "question": 428, - "contribution": 4154, - "answer": 2, - "count": 4 + "order": 462, + "questionnaire": 107, + "text_de": "... hat den Seminarablauf gut gestaltet.", + "text_en": "... created a good structure of the seminar.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "182dbd8f-addc-42fb-b761-059e379dae76", + "model": "evaluation.question", + "pk": 463, "fields": { - "question": 338, - "contribution": 1662, - "answer": 1, - "count": 6 + "order": 463, + "questionnaire": 107, + "text_de": "... hat mich/mein Team aktiv betreut.", + "text_en": "... made a good job in actively supporting me/my team.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1834a5e3-ccd8-458b-bd38-d348f078046f", + "model": "evaluation.question", + "pk": 464, "fields": { - "question": 369, - "contribution": 1826, - "answer": 5, - "count": 1 + "order": 464, + "questionnaire": 107, + "text_de": "... stand auch außerhalb des Seminars zur Verfügung.", + "text_en": "... was available even outside the seminar.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "184055a5-3d8f-4d97-931a-496067ada17f", + "model": "evaluation.question", + "pk": 465, "fields": { - "question": 322, - "contribution": 3683, - "answer": 2, - "count": 1 + "order": 465, + "questionnaire": 108, + "text_de": "... verhielt sich gegenüber den Studierenden respektvoll.", + "text_en": "... showed respect for the students.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1845d95e-3203-43ef-8009-36e591d39464", + "model": "evaluation.question", + "pk": 466, "fields": { - "question": 348, - "contribution": 1735, - "answer": 2, - "count": 1 + "order": 466, + "questionnaire": 108, + "text_de": "... konnte mir Wissen vermitteln.", + "text_en": "... imparted knowledge.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "184642d4-ad91-4873-b69f-8bc66de2674c", + "model": "evaluation.question", + "pk": 467, "fields": { - "question": 322, - "contribution": 4138, - "answer": 3, - "count": 11 + "order": 467, + "questionnaire": 108, + "text_de": "... ging auf Fragen und Anregungen ein.", + "text_en": "... addressed questions and proposals.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "185df0c0-41a0-4444-aa4f-e1f4cd745916", + "model": "evaluation.question", + "pk": 468, "fields": { - "question": 357, - "contribution": 3529, - "answer": 1, - "count": 3 + "order": 468, + "questionnaire": 108, + "text_de": "... wirkte gut vorbereitet.", + "text_en": "... seemed to be well prepared.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "186052e6-d5d7-4691-a7e5-ddee4e6ce31d", + "model": "evaluation.question", + "pk": 469, "fields": { - "question": 262, - "contribution": 4138, - "answer": 3, - "count": 3 + "order": 469, + "questionnaire": 108, + "text_de": "... hat mich/mein Team aktiv betreut.", + "text_en": "... made a good job in actively supporting me/my team.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1868ebff-da4a-4d01-bc02-16a9ba23109a", + "model": "evaluation.question", + "pk": 470, "fields": { - "question": 476, - "contribution": 1626, - "answer": 2, - "count": 5 + "order": 470, + "questionnaire": 108, + "text_de": "... stand auch außerhalb des Seminars zur Verfügung.", + "text_en": "... was available even outside the seminar.", + "allows_additional_textanswers": true, + "type": 1 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1870aa66-fceb-41ea-b767-ff54e3ba878f", + "model": "evaluation.question", + "pk": 471, "fields": { - "question": 349, - "contribution": 3822, - "answer": 1, - "count": 1 + "order": 471, + "questionnaire": 109, + "text_de": "Wie würdest du die Veranstaltung insgesamt bewerten?", + "text_en": "How would you grade the course in total?", + "allows_additional_textanswers": true, + "type": 2 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "1873e778-f9b4-405a-9da1-c865c2e17748", + "model": "evaluation.question", + "pk": 472, "fields": { - "question": 259, - "contribution": 884, - "answer": 3, - "count": 1 + "order": 2, + "questionnaire": 110, + "text_de": "Würden Sie eine Fortsetzung des Kurses besuchen?", + "text_en": "Would you enroll in a continued version of this course?", + "allows_additional_textanswers": true, + "type": 3 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "187b3d35-b060-4e78-a23e-954e1cc0661a", + "model": "evaluation.question", + "pk": 473, "fields": { - "question": 322, - "contribution": 864, - "answer": 3, - "count": 1 + "order": 1, + "questionnaire": 110, + "text_de": "Fanden Sie den Kurs zu schwer?", + "text_en": "Was the course too difficult?", + "allows_additional_textanswers": true, + "type": 6 } }, { - "model": "evaluation.ratinganswercounter", - "pk": "187d9ce5-d535-429d-9be9-bf93427c15e8", + "model": "evaluation.question", + "pk": 475, "fields": { - "question": 457, - "contribution": 3862, - "answer": 2, - "count": 2 + "order": 342, + "questionnaire": 86, + "text_de": "Wie empfandest du die Größe des Seminars?", + "text_en": "How do you feel about the size of the seminar?", + "allows_additional_textanswers": true, + "type": 9 + } +}, +{ + "model": "evaluation.question", + "pk": 476, + "fields": { + "order": 332, + "questionnaire": 50, + "text_de": "Es gab genügend Übungen.", + "text_en": "There were sufficient exercises.", + "allows_additional_textanswers": true, + "type": 7 + } +}, +{ + "model": "evaluation.question", + "pk": 477, + "fields": { + "order": 477, + "questionnaire": 84, + "text_de": "... ist in einem angenehmen Tempo vorangeschritten.", + "text_en": "... had a comfortable pace.", + "allows_additional_textanswers": true, + "type": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "188234e7-84ba-4e85-a248-e95a39f45d9d", + "pk": "0009be0e-4a00-4f89-82b7-9733ff0fe35f", "fields": { - "question": 337, - "contribution": 1656, - "answer": 1, - "count": 6 + "question": 340, + "contribution": 1694, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1885aa1b-403d-4d4f-9c45-c4163940a1d1", + "pk": "000e3f79-4319-442d-91de-c10c30867d29", "fields": { - "question": 348, - "contribution": 4129, - "answer": 4, - "count": 1 + "question": 355, + "contribution": 1844, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1891c146-3ca1-4c86-9e5e-4f8cc61af225", + "pk": "0021e67b-3b6b-4cb8-a870-2b6beb6c63d2", "fields": { - "question": 356, - "contribution": 3848, - "answer": 3, - "count": 1 + "question": 319, + "contribution": 1612, + "answer": 2, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "18953536-fbf1-44df-af54-5f31caa88694", + "pk": "00267cac-fd22-4e33-9624-a5ea3bb02df7", "fields": { - "question": 338, - "contribution": 3751, - "answer": 4, - "count": 1 + "question": 255, + "contribution": 1626, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1898758d-3cc1-4196-a20e-0d0a8da405fa", + "pk": "003384b4-391f-4324-b22e-88067bdb2a82", "fields": { - "question": 346, - "contribution": 887, - "answer": 5, - "count": 1 + "question": 370, + "contribution": 4223, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "189afaa9-9e7c-4ebd-b10e-34cbd1b76989", + "pk": "003e7772-5cb5-4fab-88c2-a7362fb55b9e", "fields": { - "question": 357, - "contribution": 3776, - "answer": 1, - "count": 5 + "question": 355, + "contribution": 4278, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "18a2b700-79d0-4673-82d0-6fb50829d74a", + "pk": "0042b862-99ac-4b96-885f-dfe177ef876e", "fields": { - "question": 259, - "contribution": 884, + "question": 347, + "contribution": 1735, "answer": 1, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "18b464a7-ba46-4a9b-8f04-9c4ae808b9c1", + "pk": "00442828-25a6-463d-9d22-a0ff63b56f2a", "fields": { "question": 326, - "contribution": 1154, - "answer": 3, - "count": 10 + "contribution": 3680, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "18b97e0e-f67d-4534-be74-3fe5906aca9f", + "pk": "005c90a3-386d-4312-9357-f8c1f588b28a", "fields": { - "question": 333, - "contribution": 3592, + "question": 366, + "contribution": 3553, "answer": 3, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "18c4cd93-cc67-4b30-a52c-c05b426deebf", + "pk": "0060c318-6846-474b-bb75-574e3e5292d9", "fields": { - "question": 319, - "contribution": 4120, + "question": 323, + "contribution": 912, "answer": 3, - "count": 13 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "18cf7572-719f-443b-9717-ad7f451e87e8", + "pk": "0067ba03-c2c6-4ab5-9494-4e8e1ae8f010", "fields": { - "question": 258, - "contribution": 4138, - "answer": 5, - "count": 1 + "question": 345, + "contribution": 1246, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "18de9810-ec98-49fe-b527-d7b241e759d1", + "pk": "00717264-4acb-40ac-81bd-10e9f8738f48", "fields": { - "question": 460, - "contribution": 3862, - "answer": 2, + "question": 354, + "contribution": 1243, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "18e95f2d-5b20-4fa6-a4a0-7907e1cf7290", + "pk": "0084d61a-3dfd-43e7-9d94-bec80418c023", "fields": { - "question": 359, - "contribution": 3919, - "answer": 2, + "question": 320, + "contribution": 1837, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "18f1acff-2018-453f-bc61-a98651961352", + "pk": "009991af-2249-4332-9e06-877903c1e6d2", "fields": { - "question": 362, - "contribution": 1805, + "question": 367, + "contribution": 4138, "answer": 5, - "count": 1 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "18f3c984-d37f-4091-a24b-a40ac61fb7e9", + "pk": "009fefa1-9bbe-45b1-a5f2-f50a737a029e", "fields": { - "question": 329, - "contribution": 1154, - "answer": 2, - "count": 14 + "question": 343, + "contribution": 3405, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "190123fb-2171-4203-b89c-35fcf0abc7f5", + "pk": "00a61c22-ed50-49fa-b91b-3747ec67b586", "fields": { - "question": 477, - "contribution": 4085, + "question": 339, + "contribution": 3372, "answer": 0, - "count": 26 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "190eca71-4cf3-4cb7-b3e3-923e76c7fe91", + "pk": "00a92578-482f-4f55-bd7c-48967528b547", "fields": { - "question": 355, - "contribution": 1187, - "answer": 2, - "count": 3 + "question": 326, + "contribution": 1778, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19187312-3d10-403a-85b6-be014450f020", + "pk": "00c0e409-112a-472f-a836-13b4daf0a10f", "fields": { - "question": 341, - "contribution": 3372, - "answer": 3, - "count": 1 + "question": 320, + "contribution": 3390, + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "191fa96d-b92d-40f2-9bcc-588aacbda748", + "pk": "00c1a454-09bf-4cfc-83ca-082022225f84", "fields": { - "question": 354, - "contribution": 4266, + "question": 343, + "contribution": 3610, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1924f628-aaed-432f-b16d-508b8046d0e2", + "pk": "00c4adad-f85c-48e6-9b02-9da6779bb4c4", "fields": { - "question": 473, - "contribution": 1640, - "answer": 3, - "count": 1 + "question": 260, + "contribution": 3679, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19288598-cf46-4c13-9850-d02fa1be44f8", + "pk": "00d09b26-2a3b-40b3-9f8d-46e1ff61f808", "fields": { - "question": 315, - "contribution": 3474, + "question": 370, + "contribution": 4270, "answer": 1, - "count": 11 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19331fec-d09c-4428-844d-9a20ff960409", + "pk": "00d4b3f2-c0b4-47f6-96aa-55ea1594684f", "fields": { - "question": 354, - "contribution": 1845, - "answer": 5, - "count": 1 + "question": 343, + "contribution": 1661, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "193a1e7c-ee44-497d-a430-f4313773788c", + "pk": "00daafad-c88f-4549-b91a-95acb275cd3e", "fields": { - "question": 321, - "contribution": 822, - "answer": 3, - "count": 2 + "question": 347, + "contribution": 919, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "193efb31-35c7-4493-846c-0c393cf56383", + "pk": "00dcbacf-8c26-4c2e-8ce3-d09e670dae1c", "fields": { - "question": 326, - "contribution": 1802, - "answer": 4, - "count": 6 + "question": 477, + "contribution": 1681, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1943f384-3ec9-4c97-8b2c-ad2a60619cbb", + "pk": "00faaf28-144f-4c8d-b590-edc02f91534b", "fields": { - "question": 402, - "contribution": 3646, - "answer": 3, + "question": 341, + "contribution": 3735, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19531513-1c0a-4bb6-ae66-21bde6494232", + "pk": "0105e5eb-a051-4ce4-ad07-251b080570de", "fields": { - "question": 320, - "contribution": 884, + "question": 344, + "contribution": 3609, "answer": 2, - "count": 13 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19695bfe-58c5-4c6e-b55d-20538b87661e", + "pk": "0113b140-859f-4d17-9da7-01da0fb31b37", "fields": { - "question": 347, - "contribution": 3405, - "answer": 2, + "question": 338, + "contribution": 1748, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19714329-8880-428e-93ad-8a7229b084bf", + "pk": "011a1aeb-4f2a-421a-9e9b-582f757abb6c", "fields": { - "question": 362, - "contribution": 3918, - "answer": 2, - "count": 1 + "question": 472, + "contribution": 1734, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19763446-3e50-41f7-81b2-6e9520bb33d8", + "pk": "011ce17e-2383-4515-a8a9-568c723ff8ad", "fields": { - "question": 327, - "contribution": 4203, + "question": 340, + "contribution": 3785, "answer": 1, - "count": 9 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "197901cf-c4ac-428f-b120-4b4ab3e432d2", + "pk": "0124959b-92f2-418b-9a43-91eabb2f7047", "fields": { - "question": 319, - "contribution": 880, - "answer": 2, - "count": 7 + "question": 340, + "contribution": 1710, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19799148-3e00-49b6-be1a-676ebd23ec35", + "pk": "0133c407-2d57-4dfe-922f-bd995be72eac", "fields": { - "question": 368, - "contribution": 1778, - "answer": 2, + "question": 331, + "contribution": 4046, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "197ae7fe-a3be-4206-9831-c4dc856a3b1e", + "pk": "01374454-570d-4ed8-a3d2-a4c25d047729", "fields": { - "question": 431, - "contribution": 4148, + "question": 262, + "contribution": 3422, "answer": 1, - "count": 24 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19831fba-5f90-49b5-9182-b3b867258872", + "pk": "013c2916-ba54-44e3-b18f-e57b65159d48", "fields": { - "question": 338, - "contribution": 832, - "answer": 1, + "question": 258, + "contribution": 3390, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19890e8c-5df5-41ae-8f01-6533fcbcfc90", + "pk": "013f3e26-d2fb-4ce9-91a8-208ac1d46855", "fields": { - "question": 348, - "contribution": 4192, + "question": 320, + "contribution": 4138, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19913630-a754-4f5f-b9f1-211541394fc4", + "pk": "01469592-45e1-4c7a-a0c0-d8e286d87e81", "fields": { - "question": 337, - "contribution": 3486, + "question": 320, + "contribution": 3683, "answer": 1, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1999abe5-9e8e-41b3-a20f-4a2acd5f564e", + "pk": "01471ea1-ac10-4fd2-b20d-04718931475c", "fields": { - "question": 337, - "contribution": 832, + "question": 371, + "contribution": 1812, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19ac96b0-07e7-4eef-b922-e073b60fb69b", + "pk": "0153e59c-286f-43d3-8d37-3b7a19176728", "fields": { - "question": 476, - "contribution": 3474, - "answer": 1, - "count": 1 + "question": 475, + "contribution": 918, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19ad0482-3330-4030-915c-dd7d82714427", + "pk": "015d2d46-1432-4698-9287-5b20a8290f8d", "fields": { - "question": 475, - "contribution": 804, - "answer": -1, - "count": 2 + "question": 477, + "contribution": 3680, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19afcbc1-bc6a-4fdb-895e-38a950f771dd", + "pk": "01692a82-de5b-4c1d-aaad-783f75f9337a", "fields": { - "question": 328, - "contribution": 4153, - "answer": 5, - "count": 1 + "question": 360, + "contribution": 3929, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19b3756e-7bcb-4582-b6a3-ed42b6491285", + "pk": "016d00f9-2738-4041-8940-4a5de5f62a7b", "fields": { - "question": 450, - "contribution": 4185, - "answer": 1, - "count": 20 + "question": 477, + "contribution": 3680, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19b67220-dd97-4caa-851b-c269426058a4", + "pk": "017f2946-0f9a-41f2-9794-a7592f6b1fc8", "fields": { - "question": 371, - "contribution": 3552, - "answer": 1, - "count": 2 + "question": 354, + "contribution": 1849, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19d75bd3-cc70-47d7-8633-5d30a1f61483", + "pk": "0180249f-0822-4b5d-b689-b479fb96ce84", "fields": { "question": 326, - "contribution": 1297, - "answer": 1, - "count": 9 + "contribution": 881, + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19ddd3c3-d035-4f39-8712-6f6a37f1e0e8", + "pk": "018fab27-fdb0-4bd4-a218-0170596d361b", "fields": { - "question": 337, - "contribution": 1200, + "question": 317, + "contribution": 3394, "answer": 2, - "count": 11 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19e40061-825b-410b-b1d7-f4b1c7392a70", + "pk": "019233b0-8574-4b13-af01-78a971c1a267", "fields": { - "question": 337, - "contribution": 4052, - "answer": 2, - "count": 1 + "question": 338, + "contribution": 804, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19e916ff-db04-4aa3-9994-1f694532914f", + "pk": "0193b1d5-ae30-4865-8e94-cade2c965cb6", + "fields": { + "question": 356, + "contribution": 3610, + "answer": 1, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "01955f00-d46f-4c53-85e6-bd4a00fc6fe3", "fields": { "question": 325, - "contribution": 1780, - "answer": 3, - "count": 1 + "contribution": 3684, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19eb2010-5c26-4744-a5d7-eca8c1d557a3", + "pk": "0196ad61-c0af-4d36-88a6-0b88d1bf4105", "fields": { - "question": 349, - "contribution": 1247, - "answer": 1, + "question": 1, + "contribution": 4303, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19ecac91-3b74-4ff3-b330-62056e002a42", + "pk": "0199fccf-72ef-4dc2-8db2-20840cadc4ff", "fields": { - "question": 321, - "contribution": 880, - "answer": 2, - "count": 7 + "question": 332, + "contribution": 3592, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19f0e98b-2811-4177-8c3d-c0a8d7750850", + "pk": "01a2d416-e881-442d-9673-2495d574732f", "fields": { - "question": 418, - "contribution": 4038, + "question": 344, + "contribution": 3515, "answer": 1, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "19f3af8d-9e93-4ed1-9317-eff5f27537cc", + "pk": "01a74b2a-fac9-4c88-8a93-b7eb91f2efb1", "fields": { - "question": 336, - "contribution": 3681, + "question": 315, + "contribution": 3406, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a208426-5cda-435b-b210-a7ae9d0a5138", + "pk": "01aa9d2e-0a67-4ce5-82bf-468c39d0970d", "fields": { - "question": 337, - "contribution": 1200, - "answer": 1, - "count": 11 + "question": 355, + "contribution": 4223, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a31f6f1-0067-46ea-8502-49a19b51c7fe", + "pk": "01b401e5-e3f5-46eb-b58f-5407607d66a9", "fields": { "question": 363, - "contribution": 1825, + "contribution": 1806, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a3a35e3-554a-46a0-a41d-4e94c35b74b4", + "pk": "01b5e915-d394-45cd-bf00-d6f7d10f56af", "fields": { - "question": 332, - "contribution": 3566, - "answer": 1, - "count": 9 + "question": 344, + "contribution": 4129, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a3f827f-45c5-4837-82a6-2cb04154a803", + "pk": "01cce50b-ceb6-44c5-b62c-b5910db3af74", "fields": { - "question": 367, - "contribution": 1626, - "answer": 2, - "count": 8 + "question": 326, + "contribution": 1779, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a400702-3daa-457d-afcc-49cb19b8fdd9", + "pk": "01cd65cb-658d-4fdf-98b1-d3299e8d3024", "fields": { - "question": 344, - "contribution": 4146, + "question": 348, + "contribution": 3822, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a41fccd-7476-49e0-a1ac-0d1afe8bbcd7", + "pk": "01dadeed-c78c-4563-ac88-2a1a2e589526", "fields": { - "question": 325, - "contribution": 837, - "answer": 1, - "count": 19 + "question": 359, + "contribution": 1799, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a432a33-6e57-42c5-989b-90248720bc81", + "pk": "01dcb031-30a1-4bd0-8c92-23c6ecb468a1", "fields": { - "question": 344, - "contribution": 3934, + "question": 255, + "contribution": 880, "answer": 2, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a4c0a6f-4618-4063-8ded-bc3b80a2b759", + "pk": "01e1a607-4367-4d44-8567-c309fafd802d", "fields": { - "question": 323, - "contribution": 884, + "question": 321, + "contribution": 3679, + "answer": 2, + "count": 8 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "01e40d33-c5e1-4514-83ea-f375631903aa", + "fields": { + "question": 336, + "contribution": 918, "answer": 4, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a54fa62-73cf-4329-ae3c-7783143e255f", + "pk": "01ecff4d-376c-486b-b924-372d5be639dd", "fields": { - "question": 262, - "contribution": 3679, + "question": 398, + "contribution": 3775, "answer": 1, - "count": 9 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a551fe3-757e-41b1-b724-a82a3554297d", + "pk": "01ef3da8-3f6e-4867-b5e8-24b185c08c04", "fields": { - "question": 351, - "contribution": 788, - "answer": 2, + "question": 355, + "contribution": 1849, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a630d3d-4565-4776-9cc1-53b2165ae57b", + "pk": "01f058ee-9b77-4467-b46f-8c4595b60916", "fields": { - "question": 346, - "contribution": 1828, - "answer": 2, + "question": 340, + "contribution": 4052, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a63a209-0e4c-4e08-aad0-fc72e8aae0d9", + "pk": "020886dd-9885-4da3-aa01-b667440bb5dc", "fields": { - "question": 343, - "contribution": 3609, - "answer": 1, - "count": 5 + "question": 348, + "contribution": 3728, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a67c850-0912-47e0-8365-b32fbb3765e5", + "pk": "0216f120-d48a-4c1d-98e1-9d6b5e43ad4d", "fields": { "question": 328, - "contribution": 1669, - "answer": 2, - "count": 2 + "contribution": 3740, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a6c3a7f-ebd0-4419-a0f0-409a032b78e4", + "pk": "0219dd64-0b79-4394-a561-269311bcf07e", "fields": { - "question": 333, - "contribution": 3936, - "answer": 1, - "count": 3 + "question": 340, + "contribution": 858, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a72f52a-8098-4c0a-83c9-cd3af28136ed", + "pk": "02282efd-7005-4458-aa9e-25d9fbad1b46", "fields": { - "question": 337, - "contribution": 3681, - "answer": 1, - "count": 2 + "question": 345, + "contribution": 3451, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a74247e-ed91-451e-a1d5-98ccaecfc9e3", + "pk": "0241e9d9-ef35-4e5c-9696-4c87050d0f2d", "fields": { - "question": 336, - "contribution": 3482, - "answer": 3, + "question": 349, + "contribution": 3606, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a83d826-cac9-4a8a-a682-c8b9bb8b1409", + "pk": "024a5bec-b2c8-4612-b36a-fa884ebfbb29", "fields": { - "question": 395, - "contribution": 3781, + "question": 343, + "contribution": 1860, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a844795-a9fd-43bf-8380-691b1ec47686", + "pk": "024c1be5-a961-43eb-a64d-ec2004bc8d15", "fields": { - "question": 473, - "contribution": 840, - "answer": -1, - "count": 2 + "question": 475, + "contribution": 3508, + "answer": 0, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a91dfb1-a322-459a-b2f3-5578d3b59d85", + "pk": "025765bd-fa97-4d20-a555-13583ea009b9", "fields": { - "question": 328, - "contribution": 1288, - "answer": 2, + "question": 338, + "contribution": 858, + "answer": 1, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a964e66-1cbe-4996-be1e-86927bc731a1", + "pk": "025bac60-e12d-4b61-a95d-518a0d20aae8", "fields": { - "question": 360, - "contribution": 1806, + "question": 357, + "contribution": 1243, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1a9d467d-eb71-4b54-9446-5cd3bb1a2a4e", + "pk": "02680828-01bb-4951-87ac-b4c7a323d572", "fields": { - "question": 316, - "contribution": 1658, - "answer": 2, - "count": 3 + "question": 327, + "contribution": 913, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1aa01ab5-b4e7-4e25-becb-85e129304cf7", + "pk": "026904d3-6a81-4484-9436-72bf4334a7a3", "fields": { - "question": 337, - "contribution": 3685, - "answer": 1, - "count": 3 + "question": 363, + "contribution": 1835, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1aa450e2-bd05-44fe-a8f5-5c9d355504c3", + "pk": "026ccd66-d402-4547-8a8c-f74469c5305d", "fields": { - "question": 321, - "contribution": 3406, - "answer": 2, - "count": 3 + "question": 361, + "contribution": 3649, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1aa906fa-3980-4ff5-a0f6-bc8da60839d0", + "pk": "027e7fe3-9a7e-47b1-8013-c14a93ff7acb", "fields": { - "question": 340, - "contribution": 886, + "question": 259, + "contribution": 4138, "answer": 2, + "count": 10 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "0288d39d-be9d-4c32-85a7-d8863142329c", + "fields": { + "question": 327, + "contribution": 881, + "answer": 5, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1ab0e667-f8ac-47f2-9f5e-59cddf6dcdaf", + "pk": "02907933-7970-4993-9e53-eb3d43a40139", "fields": { - "question": 468, - "contribution": 4115, - "answer": 1, + "question": 406, + "contribution": 3984, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1abbb5a8-b00b-42dd-b203-847d67e938f8", + "pk": "029ae302-6448-4d94-8956-3379266f0705", "fields": { - "question": 319, - "contribution": 1612, + "question": 337, + "contribution": 1200, "answer": 3, - "count": 6 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1abed1cc-9d2f-4f38-98df-5b5433f61507", + "pk": "029ca151-a1ec-42cd-8e72-f6ccad0a1413", "fields": { "question": 477, - "contribution": 3435, - "answer": 2, - "count": 1 + "contribution": 1777, + "answer": -2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1acd1856-754e-4b93-9cf6-365a1863d8df", + "pk": "02a51d56-64eb-499f-91be-bf59cb40bf51", "fields": { - "question": 347, - "contribution": 3518, - "answer": 3, - "count": 1 + "question": 331, + "contribution": 3679, + "answer": 0, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1ad7fd53-e7b3-4f18-89dc-6deb66372edd", + "pk": "02a97330-852a-4465-b431-d13d2558476c", "fields": { - "question": 333, - "contribution": 4156, - "answer": 2, - "count": 3 + "question": 360, + "contribution": 1806, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1ae18f11-6837-4564-bd5a-d1797338211b", + "pk": "02b92c4f-c00f-4d8c-8a2f-826c0aac0d08", "fields": { - "question": 321, - "contribution": 1612, - "answer": 3, - "count": 2 + "question": 476, + "contribution": 3406, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1afbeb0d-3ea0-4b43-b291-981fa52cd589", + "pk": "02c28d9b-df4d-476d-970e-682aadbbfd66", "fields": { - "question": 361, - "contribution": 3929, - "answer": 1, - "count": 12 + "question": 377, + "contribution": 3781, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1afd2622-7685-4d34-aa0a-05ca3d557b4a", + "pk": "02c3c4c5-bf72-4ca0-acc0-68627f4836d8", "fields": { - "question": 326, - "contribution": 3556, - "answer": 3, - "count": 7 + "question": 403, + "contribution": 3646, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1afeae6a-997b-4b48-b9e7-aced4799c609", + "pk": "02c95797-814a-4051-9ee0-089e8a220475", "fields": { - "question": 360, - "contribution": 3919, + "question": 346, + "contribution": 887, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b031e96-10dd-4ed9-8220-5d693df82dcd", + "pk": "02e06e21-45a8-4b63-b75a-79b05586e3dc", "fields": { - "question": 257, - "contribution": 1837, - "answer": 5, - "count": 1 + "question": 331, + "contribution": 4138, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b050361-49a6-42f9-b8a8-26a7999052d9", + "pk": "02f9fd92-6f80-458c-affb-e8fcafd59e36", "fields": { - "question": 359, - "contribution": 3929, - "answer": 1, - "count": 15 + "question": 329, + "contribution": 823, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b092250-834e-432c-a8c4-749015d332d2", + "pk": "02fb10ca-ddbe-4432-9330-af1cccd0ec4a", "fields": { - "question": 350, - "contribution": 3466, - "answer": 5, + "question": 315, + "contribution": 1680, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b0ee2a9-0208-44e8-afbb-e0513cf3fffc", + "pk": "0317220d-b476-4072-b67c-400f7909207c", "fields": { - "question": 472, - "contribution": 4090, - "answer": 1, - "count": 1 + "question": 255, + "contribution": 3390, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b14858a-a6fb-4a0c-8dae-e6325fd14172", + "pk": "0317f6b4-75eb-4ce1-9d6d-5ddf829f8415", "fields": { - "question": 332, - "contribution": 4205, - "answer": 3, - "count": 1 + "question": 335, + "contribution": 3881, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b14dd69-8902-4468-bb8d-586b905e6b3d", + "pk": "031b3eb7-dbec-49fe-8e76-237044116074", "fields": { - "question": 370, - "contribution": 3545, + "question": 255, + "contribution": 1634, "answer": 3, - "count": 1 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b15bcad-c6ac-4b0c-84ed-efa948d0374c", + "pk": "0320a4f6-7455-4f4c-89cf-308dfcb1b5b0", "fields": { - "question": 367, - "contribution": 3354, - "answer": 2, - "count": 6 + "question": 348, + "contribution": 3515, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b1f2dfe-c5a9-4c90-bc02-f917ef911be3", + "pk": "032ab558-28b1-4bd2-bf74-ca4010a5a744", "fields": { - "question": 350, - "contribution": 826, + "question": 472, + "contribution": 822, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b2b7188-53ef-4e14-9fea-6bc3f7b40200", + "pk": "033ab346-5ac8-4b30-ac70-60229e49f2ef", "fields": { - "question": 320, - "contribution": 3739, - "answer": 4, - "count": 3 + "question": 317, + "contribution": 3679, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b2c4ae9-b2e6-4e18-8882-3339ebac4cf0", + "pk": "0343b5b8-ea6c-48e6-86d9-747571c33f56", "fields": { - "question": 473, - "contribution": 884, - "answer": -2, - "count": 1 + "question": 341, + "contribution": 3486, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b3d9c5e-45c5-4637-bad5-74b82f10c59a", + "pk": "03463d1f-67a9-4eca-a51d-b73ae8dccbad", "fields": { - "question": 360, - "contribution": 3653, + "question": 367, + "contribution": 4118, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b446036-3035-4c72-af44-c9a642936469", + "pk": "03483ba7-3162-43a6-82a7-2971e9874692", "fields": { - "question": 1, - "contribution": 4300, + "question": 360, + "contribution": 3921, "answer": 4, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b4cfe89-d1e0-45a5-967c-136ee5df15ed", + "pk": "035b359c-6cbd-4006-8bc9-fc9afebe149f", "fields": { - "question": 477, - "contribution": 4047, - "answer": 2, - "count": 1 + "question": 462, + "contribution": 4283, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b5156a2-20b4-4f2d-8741-f295d9b781da", + "pk": "0367eaab-b1c2-43ed-a0a7-0c7896735fe6", "fields": { - "question": 322, - "contribution": 4084, - "answer": 2, - "count": 12 + "question": 476, + "contribution": 3679, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b532c74-bd15-4e29-aed4-6867357d2029", + "pk": "036c32ca-ebc1-4bb5-91e6-10879dfa2e7f", "fields": { - "question": 400, - "contribution": 4177, + "question": 346, + "contribution": 1661, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b749c51-34c1-440a-9bbc-e8a2b344defc", + "pk": "037d0887-2435-4ae9-82bd-20099d2b134b", "fields": { - "question": 357, - "contribution": 3528, - "answer": 1, - "count": 2 + "question": 344, + "contribution": 3939, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b7d66c2-13d8-4551-9a15-076f3b18c8b7", + "pk": "0385fa33-bca8-41d6-89c8-4b348e9f86cf", "fields": { - "question": 339, - "contribution": 1694, + "question": 356, + "contribution": 1786, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b850011-8783-4745-b805-be8c49b5e838", + "pk": "038dd66b-47aa-4ee5-8db5-c25209394e9b", "fields": { - "question": 368, - "contribution": 3589, + "question": 355, + "contribution": 1189, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b8ff9a4-fbe1-416b-8d87-9115126b7187", + "pk": "03915d8d-a684-40b9-b093-68ec03e404ce", "fields": { - "question": 477, - "contribution": 885, - "answer": 1, - "count": 4 + "question": 338, + "contribution": 1748, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b976845-bd81-4fc3-8b5d-051e207c45dd", + "pk": "039249e3-2b3d-4339-90cd-966e628a79ab", "fields": { - "question": 316, - "contribution": 4128, - "answer": 3, - "count": 8 + "question": 337, + "contribution": 862, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1b9d1170-036e-4ded-a594-73cdcdff2158", + "pk": "039d5f06-18dd-4f2e-9adf-598a7b716fea", "fields": { - "question": 385, - "contribution": 3781, - "answer": 3, - "count": 1 + "question": 378, + "contribution": 3775, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1ba109aa-1030-4712-8948-060654570251", + "pk": "039f18be-d9b9-4c90-9535-fac04222e2b4", "fields": { - "question": 369, - "contribution": 3919, + "question": 367, + "contribution": 3683, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1ba20058-e4e4-4ac7-a41f-c0bf9bb9cdce", + "pk": "03b54971-759f-4a82-98f1-ecf71b8f88d6", "fields": { - "question": 345, - "contribution": 3900, + "question": 316, + "contribution": 3474, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1ba528c4-ffce-4468-8b41-7a9e678acce7", + "pk": "03c4e6a2-50d8-4017-9091-2c122dee9e7d", "fields": { - "question": 369, - "contribution": 3917, - "answer": 5, - "count": 1 + "question": 329, + "contribution": 3859, + "answer": 1, + "count": 25 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1bb5066c-5f57-4299-a832-c9716ff2d7a6", + "pk": "03c7892c-71c0-4d1d-883a-c048b23db352", "fields": { - "question": 325, - "contribution": 4152, + "question": 428, + "contribution": 4205, "answer": 1, - "count": 33 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1bc0e849-5e55-4756-b9bb-b93c2bca4c78", + "pk": "03c8cd90-9647-4544-8a59-65bd22b29432", "fields": { - "question": 259, - "contribution": 3422, + "question": 344, + "contribution": 4191, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1bc41506-382e-4734-bb43-11216b80fbca", + "pk": "03dbde73-efc4-4b69-aedc-e7b83edd737e", "fields": { - "question": 477, - "contribution": 4203, - "answer": 0, - "count": 12 + "question": 472, + "contribution": 3372, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1bd4f5a8-f7e1-44a0-aeb0-2de50eb5d9df", + "pk": "03e5e231-49d3-4069-9ba0-8b116c97782f", "fields": { - "question": 331, - "contribution": 4022, + "question": 376, + "contribution": 3711, "answer": 1, + "count": 4 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "03efaa80-6f01-4e78-b5e0-59e5b2041972", + "fields": { + "question": 322, + "contribution": 4118, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1bdfc15f-623f-42b2-a4d7-1312eca29fa1", + "pk": "04029d43-9e29-4cfa-b21c-c46773d2c385", "fields": { - "question": 260, - "contribution": 3679, + "question": 367, + "contribution": 4084, "answer": 1, - "count": 11 + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1be4ca62-7c89-494b-95a1-7397ffb58ad4", + "pk": "040bc817-c259-495e-8f44-fec661d125ff", "fields": { - "question": 356, - "contribution": 1243, + "question": 255, + "contribution": 3739, "answer": 2, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1bf268b7-d283-4569-b8ff-186566423f88", + "pk": "0425574f-a6a0-4515-ab7b-f42935edb28e", "fields": { - "question": 354, - "contribution": 1189, - "answer": 1, - "count": 3 + "question": 317, + "contribution": 3721, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1bfe30c0-59fd-4a64-b19c-3dfc50cdaa3c", + "pk": "0429ff1e-34b8-4e18-9b98-8cd13630b4a6", "fields": { - "question": 370, - "contribution": 1785, - "answer": 1, - "count": 10 + "question": 327, + "contribution": 3463, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c1b217b-82b9-4cdd-bd66-6df43e774c3c", + "pk": "042aaf42-eea9-4a06-a001-03d06e3b96fb", "fields": { - "question": 328, - "contribution": 3407, - "answer": 3, + "question": 475, + "contribution": 3372, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c1babe6-d4ab-48e4-b2bf-7bcd11a5ed65", + "pk": "042caf00-ffce-463a-9fae-c5a6e7a67a8b", "fields": { - "question": 473, - "contribution": 1634, - "answer": -1, - "count": 6 + "question": 317, + "contribution": 1837, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c2f0e47-4c93-4fdf-9e0d-e880f2a5b951", + "pk": "042e4544-5a37-40e8-9e9a-313b4d91263e", "fields": { - "question": 322, - "contribution": 4022, - "answer": 4, - "count": 2 + "question": 326, + "contribution": 3722, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c4187c3-61fb-4aba-9a20-d39a7b355fa4", + "pk": "04326379-cf2c-4871-aae7-6a460b4f7ca9", "fields": { - "question": 332, - "contribution": 1217, + "question": 345, + "contribution": 1809, "answer": 1, - "count": 32 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c4aa13c-554e-478c-9111-ecc81eec5892", + "pk": "0435ecb7-0068-4e49-8671-b471b957cbb2", "fields": { - "question": 459, - "contribution": 3862, + "question": 344, + "contribution": 1203, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c4fb2d0-ee97-4eeb-820a-cc825a5f5436", + "pk": "043a4708-58ac-4a9e-83d9-99c67814b1ed", "fields": { - "question": 348, - "contribution": 1235, + "question": 316, + "contribution": 4128, "answer": 1, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c5490e8-b11c-46d3-8d7b-eb81e4b4f2b3", + "pk": "0443756e-fc2d-4b05-b0d1-91cb2cb7407a", "fields": { - "question": 473, - "contribution": 3679, - "answer": 3, - "count": 2 + "question": 255, + "contribution": 3390, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c685763-3dac-457f-b78d-ae7017b35d93", + "pk": "04437b12-1f00-4370-9500-411f66942209", "fields": { - "question": 321, - "contribution": 3474, - "answer": 1, + "question": 260, + "contribution": 880, + "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c6ee72c-d273-405e-bcab-6ebe3d6471db", + "pk": "04446c86-1cf6-4360-831d-c81678cff501", "fields": { - "question": 329, - "contribution": 3680, - "answer": 3, - "count": 3 + "question": 384, + "contribution": 3775, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c74b06f-7422-460c-9325-49ad1dd01d42", + "pk": "04452003-d86e-4721-a5a6-a474b2c6003e", "fields": { - "question": 340, - "contribution": 3440, - "answer": 5, - "count": 1 + "question": 329, + "contribution": 885, + "answer": 1, + "count": 31 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c7725f7-a67f-42cb-9c4d-842b81a4eb6a", + "pk": "04476804-2e3f-45e7-8935-589279a2b705", "fields": { - "question": 338, - "contribution": 3452, + "question": 258, + "contribution": 3462, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c7794fd-7523-4d62-bb57-d0c1fb915f8d", + "pk": "044f7e63-e020-4443-b977-48a8264c146c", "fields": { - "question": 337, - "contribution": 3751, + "question": 262, + "contribution": 3422, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c786705-1519-4745-bdb7-88fb2baaca46", + "pk": "046765ae-f7f0-4241-b088-fb6cad1bdb40", "fields": { - "question": 362, - "contribution": 1825, - "answer": 4, - "count": 2 + "question": 347, + "contribution": 4188, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c80d607-c310-4dc9-ab41-d65fd0d8179b", + "pk": "0468efc6-3465-4626-8859-7fe5a2fc25a8", "fields": { - "question": 477, - "contribution": 1779, - "answer": -1, + "question": 322, + "contribution": 4046, + "answer": 1, + "count": 6 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "04710f27-043c-4909-adbd-d63eeb6bb78e", + "fields": { + "question": 319, + "contribution": 3390, + "answer": 5, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c816569-55fc-4f1b-aa05-2a62dce27823", + "pk": "0472892d-679f-44f7-b5c5-91a985ed1b01", "fields": { - "question": 347, - "contribution": 3545, + "question": 319, + "contribution": 1837, "answer": 2, - "count": 5 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c82961e-61fc-4b47-963f-7568ab6c73c5", + "pk": "0482a5cf-8c72-405e-b6f5-8bc595f13a94", "fields": { - "question": 344, - "contribution": 1873, + "question": 473, + "contribution": 3739, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c87ade6-e44b-4d36-8ede-cc6252440527", + "pk": "048f8a99-5467-4c28-bc31-daa010504b99", "fields": { - "question": 372, - "contribution": 3440, - "answer": 2, - "count": 3 + "question": 352, + "contribution": 3735, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c8ebd2b-a027-4979-bb1e-6d95706b0969", + "pk": "0491c75e-62d6-450d-8e2c-0ce13a86be58", "fields": { - "question": 337, - "contribution": 3416, + "question": 356, + "contribution": 4227, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c95e278-c9ae-45d8-a439-d5b6bc30b23e", + "pk": "04941dcb-6c94-4ca4-9976-c820001a0c53", "fields": { - "question": 368, - "contribution": 1669, - "answer": 2, - "count": 3 + "question": 382, + "contribution": 3711, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1c9fac27-d982-406e-844e-1b94de930973", + "pk": "0499a053-1b3e-4b3e-b6d2-57fa8aba006f", "fields": { - "question": 329, - "contribution": 3355, + "question": 326, + "contribution": 4047, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1ca3a87d-bbad-474c-bf09-31b83b428f48", + "pk": "049dde44-5b9e-4915-9b77-11df742b4669", "fields": { - "question": 355, - "contribution": 1189, - "answer": 1, - "count": 5 + "question": 346, + "contribution": 3487, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1caac544-a678-4c8a-813b-db91b63354d5", + "pk": "049fe589-1d3c-4ac3-a9dd-2e69697907c2", "fields": { - "question": 343, - "contribution": 1663, - "answer": 2, - "count": 2 + "question": 337, + "contribution": 3466, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1cabab99-e458-43af-af1f-b773390307bd", + "pk": "04a20af4-42fd-442a-b665-be7e2ecfa1cc", "fields": { "question": 473, - "contribution": 4116, - "answer": -1, + "contribution": 3508, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1cb4df56-4ed8-4670-a1ef-6ac1228ef3bd", + "pk": "04a41872-7691-4b85-8851-3ba0bc0aa5e8", "fields": { - "question": 349, - "contribution": 4223, + "question": 473, + "contribution": 1638, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1cb71b6b-4625-4032-a089-2fa9d66e20f6", + "pk": "04adb0af-f96f-4933-ba86-4ab278cb741a", "fields": { - "question": 367, - "contribution": 3725, - "answer": 5, + "question": 475, + "contribution": 3372, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1cc1969f-c999-43b2-aadd-c229e0fcbc68", + "pk": "04c49be4-51a2-4d82-b528-b1ca2e939369", "fields": { - "question": 477, - "contribution": 1288, + "question": 338, + "contribution": 832, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1cc672e5-ddfd-411b-83c5-8e944c1bf870", - "fields": { - "question": 329, - "contribution": 1797, - "answer": 1, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "1ccb997e-659a-4896-bc18-1dc185a74dbb", + "pk": "04cc3725-4d1a-4b88-b000-5c37a6bb2b67", "fields": { - "question": 329, - "contribution": 4152, + "question": 477, + "contribution": 3680, "answer": 2, - "count": 15 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "1ccbf5ae-199f-4f2c-9e9f-8f8e1ff90e2d", - "fields": { - "question": 473, - "contribution": 4138, - "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1cd8b809-3ed4-41ed-88a6-241dff65c4c4", + "pk": "04d182c9-e240-48b3-a322-d7104b82cba2", "fields": { - "question": 336, - "contribution": 1734, + "question": 316, + "contribution": 1634, "answer": 1, - "count": 3 + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1cec8381-ad34-414c-a2cc-f08d0a4d5dde", + "pk": "04d5a525-945a-4b6b-a2a3-c59467cb156a", "fields": { - "question": 357, - "contribution": 1244, + "question": 366, + "contribution": 3592, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1cef0124-0d79-45d6-a85d-ce7ce03f5447", + "pk": "04d8b841-df6d-45b2-a372-7e727dfc0ba7", "fields": { - "question": 339, - "contribution": 3466, - "answer": 1, - "count": 1 + "question": 319, + "contribution": 3406, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1cefdb63-ee9b-4c43-9b25-2c02346e213f", + "pk": "04e765f8-0f81-4d68-a512-1de73a3b6920", "fields": { - "question": 350, - "contribution": 3454, - "answer": 2, - "count": 1 + "question": 325, + "contribution": 4101, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1cf71a6d-7d7e-4e11-a9ad-1536538ec380", + "pk": "04f03bcb-d6aa-4118-b63c-8a6447d27ae2", "fields": { - "question": 347, - "contribution": 841, + "question": 343, + "contribution": 4190, "answer": 1, - "count": 5 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1cf90d21-df78-4482-9466-0fdc7ccadd7c", + "pk": "04f3aff9-bdf7-44de-83fd-706e94c641ec", "fields": { - "question": 346, - "contribution": 3405, - "answer": 5, + "question": 349, + "contribution": 1809, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1cfc3970-7417-4d6a-8b17-dd4e8c3f9cea", - "fields": { - "question": 326, - "contribution": 1635, - "answer": 1, - "count": 20 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "1cff188c-5dc8-4a1b-b8ea-e5f0560837d4", + "pk": "04f85bd5-7975-44f7-86bb-2c6b3f0f1eca", "fields": { - "question": 327, - "contribution": 4047, + "question": 353, + "contribution": 4269, "answer": 1, - "count": 10 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "1d0c7232-cc87-4f91-9092-da73c2df768e", - "fields": { - "question": 339, - "contribution": 1644, - "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1d163a97-3642-4d86-882b-bfbcdd2bc0c7", - "fields": { - "question": 472, - "contribution": 836, - "answer": 5, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "1d197295-871e-4d10-b516-d7f6dacdc113", + "pk": "04f9a426-95a8-46dc-b9ce-ecfd298c47fe", "fields": { - "question": 475, - "contribution": 868, - "answer": 0, - "count": 4 + "question": 347, + "contribution": 4129, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1d1be1e2-e2fc-4c6a-baf3-00d8206211c5", + "pk": "05046921-69a3-4f17-b41e-d4ac70ac69dd", "fields": { - "question": 477, - "contribution": 4117, - "answer": 1, + "question": 351, + "contribution": 832, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1d2240f3-b713-4a73-9034-a51e235d33c5", + "pk": "05068226-4875-48e9-9cbf-b8fe271eb90c", "fields": { - "question": 325, - "contribution": 4152, - "answer": 5, - "count": 1 + "question": 331, + "contribution": 4138, + "answer": 0, + "count": 24 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1d3ceac2-8bd2-4e06-8bd8-97f6c3e0eeec", + "pk": "051e1d47-8361-440d-bdd3-03ed48c5f381", "fields": { - "question": 363, - "contribution": 1812, - "answer": 1, + "question": 345, + "contribution": 1863, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1d44f514-ed17-4d97-a520-3a8e8bb6a5a1", + "pk": "052cb582-62a3-470d-b592-509cf31911a7", "fields": { - "question": 333, - "contribution": 3553, + "question": 344, + "contribution": 4233, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1d459771-8bc9-4f82-ac7b-d5d3cbd0843f", + "pk": "053852d8-d3e5-427c-9077-0bb30ce26979", "fields": { - "question": 335, - "contribution": 3932, - "answer": 2, - "count": 4 + "question": 394, + "contribution": 3711, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1d4aebb2-e4c1-4f9c-a251-18cb90fa4bbb", + "pk": "053e7ca9-a9af-4234-9acc-c33fe92111a5", "fields": { - "question": 367, - "contribution": 1680, + "question": 473, + "contribution": 4138, "answer": 1, - "count": 2 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1d4ecc0f-253e-4432-be04-8143f863250f", + "pk": "0540b1da-bb9a-49ba-9c3a-94ab08b52779", "fields": { - "question": 368, - "contribution": 4203, + "question": 405, + "contribution": 4038, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1d4f4341-fddc-4fa5-a590-321405c2db6c", + "pk": "0544c47b-2527-44d5-9924-d349336991fa", "fields": { - "question": 320, - "contribution": 1724, + "question": 473, + "contribution": 3422, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1d6240cf-d86d-4317-9613-0c3a620d1e21", + "pk": "054aa3f9-2a34-4c47-9283-7b4f223c2c86", "fields": { - "question": 462, - "contribution": 3862, - "answer": 5, + "question": 346, + "contribution": 3451, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1d6695f0-85ee-4c95-9919-a2b45c2099d3", + "pk": "054c3fc0-0072-4ab2-a048-54ee7483882d", "fields": { - "question": 320, - "contribution": 4118, + "question": 328, + "contribution": 3473, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1d6cb809-34a4-4a4d-ad61-5378622865b0", + "pk": "054d178e-7cc8-41a7-b3c7-47245d85ac30", "fields": { - "question": 472, - "contribution": 4038, + "question": 356, + "contribution": 4223, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1d7b1082-9c1d-41cb-9e0a-7e979325f9cb", + "pk": "0582b27c-7801-4fc8-a4ee-8c38f38daf49", "fields": { - "question": 363, - "contribution": 3920, + "question": 255, + "contribution": 1612, "answer": 1, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "1d843d41-df89-4a07-a868-5e4cb18863bc", - "fields": { - "question": 359, - "contribution": 1835, - "answer": 2, - "count": 5 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1daafd3c-53ca-42bc-865d-35d1304ba917", + "pk": "059220a9-2f15-498b-96ce-f2bb8264eebf", "fields": { - "question": 475, - "contribution": 1660, + "question": 343, + "contribution": 4021, "answer": 1, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "1db4b60f-b797-4f8d-a154-ed8330f0eea2", - "fields": { - "question": 359, - "contribution": 3653, - "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1db4ed6e-8063-466b-823c-fbaabcb096f1", + "pk": "05a2ac21-d4fc-4830-97d8-050d122e90d7", "fields": { - "question": 348, - "contribution": 3451, + "question": 328, + "contribution": 1778, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1dca400f-7d9f-4d04-bf78-b47514332863", + "pk": "05a6a8af-0403-4a82-913f-826828282ee4", "fields": { - "question": 346, - "contribution": 3895, + "question": 257, + "contribution": 1626, "answer": 1, - "count": 2 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1dd7dabd-332a-4c5e-bf71-199b4c4d9915", + "pk": "05ae0c05-e892-4c8b-a0cb-bc4fc54e1aa4", "fields": { - "question": 340, - "contribution": 1656, + "question": 257, + "contribution": 4120, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1ddc4fe5-feb8-42c5-9414-17f09bc08ed6", + "pk": "05c484b1-5b97-4e78-8f82-2e131320eaa4", "fields": { - "question": 418, - "contribution": 3984, - "answer": 2, - "count": 1 + "question": 476, + "contribution": 3434, + "answer": -2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1ddd2d17-93f0-487d-93b2-3c29606a509f", + "pk": "05d95a4d-58d6-4ab2-9bfb-eee2ca9539f8", "fields": { - "question": 356, - "contribution": 3528, - "answer": 3, - "count": 1 + "question": 354, + "contribution": 4244, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1ddf43d8-4db0-4e16-8678-61d126754cf4", + "pk": "05da33cb-73c4-457c-b082-4ce5d368c725", "fields": { - "question": 413, - "contribution": 4038, - "answer": 3, - "count": 1 + "question": 341, + "contribution": 3372, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1de15d67-595d-4744-befe-514b9a02b1f4", + "pk": "05ecba19-52b7-4ec1-b132-f4687e3e095c", "fields": { - "question": 347, - "contribution": 3606, - "answer": 5, - "count": 2 + "question": 477, + "contribution": 3473, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1de1e614-c4b1-4a46-95e8-380fdae17d99", + "pk": "05f4134c-235a-49aa-900a-f53528bb8f5f", "fields": { - "question": 328, - "contribution": 3722, - "answer": 3, - "count": 5 + "question": 347, + "contribution": 3900, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1de35bc6-dce6-4a37-9bef-b28d120d5b44", + "pk": "05fb0a1c-4b19-4ec2-a0b0-6f5392e7685d", "fields": { - "question": 332, - "contribution": 3886, + "question": 315, + "contribution": 880, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1dee10fe-b7a6-4a9c-b080-26cd5bf78bcb", + "pk": "05fbb0ba-f59f-4033-8c6e-9df0fed65a51", "fields": { - "question": 347, - "contribution": 1851, - "answer": 1, - "count": 1 + "question": 262, + "contribution": 880, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1df4456b-2446-4020-afbc-bad181e63bb2", + "pk": "060290ff-bb1e-4a96-95e9-4de2b403f661", "fields": { - "question": 321, - "contribution": 3462, - "answer": 5, + "question": 333, + "contribution": 1884, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1dfa8e62-de24-4989-913d-53cdc02055d5", + "pk": "0605c8fa-f01c-4fed-a014-dd4c63de32cd", "fields": { - "question": 321, - "contribution": 908, - "answer": 3, - "count": 6 + "question": 354, + "contribution": 1242, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e0326f9-f945-4496-98df-9583ab2b94ce", + "pk": "06072ba8-6673-4992-9d5f-1b144de1c63d", "fields": { - "question": 434, - "contribution": 4052, + "question": 328, + "contribution": 1725, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e0c28d4-2644-47c8-a2e5-a9e8bedbd256", + "pk": "0617f3a8-9f88-4ea1-aaa8-194069518e50", "fields": { - "question": 331, - "contribution": 1658, - "answer": 0, - "count": 11 + "question": 262, + "contribution": 1626, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e119fb0-0b4e-49a9-91fc-2de19d32b8d4", + "pk": "06180bed-ca4e-497e-b8fe-6b583fa4a977", "fields": { - "question": 329, - "contribution": 1288, - "answer": 1, - "count": 28 + "question": 347, + "contribution": 1203, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e16c04d-2caf-476b-ae3b-d5af846374d0", + "pk": "0633058d-d85a-4370-b68f-e2dccab7b67b", "fields": { - "question": 349, - "contribution": 1645, + "question": 344, + "contribution": 3545, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e188d80-5141-470d-835b-e7db847cbb0b", + "pk": "0634d2d9-931a-41a8-843d-1a663a39d38e", "fields": { - "question": 359, - "contribution": 1807, + "question": 255, + "contribution": 3394, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e1bb304-6e45-49a9-a77c-205b285a4afe", + "pk": "063d38c2-6580-4859-8dbf-304e871a9bfa", "fields": { - "question": 345, - "contribution": 4190, + "question": 323, + "contribution": 884, "answer": 2, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e253bbb-4771-4fb8-88a8-eb2c499023d2", + "pk": "0640ea96-c2a5-4b99-bcbb-f6b3aff49994", "fields": { - "question": 259, - "contribution": 1668, - "answer": 3, + "question": 352, + "contribution": 4022, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e276fc6-96a5-4f71-a61c-9c9aad0e62c4", + "pk": "065938b3-7dc0-4133-bb38-cd765816a73f", "fields": { - "question": 413, - "contribution": 3984, - "answer": 1, + "question": 259, + "contribution": 3462, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e2ed683-a81a-46d6-9003-8882a9b27784", + "pk": "0663a048-3b13-4fe3-b137-853431bd374b", "fields": { - "question": 475, - "contribution": 1200, - "answer": 0, - "count": 24 + "question": 346, + "contribution": 1228, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e2f4916-dede-4996-859d-7d06b64e5652", + "pk": "066b35a6-3832-4a97-af2d-781b2080c0a1", "fields": { - "question": 350, - "contribution": 804, - "answer": 3, - "count": 2 + "question": 357, + "contribution": 3849, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e302522-1b19-4914-9f3b-5ac8d5708794", + "pk": "066bc967-c350-4ae5-ab90-4181af31ae4f", "fields": { - "question": 346, - "contribution": 4187, - "answer": 3, + "question": 343, + "contribution": 841, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e309b5d-b9d8-4bd6-bb12-65f917a0e1f4", + "pk": "066c4ff2-936f-4ebc-988a-fde48661a8ab", "fields": { - "question": 477, - "contribution": 823, + "question": 349, + "contribution": 3934, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e32fe27-ebae-4779-9038-09cb7df377cb", + "pk": "0686014a-de89-4c5a-9d85-0ab570e17012", "fields": { - "question": 336, - "contribution": 858, - "answer": 2, - "count": 4 + "question": 473, + "contribution": 868, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e3d09a0-b7e6-4dda-9f8d-02bb75ae905f", + "pk": "068ab4d1-0bc4-49f8-bceb-cb6aed6077d4", "fields": { - "question": 335, - "contribution": 1283, - "answer": 1, - "count": 1 + "question": 328, + "contribution": 4085, + "answer": 4, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e3d78db-adf8-47ab-b2a6-40e83e7810ed", + "pk": "068c352a-e3d7-43c0-b244-d71f710b40d3", "fields": { - "question": 255, - "contribution": 4116, - "answer": 1, - "count": 6 + "question": 367, + "contribution": 3721, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e6f7916-3291-4077-a6d1-abbc98a09c00", + "pk": "068f948b-d2d6-4bcb-aaf3-10f7b8410def", "fields": { - "question": 326, - "contribution": 1776, - "answer": 4, + "question": 329, + "contribution": 4023, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e785641-0eef-4b2d-b4e1-949f28ffcab8", + "pk": "06935cf3-16e2-40eb-b293-22a9f88f6ea5", "fields": { - "question": 259, - "contribution": 3434, - "answer": 2, - "count": 2 + "question": 473, + "contribution": 1658, + "answer": 0, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e7ec98e-25f6-405e-8988-6353902fe6f5", + "pk": "0693c852-2d4b-4785-a3ff-e135e4dffc42", "fields": { - "question": 317, - "contribution": 3474, - "answer": 2, - "count": 4 + "question": 323, + "contribution": 1612, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e8124ce-38e6-4b57-bbb3-0533568dfc33", + "pk": "06976351-9351-42b5-91be-b92a15775e17", "fields": { - "question": 317, - "contribution": 4046, + "question": 349, + "contribution": 3855, "answer": 1, - "count": 9 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e8781ac-1435-4eff-93ef-f855f279393a", + "pk": "069a2cb7-1c77-4e18-b28a-12dd1dfa89fd", "fields": { - "question": 476, - "contribution": 4046, + "question": 477, + "contribution": 1617, "answer": 0, - "count": 7 + "count": 25 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1e904bcc-a07b-4684-9e07-98a1108d829f", + "pk": "06b640f7-e68a-45b6-bd60-9b58a87e54b7", "fields": { - "question": 258, - "contribution": 3725, - "answer": 2, - "count": 7 + "question": 260, + "contribution": 880, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1eb45867-77f1-4d5f-848b-575a0e0dd5e3", + "pk": "06b78164-69f1-4009-baf7-a44df64535b4", "fields": { - "question": 473, - "contribution": 3721, - "answer": -1, - "count": 4 + "question": 258, + "contribution": 884, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1ec28f93-a9ca-4318-99c2-b94fa3062f6b", + "pk": "06bc020b-c579-4855-a84b-0c9cca2f6b7e", "fields": { - "question": 258, - "contribution": 4118, + "question": 349, + "contribution": 3609, "answer": 1, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1edaf9ab-6132-4dbf-bcc9-73d8bf9c090b", + "pk": "06bc362b-6485-4051-8f01-3ccb23d5f284", "fields": { "question": 366, - "contribution": 3552, - "answer": 2, - "count": 12 + "contribution": 1884, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1edb9c32-eac1-4ed3-85a4-33501553d2af", + "pk": "06bcef58-76b9-41b6-994e-ff4bffe31448", "fields": { - "question": 368, - "contribution": 4101, - "answer": 4, - "count": 5 + "question": 317, + "contribution": 912, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1ee259df-c245-47f7-9352-a5d8907f4b22", + "pk": "06c74de7-33ec-4788-a3ea-ae876de114bd", "fields": { - "question": 325, - "contribution": 1776, + "question": 337, + "contribution": 4052, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1eecd38d-967a-4311-9e48-ede7ee967ae3", - "fields": { - "question": 320, - "contribution": 3462, - "answer": 2, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "1eed1752-1255-41f6-88f0-20e1de8e3eb3", + "pk": "06cde0b3-d6bd-4406-b5ff-933eb85025a7", "fields": { - "question": 329, - "contribution": 3407, - "answer": 2, + "question": 367, + "contribution": 3739, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1ef0eafa-0e01-4198-8ab1-3619e2097b3b", + "pk": "06d057a5-2091-4160-a83a-26656cc3644f", "fields": { - "question": 337, - "contribution": 3440, - "answer": 2, - "count": 1 + "question": 343, + "contribution": 1874, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1efc4145-eaf0-40f9-b15e-3990485dad6d", + "pk": "06e618d4-4e76-4a5e-94cc-680470c81c4e", "fields": { - "question": 348, - "contribution": 4189, + "question": 257, + "contribution": 4128, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f0185ea-e828-4c09-aab3-5c3636d44b93", + "pk": "06e9597f-4348-4661-8246-2729fc46dc84", "fields": { - "question": 353, - "contribution": 3835, + "question": 344, + "contribution": 3608, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f08917c-8b60-4071-86a9-893d6dffeec1", - "fields": { - "question": 349, - "contribution": 1249, - "answer": 1, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "1f0a498b-ff0e-4fcf-8513-9d3338fbc37c", + "pk": "06f07827-2f2d-412a-828d-617984ea79ad", "fields": { - "question": 477, - "contribution": 3666, - "answer": -1, - "count": 1 + "question": 321, + "contribution": 4116, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f15f86a-ba61-41cc-ab2b-90b6c151ea21", + "pk": "06fd8efb-52fe-47a0-aa2c-0680b996abee", "fields": { - "question": 316, - "contribution": 4022, + "question": 359, + "contribution": 3917, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f26a146-77e8-4cae-bb2d-2c3598d3b6e7", + "pk": "070c046c-0faa-4de3-9a57-da46579332f5", "fields": { - "question": 348, - "contribution": 1749, - "answer": 2, + "question": 316, + "contribution": 4116, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f3522b0-d683-4f12-bc99-3d7a1d662bfa", + "pk": "07190377-c98b-43b8-ba74-4ad5d4b17e33", "fields": { - "question": 321, - "contribution": 1658, - "answer": 1, - "count": 12 + "question": 320, + "contribution": 4128, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f37db27-41e5-4209-bf4d-b13e2dc5d03e", + "pk": "071c6b0f-95d7-4ee3-bdfd-97a5dc4e0848", "fields": { - "question": 472, - "contribution": 3354, + "question": 319, + "contribution": 880, "answer": 5, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f3fd137-1ded-44dc-8f1d-5f973e643561", + "pk": "071dacf4-a098-44c3-91fa-77cfd915a0a9", "fields": { - "question": 356, - "contribution": 3776, - "answer": 1, + "question": 348, + "contribution": 4189, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f428e34-7965-4d0a-bd54-a92fde58e36b", + "pk": "07257265-3e73-4ebe-84eb-13b76209e28e", "fields": { - "question": 327, - "contribution": 1779, - "answer": 1, - "count": 2 + "question": 367, + "contribution": 4046, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f51717e-8f31-4cd6-8e30-e8a72cbe7864", + "pk": "073a2f35-6ec6-4c91-9b23-7e257dd1de9a", "fields": { - "question": 354, - "contribution": 1154, - "answer": 1, - "count": 13 + "question": 316, + "contribution": 3434, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f583b62-dc1d-43a0-bd1a-a5e4154da11e", + "pk": "073e8922-f331-45dd-88ea-9879712dd2fd", "fields": { - "question": 351, - "contribution": 4046, - "answer": 3, + "question": 475, + "contribution": 3735, + "answer": -1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f61bf0a-c204-4c78-94e1-73bc868624ef", + "pk": "07444d72-9372-44cd-907f-01c0a2bec0a3", "fields": { - "question": 360, - "contribution": 1807, - "answer": 4, - "count": 1 + "question": 322, + "contribution": 3422, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f6714ea-0b89-4cbd-a861-62ea4f36cc3c", + "pk": "0745d772-e323-40be-b7e4-775f43e4fd39", "fields": { - "question": 326, - "contribution": 3519, - "answer": 4, - "count": 1 + "question": 438, + "contribution": 4140, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f6e5068-0be5-4f36-970a-293ca82871be", + "pk": "0745f4e4-6a4b-4350-83ff-1e6b583e3b6f", "fields": { - "question": 371, - "contribution": 4244, - "answer": 1, - "count": 3 + "question": 322, + "contribution": 3721, + "answer": 4, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f6ffd6e-d19c-4d9b-a529-307eddaff573", + "pk": "0756a515-81fb-494e-a473-927a24ec63b7", "fields": { - "question": 434, - "contribution": 4052, + "question": 461, + "contribution": 4091, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f74fe57-d8bc-4340-ab38-fdbfa702d497", + "pk": "075d1106-afd7-490c-9c88-d7372774a242", "fields": { "question": 336, - "contribution": 1662, + "contribution": 3416, "answer": 2, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "1f798090-627a-4bd4-88c4-de2fde5e813e", - "fields": { - "question": 322, - "contribution": 4084, - "answer": 1, - "count": 32 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1f8b6da8-a710-4de7-8d7f-138f3ee5fec4", + "pk": "0764a8c2-8a40-4610-9895-e9700f406e05", "fields": { - "question": 349, - "contribution": 1881, - "answer": 3, - "count": 4 + "question": 259, + "contribution": 3422, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1fa37294-05d4-4e99-8fb2-6d54577bb043", + "pk": "0765b245-9042-4fec-8051-8df95dc94d5f", "fields": { - "question": 349, - "contribution": 1880, - "answer": 4, - "count": 1 + "question": 257, + "contribution": 4116, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1fa86b57-778d-4d06-b2d6-ff2ead6d53f3", + "pk": "0766ef7e-6c8b-4f04-93ef-96ad84f2128f", "fields": { - "question": 354, - "contribution": 1253, + "question": 473, + "contribution": 3434, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1fa96038-e41a-466c-8c53-ccad5b3d7a7f", + "pk": "07697a8c-2659-4b5b-a4e7-b63528f674e1", "fields": { - "question": 257, - "contribution": 1626, + "question": 328, + "contribution": 1154, "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1fa9f282-c499-4efa-9b23-ea9b6806d5be", + "pk": "07708c42-b296-4942-b023-9bcaf6f86311", "fields": { - "question": 472, - "contribution": 4116, - "answer": 5, - "count": 9 + "question": 344, + "contribution": 1206, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1fafdb02-afdc-4f40-abf3-2a94083b1b9d", + "pk": "078ea0e7-5ad1-404c-a89a-b018f74d47fb", "fields": { - "question": 346, - "contribution": 1207, + "question": 337, + "contribution": 3795, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1fbf54c8-4b17-4b4e-a8bd-5adf9d34e09f", + "pk": "0792bedf-6ae0-47f3-b271-b25693216f15", "fields": { - "question": 341, - "contribution": 3482, - "answer": 3, - "count": 2 + "question": 367, + "contribution": 4100, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1fc43e0f-7693-4d8d-817d-af64ba0370af", + "pk": "07976da0-d4b2-4d31-bad5-73f0e59f521f", "fields": { - "question": 329, - "contribution": 3722, - "answer": 5, + "question": 402, + "contribution": 4041, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1fcf2bca-5968-4515-8244-5717e96fffa4", + "pk": "07987117-098b-4a80-adc8-a4377adb00a7", "fields": { - "question": 391, - "contribution": 3781, + "question": 346, + "contribution": 3536, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1fcfa5bb-7ac6-4cbe-971d-f49452f9a11a", + "pk": "079c7307-dd6c-4fc3-a570-1f99dbcba033", "fields": { - "question": 257, - "contribution": 4022, + "question": 362, + "contribution": 1806, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1fcfb151-c443-4f07-af67-0002012602c3", + "pk": "07a3c5e1-c557-4a56-814e-d5e5151a5cbd", "fields": { - "question": 346, - "contribution": 1203, - "answer": 2, + "question": 477, + "contribution": 4085, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "1fff27e9-c0fe-4469-b4c2-0f9e3fc4c84f", + "pk": "07a554db-643e-40f8-badc-c7eee0655a6a", "fields": { - "question": 349, - "contribution": 3939, - "answer": 3, - "count": 1 + "question": 260, + "contribution": 836, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "200accf9-5617-4ec0-819d-1108888ad5e1", + "pk": "07abeb55-953a-444a-8939-d05194912623", "fields": { - "question": 349, - "contribution": 1881, + "question": 453, + "contribution": 4185, "answer": 2, - "count": 1 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "200baefb-f917-49dc-ab77-9375d5a6574b", + "pk": "07aed2d1-7064-44e5-b0d7-896475e0fd6e", "fields": { - "question": 319, - "contribution": 1626, + "question": 459, + "contribution": 4091, "answer": 3, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2028ed98-11cf-455a-8c3d-0125fe217bb0", + "pk": "07bdd4ca-7c7e-4677-add4-e833ca017e53", "fields": { - "question": 325, - "contribution": 4117, - "answer": 3, - "count": 1 + "question": 472, + "contribution": 3486, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "202902c1-3aca-4b19-a802-4d24f3de2346", + "pk": "07c10309-4000-4b77-a23b-0967c8adc8a4", "fields": { - "question": 260, - "contribution": 4046, - "answer": 1, + "question": 258, + "contribution": 880, + "answer": 3, "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "205040e9-11e8-4bbf-87ad-456fd7545602", + "pk": "07d1e338-78fd-45d3-bbca-9f2462e4983e", "fields": { - "question": 320, - "contribution": 3390, - "answer": 4, - "count": 4 + "question": 351, + "contribution": 3440, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20509811-1b86-4603-9332-5baf2483d5c5", + "pk": "07ecc537-7731-4dc2-ab87-728386a4f54d", "fields": { - "question": 317, - "contribution": 3406, + "question": 347, + "contribution": 1749, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2058f5fb-80da-4614-a613-3d18367675fd", + "pk": "07fb15ab-cf73-4c17-b8c3-91ae480ebc5f", "fields": { - "question": 477, - "contribution": 1802, - "answer": -3, - "count": 2 + "question": 343, + "contribution": 1639, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20606b6c-c012-4b0f-87b9-02fbc0693100", + "pk": "07fcd6bb-7f27-4a85-ab9b-f2fd2c86c254", "fields": { - "question": 357, - "contribution": 3835, + "question": 463, + "contribution": 4091, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20669777-540a-4731-b983-e9e65f60da59", + "pk": "080b1bd8-b662-4005-9616-6f3810ebefe9", "fields": { - "question": 349, - "contribution": 869, - "answer": 3, + "question": 370, + "contribution": 3546, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20751789-d1e8-45d4-bca2-013314ac9c24", + "pk": "08153459-8089-48a4-aac8-91174b497e39", "fields": { - "question": 346, - "contribution": 4190, + "question": 343, + "contribution": 3516, "answer": 1, - "count": 7 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "207600aa-0617-4f21-b186-eca560e79063", + "pk": "082a8987-bbb1-439d-b070-077b1b042339", "fields": { - "question": 359, - "contribution": 3929, - "answer": 5, - "count": 2 + "question": 473, + "contribution": 4120, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2077ba7f-f7aa-4907-907f-6c858d91b494", + "pk": "08305b21-85ca-42e9-95e1-3ae3dff680ff", "fields": { - "question": 367, - "contribution": 3725, + "question": 376, + "contribution": 3755, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "207ad1ae-dd5c-44a5-9112-7aa7c0b79a02", + "pk": "0834db74-48bc-4b78-8ded-0da4e1a805ed", "fields": { "question": 477, - "contribution": 4153, - "answer": -1, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "208afa48-db47-425d-8513-75add3b2c6da", - "fields": { - "question": 371, - "contribution": 4152, - "answer": 4, - "count": 2 + "contribution": 3556, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20952147-f2bc-4473-a9d2-522ada3f3ef4", + "pk": "0835a88d-efec-4624-94d1-30a803b1b7ea", "fields": { - "question": 346, - "contribution": 1206, - "answer": 3, + "question": 475, + "contribution": 3685, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20987694-4cfe-40d6-9a10-5f1df894106a", + "pk": "084861dc-696e-4b8f-a5c9-de8830d0fe55", "fields": { - "question": 323, - "contribution": 4120, - "answer": 3, - "count": 2 + "question": 473, + "contribution": 4100, + "answer": -1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "209a2ff1-a18b-4741-b99e-d5a498148540", + "pk": "084a5f0c-bf26-4c92-b4b7-16e30d2a929e", "fields": { - "question": 338, - "contribution": 1656, - "answer": 4, + "question": 402, + "contribution": 3646, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "209cbefb-b909-494d-b2ff-6ba35724c947", + "pk": "084d1164-fee1-46b2-a3dc-fb442aa3917d", "fields": { - "question": 316, - "contribution": 3462, - "answer": 4, + "question": 339, + "contribution": 868, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20b1f09a-c55f-4493-998f-ae05861e3b14", + "pk": "0859aea3-e5e2-4435-ba42-92fe8e74f11b", "fields": { - "question": 472, - "contribution": 3679, + "question": 336, + "contribution": 4094, "answer": 1, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "20b4bdb5-b4b7-47b9-962d-a46ed07b820e", - "fields": { - "question": 327, - "contribution": 3556, - "answer": 3, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20d82a23-e15b-45ed-b366-e171f14d95cc", + "pk": "0867d7b7-454c-46e9-8006-c6d8084c7857", "fields": { - "question": 477, - "contribution": 3391, - "answer": -1, - "count": 4 + "question": 356, + "contribution": 3847, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20dddecf-aac1-4411-9583-bb23d7badad9", + "pk": "086b45d1-f870-4860-bdb1-6c6abba7ac4f", "fields": { - "question": 350, - "contribution": 4046, - "answer": 3, - "count": 5 + "question": 319, + "contribution": 1634, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20e46e62-4929-463f-a4a7-75255223c9c0", + "pk": "086e9512-fa6f-4796-94e0-3144fe03fdf5", "fields": { - "question": 322, - "contribution": 3474, - "answer": 5, - "count": 3 + "question": 340, + "contribution": 1694, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20e885bc-8921-4469-af21-94d9889e9e26", + "pk": "08713abd-3557-4032-8625-b5582b14ed32", "fields": { - "question": 458, - "contribution": 4091, - "answer": 2, - "count": 2 + "question": 259, + "contribution": 3739, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20eb6ab5-217f-4208-ae88-549f955c6166", + "pk": "0882dccd-40c3-4e7e-8057-0ac656ab032c", "fields": { - "question": 385, - "contribution": 3711, + "question": 323, + "contribution": 4120, "answer": 1, - "count": 3 + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20ebdbcb-a556-4cef-9d65-745913fbead1", + "pk": "0889ab4d-142d-4f54-8572-ecbe3f96794d", "fields": { - "question": 344, - "contribution": 1863, - "answer": 2, - "count": 1 + "question": 325, + "contribution": 3684, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20f6b348-a46f-430b-af6b-02a1de2f6f65", + "pk": "088d248a-56e1-49a4-b297-4fbd37e368a3", "fields": { - "question": 457, - "contribution": 4091, - "answer": 2, + "question": 349, + "contribution": 1809, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20f791ae-3352-4201-9317-283d97803378", + "pk": "08914f95-f609-4c69-ae78-a4165e1efbc8", "fields": { - "question": 346, - "contribution": 3704, - "answer": 2, - "count": 3 + "question": 315, + "contribution": 3462, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20f7ba98-5960-4aa9-9977-2f2cffc1cc6c", + "pk": "08a569be-9cad-4f43-a22b-be852b02d11b", "fields": { "question": 337, - "contribution": 3723, + "contribution": 3785, "answer": 1, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "20ff1f84-ac8d-4834-930e-b2cb795adc1b", + "pk": "08afc646-aae2-4726-b869-df5cfddeef1e", "fields": { - "question": 255, - "contribution": 3422, - "answer": 4, - "count": 1 + "question": 353, + "contribution": 1786, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "210668d5-9dea-46c1-810f-49775d5b1b43", + "pk": "08b6735f-950d-474a-b898-eea3c6435a96", "fields": { - "question": 472, - "contribution": 1638, - "answer": 1, + "question": 348, + "contribution": 4129, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2107c88e-1cfe-49af-8bb0-e1d89feb53eb", + "pk": "08b7626e-d90c-4678-8e94-a69ac93422f1", "fields": { - "question": 329, - "contribution": 1613, - "answer": 3, - "count": 1 + "question": 325, + "contribution": 1154, + "answer": 4, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21080fdf-aa25-408e-9f78-dab99057dec6", + "pk": "08bb8a1a-e102-4601-8193-6fa395618b60", "fields": { - "question": 255, - "contribution": 3406, - "answer": 1, - "count": 5 + "question": 348, + "contribution": 1228, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "210eaa11-f0e4-457a-a05c-e7f399c78750", + "pk": "08c21dd2-3f51-4aaa-aa54-7fcaf7a34055", "fields": { - "question": 258, - "contribution": 1724, - "answer": 1, - "count": 3 + "question": 320, + "contribution": 1634, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21163360-323d-4865-ac31-9c63fe74184f", + "pk": "08c50cae-2652-41bf-a70a-58dc313253b1", "fields": { - "question": 323, - "contribution": 822, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 3463, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "211e1e1b-7af4-4955-9d3b-40d0bb385862", + "pk": "08c65e57-b256-4209-a802-6d578ac28ff3", "fields": { - "question": 323, - "contribution": 3354, - "answer": 2, - "count": 9 + "question": 476, + "contribution": 3739, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2122f5c7-fdd2-4aca-9a8b-1dd7b58c6097", + "pk": "08cc68c8-75df-48d7-817a-0d84174e1ffc", "fields": { - "question": 321, - "contribution": 3472, + "question": 346, + "contribution": 4003, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21236ff0-3f5d-4569-86ff-d24a205e7f64", + "pk": "08d8046b-74e0-457b-a73d-da4cdf8403d8", "fields": { - "question": 320, - "contribution": 3354, - "answer": 3, + "question": 327, + "contribution": 1154, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2125be22-8c4f-4bf0-92cd-c6dada31bd8c", + "pk": "08d81756-6c6e-432c-a4bc-6fcf38c70745", "fields": { - "question": 368, - "contribution": 4117, - "answer": 2, - "count": 1 + "question": 473, + "contribution": 3785, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "212b6467-e766-46da-91d6-5127e9ca8612", + "pk": "08f5b57e-5972-4a8b-a6f9-c2d42e4ebdd8", "fields": { - "question": 260, - "contribution": 1837, + "question": 367, + "contribution": 3390, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "212b89f9-730c-4aaf-8277-d5a96341f1ec", + "pk": "08fc27b8-8e0e-495a-9404-f175212c778d", "fields": { - "question": 346, - "contribution": 3912, - "answer": 4, + "question": 359, + "contribution": 1805, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21460111-3d93-4589-bca5-044e8e8a6b08", + "pk": "0902cb10-62d5-491f-9d68-acd6769c6651", "fields": { - "question": 347, - "contribution": 4223, - "answer": 2, - "count": 1 + "question": 339, + "contribution": 3440, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "214e2366-8bf0-40c8-ae61-ff574bbee9bd", + "pk": "091adbdc-058c-4503-af28-061998354729", "fields": { - "question": 349, - "contribution": 3895, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 1297, + "answer": 0, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2159ae7d-2557-406d-9ceb-8dadfcece977", + "pk": "0934568b-3f67-4d39-8b2a-f7de06d36c4b", "fields": { - "question": 438, - "contribution": 4008, - "answer": 2, + "question": 320, + "contribution": 1680, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "215a49c6-850a-4fe6-93dc-5f6a6afcb255", + "pk": "093a6e10-f7ce-4dad-a388-523fce9e768c", "fields": { - "question": 344, - "contribution": 3405, - "answer": 2, - "count": 1 + "question": 319, + "contribution": 3422, + "answer": 3, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "215dad81-f59a-40fb-a011-2025b10770ca", + "pk": "0942bcd3-caf9-493c-8c88-d256e0d06a8a", "fields": { - "question": 338, - "contribution": 3486, - "answer": 4, + "question": 337, + "contribution": 3466, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21641dc2-ad54-4c69-9a30-492113ee8388", + "pk": "09447c87-2418-4c34-a75b-0ced4bedbb19", "fields": { - "question": 370, - "contribution": 1786, + "question": 460, + "contribution": 4141, "answer": 1, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "216c6bad-af91-486f-98f3-046acad12a3f", + "pk": "0953c460-6f0e-454d-b7a7-b0c10f2bce67", "fields": { - "question": 336, - "contribution": 1662, - "answer": 3, - "count": 1 + "question": 327, + "contribution": 3740, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "217dfa62-72e1-4440-82bf-b3523aa5267b", + "pk": "09568f69-0a6e-4bed-81fe-db8227494ac7", "fields": { - "question": 350, - "contribution": 894, - "answer": 3, - "count": 1 + "question": 328, + "contribution": 3726, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21870b11-8f07-4785-8037-0335d4c66b4b", + "pk": "0958478f-886b-4d29-aa69-d44a86dddab3", "fields": { - "question": 354, - "contribution": 1781, + "question": 353, + "contribution": 3834, "answer": 1, - "count": 8 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "218f4f7a-a3ba-4548-9f9e-cae323e41937", + "pk": "095920a7-b70a-4efe-983d-db6d35656262", "fields": { - "question": 343, - "contribution": 3855, - "answer": 1, - "count": 7 + "question": 351, + "contribution": 3466, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2192ecce-975c-4320-85a1-76076fd09b1b", + "pk": "096bcc78-1512-4ecb-adfc-c55c5b650410", "fields": { - "question": 347, - "contribution": 3879, - "answer": 1, - "count": 3 + "question": 339, + "contribution": 4052, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2194a4a8-7afd-4512-b8c5-329de3e42244", + "pk": "096c2cc5-3ee5-429f-99e4-958fec4ea6ca", "fields": { - "question": 362, - "contribution": 1836, + "question": 346, + "contribution": 3796, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21a05351-8b4b-4f8b-916f-a2a58fd443f5", + "pk": "097099db-1c11-4c79-941d-a3326d4120b2", "fields": { - "question": 331, - "contribution": 4084, - "answer": -2, - "count": 1 + "question": 325, + "contribution": 1802, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21b797bc-8ff9-42f1-966a-e3152b1eb50a", + "pk": "09745678-6d05-440e-8a98-0978d4bb6782", "fields": { - "question": 339, - "contribution": 1734, - "answer": 0, + "question": 351, + "contribution": 788, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21c0b128-0a81-436f-a000-8031764f8ee1", + "pk": "0975c15a-5c27-40df-a1f8-e773b4437422", "fields": { - "question": 344, - "contribution": 1880, - "answer": 1, + "question": 360, + "contribution": 3647, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21c89e20-14e3-4c58-bae1-e86d435e9fa4", + "pk": "097830cc-a6aa-4013-9e38-8dde9fbc8d9e", "fields": { - "question": 349, - "contribution": 3879, + "question": 322, + "contribution": 822, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21d3b2bb-12b5-4562-b758-4129a2b1b034", + "pk": "097e91ef-eb8a-4eb8-b012-afbeb47a2c2b", "fields": { - "question": 348, - "contribution": 3517, + "question": 356, + "contribution": 1242, "answer": 1, - "count": 9 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21dba727-7850-4b38-9c6e-59b3b7dc1df4", + "pk": "09986690-a6cf-45f0-914f-4ec1348884db", "fields": { - "question": 355, - "contribution": 1154, - "answer": 1, - "count": 22 + "question": 328, + "contribution": 909, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21df2b87-70fd-4035-9d19-c2a649c83ade", + "pk": "099b6ac3-d20f-42d9-9187-a6f74ed77570", "fields": { - "question": 473, - "contribution": 1748, - "answer": 0, + "question": 357, + "contribution": 1849, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21e09118-66f4-4ad6-9d3f-4dae7535cefc", + "pk": "09a0ad83-9417-43ec-95fa-f39fc67db12a", "fields": { - "question": 319, - "contribution": 4100, - "answer": 5, + "question": 390, + "contribution": 3775, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21e2b9f7-1678-4fb5-831f-2c165e31e0db", + "pk": "09abf002-5b77-4079-bbae-6b4efc3a82f3", "fields": { - "question": 320, - "contribution": 3721, + "question": 322, + "contribution": 836, "answer": 3, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21f1c242-8fa3-44b1-82ca-191c687df7e4", + "pk": "09c45818-0cde-4842-975e-2073beb385cd", "fields": { - "question": 362, - "contribution": 1827, - "answer": 4, - "count": 2 + "question": 473, + "contribution": 3354, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21f6e5ff-5f88-4e8a-9168-ea7a2a83c26f", + "pk": "09c92176-5e2c-4ea9-8f32-0c4f9e6b165d", "fields": { - "question": 345, - "contribution": 1246, + "question": 367, + "contribution": 1634, "answer": 4, - "count": 2 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21f6fec0-f78e-4fb0-ab9e-7b04bbf0d2ec", + "pk": "09d23d80-72ad-4b52-9f3e-1acdd12c8310", "fields": { - "question": 260, - "contribution": 4084, - "answer": 4, - "count": 7 + "question": 341, + "contribution": 3727, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21f8e620-f911-497e-8141-b235a2d73a35", + "pk": "09df2b85-0c23-4f4c-b72b-4ab216fe598e", "fields": { - "question": 360, - "contribution": 3893, - "answer": 2, - "count": 2 + "question": 331, + "contribution": 3390, + "answer": 0, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21fa2f17-3e12-4e47-8e2d-53476c7fb548", + "pk": "09e9a0a4-2081-4645-8a52-4e10675df49b", "fields": { - "question": 255, - "contribution": 822, - "answer": 2, - "count": 5 + "question": 475, + "contribution": 1656, + "answer": 0, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "21ffca7c-3f06-4664-b090-e340dd2b3a89", + "pk": "09e9c837-109b-4331-b19d-7184a3160382", "fields": { - "question": 257, - "contribution": 1668, - "answer": 3, + "question": 337, + "contribution": 3723, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2202ee7a-d142-4a0a-bfc5-0c2ae95bb66c", + "pk": "0a0c4439-e95a-4b79-8114-4cef160a3962", "fields": { - "question": 347, - "contribution": 3855, + "question": 322, + "contribution": 4138, "answer": 2, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2203fed5-4272-46e3-a8b5-a11bb92c7378", + "pk": "0a1533cd-8570-4b9d-89f4-24908a8abee9", "fields": { - "question": 476, - "contribution": 880, - "answer": -2, - "count": 3 + "question": 340, + "contribution": 3372, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "220d1bc0-fe8d-43e4-9808-b1dd51f8da0b", + "pk": "0a261569-7a42-4c2e-9e9c-4e70457286d0", "fields": { - "question": 339, - "contribution": 3404, - "answer": 0, + "question": 354, + "contribution": 4269, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22192feb-2890-438e-a0c5-849bfb390ee5", + "pk": "0a2ff308-14dd-46a6-a638-7919cdf826de", "fields": { - "question": 325, - "contribution": 3740, - "answer": 2, - "count": 5 + "question": 336, + "contribution": 832, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "221c4bbb-cde8-451a-9930-c334e7c6e7a0", + "pk": "0a32e10c-5341-4131-a462-977a2c3857c5", "fields": { - "question": 366, - "contribution": 3936, - "answer": 4, - "count": 2 + "question": 354, + "contribution": 1188, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22406bfb-bd0d-482a-89af-98f04228e2a7", + "pk": "0a3304f3-d206-4b62-b773-4909c067b649", "fields": { - "question": 363, - "contribution": 3649, - "answer": 3, - "count": 1 + "question": 336, + "contribution": 3645, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2246ecff-1563-450b-bf14-991cde1c2b62", + "pk": "0a4223a7-cb14-4b77-963f-e48fa22929c2", "fields": { - "question": 346, - "contribution": 1874, - "answer": 1, - "count": 2 + "question": 337, + "contribution": 1200, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22481c24-f81a-4484-9129-8274a6d97d27", + "pk": "0a46d4ee-57fb-4570-9635-75b8cdc74421", "fields": { - "question": 329, - "contribution": 3519, + "question": 349, + "contribution": 3451, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "225deee2-415b-479f-9bf4-a15e7a9fcb3e", + "pk": "0a4c82c3-205d-4d89-b2b8-a7053ce5f29e", "fields": { - "question": 360, - "contribution": 3944, - "answer": 4, - "count": 1 + "question": 319, + "contribution": 3472, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "225f65b0-2609-4821-ad31-573529562eed", + "pk": "0a5954c4-937d-48c8-8b2c-2178ab9aa5ef", "fields": { - "question": 428, - "contribution": 4155, + "question": 331, + "contribution": 880, "answer": 1, - "count": 7 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2263b140-7744-48de-a13a-d0e8c3913ec3", + "pk": "0a64584a-1435-4783-965e-cfaff7f0e513", "fields": { - "question": 323, - "contribution": 4138, - "answer": 4, - "count": 1 + "question": 316, + "contribution": 4100, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2269ccfc-921d-41ce-8431-e3766ee7b6d4", + "pk": "0a649717-f1bf-4d0a-8a35-8177aa01e9f0", "fields": { - "question": 372, - "contribution": 3406, - "answer": 1, - "count": 3 + "question": 354, + "contribution": 1785, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "226df1a8-19c4-48f5-bca8-eb755e25eea4", + "pk": "0a6ff6bf-da32-4991-a6f5-20ec2a78ca58", "fields": { - "question": 257, - "contribution": 1668, + "question": 328, + "contribution": 1297, "answer": 1, - "count": 4 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2270c1f2-251b-401b-82e4-f97a763179f4", + "pk": "0a70b1f8-7146-47fd-8ee0-d25f270fed5a", "fields": { - "question": 472, - "contribution": 836, + "question": 321, + "contribution": 3390, "answer": 1, - "count": 11 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22714219-3e0a-434f-9b4a-b2b41984f13e", + "pk": "0a716eb0-2ff8-43e7-8edb-c96c603ff93d", "fields": { - "question": 260, - "contribution": 3434, - "answer": 3, - "count": 1 + "question": 475, + "contribution": 4094, + "answer": 0, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22806bec-9d91-4234-b9b9-a90fe4d8f9e9", + "pk": "0a85caee-7fa7-49f2-b72f-954ea4ae3fe1", "fields": { - "question": 366, - "contribution": 3595, + "question": 321, + "contribution": 3462, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2287d3cd-50f0-4f79-bc32-06aae23aa670", + "pk": "0a8f26fb-bdc6-4e58-a924-33b4d996eb6b", "fields": { - "question": 348, - "contribution": 4095, - "answer": 2, - "count": 1 + "question": 366, + "contribution": 4155, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22893f34-5e79-4185-a91d-9632a94d0a45", + "pk": "0a96d11a-fe28-4d8d-b425-95930294b278", "fields": { - "question": 255, - "contribution": 884, - "answer": 4, - "count": 2 + "question": 322, + "contribution": 3406, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "228d1151-ef3f-4143-847e-4cda9329c08e", + "pk": "0a9f5fdc-a00d-4c83-9fb4-c99fcdcd029c", "fields": { - "question": 326, - "contribution": 3859, + "question": 400, + "contribution": 4177, "answer": 1, - "count": 19 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "228e279f-3304-411f-a47e-e8ecc6d9e899", + "pk": "0aafc27a-9c88-4a33-8661-758b92efbd10", "fields": { - "question": 341, - "contribution": 3685, - "answer": 3, + "question": 332, + "contribution": 3552, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "229a5d5d-f884-46b7-974a-9bd576159756", + "pk": "0ab29da6-c992-4999-9a6c-87eee7414ff5", "fields": { - "question": 255, - "contribution": 3721, - "answer": 1, - "count": 7 + "question": 336, + "contribution": 3645, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22a1a79a-0097-4e18-9d05-25291298b570", + "pk": "0abca48c-fb04-43c3-ac73-30e026528e83", "fields": { - "question": 353, - "contribution": 1860, - "answer": 2, - "count": 1 + "question": 437, + "contribution": 4140, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22a1adc2-5116-40ad-9a30-1153f280edc9", + "pk": "0abf6eba-e3c9-4d41-a067-1e05cd161361", "fields": { - "question": 369, - "contribution": 1836, - "answer": 5, - "count": 1 + "question": 395, + "contribution": 3711, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22a239cc-c04c-437a-84d0-22d344c16b4a", + "pk": "0aca57d5-5a54-40a1-a0c6-3aa3121d9262", "fields": { - "question": 356, - "contribution": 1257, - "answer": 1, - "count": 6 + "question": 473, + "contribution": 4138, + "answer": 0, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22abe256-d857-4c58-8624-7a04c9ab619a", + "pk": "0ad926dd-6aae-4d24-b837-14fc023c2377", "fields": { - "question": 345, - "contribution": 4234, - "answer": 1, + "question": 372, + "contribution": 4046, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22b30c72-4d79-40e6-a9e7-6110e9098037", + "pk": "0ada73c7-2f9d-432e-b010-7a7539f91bff", "fields": { - "question": 345, - "contribution": 3896, + "question": 338, + "contribution": 4072, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22dfaf44-70a0-45f4-91b7-f38ad0e56d7f", + "pk": "0add8b03-b2ed-4504-9217-d92fe6dfe90b", "fields": { - "question": 320, - "contribution": 3406, - "answer": 2, - "count": 5 + "question": 473, + "contribution": 3372, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22e0fc7e-64dc-47b4-b0f9-d4289cde7632", + "pk": "0aeef51b-64c1-4d7c-9c04-d552af734812", "fields": { - "question": 321, - "contribution": 4022, - "answer": 2, - "count": 1 + "question": 320, + "contribution": 4138, + "answer": 3, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "22f05230-0575-4427-8712-c8ac97a274c5", + "pk": "0afc4500-081c-438f-a17b-b64e8da80993", "fields": { - "question": 341, - "contribution": 3745, - "answer": 2, - "count": 1 + "question": 335, + "contribution": 3593, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "230474b0-9998-4ff0-bcdb-42654119637f", + "pk": "0afee008-cd41-4dd6-be8c-9188a483b2d0", "fields": { "question": 349, - "contribution": 1639, - "answer": 5, + "contribution": 1873, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "230ac46e-3591-4dea-ab25-366346d0455a", + "pk": "0b0189b9-28fc-4b42-b4a6-a36622a512e2", "fields": { - "question": 315, - "contribution": 4046, + "question": 328, + "contribution": 1287, "answer": 1, - "count": 9 + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "230d9df2-431e-4ff6-8ba9-cf9620b5abc1", + "pk": "0b07e77b-24e9-47e5-9d11-6aa7e076de8a", "fields": { - "question": 321, - "contribution": 1634, + "question": 325, + "contribution": 3423, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "230eb9c2-693c-4b91-b78e-acbf694d6765", + "pk": "0b1382ca-c4b8-4087-96eb-fdb36eca8cbf", "fields": { - "question": 349, - "contribution": 1641, + "question": 317, + "contribution": 1626, "answer": 5, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "230ecbe8-4b2b-4e16-b144-3d9fc67be50b", + "pk": "0b165249-8f08-487d-8c5c-f628e2932d16", "fields": { - "question": 350, - "contribution": 832, - "answer": 3, - "count": 1 + "question": 327, + "contribution": 3684, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23134f1d-b7a4-4aee-9bac-24ee1c0f97b3", + "pk": "0b2aa752-2984-4803-8e66-1a75e37a9ce6", "fields": { - "question": 355, - "contribution": 1786, - "answer": 1, - "count": 6 + "question": 260, + "contribution": 3721, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23137791-69ef-48e5-be95-ef00af12879c", + "pk": "0b2ff4ca-a1e3-4ff7-8c52-237e9eb90f56", "fields": { - "question": 258, - "contribution": 1634, - "answer": 4, - "count": 5 + "question": 321, + "contribution": 3462, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23142ccf-d65d-4783-ac93-c2f4b400ffb1", + "pk": "0b45e457-7994-4434-985c-d9d24e861ea1", "fields": { - "question": 432, - "contribution": 4008, - "answer": 1, - "count": 2 + "question": 337, + "contribution": 804, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23145e9c-1ffb-4f01-9318-30bf2e2569b2", + "pk": "0b4b66f2-7243-46a2-aef6-440aded530ad", "fields": { - "question": 323, - "contribution": 1612, - "answer": 3, - "count": 5 + "question": 316, + "contribution": 3394, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2319a20f-3766-4a8c-98e1-c0e76544ec9a", + "pk": "0b503941-e974-443d-9d80-1acd53e8fb8f", "fields": { - "question": 472, - "contribution": 3466, - "answer": 5, - "count": 2 + "question": 337, + "contribution": 3404, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2320fe96-4a14-411e-8f4c-a5e8753fdf4d", + "pk": "0b632657-9fe7-4975-87d8-c67e98cabc4c", "fields": { - "question": 323, - "contribution": 3665, + "question": 349, + "contribution": 3545, "answer": 4, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2321ca23-21e7-4f3f-967b-9e63b6dd1b37", + "pk": "0b6ced82-c589-412c-9b9c-5fa06ab19a6a", "fields": { - "question": 331, - "contribution": 3422, - "answer": 0, - "count": 14 + "question": 349, + "contribution": 3609, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2328c949-404d-46e6-874b-9d6c7b1b0a40", + "pk": "0b6d9171-30c3-4556-9f82-a89e46b6a811", "fields": { - "question": 346, - "contribution": 1842, - "answer": 3, + "question": 356, + "contribution": 1845, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "232a89e5-031b-4510-b4e1-27da701aebab", + "pk": "0b75c442-dd49-457c-b773-4bd593a6076e", "fields": { - "question": 346, - "contribution": 1246, - "answer": 2, + "question": 366, + "contribution": 3553, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "232c5122-cec1-4035-8656-5e4e975eb768", + "pk": "0b7b5d1b-c070-48ff-9583-51e521fd39e7", "fields": { - "question": 321, - "contribution": 4028, - "answer": 1, - "count": 14 + "question": 360, + "contribution": 3944, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2338b9ab-7fa6-4411-8a2f-d9ee76d82d5a", + "pk": "0b7c0bba-e165-4ea9-9d9e-27a78c0aec8e", "fields": { "question": 369, - "contribution": 3921, - "answer": 2, + "contribution": 3919, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "234c1eb7-86bd-402a-b50a-40067124ebca", + "pk": "0b7c66d0-6859-4f53-a6d5-097c2bf6a450", "fields": { - "question": 357, - "contribution": 1860, + "question": 465, + "contribution": 4115, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23562469-3adf-47b1-ac47-e1dc325b6cc9", + "pk": "0b7c99f3-9bfc-4bac-98e0-d94e23aa2f5e", "fields": { - "question": 428, - "contribution": 4261, - "answer": 1, - "count": 8 + "question": 341, + "contribution": 3486, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "235fc357-27f3-43d4-8796-862b6dbf6f26", + "pk": "0b7ce541-86ba-4024-976c-50d3de7a2989", "fields": { - "question": 258, - "contribution": 4120, - "answer": 4, + "question": 348, + "contribution": 3912, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2369a39f-1432-4378-b4c2-90bb989ec30f", + "pk": "0b8ea524-477d-4729-99e1-23bea0864611", "fields": { - "question": 346, - "contribution": 4189, + "question": 258, + "contribution": 3434, "answer": 1, - "count": 7 + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23755fac-bb71-46fd-a694-70c99c160f27", + "pk": "0b972fcc-4fc0-44aa-8dc6-28a23dfb81e4", "fields": { - "question": 338, - "contribution": 4020, - "answer": 1, - "count": 3 + "question": 255, + "contribution": 3725, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2385c21b-3854-4552-9990-b46b50fe1689", + "pk": "0b9fa3de-4351-4001-92de-5882c75c03f7", "fields": { - "question": 321, - "contribution": 3354, + "question": 323, + "contribution": 1680, "answer": 1, - "count": 18 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2392196a-f608-4d8b-b2db-3db1fdaa8b8c", + "pk": "0ba31bce-67bc-4e76-93a8-de6081ac940c", "fields": { - "question": 370, - "contribution": 4269, - "answer": 1, - "count": 1 + "question": 326, + "contribution": 1617, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23c250b4-bdda-4501-a754-c38549581f98", + "pk": "0ba73f0d-c415-4790-94fc-0e4f7f91faab", "fields": { - "question": 433, - "contribution": 4140, - "answer": 2, - "count": 5 + "question": 326, + "contribution": 4203, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23c34d61-2381-408d-b567-785d409a5898", + "pk": "0ba84644-87ac-4904-ba78-46168fb8a199", "fields": { - "question": 349, - "contribution": 3896, - "answer": 1, - "count": 5 + "question": 434, + "contribution": 4140, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23c607a4-0fc6-4643-9c4e-526686fe1f5c", + "pk": "0bb20e59-39ff-41c1-a6a3-dd30eaddc77a", "fields": { - "question": 472, - "contribution": 3727, - "answer": 1, + "question": 328, + "contribution": 1635, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23d07742-a407-4c1e-a22c-d7d58625bfaf", + "pk": "0bcd4b3d-a95a-40b1-a753-52e7108dc2a6", "fields": { - "question": 336, - "contribution": 4094, - "answer": 2, - "count": 3 + "question": 344, + "contribution": 3728, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23d96fc6-c385-4ce0-a98a-d033a5b86402", + "pk": "0bcd8898-7ad4-4c4e-ab41-10890d17d466", "fields": { "question": 348, - "contribution": 4123, - "answer": 1, + "contribution": 1663, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23dfaffc-3e0c-413e-b069-c028f51ad311", + "pk": "0bd1beb8-a1b4-416e-a278-1dc9275ec1b1", "fields": { - "question": 477, - "contribution": 1613, - "answer": 1, + "question": 333, + "contribution": 3595, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23eea96a-3d7d-43da-aed9-1e15361f5103", + "pk": "0bd3aa65-2be5-46b7-b382-69c1fb110737", "fields": { - "question": 371, - "contribution": 3598, - "answer": 3, + "question": 361, + "contribution": 1811, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23ef06ce-5c91-4bf9-9b0d-1b4c279dea40", + "pk": "0bd5916a-914c-439b-aff1-75df587d3ec2", "fields": { - "question": 475, - "contribution": 868, - "answer": -2, - "count": 1 + "question": 331, + "contribution": 1612, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "23fbd675-3c5e-43ff-b01d-d601bbecf9ae", + "pk": "0bdc846a-4e08-4a39-9286-af63579d3787", "fields": { - "question": 337, - "contribution": 788, + "question": 348, + "contribution": 1851, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2408c27f-1335-41d9-92cf-f8c9ff58c8fa", + "pk": "0bf13fe6-39c2-4315-8d54-48aab0e69078", "fields": { - "question": 394, - "contribution": 3781, - "answer": 2, - "count": 3 + "question": 475, + "contribution": 89, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "24147e81-4321-47f7-98b9-fe782bea91d5", + "pk": "0bf7177d-d8c5-4dd5-a750-ce7b4616a957", "fields": { - "question": 320, - "contribution": 3721, - "answer": 2, - "count": 5 + "question": 355, + "contribution": 3528, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2420c3ab-4e8e-46ab-b8e1-9da47182ec86", + "pk": "0bf781d6-bb60-4526-917d-a3721f3b3340", "fields": { - "question": 477, - "contribution": 1797, - "answer": 0, - "count": 4 + "question": 343, + "contribution": 1247, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "24232d7f-fab0-4ec9-873f-3bf29c2c5775", + "pk": "0bf95c73-cc34-47db-baad-b3a95042805c", "fields": { - "question": 262, - "contribution": 1634, - "answer": 3, - "count": 4 + "question": 326, + "contribution": 4101, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "242430e2-c7b8-4414-8dc2-6f3da423bd3e", + "pk": "0c053ff6-abd7-4f60-b5a6-1cc01b9df164", "fields": { - "question": 344, - "contribution": 3608, - "answer": 3, - "count": 1 + "question": 476, + "contribution": 4138, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "24245e57-eb74-4db6-882d-544f9977b933", + "pk": "0c210a40-a148-4ef9-a186-b02a6d4cc1ca", "fields": { - "question": 477, - "contribution": 4101, - "answer": -2, - "count": 2 + "question": 348, + "contribution": 3935, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2433ecb2-5cd7-4c52-86b0-d1eea4b10f79", + "pk": "0c293b59-f176-4115-8713-e8a71cfb7c3a", "fields": { - "question": 328, - "contribution": 4152, - "answer": 3, - "count": 9 + "question": 340, + "contribution": 3795, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "24346969-04d0-4c6e-9de4-a0cfb90481fc", + "pk": "0c2a12f5-f1ad-4bc5-a755-cd3756445fb2", "fields": { - "question": 370, - "contribution": 1849, + "question": 356, + "contribution": 3831, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "244588bf-1d23-4fdd-a73d-52e90678d85c", + "pk": "0c2b1011-d58d-4304-8ce3-bd7bc9f7c902", "fields": { - "question": 338, - "contribution": 3727, + "question": 316, + "contribution": 3474, "answer": 4, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "0c37465b-cb3c-4c44-99e2-9dd6868fd1b0", + "fields": { + "question": 355, + "contribution": 3528, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "24460286-5216-4518-a7a5-3c123ff60c30", + "pk": "0c38fb14-05b9-446b-99f9-7ef550e0f0c4", "fields": { - "question": 473, - "contribution": 4185, + "question": 332, + "contribution": 4204, "answer": 1, - "count": 3 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "244e9fb4-5ac1-4416-ac18-f1010e9d13b5", + "pk": "0c4335ca-f2b5-45c8-a92f-2bf6b3213f25", "fields": { - "question": 321, - "contribution": 4084, - "answer": 3, - "count": 9 + "question": 344, + "contribution": 1250, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "24516e60-c8cd-41e7-9c5a-9ac7470e061a", + "pk": "0c482d17-1f63-4a51-96b8-47d59ca0e26e", "fields": { - "question": 343, - "contribution": 1250, - "answer": 2, - "count": 1 + "question": 323, + "contribution": 1658, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2455079c-8dbc-48f9-8f57-dc01ed70b343", + "pk": "0c5397ed-e45f-4d4b-90b4-d433aeb71517", "fields": { - "question": 317, - "contribution": 1668, + "question": 340, + "contribution": 3454, "answer": 1, - "count": 8 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "245972d7-7dc4-41cf-b169-aaa1fbb53d7a", + "pk": "0c5592a1-80c6-44a6-9097-af4f468ed8c6", "fields": { - "question": 328, - "contribution": 3589, - "answer": 2, - "count": 4 + "question": 344, + "contribution": 1881, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2474af84-7129-4872-964f-6f37903b22b1", + "pk": "0c5a9c8d-31d5-4211-9cfd-474e06e3ac61", "fields": { - "question": 343, - "contribution": 869, + "question": 469, + "contribution": 4115, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2476ea93-b8b0-439c-b408-29e81b4334fc", + "pk": "0c6818a0-0276-42a5-b911-65591194c219", "fields": { - "question": 336, - "contribution": 1921, - "answer": 1, + "question": 476, + "contribution": 3474, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2483d73f-9a30-4ed8-9abc-0f24d1ce1c0d", + "pk": "0c769508-c0ca-43e9-bd34-20636568c9ec", "fields": { "question": 367, - "contribution": 864, - "answer": 2, + "contribution": 3665, + "answer": 3, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "0c794ba0-b16b-457a-9640-4211edbad2ff", + "fields": { + "question": 437, + "contribution": 4140, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "248d52df-aba8-4918-85e4-993eff0bcb82", + "pk": "0c7b2626-88ae-454c-a0c9-de70c4c37962", "fields": { - "question": 331, - "contribution": 4046, - "answer": -2, + "question": 345, + "contribution": 3509, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "248f7ed6-36eb-4198-85a0-f87b677baf6b", + "pk": "0c86c3bf-0b58-4303-9a71-054d347fcd63", "fields": { - "question": 337, - "contribution": 886, + "question": 380, + "contribution": 3775, "answer": 2, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "24b4d776-f30d-4023-8442-155786b80f54", + "pk": "0c87418a-bae4-4e17-89d1-a8ed7754276a", "fields": { - "question": 320, - "contribution": 836, + "question": 390, + "contribution": 3711, "answer": 1, - "count": 15 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "24b5c792-9456-45e3-996d-4f1ea10b058d", + "pk": "0c906de2-fca4-478e-92b7-b7dba7bbada8", "fields": { - "question": 379, - "contribution": 3781, - "answer": 3, - "count": 1 + "question": 349, + "contribution": 4192, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "24bb5b05-167e-4e87-9f1c-8edf72c552ab", + "pk": "0c9115c7-c44e-4ed2-815c-6e9bd6d79092", "fields": { - "question": 346, - "contribution": 887, - "answer": 4, - "count": 1 + "question": 355, + "contribution": 3923, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "24c993a5-0c25-4aec-89ca-dedbc6bd7dce", + "pk": "0c94eb5d-2b5e-4315-b0e5-865b1e48a2b5", "fields": { - "question": 436, - "contribution": 4008, - "answer": 2, - "count": 1 + "question": 332, + "contribution": 1884, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "24d711eb-a310-4504-902c-cdc71cec1cc2", + "pk": "0c9d264d-a158-4182-87f6-f4e9b20a6219", "fields": { - "question": 323, - "contribution": 3434, - "answer": 4, - "count": 2 + "question": 369, + "contribution": 3647, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "24f578f2-efa1-4304-9817-6326334034ee", + "pk": "0ca68c32-7a5f-4f88-be83-44d910a63ffc", "fields": { - "question": 262, - "contribution": 3679, - "answer": 3, - "count": 6 + "question": 475, + "contribution": 826, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "24ff2929-f1eb-4bc7-9681-e8fc803dd815", + "pk": "0ca93f77-4f44-4f88-98ee-576ce94731f5", "fields": { - "question": 352, - "contribution": 4022, - "answer": 3, - "count": 1 + "question": 355, + "contribution": 1783, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2505c0ab-bd06-488e-8708-09e70ca024fe", + "pk": "0cb14e5e-8dac-459c-82e0-a0af3b71b239", "fields": { - "question": 321, - "contribution": 1612, - "answer": 4, - "count": 2 + "question": 258, + "contribution": 4084, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25076c8c-0a91-4b3e-bace-472270de0e4d", + "pk": "0cb59544-6ad2-457c-a17e-8fc7f1188cf7", "fields": { - "question": 335, - "contribution": 837, - "answer": 4, + "question": 343, + "contribution": 3728, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2507baff-45f0-4f64-b231-6248e4914d45", + "pk": "0cbd12ed-b881-4ac7-ab58-7550c7cb2dce", "fields": { - "question": 371, - "contribution": 4152, + "question": 344, + "contribution": 1860, "answer": 3, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "250b8eab-8efe-4afd-9eae-8349f1e458a4", + "pk": "0cbfad2c-a168-4e6e-9167-f0df87002774", "fields": { - "question": 473, + "question": 320, "contribution": 3422, - "answer": 1, - "count": 11 + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "251066f5-5105-4bbe-91cd-fdd2e51af1b2", + "pk": "0cc49531-03e0-4905-babb-09456975a4b6", "fields": { - "question": 319, - "contribution": 4084, - "answer": 2, - "count": 19 + "question": 471, + "contribution": 4090, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "251c63e8-ddc8-44aa-864e-0c22eebcd072", + "pk": "0cca930d-2911-4a05-8571-8ec55636da2f", "fields": { - "question": 400, - "contribution": 4041, - "answer": 3, + "question": 378, + "contribution": 3711, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "251e4ad8-3499-4e1d-9ca3-5a6387076d88", + "pk": "0cceed3f-05e5-4681-952c-e81a2d80f01d", "fields": { - "question": 346, - "contribution": 4188, + "question": 258, + "contribution": 4100, "answer": 2, - "count": 2 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2526977e-9fdd-4c0d-9e1e-0bc4d58eb6ae", + "pk": "0cd01b52-ad7a-4fab-b59d-543aa2c00a46", "fields": { - "question": 356, - "contribution": 1188, + "question": 477, + "contribution": 3666, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "252b7c0a-492b-47f2-8eee-c90a19669bb1", + "pk": "0cf810f3-16d8-45b4-837d-d9a6e6257c83", "fields": { - "question": 400, - "contribution": 3646, + "question": 345, + "contribution": 4123, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "252de463-51db-45f3-8f4d-224a35b541e5", + "pk": "0cf974bc-f373-4459-9af3-effcf672a5fd", "fields": { - "question": 371, - "contribution": 3936, + "question": 343, + "contribution": 1151, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25381d2d-a8c4-4db0-8edf-47ed947920b0", + "pk": "0d0fa026-6572-4556-93ec-f50d47a5b303", "fields": { - "question": 348, - "contribution": 3606, - "answer": 5, - "count": 2 + "question": 475, + "contribution": 1644, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "253a3ea4-e686-42a5-990e-fd683e8bab1e", + "pk": "0d17d0c0-0c69-4c23-8fae-f0e4f4c4ec14", "fields": { - "question": 336, - "contribution": 886, - "answer": 3, - "count": 2 + "question": 320, + "contribution": 862, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "253ae0ca-c93c-4eda-92f0-068bb6d008a4", + "pk": "0d24fcda-ff95-40a1-b6d9-d5d3c056b56b", "fields": { - "question": 346, - "contribution": 3517, - "answer": 1, + "question": 337, + "contribution": 1734, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25400d95-f8e4-4991-9920-4d0a708d8f08", + "pk": "0d2880a8-de43-4466-8ad0-b4a891f24ac0", "fields": { - "question": 327, - "contribution": 909, - "answer": 2, - "count": 15 + "question": 320, + "contribution": 884, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25575a1e-718e-4c5c-9016-7ea90dd571d7", + "pk": "0d2ac159-4ea5-42fa-9294-0d994c097981", "fields": { - "question": 319, - "contribution": 3679, - "answer": 5, - "count": 2 + "question": 328, + "contribution": 3680, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "255eaff1-02e8-462e-a71d-8952b1826bbf", + "pk": "0d2fcd5c-1b8a-43f3-aad4-7abbc935d4fa", "fields": { "question": 319, - "contribution": 3390, - "answer": 2, + "contribution": 822, + "answer": 3, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2563b83d-631f-4c9e-8c4e-dd2c9f18e642", + "pk": "0d35d81a-3226-4501-935e-f34428ab937f", "fields": { - "question": 340, - "contribution": 840, - "answer": 2, + "question": 475, + "contribution": 3404, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25659057-5eba-4fb8-93a8-6252529e2fae", + "pk": "0d39455a-96f6-4362-8856-7d3be09c31b6", "fields": { - "question": 327, - "contribution": 4117, - "answer": 2, - "count": 5 + "question": 258, + "contribution": 3725, + "answer": 1, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "256744fb-71b7-40fd-8c81-4c0699ce9928", + "pk": "0d39a570-8def-47d4-9b9b-05c0bf0c1ecd", "fields": { - "question": 258, - "contribution": 3679, - "answer": 2, - "count": 1 + "question": 332, + "contribution": 1282, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2583e563-7031-47fb-9cd2-1072e2700e22", + "pk": "0d4c2e18-2846-4da7-9c6d-3cf649348f3c", "fields": { - "question": 255, - "contribution": 3462, - "answer": 5, - "count": 1 + "question": 320, + "contribution": 4100, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25903078-d89c-48ca-bf91-a61944fcf406", + "pk": "0d5a07d8-1b72-404f-b8ce-ba3fda55c29e", "fields": { - "question": 367, - "contribution": 3434, - "answer": 4, - "count": 5 + "question": 323, + "contribution": 822, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25a107fb-652b-487b-a695-b6c0380c25c4", + "pk": "0d679cad-d3a1-4e35-a660-f8ecba991541", "fields": { - "question": 331, + "question": 316, "contribution": 3422, - "answer": -2, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25a551da-b661-4c13-bfd1-d97773d20c91", + "pk": "0d6aa880-9b4c-478e-a735-c91dfc7e4664", "fields": { - "question": 362, - "contribution": 1835, - "answer": 1, - "count": 5 + "question": 344, + "contribution": 1842, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25a60956-74bd-45b7-9621-87cfca33a413", + "pk": "0d6d82f3-d7e9-4da3-9721-925075329a62", "fields": { - "question": 348, - "contribution": 887, - "answer": 2, - "count": 5 + "question": 338, + "contribution": 1694, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25a60c3f-51ac-4db0-9c70-a227c03f4655", + "pk": "0d7150f8-d9ad-4d51-ab7f-ad85757821cd", "fields": { - "question": 344, - "contribution": 3939, - "answer": 1, - "count": 2 + "question": 323, + "contribution": 3406, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25c3402c-44b9-4afb-8699-df87a42af995", + "pk": "0d75eb32-2a92-4015-bb53-fd28cd043a6c", "fields": { - "question": 355, - "contribution": 4244, + "question": 343, + "contribution": 1822, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25cbd6be-346e-4127-a30b-1afecd7e791c", + "pk": "0d78836e-ac64-46ed-a44c-c35d8de9edf9", "fields": { - "question": 259, - "contribution": 4120, - "answer": 2, - "count": 6 + "question": 347, + "contribution": 3935, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25ccadab-2997-4729-8aba-f283ee61ad09", + "pk": "0d798961-10d8-473f-831f-d8b2d1da876a", "fields": { - "question": 332, - "contribution": 4155, - "answer": 1, - "count": 11 + "question": 320, + "contribution": 3472, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25d24376-455b-4dcc-a843-e4ac98b97437", + "pk": "0d7ac8be-d7f3-4610-b493-f383cbcc030b", "fields": { - "question": 340, - "contribution": 3645, - "answer": 4, - "count": 2 + "question": 327, + "contribution": 3530, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25d5f8c0-e462-4611-ad9c-567c2b9e4842", + "pk": "0d990417-56cb-4de7-a3f9-0fdceb3f6ec5", "fields": { - "question": 335, - "contribution": 3882, - "answer": 3, - "count": 2 + "question": 336, + "contribution": 3404, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25dda42e-ec89-46f0-8479-61d6783ab372", + "pk": "0d9ed6ad-7c93-47dc-95f6-9c3b2317bc9f", "fields": { "question": 343, - "contribution": 4129, + "contribution": 1206, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25dea48e-2edf-4bd5-99dc-a27478607534", + "pk": "0dae24ae-5614-4006-ac51-bc7023245fb9", "fields": { - "question": 315, - "contribution": 3665, + "question": 260, + "contribution": 4084, "answer": 2, - "count": 5 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25e5cff9-062d-44aa-a2bd-93519ecda135", + "pk": "0db6f60a-f185-44ae-b054-05223e9c9690", "fields": { - "question": 345, - "contribution": 3796, - "answer": 3, - "count": 1 + "question": 353, + "contribution": 1257, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25e6e857-07ee-4cbb-b921-a22996f6953f", + "pk": "0dbd3fed-2ed5-443f-b7e4-7d8304e44536", "fields": { - "question": 332, - "contribution": 4205, - "answer": 1, - "count": 5 + "question": 339, + "contribution": 4094, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25f84c0a-358c-4a6d-8ce4-4a21cde6e96b", + "pk": "0dd1889e-303b-48f2-91a7-99060a346ad2", "fields": { - "question": 472, - "contribution": 1656, - "answer": 1, - "count": 5 + "question": 322, + "contribution": 3474, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "25faeb18-9c65-4be1-9a1d-d9597eece2e5", + "pk": "0dd38983-3316-4f7f-8272-332fab52f11e", "fields": { - "question": 349, - "contribution": 1206, - "answer": 1, - "count": 5 + "question": 350, + "contribution": 788, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2601adc0-347e-40c9-af9a-1c36edc72b28", + "pk": "0dda50e3-4656-4b70-af97-171b4fa39301", "fields": { - "question": 375, + "question": 379, "contribution": 3775, - "answer": 2, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "260bd594-86f8-4486-9a58-772bab37af39", + "pk": "0dfc02aa-193f-4271-aa89-c63b2bcbbfbe", "fields": { "question": 368, - "contribution": 4117, - "answer": 4, - "count": 2 + "contribution": 3473, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2615ca39-4816-435b-89be-9e974d9441cc", + "pk": "0dfd0f2c-833b-4287-a235-a2fb9c2406dc", "fields": { - "question": 367, - "contribution": 4100, - "answer": 1, - "count": 10 + "question": 339, + "contribution": 3440, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26166440-b778-4769-8ba5-efb0efd241af", + "pk": "0dfd66dd-7393-4e15-ac6d-a564caf5d905", "fields": { "question": 354, - "contribution": 4025, - "answer": 1, + "contribution": 4244, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26196822-20a7-450b-9a64-285ab5d8cb09", + "pk": "0e00d385-93da-4df7-89ea-05cb162ce2c7", "fields": { - "question": 428, - "contribution": 4156, + "question": 473, + "contribution": 4072, "answer": 1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26328607-a1a3-44b3-8aec-1fdf3b267ba0", + "pk": "0e0d9751-61e4-4571-ae0b-f334a2af4f85", "fields": { - "question": 349, - "contribution": 3896, - "answer": 3, - "count": 1 + "question": 319, + "contribution": 884, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "264023e8-bf2c-4b16-ad3c-2405caebc0a9", + "pk": "0e11bcb7-4da9-40f3-a05b-798d1b46eb1e", "fields": { - "question": 321, - "contribution": 1837, - "answer": 3, + "question": 339, + "contribution": 918, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2658d2d9-1b3d-4770-8725-5eef2714d092", + "pk": "0e2b8be8-ab79-46cf-91cc-d8d4917155a4", "fields": { - "question": 410, - "contribution": 3974, + "question": 343, + "contribution": 1641, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "266d183f-7985-4094-8acd-a620a5bb80e7", + "pk": "0e36fb9f-12fc-4404-9b7a-fa55afd6010a", "fields": { - "question": 255, - "contribution": 4116, - "answer": 5, - "count": 4 + "question": 327, + "contribution": 4085, + "answer": 1, + "count": 25 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2671b83d-8748-4ff5-bf87-5c66ee92f6f2", + "pk": "0e3b4008-2199-4123-88b5-a75da136e6c3", "fields": { - "question": 369, - "contribution": 3893, - "answer": 1, - "count": 17 + "question": 344, + "contribution": 1204, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26767e06-25e9-4236-aa44-4b81e92bcf67", + "pk": "0e5379ae-b793-48c6-a8b4-ec3a5e6ccff9", "fields": { - "question": 262, - "contribution": 822, - "answer": 1, - "count": 5 + "question": 337, + "contribution": 1200, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "267b2781-08a3-4d36-9500-47bd2893f0e4", + "pk": "0e61350d-9af5-4fde-bc0b-90f1bb0e20c4", "fields": { - "question": 344, - "contribution": 3606, + "question": 347, + "contribution": 4187, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "267f5a66-66b7-46ec-8e57-afca3bcfd6c6", + "pk": "0e6170a7-bfe6-474f-bf3d-0e3dc82f6db3", "fields": { - "question": 344, - "contribution": 1641, - "answer": 5, + "question": 338, + "contribution": 1694, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "268dde4a-0462-4e14-90d2-210f8f932460", + "pk": "0e646e9c-ff14-4f1c-95c8-cdf8033efd85", "fields": { - "question": 363, - "contribution": 3918, - "answer": 1, - "count": 2 + "question": 343, + "contribution": 3608, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2695406a-d090-4a4f-a739-628636af6dae", + "pk": "0e688ed8-e8d6-4126-97b2-8f3773f92f4b", "fields": { - "question": 359, - "contribution": 1808, + "question": 317, + "contribution": 3462, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2698faf3-2ada-43a8-bedf-2b7c8610a370", + "pk": "0e72bf86-ea99-44f5-8970-a6e4b0fb242f", "fields": { - "question": 433, - "contribution": 4140, - "answer": 5, - "count": 1 + "question": 323, + "contribution": 908, + "answer": 3, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26a06f2d-4ee4-43af-a302-d5389eaa9b07", + "pk": "0e747970-2d20-4b66-8da2-66fae1142ba2", "fields": { - "question": 362, - "contribution": 3919, + "question": 343, + "contribution": 4191, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26a8c625-9e8e-4d51-8424-2bdc68a6fc07", + "pk": "0e7daf7e-c9ae-4b33-a30b-fa234f8de50c", "fields": { - "question": 417, - "contribution": 4024, - "answer": 2, - "count": 1 + "question": 321, + "contribution": 880, + "answer": 3, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26b2dd46-d770-49f4-9c64-f7b3915de1d0", + "pk": "0e813827-2536-4cca-a047-5e0f557df8a9", "fields": { - "question": 372, - "contribution": 3466, - "answer": 4, - "count": 1 + "question": 325, + "contribution": 3463, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26bb0e16-888f-4592-a9f5-f73158ed7c71", + "pk": "0e90c187-2999-4520-b38a-a872a6cbc01b", "fields": { - "question": 368, - "contribution": 4152, + "question": 315, + "contribution": 3679, "answer": 1, - "count": 17 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26cf57a7-1b13-4367-a125-fd80a9291857", + "pk": "0e9827b8-82bb-404b-ac5f-9bdecf626629", "fields": { - "question": 366, - "contribution": 3932, + "question": 362, + "contribution": 3649, + "answer": 1, + "count": 5 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "0ea0a4f3-f355-48d6-9c55-ccc167ae7318", + "fields": { + "question": 344, + "contribution": 1922, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26cf9da9-01ef-4e7b-b8ae-f7177324731b", + "pk": "0eb374cd-f1e7-4650-81b8-eb0ae4d74b79", "fields": { - "question": 345, - "contribution": 1228, + "question": 343, + "contribution": 3822, "answer": 2, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26d23dfd-3585-421b-b050-a7212fb07ff9", + "pk": "0ebdce89-dc50-4d9a-97f4-55e5e77f6453", "fields": { - "question": 335, - "contribution": 4205, - "answer": 1, - "count": 4 + "question": 322, + "contribution": 884, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26d59197-fd88-43f3-9b91-12d905d37e2d", + "pk": "0ec99f2e-19e3-46e1-ab09-19de3953b424", "fields": { - "question": 347, - "contribution": 1867, - "answer": 2, + "question": 370, + "contribution": 1845, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26e0679d-9129-4401-8cac-3f4211ff3028", + "pk": "0ecc0f43-cf4c-4e01-bf96-e5898c0e8c9a", "fields": { - "question": 323, - "contribution": 1837, + "question": 435, + "contribution": 4140, "answer": 2, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26e0f340-114d-4e65-8c0c-2abd8afd0bd0", + "pk": "0ed8b163-5682-4ef6-bae0-18703d4ba7a6", "fields": { - "question": 327, - "contribution": 1154, - "answer": 5, - "count": 4 + "question": 355, + "contribution": 3545, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26e79016-37c3-4b48-a937-8452ad30a8ac", + "pk": "0edf6856-89a9-4143-87b1-0d7c4c3eb77b", "fields": { - "question": 460, - "contribution": 4283, - "answer": 5, + "question": 331, + "contribution": 1668, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26ec1255-e61c-44ba-ad36-8d09b9356a19", + "pk": "0ee2a4ea-f0be-4983-9088-4280089add4a", "fields": { - "question": 326, - "contribution": 3859, + "question": 354, + "contribution": 1786, "answer": 2, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "26f2afda-69d2-470f-b65a-51ab6b3f5162", + "pk": "0ee86595-a7ab-492c-94eb-69ac5c962292", "fields": { - "question": 345, - "contribution": 4129, + "question": 366, + "contribution": 3961, "answer": 1, - "count": 7 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "26f69435-6d01-48b5-944f-4854e8c68299", - "fields": { - "question": 360, - "contribution": 3943, - "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "27091be2-6256-404e-9031-d640f5718c67", + "pk": "0ef194fe-a234-4789-8ee1-b925b34fea18", "fields": { - "question": 473, - "contribution": 1200, - "answer": 0, - "count": 26 + "question": 341, + "contribution": 1660, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2709516c-70fa-4227-a9c2-1e9e4d8791bd", + "pk": "0efcea4b-43e0-4fa8-bce4-63758145b12f", "fields": { - "question": 389, - "contribution": 3781, - "answer": 4, + "question": 260, + "contribution": 4046, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "270cd400-66d2-48f1-af33-88766cc93c1f", + "pk": "0f0877ca-b262-49aa-a01a-6a17618dbc20", "fields": { - "question": 351, - "contribution": 804, + "question": 354, + "contribution": 3545, "answer": 3, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2710d6b7-e9ae-4219-9966-2c51a6545f39", + "pk": "0f123c50-495e-4fb4-80b9-736a3e3344cf", "fields": { - "question": 458, - "contribution": 4141, + "question": 345, + "contribution": 3879, "answer": 2, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "271858ad-bc28-41e9-a460-0c143df9debe", + "pk": "0f1b55b0-647d-4455-be2a-b57d8e577eb2", "fields": { - "question": 339, - "contribution": 804, - "answer": 3, + "question": 355, + "contribution": 1243, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "271d499b-090e-43b7-9aa6-1fd594a00d59", + "pk": "0f1ebe91-d0bb-4c10-96de-77903a8d8771", "fields": { - "question": 366, - "contribution": 3886, - "answer": 3, - "count": 1 + "question": 333, + "contribution": 4152, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "271d7cb3-5993-48fe-8f1c-e1e083fb8f4b", + "pk": "0f21bfc3-288e-4b24-a3dd-7863244ae947", "fields": { - "question": 361, - "contribution": 3944, + "question": 436, + "contribution": 4140, "answer": 4, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2722fea8-16b4-45cf-8b25-74196244ed22", + "pk": "0f244edb-c03d-4cf5-be92-f68cc98b641c", "fields": { - "question": 356, - "contribution": 4267, - "answer": 2, - "count": 1 + "question": 257, + "contribution": 908, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2727fcc3-6a8c-4ff3-892e-c71221fa01ed", + "pk": "0f2ec52d-9c6b-4f39-94ee-781116d8e423", "fields": { - "question": 349, - "contribution": 4188, - "answer": 2, + "question": 378, + "contribution": 3775, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "272d0f77-7ffc-4d81-aa88-0edc0dd62fee", + "pk": "0f2fa43f-caba-4fd5-8e7a-dd52afa4a733", "fields": { - "question": 353, - "contribution": 1785, + "question": 360, + "contribution": 3651, "answer": 1, - "count": 12 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2737332a-7af0-4d12-811e-0dbd519c2a60", + "pk": "0f313d2c-fee7-4f02-a49c-b668ab4b8944", "fields": { - "question": 354, - "contribution": 3849, - "answer": 2, + "question": 347, + "contribution": 3373, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "274d5735-df6c-4a3a-85d2-88f81ab528e9", + "pk": "0f3a945e-4e2b-4527-8612-4cd3dd880d57", "fields": { - "question": 433, - "contribution": 4052, + "question": 346, + "contribution": 4095, "answer": 1, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "27590044-9a5d-46f7-a907-f85675036d70", + "pk": "0f3b2c2b-0b5a-49f1-a0a6-b4f83f45a793", "fields": { - "question": 370, - "contribution": 4268, - "answer": 2, + "question": 348, + "contribution": 1749, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "277655fb-37ec-43e2-8a40-160f54217940", + "pk": "0f3ee64b-8242-466e-a1de-9ab88fc69b47", "fields": { - "question": 332, - "contribution": 4244, + "question": 391, + "contribution": 3755, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2776eaa2-8234-4803-8bbf-40fe9b229f90", + "pk": "0f4d51b0-37e1-4daa-8c92-ec8a1e818f92", "fields": { - "question": 343, - "contribution": 1735, - "answer": 1, - "count": 3 + "question": 1, + "contribution": 4303, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "277f5b77-e39f-4743-8173-cfb468e3f296", + "pk": "0f52cf86-36bc-48ec-8996-24789f37a36a", "fields": { - "question": 344, - "contribution": 887, + "question": 348, + "contribution": 1661, "answer": 1, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "277fbcc3-795e-49d2-93b7-b1cec390d28f", + "pk": "0f63af69-a0a4-49b4-9c5f-0bd1c10492ac", "fields": { - "question": 320, - "contribution": 4138, - "answer": 4, + "question": 340, + "contribution": 858, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2781059f-3d93-4f62-b468-a350d30284b6", + "pk": "0f6b494a-9639-475d-a4a9-116bc87d1f75", "fields": { - "question": 375, - "contribution": 3755, - "answer": 2, - "count": 1 + "question": 348, + "contribution": 3610, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "278143f3-3b6b-4467-9d79-088930812e3b", + "pk": "0f6cb22f-1bed-442f-8767-cfbf69fdb94c", "fields": { - "question": 434, - "contribution": 4140, - "answer": 1, - "count": 2 + "question": 348, + "contribution": 4123, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "27823f03-65f0-4602-91a6-87783f3d6b02", + "pk": "0f817503-fcf6-4b03-bf99-f6ae700492ae", "fields": { - "question": 328, - "contribution": 4203, - "answer": 3, - "count": 9 + "question": 353, + "contribution": 1844, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2789cc3f-1077-44c7-9e58-5db5399ec02d", + "pk": "0f83c1ef-34df-4b47-ad90-ff650a6d30ca", "fields": { - "question": 432, - "contribution": 4140, - "answer": 4, - "count": 2 + "question": 475, + "contribution": 1638, + "answer": 0, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "279f0254-aa34-4d88-8755-d0b66c428a31", + "pk": "0f87f8cd-1330-44db-9220-cc762ec333ed", "fields": { - "question": 262, - "contribution": 1837, - "answer": 4, + "question": 343, + "contribution": 3367, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "27a4ec77-f6ad-4e86-862e-9dc140457e75", + "pk": "0f966468-3ff9-4430-8c60-0007e453e179", "fields": { - "question": 461, - "contribution": 4283, - "answer": 2, - "count": 2 + "question": 476, + "contribution": 880, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "27a6e3b9-1300-4b02-b065-3bba825194ba", + "pk": "0fa1938e-c7f2-4bb8-b172-7e29ae4f166e", "fields": { - "question": 363, - "contribution": 3893, - "answer": 1, - "count": 17 + "question": 368, + "contribution": 3391, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "27b42c0a-93a0-40e4-bf1e-d8f2feb3539f", + "pk": "0fa93f14-252a-4a08-b13b-24e7fcc44504", "fields": { - "question": 362, - "contribution": 1811, + "question": 368, + "contribution": 4101, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "27e2f229-3478-4518-bc2c-a5a9a935c38e", + "pk": "0faa5dc4-7bee-4a2a-a4e8-7d74b5ade8d4", "fields": { - "question": 315, - "contribution": 3739, - "answer": 3, + "question": 337, + "contribution": 3821, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "27e3dc1d-03ad-494b-b144-5fdb16cb8cfe", + "pk": "0fadb16c-35e8-4748-bff2-320c284d38fe", "fields": { - "question": 319, - "contribution": 1668, - "answer": 2, - "count": 3 + "question": 321, + "contribution": 3390, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "27e84f02-fcb8-43e3-a618-f245d8f04815", + "pk": "0fb01aa7-e855-4a95-a1ff-c4ec5c1ade60", "fields": { - "question": 473, - "contribution": 3390, - "answer": -3, - "count": 3 + "question": 477, + "contribution": 1186, + "answer": -2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "27eacf11-bb79-4078-bd8d-283a1c22e0b5", + "pk": "0fb1bc68-25ae-4c8e-83ed-2728cf06f4c4", "fields": { - "question": 343, - "contribution": 4129, - "answer": 1, - "count": 11 + "question": 336, + "contribution": 3486, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "27f47a15-4e79-43cb-b471-06b6086df633", + "pk": "0fbb9054-0aa1-4018-adaa-3afae948d02f", "fields": { - "question": 361, - "contribution": 1808, - "answer": 5, + "question": 476, + "contribution": 3721, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "280a3132-d283-451e-acb9-d4928eb3fa76", + "pk": "0fc00c6a-44b0-4311-b7cd-454adc75b793", "fields": { - "question": 323, - "contribution": 4120, - "answer": 5, + "question": 346, + "contribution": 3545, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "284b0572-1799-49ef-8fba-40607fcc6e8f", + "pk": "0fde0d33-a2c1-4e91-817b-fc73fb65622a", "fields": { - "question": 328, - "contribution": 3407, - "answer": 4, - "count": 1 + "question": 343, + "contribution": 4146, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "284ebd36-834e-4d00-874f-738552b3497b", + "pk": "0fe63311-7ec8-4f0e-8bed-e1ca01873d8a", "fields": { - "question": 360, - "contribution": 3649, - "answer": 5, - "count": 1 + "question": 322, + "contribution": 1680, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "285120ab-3168-4335-ad7f-a1364f2d9b13", + "pk": "0fe66cfc-6dc4-461c-843b-b5424829ab69", "fields": { - "question": 416, - "contribution": 4024, + "question": 347, + "contribution": 4021, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2857dd92-76c0-4d42-8936-9fdc68c1a132", + "pk": "0fe9ad1a-c56c-4374-9ec6-8ba442ae2b6f", "fields": { - "question": 388, - "contribution": 3711, - "answer": 2, - "count": 3 + "question": 473, + "contribution": 886, + "answer": 0, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2857edcb-6e74-4db4-9563-e6791d9abd86", + "pk": "0ff4db42-04a5-4537-b50d-a573566aad49", "fields": { - "question": 359, - "contribution": 3893, - "answer": 1, - "count": 20 + "question": 339, + "contribution": 1200, + "answer": -1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "28594249-19b7-491f-ac9f-73aa66f5e14e", + "pk": "0ffe77c8-7300-4892-8c76-f834065922b8", "fields": { - "question": 361, - "contribution": 3918, - "answer": 1, + "question": 323, + "contribution": 4116, + "answer": 3, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "10096104-b201-4af2-8907-193cf39bcd2e", + "fields": { + "question": 343, + "contribution": 1228, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "285a3721-637d-4475-afc7-384fc7ad7070", + "pk": "100d4c53-9a4b-4afe-9405-6ff869855d04", "fields": { - "question": 396, - "contribution": 3755, - "answer": 1, + "question": 475, + "contribution": 886, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2860c3c0-3aae-4277-a7f7-29e1ebdd80ef", + "pk": "10122da0-9872-4244-985b-3648c48c3c07", "fields": { - "question": 346, - "contribution": 1843, - "answer": 4, + "question": 473, + "contribution": 1734, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "286645b4-7122-4015-98b8-4fd88e7153a0", + "pk": "101c621d-793e-4b1d-a9e0-8168bf791818", "fields": { - "question": 320, - "contribution": 1668, - "answer": 1, - "count": 7 + "question": 257, + "contribution": 3474, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "286bc12e-eb14-47d5-ab74-22c7c0180ea7", + "pk": "1024dec7-fbeb-4d02-8a99-993420867820", "fields": { - "question": 325, - "contribution": 913, - "answer": 5, + "question": 326, + "contribution": 3722, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "28924814-c03b-4787-9a41-c7da7afa5b73", + "pk": "1026fdd5-c6bc-449f-b8b0-c4cac1f094c6", "fields": { - "question": 337, - "contribution": 3382, - "answer": 1, + "question": 340, + "contribution": 918, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "28926223-e358-4315-9d70-5cb3eeec43c2", + "pk": "103aaa61-49a7-4126-ac3b-869e7e21a1dc", "fields": { - "question": 349, - "contribution": 1843, - "answer": 5, - "count": 1 + "question": 476, + "contribution": 4138, + "answer": 0, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2898929a-0368-4c65-8f06-2656d46b8b92", + "pk": "1046123e-12ec-4e9a-a174-f75142aae9e6", "fields": { - "question": 359, - "contribution": 1825, + "question": 333, + "contribution": 837, "answer": 2, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "105e7b39-68fd-4960-860e-010ed9eb584d", + "fields": { + "question": 347, + "contribution": 4123, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "289d9acf-0517-4434-8417-3e0b1283efef", + "pk": "1061bd69-377d-4943-9925-428f3ffa8794", "fields": { - "question": 322, - "contribution": 1634, + "question": 345, + "contribution": 1246, "answer": 5, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "289defa0-cede-4c9f-9300-b93d811dbc06", + "pk": "10759dfa-693d-4dea-ae21-4cdb16f653d4", "fields": { - "question": 333, - "contribution": 1812, - "answer": 5, + "question": 326, + "contribution": 3884, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "28ad5e20-f5a1-4b3d-8ce3-1b9677ebea91", + "pk": "1075edab-cdae-481a-952d-4840e48b24b5", "fields": { - "question": 257, - "contribution": 4040, - "answer": 3, + "question": 332, + "contribution": 4261, + "answer": 1, + "count": 11 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "107cf8a2-6886-446e-b9c5-7873b35fbad3", + "fields": { + "question": 347, + "contribution": 1247, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "28c9a7c7-b04d-421b-ad95-1e2141c4c682", + "pk": "10830cbd-c1f9-4db6-b3a9-5c6ac5c328c2", "fields": { - "question": 315, - "contribution": 1634, - "answer": 3, - "count": 4 + "question": 255, + "contribution": 4128, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "28d0f5f6-5913-4163-87af-228901e7f828", + "pk": "108a039c-9615-4d3e-9a03-6813276d4833", "fields": { - "question": 339, - "contribution": 3454, - "answer": 0, - "count": 6 + "question": 329, + "contribution": 4085, + "answer": 2, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "28d342f8-0352-4f74-b65b-06641552cb5f", + "pk": "108f3c7b-9e84-4579-b1bf-02147d6186b1", "fields": { - "question": 326, - "contribution": 1779, + "question": 347, + "contribution": 3546, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "28d9b13a-81fb-40ee-a6c7-e98dd4efcd4e", + "pk": "1093e66c-77c1-481e-a6d3-0a016e480cb7", "fields": { - "question": 328, - "contribution": 885, - "answer": 5, + "question": 344, + "contribution": 3890, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "28e29b48-edb7-4b1d-86a1-00653607ec83", + "pk": "1098070a-a64b-4b8e-a190-f79e3f4e62f0", "fields": { - "question": 359, - "contribution": 1836, - "answer": 4, + "question": 349, + "contribution": 4003, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "28f4d527-32df-4344-af55-e0c8b78e6f1d", + "pk": "10a0ec22-6d5a-4b28-83ba-739b37aa8f27", "fields": { - "question": 473, - "contribution": 886, - "answer": -1, + "question": 319, + "contribution": 1626, + "answer": 4, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2903912e-eb44-41b0-b986-77e699f81d7f", + "pk": "10a12287-fbfc-4fce-a421-862d1aa17909", "fields": { - "question": 343, - "contribution": 4233, - "answer": 1, - "count": 3 + "question": 319, + "contribution": 4120, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "290ebd3e-164e-4ea9-a9a9-ad04d1cde699", + "pk": "10a43955-27d0-4cb4-800f-c508a8f7cea0", "fields": { - "question": 343, - "contribution": 1881, - "answer": 1, - "count": 3 + "question": 473, + "contribution": 880, + "answer": -1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "291cb17a-622e-4c6b-b16b-0ba25ebb5068", + "pk": "10a729df-4042-4ffc-b908-1ea834609d60", "fields": { - "question": 349, - "contribution": 1922, - "answer": 1, - "count": 2 + "question": 332, + "contribution": 1283, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "291d5ec7-745c-4b44-b2d5-a97046d376ad", + "pk": "10b27542-f8dd-4020-b59b-eb6486faa0e1", "fields": { - "question": 337, - "contribution": 858, - "answer": 5, - "count": 1 + "question": 317, + "contribution": 4084, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2931b687-04d5-48bb-ab25-beb5db51bbd3", + "pk": "10b33318-bf16-484d-b822-0763ab7cdde3", "fields": { - "question": 349, - "contribution": 3606, - "answer": 3, - "count": 1 + "question": 343, + "contribution": 3608, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2933df2b-e978-49e8-aba4-448adfa0f7c1", + "pk": "10bbc800-b6f1-4aad-8095-1c82202f1293", "fields": { - "question": 347, - "contribution": 3960, - "answer": 3, - "count": 1 + "question": 332, + "contribution": 1283, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "293f388b-3227-4cc5-83ce-e04a86c3167c", + "pk": "10c9bbf4-a2f1-48fe-bc3d-641c898d2b82", "fields": { - "question": 477, - "contribution": 3726, - "answer": -1, + "question": 255, + "contribution": 4084, + "answer": 4, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "294cdd49-f63c-4aa9-97ad-c6575f1ac45f", + "pk": "10d10dfa-7044-40b0-a5e9-74d717a07f40", "fields": { - "question": 355, - "contribution": 1845, - "answer": 1, + "question": 340, + "contribution": 1662, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "294e3757-d8ed-4b68-ad91-e44cac8dbd53", + "pk": "10e2169c-a00e-4635-b69f-17c82108dfd7", "fields": { "question": 366, - "contribution": 3553, - "answer": 2, - "count": 8 + "contribution": 3631, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2956a644-b1da-4e14-8509-f1b9d08f228b", + "pk": "10e5eed3-d0ac-4994-a48b-a1280e1b6152", "fields": { - "question": 346, - "contribution": 1880, + "question": 344, + "contribution": 4189, "answer": 2, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29578497-1aec-4f1a-bc5b-0174538f6073", + "pk": "10e9adb0-7bde-41fa-9657-8c19f02521ca", "fields": { - "question": 348, - "contribution": 1249, - "answer": 1, - "count": 3 + "question": 347, + "contribution": 3516, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "295deddf-b201-467a-b66e-ba9f9df0b9d2", + "pk": "10f249d1-16c2-4bf6-b4b7-79cff1b760dc", "fields": { - "question": 317, - "contribution": 3390, - "answer": 5, - "count": 7 + "question": 329, + "contribution": 4047, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2965ae5a-cb08-49b1-a279-b9550a962001", + "pk": "10fc1917-8948-4658-995a-95a59db580ee", "fields": { - "question": 349, - "contribution": 3546, + "question": 326, + "contribution": 3423, "answer": 2, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "296cbc22-e0c0-4b9c-a95c-da502de513f7", + "pk": "10ff3a9b-3009-4da8-a771-6c31b20ac27f", "fields": { - "question": 257, - "contribution": 3472, - "answer": 1, - "count": 6 + "question": 452, + "contribution": 4185, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29702735-c682-4c88-a087-9136d4162c0e", + "pk": "1104ee8a-a041-45dd-8b94-43c42aa537e9", "fields": { - "question": 347, - "contribution": 4190, - "answer": 1, - "count": 4 + "question": 475, + "contribution": 1200, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29761950-8358-4c0b-807d-16b918730167", + "pk": "110c5d05-0e70-4794-87dd-e5d483b2cd21", "fields": { - "question": 335, - "contribution": 3882, - "answer": 5, + "question": 348, + "contribution": 4191, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29854bab-59d9-4337-9024-48c8e17dd10f", + "pk": "110cd4f2-8f68-48e1-b3c5-4306afa3fb41", "fields": { - "question": 347, - "contribution": 1869, - "answer": 1, - "count": 1 + "question": 322, + "contribution": 4128, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "298ff71d-ae14-4eae-8ef8-318410f113d8", + "pk": "110f76da-c6d9-4589-b156-ed91f94a67bf", "fields": { - "question": 345, - "contribution": 3516, + "question": 335, + "contribution": 3886, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29a55995-08d0-43ed-8c6a-7f6a9c5fdc78", + "pk": "1111c45b-bef4-4acd-81fa-87df511f3d0a", "fields": { - "question": 326, - "contribution": 881, - "answer": 3, - "count": 13 + "question": 255, + "contribution": 3434, + "answer": 1, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29a9bd35-c41b-4fc6-9103-6ef410dd2def", + "pk": "11186798-e48e-443b-80d0-3240a33e5d72", "fields": { - "question": 360, - "contribution": 3916, + "question": 320, + "contribution": 1680, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29b3e2ca-7373-4f81-80d5-f7d1122ca20a", + "pk": "112c53bb-c6e1-43a3-a6c1-cd7592605e92", "fields": { - "question": 257, - "contribution": 4100, - "answer": 3, - "count": 2 + "question": 354, + "contribution": 1783, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29c121cb-67f6-4522-861a-49eff205c336", + "pk": "113b8221-42c7-4416-87b6-ebfff5a2869b", "fields": { - "question": 356, - "contribution": 3607, - "answer": 1, + "question": 348, + "contribution": 3610, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29d19ea4-40ed-4d4e-ac5d-510210144807", + "pk": "1141522a-7792-4e7f-87e9-82ea456fbca1", "fields": { - "question": 320, - "contribution": 3679, + "question": 348, + "contribution": 1867, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29d56e1f-a8d6-4cad-91f2-d6966235293b", + "pk": "114b3132-0a8e-410d-9e4e-00a81734f190", "fields": { - "question": 319, - "contribution": 1626, - "answer": 5, - "count": 14 + "question": 326, + "contribution": 881, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29e660ce-604e-4585-a04f-368420f16902", + "pk": "115098c3-8c83-4f9c-b2d2-cb77f14a9b8a", "fields": { - "question": 344, - "contribution": 3899, - "answer": 4, - "count": 1 + "question": 337, + "contribution": 1638, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29e6ff8a-0602-47bc-8205-9d4d6590d952", + "pk": "11534985-b5a8-4607-98a3-191bd592ef84", "fields": { - "question": 326, - "contribution": 3722, + "question": 328, + "contribution": 4047, "answer": 1, - "count": 8 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29e89ace-72ed-4e9b-8e6d-2be754743f66", + "pk": "115623b1-f6bf-467e-9cdc-c303937689ea", "fields": { - "question": 320, - "contribution": 4022, + "question": 257, + "contribution": 3721, "answer": 4, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "29eef4fd-1afa-4d03-93c2-a455cde4f542", - "fields": { - "question": 361, - "contribution": 1806, - "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "29fadfc5-c99a-40e0-b8eb-d92f5b9c8265", + "pk": "115c9bbc-3a44-44e5-a810-7853727bd451", "fields": { - "question": 363, - "contribution": 1803, - "answer": 1, - "count": 4 + "question": 329, + "contribution": 909, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a0baed2-1668-4536-9a28-8c6b31dc61c0", + "pk": "115d8af6-ab0b-4f8c-a88b-988d42b335a3", "fields": { - "question": 359, - "contribution": 3647, - "answer": 2, + "question": 355, + "contribution": 4279, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a127a08-16a8-4715-ad3b-e849acebaaef", + "pk": "1169f5c6-5297-422c-8ec0-7ea3660844cb", "fields": { - "question": 346, - "contribution": 3912, - "answer": 2, - "count": 2 + "question": 345, + "contribution": 3607, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a1ddc0e-793b-4da8-a2e0-7a6fe7941f8c", + "pk": "1170694d-6f89-4ae2-803b-176510e6365d", "fields": { - "question": 356, - "contribution": 3776, - "answer": 2, - "count": 4 + "question": 322, + "contribution": 862, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a303964-61c9-457d-923d-eb166a07bab6", + "pk": "11760382-cb0e-48df-a86a-9d87a73e061a", "fields": { - "question": 336, - "contribution": 3440, + "question": 328, + "contribution": 885, "answer": 2, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a3331da-18ed-4818-aa01-21f6743489ac", + "pk": "1176bf2d-7d5f-4b99-9806-d7d1cd710c8a", "fields": { - "question": 347, - "contribution": 1867, + "question": 436, + "contribution": 3976, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a404d75-c373-4b9c-94e8-ddd63d401d89", + "pk": "117b272f-6759-4c1c-8c38-ac1ccc6f9c49", "fields": { - "question": 341, - "contribution": 3795, - "answer": 3, - "count": 1 + "question": 325, + "contribution": 4085, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a40a42a-1e4f-4b45-9651-cc75fa6f3cda", + "pk": "117d4c6e-80d4-4db3-9f60-3b86cbc1a4fc", "fields": { "question": 473, - "contribution": 3974, + "contribution": 858, "answer": 0, - "count": 2 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a412c18-5c96-4a45-a374-8d8998079497", + "pk": "119084ef-f06f-4844-8c94-0bbe534ef182", "fields": { - "question": 475, - "contribution": 1200, - "answer": 1, - "count": 12 + "question": 473, + "contribution": 884, + "answer": -1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a508fee-51ba-4c42-a766-bbaa24c95970", + "pk": "11a04c07-aec0-44ae-9717-43a393b4f1b9", "fields": { - "question": 315, - "contribution": 3665, - "answer": 3, + "question": 353, + "contribution": 3528, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a68bece-a959-4af3-80d8-a652c787cc13", + "pk": "11a56534-314a-42dd-b233-6c12ed8e7ef0", "fields": { - "question": 366, - "contribution": 3593, - "answer": 3, - "count": 1 + "question": 340, + "contribution": 1660, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a77037c-9f32-427f-a4b1-5ac9bc481117", + "pk": "11a9d734-996b-446e-a23a-e8f0c31ae988", "fields": { - "question": 351, - "contribution": 3406, + "question": 347, + "contribution": 869, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a793651-cec2-4f7c-b2be-ef760a265ca7", + "pk": "11b77207-e9c5-4052-a025-28b4b9fa1a6d", "fields": { - "question": 333, - "contribution": 4152, - "answer": 5, - "count": 1 + "question": 352, + "contribution": 788, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a860574-f417-4889-a739-f47885cab92e", + "pk": "11bc75eb-3c4a-4cfa-ac08-aada340bced3", "fields": { - "question": 346, - "contribution": 3515, - "answer": 3, - "count": 1 + "question": 336, + "contribution": 1656, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a86f742-252a-49e6-9258-5e936e2780af", + "pk": "11c47755-2e08-422d-9e96-81b1cf1088c4", "fields": { - "question": 368, - "contribution": 1802, - "answer": 2, - "count": 5 + "question": 348, + "contribution": 1645, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a96d671-6477-46b2-b1d4-f7f6e13e781f", + "pk": "11d418e6-3043-4e94-9c11-8ce3dfeb854f", "fields": { - "question": 320, - "contribution": 3390, + "question": 477, + "contribution": 1780, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2a97094d-b7f6-4d29-9beb-b4db5715f4a8", + "pk": "11e39b37-8f86-400f-95b6-f342446ee6a5", "fields": { - "question": 362, - "contribution": 3916, - "answer": 3, - "count": 1 + "question": 328, + "contribution": 4153, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2aa238c3-cadc-4e35-a21a-4aeb3ddb489d", + "pk": "11f602ca-bc19-4e71-a4f0-3309c2da79e1", "fields": { - "question": 368, - "contribution": 3859, + "question": 257, + "contribution": 4120, "answer": 5, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ac28304-990e-481d-8194-9be8ae1023f4", + "pk": "11f70250-446b-4cbe-b30d-2b58b7d8883d", "fields": { - "question": 435, - "contribution": 4090, + "question": 349, + "contribution": 3899, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ac82c70-f256-4aa0-963c-e16caca7ba3b", + "pk": "11ff041f-be5c-4951-9da2-3292803decc4", "fields": { - "question": 340, - "contribution": 4122, + "question": 352, + "contribution": 832, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ac988b6-8272-4441-a834-b52ac2f738d7", + "pk": "12010c34-67ad-4ec8-adf1-243a6633fa76", "fields": { - "question": 348, - "contribution": 1202, - "answer": 2, + "question": 329, + "contribution": 4101, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2acba9f3-1c69-482a-b9ea-0819360ee020", + "pk": "12092bfe-2b4f-4283-991b-97f9b6b88e5f", "fields": { - "question": 316, - "contribution": 912, - "answer": 4, - "count": 2 + "question": 346, + "contribution": 919, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2acbdbc8-2429-4fa5-bbcc-5df30226bb78", + "pk": "1209cc1e-ff1c-4aa4-9621-75deb60c9bd9", "fields": { - "question": 403, - "contribution": 4148, + "question": 323, + "contribution": 1680, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2acf99da-f171-479d-bd76-984019769bc2", + "pk": "120e8ccf-9ba1-4484-a603-d0d454e1e47d", "fields": { - "question": 328, - "contribution": 909, + "question": 344, + "contribution": 3728, "answer": 4, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2acfd252-8031-4078-99a2-f27486d034e0", + "pk": "120efff0-c668-457a-a219-b85d757bc8e4", "fields": { - "question": 322, - "contribution": 1612, - "answer": 2, - "count": 9 + "question": 410, + "contribution": 4038, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ad50bd2-23a3-4e57-9dea-bf73c048eba5", + "pk": "12154236-9832-4a97-a059-3a56781adc78", "fields": { - "question": 345, - "contribution": 1870, - "answer": 1, + "question": 337, + "contribution": 3440, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ad52bd4-94cd-4c24-80a4-32db5f3f55cf", + "pk": "121913bc-2927-4ee8-ae5b-9a44b9ef3382", "fields": { - "question": 322, - "contribution": 3739, - "answer": 2, - "count": 5 + "question": 368, + "contribution": 3859, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ad73a2e-5509-4b2b-acae-4423a2790cf4", + "pk": "1228c20c-65b2-4580-bc95-cf8af5ce2497", "fields": { - "question": 349, - "contribution": 1202, - "answer": 1, - "count": 9 + "question": 336, + "contribution": 1656, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ad943a8-7e7c-4038-88ee-30bb5459ffcf", + "pk": "122b7fed-eb83-4f94-af0f-f44eecaebb60", "fields": { - "question": 403, + "question": 431, "contribution": 4148, - "answer": 1, - "count": 25 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "2adb9a18-bc6e-4306-8cfe-2d42119ca5be", - "fields": { - "question": 321, - "contribution": 3721, "answer": 2, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2adff786-d922-475e-bfe3-7ad761c02f60", + "pk": "12391a51-7787-4524-a2f4-f0d0e24375ca", "fields": { - "question": 326, - "contribution": 3859, - "answer": 4, - "count": 1 + "question": 356, + "contribution": 3546, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ae2949c-8bc4-4389-97bb-bfa71dd58c22", + "pk": "123fca2a-3b77-4fb4-843a-59b37108a548", "fields": { - "question": 476, - "contribution": 3390, - "answer": 1, + "question": 321, + "contribution": 1626, + "answer": 5, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ae6fde6-e18d-4e61-b3ed-13064c78c49f", + "pk": "124522f6-34bb-4bbf-8594-7ac4fab72478", "fields": { - "question": 450, - "contribution": 4185, + "question": 322, + "contribution": 1658, "answer": 3, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2aee0cf2-4268-4903-9cc8-a91582aef18a", + "pk": "124f0710-2aa3-4d81-a332-aa4816aabcd1", "fields": { - "question": 363, - "contribution": 3649, + "question": 323, + "contribution": 884, "answer": 1, - "count": 8 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2af55acd-d57d-4f88-9732-3407693f84d7", + "pk": "1254fcee-6f6e-476a-abc7-18287bb4d857", "fields": { - "question": 1, - "contribution": 4303, + "question": 355, + "contribution": 3546, "answer": 3, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b0f5685-1e31-4961-9224-0e5592508fe9", + "pk": "125bcb11-5ad6-47db-b681-d15ef9befffa", "fields": { - "question": 462, - "contribution": 3786, + "question": 339, + "contribution": 3821, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b166bb0-0c3b-4dc9-889c-e3576bc3c22e", + "pk": "1265b86b-c28d-4839-b1ec-72884862fbe5", "fields": { - "question": 436, - "contribution": 4052, - "answer": 5, - "count": 1 + "question": 346, + "contribution": 4095, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b17d999-ab2b-459b-b93b-da775c2fab21", + "pk": "126d452a-a7a7-4472-8bd1-3dee1890417a", "fields": { - "question": 336, - "contribution": 840, + "question": 341, + "contribution": 3372, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b18c344-d7fa-4cac-abca-e6364677efcb", + "pk": "1273a0f4-2663-4ecb-ab62-d7d217803991", "fields": { - "question": 366, - "contribution": 3922, - "answer": 1, - "count": 2 + "question": 392, + "contribution": 3775, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b2bd3cc-f24e-4ce3-afc2-bfa38442dde6", + "pk": "1274ad22-36a9-469b-8c03-a683ae519e73", "fields": { - "question": 346, - "contribution": 1206, - "answer": 2, - "count": 2 + "question": 344, + "contribution": 3900, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b2f632b-697c-4639-8a62-61d5cda1fb56", + "pk": "1276dea6-4697-4e3b-b701-106e7b896a62", "fields": { - "question": 329, - "contribution": 3722, + "question": 341, + "contribution": 3685, "answer": 1, - "count": 18 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b43b4da-8b07-453b-9ec2-eaf67eb6822b", + "pk": "1283bc6c-2ee4-4a2b-acd6-dcd9ca207391", "fields": { - "question": 362, - "contribution": 3916, - "answer": 1, - "count": 6 + "question": 345, + "contribution": 919, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b58769b-f7cd-42ec-8ca9-56d98c05ff5a", + "pk": "128a6875-2fc1-4da4-be5d-6336ff667aad", "fields": { - "question": 362, - "contribution": 1825, + "question": 370, + "contribution": 4037, "answer": 1, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "2b615634-d505-4693-9f9d-793855afdc73", - "fields": { - "question": 472, - "contribution": 3679, - "answer": 5, - "count": 14 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b6370cb-0fbb-4eb7-861b-853969577552", + "pk": "128accb4-2cc2-4b90-9aea-027836957eaf", "fields": { - "question": 337, - "contribution": 3454, + "question": 327, + "contribution": 3463, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b687d24-eb6b-437c-8c7e-a948a69b6e14", + "pk": "128b2f2d-bb8d-437f-84e6-696070400a97", "fields": { - "question": 337, - "contribution": 894, + "question": 344, + "contribution": 1156, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b6a4753-4831-4643-acd0-d98e8d80e156", + "pk": "129f0447-aeb3-46ba-a683-cc566284ea1f", "fields": { - "question": 473, - "contribution": 3735, + "question": 368, + "contribution": 4152, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b777818-68b8-49a5-990e-a1b2a2ae5adb", + "pk": "12a2490f-6282-472d-8e89-a1a4397b1487", "fields": { - "question": 333, - "contribution": 1812, - "answer": 1, + "question": 343, + "contribution": 3900, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b7c6854-3ab5-4db9-9638-a39f7b857f1f", + "pk": "12a280be-c810-4370-9fbc-f6ed4d097aa3", "fields": { - "question": 357, - "contribution": 4228, + "question": 340, + "contribution": 1726, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b7c8ef5-35d9-4a93-87cb-f9ceeb39ac08", + "pk": "12aa75ad-5672-4a9a-8263-96159b136ae2", "fields": { - "question": 331, - "contribution": 822, - "answer": 0, - "count": 6 + "question": 464, + "contribution": 4073, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b82c4f7-37ce-4794-a77d-3342b97f7699", + "pk": "12ab3ea5-8b71-4f54-bbce-8f137ac9beb4", "fields": { - "question": 335, - "contribution": 3961, - "answer": 1, - "count": 1 + "question": 322, + "contribution": 3406, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b881785-b8cb-4c27-b76e-e07d2c37afd7", + "pk": "12ad2be6-d34a-4fac-8c30-6ae4dff06aaa", "fields": { - "question": 449, - "contribution": 4185, + "question": 317, + "contribution": 836, "answer": 2, - "count": 12 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2b9a5be0-929d-4a8f-b733-58adefd4a507", + "pk": "12c4e318-a9dc-46e3-bc1a-047d63a65434", "fields": { - "question": 339, - "contribution": 1702, - "answer": 1, + "question": 329, + "contribution": 3684, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ba1781c-951a-4b0c-8fa4-fa0646f377ae", + "pk": "12cdc932-ba39-41b2-9611-024d364994ff", "fields": { - "question": 325, - "contribution": 3884, - "answer": 1, - "count": 9 + "question": 321, + "contribution": 4118, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ba18165-6e55-4ac2-ab44-f726c5521de4", + "pk": "12ce7dff-5c9a-45dc-aae9-5000a99a1df1", "fields": { - "question": 328, - "contribution": 823, - "answer": 3, - "count": 2 + "question": 344, + "contribution": 3405, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ba26ea7-6cd1-48c8-86f6-07a4f1b6f312", + "pk": "12cf356e-80c3-4b64-841e-0cc4fe86de41", "fields": { - "question": 262, - "contribution": 3422, - "answer": 4, - "count": 1 + "question": 323, + "contribution": 3390, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ba78f7f-3634-487e-83de-19e7ed352bca", + "pk": "12df5e5c-6c22-49d5-b618-dce01724a945", "fields": { - "question": 322, - "contribution": 836, - "answer": 1, - "count": 11 + "question": 326, + "contribution": 4152, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2bba2398-bdf7-462f-992e-b373683618f1", + "pk": "12e309a7-f1e8-4347-a04f-b4c73747ec80", "fields": { - "question": 350, - "contribution": 3735, - "answer": 1, + "question": 366, + "contribution": 4152, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2bbb6f97-65ea-4ce5-a912-ae12f006d8ec", + "pk": "12e6890f-3485-4979-bb8e-e5fbf9839847", "fields": { - "question": 338, - "contribution": 858, - "answer": 2, - "count": 1 + "question": 255, + "contribution": 908, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2bc28bc1-ff1d-45de-9e0c-5fdfe5cf13bb", + "pk": "12f709d0-3bbd-4d5c-b4f4-22b4f3ca9712", "fields": { - "question": 339, - "contribution": 3508, + "question": 340, + "contribution": 1748, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2bcfe7b5-e734-48e9-8111-91c342818d8e", + "pk": "1310e12e-db39-413f-b58d-a6d568b0d6e5", "fields": { - "question": 473, - "contribution": 822, - "answer": 0, - "count": 7 + "question": 360, + "contribution": 3637, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2bd45692-a3d2-4e91-a57a-161d076e1490", + "pk": "1310eaf7-721a-43ff-b239-5f1754e23ed9", "fields": { - "question": 345, - "contribution": 3373, - "answer": 1, + "question": 327, + "contribution": 3883, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2bd4dabf-9927-426c-9cca-d1b6e021d209", + "pk": "1314ad6e-df05-4043-ba00-7f0beb2108ca", "fields": { - "question": 346, - "contribution": 1867, - "answer": 4, + "question": 347, + "contribution": 3912, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2bda60db-a2fe-40b8-b619-e8ba2171656c", + "pk": "13157ba1-78d7-49bf-afcc-737103440f9c", "fields": { - "question": 347, - "contribution": 3941, - "answer": 1, - "count": 2 + "question": 363, + "contribution": 3919, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2bda8390-a043-4ce8-9efc-45d448c1f32b", + "pk": "13194f3e-823a-46dc-be01-1dc2aebd7c07", "fields": { - "question": 347, - "contribution": 1843, - "answer": 1, + "question": 326, + "contribution": 4117, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2be01a10-0e98-4d82-984f-4685cb22a80c", + "pk": "13302a8f-bb51-4edd-9476-62bc86d180bd", "fields": { - "question": 328, - "contribution": 3722, - "answer": 1, - "count": 4 + "question": 316, + "contribution": 4084, + "answer": 2, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2bf59d07-8ed6-4ab3-b6d2-83683815117b", + "pk": "133a729b-6f27-44d7-8469-63204de47e07", "fields": { - "question": 322, - "contribution": 1658, - "answer": 5, + "question": 475, + "contribution": 4072, + "answer": 0, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2bf815d4-3322-4c58-a669-ad80e78622d1", + "pk": "134def3c-7ec7-4b63-a43c-3779ea544e3f", "fields": { - "question": 395, - "contribution": 3781, + "question": 345, + "contribution": 1869, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2bfd2ad4-b93b-4adf-b39e-70e289384224", + "pk": "134f9abd-7e48-427e-ad98-04b2d3cd2ede", "fields": { - "question": 404, - "contribution": 3984, - "answer": 2, + "question": 347, + "contribution": 3528, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c04697a-9853-499e-ae7f-26aa7a470b95", + "pk": "135b84b5-be8f-4efd-840b-a097b0ed1c20", "fields": { - "question": 477, - "contribution": 1635, - "answer": 1, - "count": 5 + "question": 371, + "contribution": 3551, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c04ea7d-a8db-44e4-ac79-ff0ebc42035a", + "pk": "135ce1ba-9fe8-48c6-903d-89a78cd3f5ba", "fields": { - "question": 382, - "contribution": 3781, - "answer": 0, - "count": 3 + "question": 323, + "contribution": 4128, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c1145db-c1c4-487a-8495-60e0a79de3eb", + "pk": "13616a90-f5cc-4bbd-ae06-a48695a400f3", "fields": { - "question": 333, - "contribution": 3592, - "answer": 1, - "count": 3 + "question": 260, + "contribution": 836, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c13a1f7-920c-418d-ac94-51b44350a62c", + "pk": "1364c521-f892-4ca2-9e9d-3316fb898074", "fields": { - "question": 258, - "contribution": 4118, - "answer": 2, - "count": 4 + "question": 255, + "contribution": 4128, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c1cdf4a-2b4a-455b-a57e-432d03b9aee4", + "pk": "136ddf15-057c-4370-bd09-9ed2cb64939a", "fields": { - "question": 338, - "contribution": 3645, - "answer": 2, + "question": 473, + "contribution": 3739, + "answer": 0, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c20c3cc-5e74-4c41-bcc5-cfb6af094bfd", + "pk": "136f22da-02fe-453e-b8e9-9e64786c0d65", "fields": { - "question": 340, - "contribution": 4052, - "answer": 2, - "count": 1 + "question": 257, + "contribution": 3390, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c3a5597-0ed3-4e88-b32c-0831f4e53917", + "pk": "13756e4a-fdcf-4d65-ba77-cd291e701cfa", "fields": { - "question": 325, - "contribution": 1776, - "answer": 3, - "count": 4 + "question": 477, + "contribution": 1777, + "answer": -1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c41a037-8e0f-48a0-9341-df239e8af90f", + "pk": "137b93ef-695a-4811-9a23-b64c57cd18a6", "fields": { - "question": 258, - "contribution": 1612, - "answer": 3, - "count": 1 + "question": 321, + "contribution": 1626, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c4b3e3b-756d-452c-ab30-11630d3ca68b", + "pk": "137e0dfd-6447-448d-a15b-039ca1adc74c", "fields": { - "question": 475, - "contribution": 1710, + "question": 477, + "contribution": 1780, "answer": 0, - "count": 2 + "count": 26 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c4dc7af-a518-4b55-8ad8-d7b72a25bbc4", + "pk": "1380edc1-cbe3-4062-be0f-66949277b9aa", "fields": { - "question": 472, - "contribution": 4046, + "question": 357, + "contribution": 1258, "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c53bbf2-e572-468d-b52b-24e1e04c6d61", - "fields": { - "question": 389, - "contribution": 3781, - "answer": 3, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "2c5cc076-aec7-4b71-b778-592809ff93fa", + "pk": "138968b7-aa8d-4c5c-98e9-14d29f7977b2", "fields": { - "question": 337, - "contribution": 3372, + "question": 260, + "contribution": 3462, "answer": 2, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c66e777-315b-4979-ba1b-a7778510e5f4", + "pk": "13910a66-757a-4600-b637-c86747757c7d", "fields": { - "question": 328, - "contribution": 3885, + "question": 366, + "contribution": 3882, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c68d020-6d14-465c-bcd0-09d0b44d719e", + "pk": "139203e2-0d8c-49ea-8fe8-a99416cacafd", "fields": { - "question": 348, - "contribution": 4188, - "answer": 2, + "question": 357, + "contribution": 3545, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c693138-cf82-41ea-be70-b4d7dbe2559d", + "pk": "139ffd5a-4f91-40e4-9cb5-525685424bba", "fields": { - "question": 322, - "contribution": 3390, - "answer": 4, + "question": 316, + "contribution": 836, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c7a5ab5-5e02-4ff0-8a65-8c85dce64504", + "pk": "13af9401-e951-403d-be7f-00aea1247b32", "fields": { - "question": 366, - "contribution": 3598, - "answer": 2, - "count": 4 + "question": 340, + "contribution": 3693, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c7c2d56-36df-4c7e-8683-a61bb0e6369b", + "pk": "13bcf703-2379-48e6-a358-bfc9f35bbe20", "fields": { - "question": 462, - "contribution": 4091, - "answer": 4, - "count": 1 + "question": 258, + "contribution": 4120, + "answer": 1, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c7d4d55-43e3-423e-94e8-4eede512954a", + "pk": "13c57829-91dd-4520-a797-44b6c9e4075f", "fields": { - "question": 320, - "contribution": 3354, + "question": 438, + "contribution": 4008, "answer": 1, - "count": 13 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c800925-6fdc-494b-af53-56af819ae922", + "pk": "13d29f59-baba-4a86-b87f-f10c9b0e6b5f", "fields": { - "question": 339, - "contribution": 1644, - "answer": 0, + "question": 337, + "contribution": 3645, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c85ef44-7d7e-4d16-8ceb-cae63eca9b1a", + "pk": "13d976c6-2da8-4e08-afdd-6ed75fad7154", "fields": { - "question": 371, - "contribution": 4154, - "answer": 1, - "count": 5 + "question": 331, + "contribution": 3679, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c8f016e-381c-4434-a658-d764b6680ada", + "pk": "13dfd4b5-e5ac-4858-bf91-3c38da042da6", "fields": { - "question": 326, - "contribution": 3519, - "answer": 2, - "count": 9 + "question": 257, + "contribution": 1634, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c936eb1-7d68-4ac7-a642-aeebcbbc2f72", + "pk": "13f0d5e8-5fdd-41e5-9d9d-9f4c31babae9", "fields": { - "question": 336, - "contribution": 3454, - "answer": 2, - "count": 1 + "question": 368, + "contribution": 3423, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c93de35-6138-4072-9b3d-382e5b7b7a4e", + "pk": "13f1d4d0-a84c-4d2b-81ba-c5bd787a09da", "fields": { - "question": 321, - "contribution": 1837, - "answer": 5, - "count": 1 + "question": 258, + "contribution": 908, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2c9984db-0769-4b80-a0d7-dbf832ab3adc", + "pk": "13f68908-562d-4b7f-9df9-04f24678bc14", "fields": { - "question": 477, - "contribution": 3885, - "answer": -2, - "count": 1 + "question": 332, + "contribution": 3936, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2caf2d25-20d7-4163-95c1-758946be7dfa", + "pk": "140ef011-3606-496b-bd3d-e64f3ae2771f", "fields": { - "question": 472, - "contribution": 3434, + "question": 319, + "contribution": 3739, "answer": 1, - "count": 12 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2cc18819-a422-48a0-a6d2-faa34531edfb", + "pk": "1414ca76-ce3f-4874-ad26-36747591fc0f", "fields": { - "question": 343, - "contribution": 3373, - "answer": 2, + "question": 463, + "contribution": 4283, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2cc3b51c-e823-4644-bd7d-28dca08d0286", + "pk": "141713ae-6879-4615-80d6-7c22bb01a9a1", "fields": { - "question": 355, - "contribution": 1776, - "answer": 2, - "count": 2 + "question": 473, + "contribution": 4185, + "answer": -1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2cc694af-ccbf-4c31-804e-18506c98cbec", + "pk": "141b20b9-12ad-463b-bc14-a644c870f763", "fields": { - "question": 338, - "contribution": 918, + "question": 357, + "contribution": 1187, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2cc96730-b988-4b2a-878f-28153e5da167", + "pk": "142646d8-692c-4cd9-b5c8-7fccb6db4985", "fields": { - "question": 340, - "contribution": 826, - "answer": 3, - "count": 1 + "question": 339, + "contribution": 3482, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ccb8a2a-787d-4fdb-bfe7-c91de782404f", + "pk": "1427b2bc-187f-4568-8284-8473ed84fcd8", "fields": { - "question": 370, - "contribution": 4278, - "answer": 1, - "count": 2 + "question": 255, + "contribution": 1634, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2cd69c0d-f16e-4dca-9376-c487ed4ef150", + "pk": "142c90d7-a04b-4743-bb3f-92b5f73bf8c7", "fields": { - "question": 255, - "contribution": 1724, - "answer": 2, - "count": 2 + "question": 327, + "contribution": 1297, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2cd7bded-e590-4b3e-a98c-b3bfad3eef5b", + "pk": "1434e829-b65d-4557-9db6-f8baa5fe6592", "fields": { - "question": 354, - "contribution": 1243, - "answer": 1, - "count": 4 + "question": 346, + "contribution": 4190, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2cdcab9d-0855-4e69-bdfd-61805ffe78ba", + "pk": "143f84c9-a5a7-4729-ac51-5643c5c871fc", "fields": { - "question": 343, - "contribution": 1246, + "question": 346, + "contribution": 1202, "answer": 1, "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2cdf5a81-c267-4afc-9c30-5440fbb41bf1", + "pk": "14429ac5-fc06-4a10-9af6-6c294a4add72", "fields": { - "question": 435, - "contribution": 4052, + "question": 355, + "contribution": 3518, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ce1500c-602f-464d-bcee-3f122448a70a", + "pk": "144a20c9-71b5-4396-b691-81acd96fbeea", "fields": { - "question": 473, - "contribution": 4138, - "answer": -2, - "count": 1 + "question": 255, + "contribution": 3474, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ce5bd49-2a55-4bfb-9a6c-908ba5ba623f", + "pk": "1455543f-b1c3-43ad-9151-3dd50f5d2fa1", "fields": { - "question": 257, - "contribution": 1724, - "answer": 2, - "count": 2 + "question": 348, + "contribution": 3383, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ce7e31c-de59-4482-903c-b1bddd9dea4c", + "pk": "1460600d-0d14-4c7a-b1f7-4e87cbf5a206", "fields": { - "question": 340, - "contribution": 894, - "answer": 3, - "count": 1 + "question": 346, + "contribution": 3546, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ce83712-2c9a-4fa1-bd5c-aad0567f0d0f", + "pk": "14615172-ef08-43b2-9056-be1daa879dcd", "fields": { - "question": 337, - "contribution": 4122, - "answer": 3, + "question": 432, + "contribution": 4090, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2cec3f98-3e7f-4f69-a6a4-02e33bb32d59", + "pk": "147053ee-2f2c-480b-9af7-8f92bfc44dbb", "fields": { - "question": 321, - "contribution": 1626, - "answer": 4, - "count": 4 + "question": 325, + "contribution": 1780, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2cef6da6-d59a-4048-acde-73a1db7d8c20", + "pk": "1470924d-ac17-4685-9354-8580170071d9", "fields": { - "question": 475, - "contribution": 3727, - "answer": 3, - "count": 1 + "question": 325, + "contribution": 4101, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2cf63bb1-c333-455d-807c-cd00016fdaa0", + "pk": "14741071-02c0-4da7-9c4a-98afae49b732", "fields": { - "question": 322, - "contribution": 912, - "answer": 5, + "question": 360, + "contribution": 3648, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d06541d-e04d-40d8-84cd-d283e1025ec1", + "pk": "14800118-cab9-46d7-b23e-385f0032444a", "fields": { - "question": 344, - "contribution": 3879, - "answer": 1, - "count": 3 + "question": 326, + "contribution": 1154, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d14573f-b5fd-4d58-9bcb-fd43c8a78d5c", + "pk": "148d0235-7200-40a6-b952-aba60db3df17", "fields": { - "question": 362, - "contribution": 3918, - "answer": 1, - "count": 1 + "question": 328, + "contribution": 4101, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d173af2-d85d-4bef-838e-7286bc3eac6e", + "pk": "148dff94-9e16-406f-aa67-6f9915f08fbf", "fields": { - "question": 322, - "contribution": 1634, - "answer": 4, + "question": 363, + "contribution": 3916, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d1a89ee-241b-4802-9183-a1fd28d91d97", + "pk": "14903d66-80f3-4085-a649-abecb83fbff8", "fields": { - "question": 333, - "contribution": 3882, - "answer": 5, - "count": 2 + "question": 345, + "contribution": 919, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d1e94ff-7615-4abd-871e-1afcacd0cbb9", + "pk": "149a16d0-1fe2-469a-a9ee-d8da7197f8f3", "fields": { - "question": 348, - "contribution": 3899, + "question": 326, + "contribution": 3885, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d2238af-7719-4e5d-a8a1-ac25efa07aba", + "pk": "149e606d-4992-4db5-95f0-829abd9632ae", "fields": { - "question": 344, - "contribution": 3855, - "answer": 1, - "count": 6 + "question": 350, + "contribution": 4022, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d24b7cf-1055-421a-8162-7818cd8b3ef6", + "pk": "14a6374b-20da-42d8-b95d-34d737bf796f", "fields": { - "question": 327, - "contribution": 881, + "question": 262, + "contribution": 1837, "answer": 2, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d25187d-74cf-459b-b57b-15d88588c275", + "pk": "14a86fd3-4c41-49ea-83bb-86700563d5dc", "fields": { - "question": 325, - "contribution": 3391, - "answer": 4, - "count": 3 + "question": 320, + "contribution": 908, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d3be806-2dbb-44c2-8f0f-7d92fe5e2bf5", + "pk": "14c26311-e35b-424c-b8a8-2838fe31ab82", "fields": { "question": 327, - "contribution": 837, - "answer": 2, + "contribution": 3722, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d456657-8d51-4328-b586-a4d7cdab20ee", - "fields": { - "question": 319, - "contribution": 3462, - "answer": 2, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "2d469580-8198-4383-ae4c-f9eb73faf08d", + "pk": "14c455c5-2725-42f6-a122-ce33734f482e", "fields": { - "question": 356, - "contribution": 1849, - "answer": 2, - "count": 2 + "question": 354, + "contribution": 1782, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d514cca-e81e-4098-a4c5-9bd22fa0dbe1", + "pk": "14c47939-5ecd-43a8-80b5-b25f0a5365e7", "fields": { - "question": 345, - "contribution": 1205, + "question": 355, + "contribution": 1244, "answer": 1, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d5b2ce1-8328-4dd3-8692-341d22d0526b", + "pk": "14c6b4d1-e2c1-4007-9bca-0c0ed01293e1", "fields": { - "question": 461, - "contribution": 4073, - "answer": 2, + "question": 321, + "contribution": 3679, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d5c1a7c-be8a-436a-ae6c-8e7b47a08f61", + "pk": "14c92d10-54e7-4166-908c-99513af71d98", "fields": { - "question": 322, - "contribution": 3390, - "answer": 3, - "count": 7 + "question": 339, + "contribution": 858, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d61a4e8-7aab-48fd-b170-88d6ec85b7c8", + "pk": "14cddbae-598d-49d9-b821-03cb2a85fa97", "fields": { - "question": 328, - "contribution": 1776, + "question": 258, + "contribution": 4100, "answer": 3, - "count": 7 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d76565d-3df3-4460-958c-7ebd071947fc", + "pk": "14d3449a-0d64-40e3-b1f5-df206c6b1c62", "fields": { - "question": 257, - "contribution": 912, - "answer": 2, + "question": 336, + "contribution": 788, + "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d785511-f238-4122-bd82-5196fe1eee16", + "pk": "14d57a84-9609-41ee-af37-6b83eebc609b", "fields": { - "question": 397, - "contribution": 3781, - "answer": 3, - "count": 2 + "question": 317, + "contribution": 3422, + "answer": 1, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d7dfdc0-8fc5-47c2-b35d-803ec71391ab", + "pk": "14d9252d-993a-4584-ab79-038ad065c3e1", "fields": { - "question": 344, - "contribution": 3373, + "question": 366, + "contribution": 4205, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d83b766-a8c5-404f-b069-2cf3f56e2505", + "pk": "14df2655-5b00-487b-b8eb-9dd0f1e02a6b", "fields": { - "question": 326, - "contribution": 3395, - "answer": 1, - "count": 3 + "question": 370, + "contribution": 3712, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d8636f3-79d8-48da-a838-933626f93ea2", + "pk": "14e3e0f4-d893-43af-a670-9ec47687dd28", "fields": { - "question": 331, - "contribution": 836, - "answer": -1, + "question": 356, + "contribution": 1187, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d8eed82-7481-4a3a-9abe-13186ac836c9", + "pk": "14efc04d-e44f-445b-8bdf-f377515e03b6", "fields": { - "question": 321, - "contribution": 4028, - "answer": 2, + "question": 475, + "contribution": 4072, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d8f5ab2-9fd1-4e47-9556-352eca8da27a", + "pk": "14f3aedf-b64d-4bbd-9f9e-caa116cdb029", "fields": { - "question": 322, - "contribution": 1724, - "answer": 2, + "question": 348, + "contribution": 1869, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2d962fe8-f40d-4e60-993f-054d6c73c72a", - "fields": { - "question": 354, - "contribution": 1154, - "answer": 4, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "2d9ed50a-fe7f-4eea-935b-2e8a5e0c56fd", + "pk": "14f8e825-7d26-4695-a3e9-eb9ab98e9620", "fields": { - "question": 361, - "contribution": 3647, + "question": 332, + "contribution": 4154, "answer": 1, - "count": 3 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2da4d60b-8bca-47a3-823b-d14259c30c7a", + "pk": "14fd3267-a314-4485-8eb4-a36c76cb4baf", "fields": { - "question": 355, - "contribution": 3782, - "answer": 2, + "question": 370, + "contribution": 4232, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2da6eaa1-1351-4ea3-b9b3-1f349e0f31c4", + "pk": "151876e3-7dab-4a73-bad8-0ffea55c3fcf", "fields": { - "question": 255, - "contribution": 822, + "question": 319, + "contribution": 3683, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2db980ab-9212-46d4-a6aa-18f9e4dfa805", + "pk": "151905e0-aac7-40d7-9870-908a0c95c803", "fields": { - "question": 391, - "contribution": 3711, - "answer": 2, + "question": 362, + "contribution": 1804, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2dc78e6d-ac26-4cab-b23b-533a04200d66", + "pk": "151b4c91-17c0-4f2c-93ce-b5c61405bd11", "fields": { - "question": 325, - "contribution": 1777, - "answer": 2, - "count": 2 + "question": 257, + "contribution": 3354, + "answer": 1, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2dcdea0e-b463-4703-862f-b50b9f79a3a8", + "pk": "15390996-3950-4425-a187-b3954ab85a6c", "fields": { - "question": 338, - "contribution": 894, + "question": 353, + "contribution": 4223, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2dd3ac68-6c97-4d57-8dea-b7c197e01857", + "pk": "153f11fa-c123-49fd-b146-e6f23612150b", "fields": { - "question": 338, + "question": 336, "contribution": 3703, - "answer": 4, - "count": 2 + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2dd9b44f-f1e8-4073-b1a8-9094508bf9dd", + "pk": "15494577-311a-4a52-800a-03289aa71917", "fields": { - "question": 323, - "contribution": 4128, + "question": 434, + "contribution": 4008, "answer": 2, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2dda4d47-471f-453f-9db5-831d62c21692", + "pk": "154998fd-b5df-47d9-95dd-d8fc6a242ada", "fields": { - "question": 355, - "contribution": 1782, - "answer": 3, + "question": 477, + "contribution": 1802, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ddddd97-a2e8-4155-bde0-a55632cd5f42", + "pk": "154af46b-53c9-4342-a769-e3f07076d68a", "fields": { - "question": 325, - "contribution": 3395, + "question": 326, + "contribution": 3885, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2df9652e-a062-457c-bdad-2f47315593f6", + "pk": "154c2a4b-2018-4c47-ba3d-4e9bb482e0bc", "fields": { - "question": 339, - "contribution": 1694, - "answer": 0, - "count": 1 + "question": 347, + "contribution": 4095, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2dfb0ddb-08b5-4615-a72f-e98310b03856", + "pk": "155368e9-15d4-477e-aeea-fa1306c06c07", "fields": { - "question": 431, - "contribution": 4177, - "answer": 5, - "count": 1 + "question": 367, + "contribution": 3683, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e0584cd-0231-4aa4-b5b2-eeb901f06236", + "pk": "155c9b08-07b8-4ae8-90c4-ce11b945cb50", "fields": { - "question": 337, - "contribution": 3795, + "question": 378, + "contribution": 3775, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e065661-ea34-4f30-9708-bfcd7fe824e7", + "pk": "155e26b4-9814-4235-85d7-b3d1b49c45fc", "fields": { - "question": 347, - "contribution": 4095, - "answer": 3, + "question": 343, + "contribution": 1157, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e12874e-f6d1-4018-9e6b-c39069308ad0", + "pk": "15631ef9-9d30-4e08-a4fa-0e83a1a31032", "fields": { - "question": 437, - "contribution": 4052, + "question": 340, + "contribution": 4002, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e241222-bad5-4a55-beac-204c282476f4", + "pk": "156a586a-0611-4528-9331-94cc18792a4b", "fields": { - "question": 340, - "contribution": 1200, + "question": 321, + "contribution": 4120, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e2cf786-30c8-4921-9517-c8091c92e7fc", + "pk": "156fcf0f-da1c-41ad-bab5-a5c36e964b42", "fields": { - "question": 319, - "contribution": 908, - "answer": 3, - "count": 11 + "question": 343, + "contribution": 3960, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e2d9292-c44e-4aa1-a486-4baaa4ff3ef2", + "pk": "157114ea-4c38-4a05-a088-5a86136f1b08", "fields": { - "question": 255, - "contribution": 880, - "answer": 1, - "count": 11 + "question": 341, + "contribution": 1640, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e2f8e19-a737-4130-87fa-c9b8f2930da2", + "pk": "157db1c3-fd3c-4b48-9bb0-ab1a5a36a83d", "fields": { - "question": 350, - "contribution": 3406, - "answer": 1, - "count": 1 + "question": 338, + "contribution": 3821, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e314ccc-7cd2-477b-9415-3c64411cc2fa", + "pk": "1580d4b3-3ffa-49b7-88f8-74ab87a909f1", "fields": { - "question": 359, - "contribution": 1826, - "answer": 1, - "count": 5 + "question": 317, + "contribution": 3354, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e4a6c67-2320-409d-8c54-2b8dd7d91268", + "pk": "15822dc7-7a1e-431e-ba0f-f30732cd1911", "fields": { - "question": 370, - "contribution": 3610, - "answer": 1, + "question": 335, + "contribution": 1282, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e4b9265-5702-4a1a-b798-918afa210c70", + "pk": "1586514e-86a9-4b96-9eb3-b0bebe315d40", "fields": { - "question": 354, - "contribution": 3546, - "answer": 2, + "question": 316, + "contribution": 3462, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e520e3c-ff2c-47cd-b8e1-a7755f363650", + "pk": "1599028a-e402-471d-83dc-9e69f081c464", "fields": { - "question": 476, - "contribution": 1626, - "answer": 3, - "count": 7 + "question": 320, + "contribution": 4138, + "answer": 2, + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e6647e8-50d9-4695-bce8-91b1c5de9110", + "pk": "15a0823b-fac2-4a08-812d-d53b87fdbad2", "fields": { - "question": 353, - "contribution": 1849, + "question": 368, + "contribution": 3884, "answer": 1, - "count": 3 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e6e81c5-a94c-4142-acaf-3b6a4cb05df6", + "pk": "15abcc83-ba51-4759-bd21-3b5b22e2520a", "fields": { - "question": 338, - "contribution": 1200, + "question": 328, + "contribution": 4023, "answer": 2, - "count": 11 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e7c5f31-8ea4-4ef6-b806-6b51862e037d", + "pk": "15b0d749-5efc-434a-971f-4a17c2e7582a", "fields": { - "question": 344, - "contribution": 1880, - "answer": 3, - "count": 4 + "question": 328, + "contribution": 3666, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e87bda6-a3ea-4b07-b98e-8230f62c7da3", + "pk": "15b95270-3913-4996-9e26-41274b1f3f88", "fields": { - "question": 315, - "contribution": 4022, + "question": 473, + "contribution": 3727, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e97e41d-22fc-4b43-ad07-81969094dd7b", + "pk": "15bed7a3-8190-4b86-9132-123b7a771821", "fields": { - "question": 317, - "contribution": 1612, - "answer": 5, - "count": 1 + "question": 355, + "contribution": 1781, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2e9fed2b-84db-483c-b059-655688bd7bb7", + "pk": "15bf9aab-f035-4724-98a6-b184a4b0c169", "fields": { - "question": 327, - "contribution": 1617, - "answer": 1, - "count": 28 + "question": 369, + "contribution": 3652, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ea6935e-461f-4499-a5d7-5d067e11ac00", + "pk": "15c5d34e-f0b6-48a1-95e7-2fd7a18bb02d", "fields": { - "question": 258, - "contribution": 3422, - "answer": 2, - "count": 6 + "question": 438, + "contribution": 4090, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2eaae023-4417-498e-8c3a-3229335fb138", + "pk": "15db40a0-c610-4aaf-ae33-48eb2244044b", "fields": { - "question": 473, - "contribution": 4128, - "answer": 3, - "count": 3 + "question": 331, + "contribution": 1626, + "answer": 0, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2eab4413-b599-49b6-b3a7-8d9dc3790850", + "pk": "15dd8b33-9bb8-49f7-91a4-798d6756f957", "fields": { - "question": 337, - "contribution": 858, - "answer": 2, + "question": 354, + "contribution": 4037, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2eab6387-9793-43da-91ac-520232483f82", + "pk": "15e5f498-6f7f-4847-b41b-d46caa227254", "fields": { - "question": 326, - "contribution": 3519, + "question": 431, + "contribution": 4177, "answer": 1, - "count": 7 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2eaeae17-c6f2-4354-af92-0c30c99d50e0", + "pk": "15eaa01f-f020-4d59-b64b-ed40e8d12518", "fields": { - "question": 315, - "contribution": 4116, + "question": 346, + "contribution": 4191, "answer": 2, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2eb902bd-3fc8-46a7-a5a6-eae3280905ef", + "pk": "15f79145-6710-4326-af5d-715064a6962e", "fields": { - "question": 349, - "contribution": 3536, - "answer": 1, - "count": 1 + "question": 357, + "contribution": 1785, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2eb9d6eb-91fc-4cdb-b911-46764cca7238", - "fields": { - "question": 341, - "contribution": 3372, - "answer": 5, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "2ebbbe15-4b68-4a4a-b21e-b3bc8014b77a", - "fields": { - "question": 360, - "contribution": 1810, - "answer": 2, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "2ebd612c-9270-4fc8-9d73-b67386914111", + "pk": "160bc143-a003-4b1e-b027-c9732d70276e", "fields": { - "question": 333, - "contribution": 3881, - "answer": 3, - "count": 1 + "question": 331, + "contribution": 4084, + "answer": 0, + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ec2d59a-953d-4152-b4a8-ea38748dbff6", + "pk": "16160e8e-41e9-4f81-b99f-e793f88670fc", "fields": { - "question": 341, - "contribution": 1662, - "answer": 2, - "count": 2 + "question": 368, + "contribution": 1780, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ecac675-05b1-4f7b-a01c-3ae72e9df268", + "pk": "161d175e-d18a-4240-8269-eccc14a3bb48", "fields": { - "question": 362, - "contribution": 1826, - "answer": 4, + "question": 335, + "contribution": 3932, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ecb979d-96f0-490b-b608-4fdf4f168526", + "pk": "1639a352-f257-4dee-a7a5-8a114dc2cfa8", "fields": { - "question": 326, - "contribution": 1681, + "question": 353, + "contribution": 4037, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ed55287-678c-41ec-9a18-bfa579db7377", + "pk": "163fe5bd-a8be-417f-bfc6-892fda83b9a8", "fields": { - "question": 355, - "contribution": 3546, + "question": 332, + "contribution": 3552, "answer": 2, - "count": 2 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2edbdb72-9b50-45ec-87a7-03b55004608f", + "pk": "163ffbe1-17bc-4401-af40-c45fb0b8294f", "fields": { - "question": 412, - "contribution": 3974, - "answer": 0, + "question": 361, + "contribution": 3920, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ede91e0-7081-4d5d-bf26-d38401a14902", + "pk": "164b04d0-8593-43d8-aed6-eb29b756a0aa", "fields": { - "question": 434, - "contribution": 4008, + "question": 348, + "contribution": 3934, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ee13e73-ab9e-4c48-8060-4a7efde7a9d3", + "pk": "164d00ec-ee5a-45f3-8042-d6b279c56f13", "fields": { - "question": 332, - "contribution": 4156, - "answer": 1, - "count": 10 + "question": 344, + "contribution": 887, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ee625cf-b38c-41cb-96f8-beddf5d1ecfe", + "pk": "165260d6-86db-4e13-a2fa-fe249d69235c", "fields": { - "question": 332, - "contribution": 3961, - "answer": 1, + "question": 475, + "contribution": 4094, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2eeb9d3a-dbe6-47c3-a660-bfa3c756ac55", + "pk": "16528038-be16-4c9f-b41e-8220c5295f0c", "fields": { - "question": 259, - "contribution": 880, + "question": 338, + "contribution": 3681, "answer": 1, - "count": 31 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "2eec7b76-b1fb-476a-861e-e0d86bdc2ee4", - "fields": { - "question": 472, - "contribution": 3508, - "answer": 5, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ef37ab3-b329-418b-a12f-80345b28c348", + "pk": "16564790-8728-4b70-a435-634cac313e94", "fields": { - "question": 340, - "contribution": 918, + "question": 356, + "contribution": 4278, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ef7f637-9c2a-4ec6-a120-9f01a28d4f57", + "pk": "165c6bb0-4fa6-46b6-ae44-81d5bebf8d12", "fields": { - "question": 344, - "contribution": 3528, - "answer": 1, + "question": 406, + "contribution": 3974, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2efaa44d-8940-4554-bec2-d1fecbdf1496", + "pk": "165ee96e-0b9e-47a5-938f-a3e206bbdd23", "fields": { - "question": 338, - "contribution": 3685, - "answer": 1, - "count": 4 + "question": 260, + "contribution": 4120, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f00a9b9-b29f-4d59-b7fe-8e176aaa857c", + "pk": "16622595-1abd-42e1-9cd1-c686580a2fbe", "fields": { - "question": 326, - "contribution": 3884, - "answer": 1, - "count": 8 + "question": 338, + "contribution": 886, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f02596b-e6b7-47be-b112-0a70b21c4e8f", + "pk": "166d6029-ac02-4f41-9e9e-6423434fde40", "fields": { - "question": 475, - "contribution": 3723, - "answer": 0, + "question": 368, + "contribution": 4085, + "answer": 3, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f04d835-3026-49ad-adf0-44e3a9199540", + "pk": "166f7835-fe77-4a8c-be33-9c7610d41368", "fields": { - "question": 319, - "contribution": 864, - "answer": 2, + "question": 323, + "contribution": 862, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f28f74b-461f-4444-8068-8dcba7db6c57", + "pk": "1674fa96-03aa-456c-9163-eafde03d7438", "fields": { - "question": 366, - "contribution": 3592, + "question": 357, + "contribution": 1784, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f29c78c-e7fe-41af-b109-cea46007cde2", + "pk": "1677d1e1-0ef2-4941-a65d-c8ccd58179aa", "fields": { - "question": 346, - "contribution": 1246, - "answer": 5, + "question": 345, + "contribution": 1880, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f30e6a3-482f-4f7a-97ab-18e0919da7c6", - "fields": { - "question": 473, - "contribution": 1748, - "answer": 1, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "2f32f356-1f34-4a50-8727-d406139409aa", + "pk": "167d7517-bd41-43c8-8e72-de52ac14be91", "fields": { - "question": 339, - "contribution": 3645, - "answer": -1, - "count": 2 + "question": 257, + "contribution": 822, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f36120c-edab-40bc-9b8f-446a26a1570c", + "pk": "16821891-e3c7-4f5b-bc9e-95f5778c4960", "fields": { - "question": 476, - "contribution": 1668, - "answer": 0, + "question": 328, + "contribution": 3859, + "answer": 2, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f449721-b29d-4b6c-957d-1c77773180ed", + "pk": "168fc63e-a967-42ae-baba-b794b8d6acdd", "fields": { - "question": 258, - "contribution": 4028, + "question": 356, + "contribution": 3834, "answer": 1, - "count": 11 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f474242-6403-4058-a03c-f7eb78b30189", + "pk": "16904a96-08cd-49ad-9d51-478ba53721e4", "fields": { - "question": 473, - "contribution": 3751, - "answer": 0, + "question": 477, + "contribution": 1777, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f479de4-1559-4e8d-ad86-7c63d6a8ff0f", + "pk": "1691bf42-1b50-472f-bb6d-11fe67a4e7d5", "fields": { - "question": 354, - "contribution": 1784, + "question": 326, + "contribution": 1681, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f4a88e1-a52a-4336-90d9-b0fe98150a29", + "pk": "16921958-a126-489c-be2d-c09950d07b6b", "fields": { - "question": 379, - "contribution": 3781, - "answer": 2, - "count": 1 + "question": 255, + "contribution": 4022, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f4cdfc0-8a75-4524-973c-f5e2c8021d92", + "pk": "169b0753-b7e8-4e82-9788-2ba06475ad66", "fields": { - "question": 332, - "contribution": 4152, - "answer": 5, - "count": 1 + "question": 472, + "contribution": 4185, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f571286-7c65-4f48-8bc9-6d0acf442845", + "pk": "169d8ccd-bca2-46b5-84dc-d447f74cf9a6", "fields": { - "question": 350, - "contribution": 3466, - "answer": 3, - "count": 1 + "question": 257, + "contribution": 3422, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f5bde6e-f606-4912-97b1-3ff77d569464", + "pk": "16a65bc8-0099-4352-bbc7-b54dcfcfe880", "fields": { - "question": 366, - "contribution": 3631, + "question": 337, + "contribution": 3450, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f6f0c42-c7c0-481b-a564-215908ae0d82", + "pk": "16b47a14-80e8-400d-bc08-651ed8cb1c3c", "fields": { - "question": 325, - "contribution": 3883, - "answer": 1, - "count": 8 + "question": 317, + "contribution": 884, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f73ada5-f594-40af-9818-c173238393c3", + "pk": "16b7e1ec-8140-4581-b9e3-6a916a1f5586", "fields": { - "question": 339, - "contribution": 3482, - "answer": -1, - "count": 1 + "question": 319, + "contribution": 3721, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f789b53-7c99-4a49-b9c6-9efa635ca713", + "pk": "16ba7f72-e2c5-462d-a33f-fe706623a557", "fields": { - "question": 326, - "contribution": 1298, + "question": 357, + "contribution": 1187, "answer": 1, - "count": 8 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f807006-ad2a-4ac4-815c-37bcfdbc886b", + "pk": "16bcb375-eb01-4e70-88bb-e1edcfba940b", "fields": { - "question": 335, - "contribution": 3598, - "answer": 3, + "question": 368, + "contribution": 1780, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f8d0304-e5ae-48c9-9db9-e3dc85f51047", + "pk": "16c23b2d-3742-4de4-a6c0-9a7f61780141", "fields": { - "question": 477, - "contribution": 3885, - "answer": 0, - "count": 4 + "question": 317, + "contribution": 822, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f90c888-ec4f-4d3c-b4f6-cf85ca46565c", + "pk": "16c545e9-0e90-412f-bb92-060cbda64249", "fields": { - "question": 341, - "contribution": 1710, - "answer": 5, + "question": 337, + "contribution": 4122, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f91adf5-9f94-4c4a-a250-7547fa2c1df7", + "pk": "16cd6aa2-65bf-4737-9e2b-951aef7cc7c6", "fields": { - "question": 347, - "contribution": 3545, + "question": 340, + "contribution": 858, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2f93c19a-c05b-4aba-b6c1-68516575d657", + "pk": "16d2da6f-bec4-4ab1-a6c1-9db0507a6093", "fields": { - "question": 359, - "contribution": 3916, + "question": 336, + "contribution": 3723, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2fba9422-9442-44f5-b67b-fe081a9e415d", + "pk": "16d3fc9f-b0c4-486c-b82c-192cb29d620f", "fields": { - "question": 340, - "contribution": 3452, - "answer": 2, - "count": 1 + "question": 473, + "contribution": 3685, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2fbfea7f-67bc-4e51-954c-cf7a1c736790", + "pk": "16dbfa52-b4ac-4740-bf07-d54b70f54e28", "fields": { - "question": 348, - "contribution": 1868, + "question": 349, + "contribution": 3939, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2fcefe92-d912-41c5-b7c0-124689c66437", + "pk": "16dd7ea9-1d8a-4936-886a-3d9fd9bd573b", "fields": { - "question": 349, - "contribution": 3728, - "answer": 3, + "question": 433, + "contribution": 4052, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2fd8e282-91ad-4c1c-a87d-adeef8670c43", + "pk": "16f89fdd-3803-45bd-82e3-3a4dedefce47", "fields": { - "question": 321, - "contribution": 3472, - "answer": 2, - "count": 6 + "question": 345, + "contribution": 3607, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2fdc3414-21ea-40f6-a924-f15bb808f567", + "pk": "16fe34d5-85c3-4ea1-8c3a-f04355b54566", "fields": { - "question": 371, - "contribution": 3631, - "answer": 3, - "count": 2 + "question": 348, + "contribution": 1735, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2fde3688-58f6-4215-b656-cb8f7470af97", + "pk": "17060440-f7e8-494e-b732-3576676b2440", "fields": { - "question": 477, - "contribution": 1635, - "answer": -2, - "count": 2 + "question": 473, + "contribution": 1702, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2fe0b18c-931b-46bf-8518-bb4396febab1", + "pk": "17208c67-f17d-4eb5-9d08-9974e9307adf", "fields": { - "question": 328, - "contribution": 3435, - "answer": 3, - "count": 1 + "question": 333, + "contribution": 837, + "answer": 1, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2febaaa4-81f7-4beb-962b-bc2db9cc1299", + "pk": "1728c38c-6462-4ed6-8b1b-59a6ab3f93ef", "fields": { - "question": 255, - "contribution": 912, - "answer": 2, - "count": 15 + "question": 359, + "contribution": 1807, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2fecdeed-cf0d-434f-a561-eacec3ad68de", + "pk": "1731538c-978c-42b4-b10a-4f7d6f8e5651", "fields": { "question": 319, - "contribution": 3474, + "contribution": 3665, "answer": 1, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2fed36a1-192a-4685-bd21-4bf8c77e797a", + "pk": "17344dd0-587a-4c37-86c7-4b7c9ff9c9b2", "fields": { - "question": 361, - "contribution": 3916, - "answer": 3, - "count": 1 + "question": 477, + "contribution": 1613, + "answer": -1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2fee7379-2472-4e30-a0f6-8b8566283996", + "pk": "173ca170-3b1a-4faf-b55a-cc52e8578a97", "fields": { - "question": 317, - "contribution": 4028, - "answer": 4, + "question": 328, + "contribution": 1659, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ff92588-b15a-4695-b4fc-7e5b56638f6a", + "pk": "1742b96e-1f90-4cc4-a7c7-ec04d42de108", "fields": { - "question": 341, - "contribution": 1702, - "answer": 4, - "count": 2 + "question": 473, + "contribution": 4138, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ffec9a2-2c0d-4d2f-8ccd-b49e0cf52788", + "pk": "174495ef-1dfb-41b3-8f5a-80b73586125f", "fields": { - "question": 320, - "contribution": 1837, - "answer": 2, - "count": 12 + "question": 349, + "contribution": 4129, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "2ffed84b-1829-4840-8d91-851501785153", + "pk": "17462482-0882-401e-80a8-780d0dd0ca4c", "fields": { - "question": 352, - "contribution": 4022, - "answer": 2, - "count": 1 + "question": 320, + "contribution": 3474, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30011215-bb05-47fe-b1ca-a9cbcfa6f64b", + "pk": "1756943c-7c74-4f75-83ce-466c2122f618", "fields": { - "question": 316, - "contribution": 3406, - "answer": 2, + "question": 328, + "contribution": 837, + "answer": 3, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "300fc170-e9ae-4c00-8c2a-b674d7058797", + "pk": "1758a822-e715-469d-9960-f6b06daaee9f", "fields": { - "question": 259, - "contribution": 4046, - "answer": 2, - "count": 2 + "question": 346, + "contribution": 4129, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3013c544-3863-4328-815e-610d7e581a5f", + "pk": "175b832a-5f48-4240-be08-f401459af98a", "fields": { - "question": 326, - "contribution": 3556, - "answer": 1, - "count": 4 + "question": 337, + "contribution": 826, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3019637c-93c3-4f0a-9138-070d18b6856d", + "pk": "175cc14e-45a5-4d6f-8eee-0cd87a491f80", "fields": { - "question": 327, - "contribution": 3726, + "question": 377, + "contribution": 3711, "answer": 1, - "count": 16 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3038137e-0721-493d-b512-9f3a8767025a", + "pk": "17609df2-cfe6-4105-a174-ea5d3c57c95d", "fields": { - "question": 331, - "contribution": 3739, - "answer": 1, - "count": 3 + "question": 340, + "contribution": 3645, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30487697-b418-4fcb-ad37-d5d4abcd1aed", + "pk": "1762304c-efde-4a27-9981-509e2aaaf0ce", "fields": { - "question": 344, - "contribution": 1881, - "answer": 3, + "question": 473, + "contribution": 840, + "answer": 0, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "304c88a4-c480-4815-91f9-0e7cb1627c2b", + "pk": "17624337-bb3f-40bc-b467-7369fadb3394", "fields": { - "question": 349, - "contribution": 1863, - "answer": 3, - "count": 1 + "question": 347, + "contribution": 1151, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "304d796f-23a9-4c75-b274-0041eaa0d959", + "pk": "17644e77-9819-4961-84ab-479e84ec56b0", "fields": { - "question": 348, - "contribution": 1204, + "question": 371, + "contribution": 4261, "answer": 2, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30542f34-cb8d-4050-aef9-c10ef06b2016", + "pk": "1769a6e2-2aa9-45de-8655-4aba37f82f31", "fields": { - "question": 348, - "contribution": 4190, - "answer": 2, - "count": 2 + "question": 335, + "contribution": 3592, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "305d6559-6252-4721-9717-cb9cc928657b", + "pk": "177059ce-d22d-4faa-a40b-b9f6b861578e", "fields": { - "question": 259, - "contribution": 1612, - "answer": 2, - "count": 9 + "question": 476, + "contribution": 1626, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3060303d-4a80-4466-8f03-b7801676e640", + "pk": "1776de1d-bf5c-4bb6-b690-b469548fcd89", "fields": { - "question": 317, - "contribution": 4120, - "answer": 3, - "count": 5 + "question": 360, + "contribution": 1826, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30663782-72e7-426e-bc89-b0dc7ba3144c", + "pk": "1781ae55-79dd-4509-b8f6-f53e4bbb3661", "fields": { - "question": 355, - "contribution": 3607, - "answer": 4, + "question": 473, + "contribution": 3440, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3068968a-3bdb-498b-af5f-0a76c096bc43", + "pk": "1798c77b-1c4d-459e-b1ca-86d3f5415c75", "fields": { - "question": 316, - "contribution": 1612, + "question": 257, + "contribution": 4084, "answer": 2, - "count": 11 + "count": 24 } }, { "model": "evaluation.ratinganswercounter", - "pk": "306beae7-760b-449d-8190-a94b93b95160", + "pk": "179baf6f-afd2-44ec-b42d-b8621a95e881", "fields": { - "question": 316, - "contribution": 908, + "question": 337, + "contribution": 804, "answer": 4, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30902dd5-824d-4b81-9ff2-e9cf42a47608", + "pk": "179ddc37-5bd3-4f24-a45b-5a2e115f18e7", "fields": { - "question": 362, - "contribution": 3893, + "question": 343, + "contribution": 3912, "answer": 1, - "count": 18 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3090c584-fe5e-4190-bc9f-c2ff0183cd11", + "pk": "17a4918d-3527-4122-879e-9f3b16835395", "fields": { - "question": 339, - "contribution": 1662, + "question": 262, + "contribution": 3390, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "309742be-42f1-4c05-aea4-75ad254c4042", + "pk": "17a4d1ec-5a5b-440e-a333-7213fcbc54cb", "fields": { - "question": 326, - "contribution": 3680, - "answer": 3, - "count": 1 + "question": 319, + "contribution": 908, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30b30859-6d9a-41cc-832e-2434e49102d8", + "pk": "17a7155e-8b6c-4454-8839-408175ddfd56", "fields": { - "question": 325, - "contribution": 1802, + "question": 363, + "contribution": 1826, "answer": 3, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30c16a4a-dd4a-4634-be0a-b9a5c6a4f479", + "pk": "17a8276e-d177-40fa-9936-46fef8799102", "fields": { - "question": 338, - "contribution": 886, - "answer": 5, - "count": 3 + "question": 356, + "contribution": 1781, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30d47c84-a65b-4736-8e94-c69095a19ddd", + "pk": "17a99b4c-f147-4190-8fa9-80b8902c2a21", "fields": { - "question": 260, - "contribution": 3474, + "question": 332, + "contribution": 4152, "answer": 2, - "count": 7 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30dbee39-5018-4faf-abcd-3297c3d103f4", + "pk": "17afc56d-276a-4209-899b-72c7e7a628d8", "fields": { - "question": 337, - "contribution": 3735, + "question": 473, + "contribution": 3727, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30e2ac9d-1e90-42c3-89f9-ce79cf7922b3", + "pk": "17afd253-fa4e-4be1-9798-3ff7e78fa969", "fields": { - "question": 326, - "contribution": 1288, + "question": 477, + "contribution": 4203, "answer": 2, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30e8e8d9-91a5-40ce-81a2-701af748cbe5", + "pk": "17b0f665-a22d-4652-8a05-52704de57b52", "fields": { - "question": 344, - "contribution": 3941, + "question": 355, + "contribution": 3517, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30e9d23b-9f3f-4783-b5ce-9a3a9b5e754c", + "pk": "17b48ce6-b05c-4a65-a184-0be5ec45f934", "fields": { - "question": 326, - "contribution": 1776, - "answer": 5, - "count": 1 + "question": 327, + "contribution": 3556, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30ec2cbc-ae08-4488-8102-aaef2fe21b76", + "pk": "17bba9ce-c093-4938-a4cb-d15892df0b41", "fields": { - "question": 473, - "contribution": 880, - "answer": -3, - "count": 2 + "question": 371, + "contribution": 3551, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30ecb834-e0d7-4968-afe4-ff4b7bf286d0", + "pk": "17c3dbf6-17f2-498b-b772-9550fff4e098", "fields": { - "question": 328, - "contribution": 4101, + "question": 344, + "contribution": 4095, "answer": 1, "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30ecf2ee-a40a-4e50-8ce5-9c349dd8f9d8", + "pk": "17c3eb37-6531-4601-9cdd-d59a9db591b8", "fields": { - "question": 260, - "contribution": 884, + "question": 463, + "contribution": 4073, "answer": 2, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "30edb1d3-82dc-4b09-bbe4-01125c093e82", - "fields": { - "question": 475, - "contribution": 862, - "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30ee3379-5f76-4270-b989-7e1b0a62c7d4", + "pk": "17c83b55-a482-4de0-a729-0fc9e7ee561f", "fields": { - "question": 428, - "contribution": 4155, - "answer": 2, - "count": 5 + "question": 336, + "contribution": 3645, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30f00b7f-3549-4cc5-8a04-3cc4bade1c13", + "pk": "17d6f025-1383-4dc4-a376-f9abd4a1213e", "fields": { - "question": 367, - "contribution": 3434, - "answer": 3, - "count": 6 + "question": 348, + "contribution": 3525, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30f56991-d0f6-47ae-bb39-8b55af450347", + "pk": "17deb6ba-a763-43bd-a854-586fb32c85e8", "fields": { - "question": 321, - "contribution": 836, + "question": 327, + "contribution": 1613, "answer": 2, - "count": 6 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "30f9f5ef-4fc4-452f-906b-92b33e71b71c", + "pk": "17df033f-b1d4-4ae5-9f9a-84c81733ac3b", "fields": { - "question": 328, - "contribution": 823, + "question": 353, + "contribution": 3609, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3104acc7-f105-4e78-a463-2345275e487f", + "pk": "17e014c1-6e04-4573-b4bf-efc187bae006", "fields": { - "question": 337, - "contribution": 886, - "answer": 3, - "count": 5 + "question": 323, + "contribution": 4138, + "answer": 2, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3109788a-77bb-40ec-b2fa-726cf6ffb15d", + "pk": "17e21b7e-4c0d-457e-9994-0a59149afd62", "fields": { - "question": 360, - "contribution": 3649, + "question": 464, + "contribution": 4283, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "311a4182-7809-4850-af5c-72aed63d6bbf", + "pk": "17e70e61-bcda-4bb0-8a74-38d39fb8ec9d", "fields": { - "question": 325, - "contribution": 1669, - "answer": 2, - "count": 2 + "question": 321, + "contribution": 3679, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31345f59-21d4-40d8-a804-419f73ba9f34", + "pk": "17e8cd5c-7146-4773-a712-b54487f6c73f", "fields": { - "question": 473, - "contribution": 3683, - "answer": 1, + "question": 360, + "contribution": 1827, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "314ca0c8-de10-48d1-9303-0f3749708b77", + "pk": "181464e8-d24c-4533-9f70-3272ad418a8e", "fields": { - "question": 477, - "contribution": 4101, - "answer": 0, - "count": 19 + "question": 451, + "contribution": 4185, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "314f3cba-6c32-448e-9792-adac5cc3d6f1", + "pk": "1816a9e2-ec19-4c72-81cb-0592a84d4c93", "fields": { - "question": 336, - "contribution": 4052, - "answer": 4, - "count": 2 + "question": 327, + "contribution": 3391, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31541786-f1d8-4199-994e-cd815e8b0c98", + "pk": "1817a7c3-cde8-408a-bd51-e04baaf8bfff", "fields": { - "question": 341, - "contribution": 1660, - "answer": 3, - "count": 1 + "question": 428, + "contribution": 4154, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3156cf6e-7884-40f3-865c-69c041ca562f", + "pk": "182dbd8f-addc-42fb-b761-059e379dae76", "fields": { - "question": 354, - "contribution": 4271, + "question": 338, + "contribution": 1662, "answer": 1, + "count": 6 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "1834a5e3-ccd8-458b-bd38-d348f078046f", + "fields": { + "question": 369, + "contribution": 1826, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31597dc0-0d2b-4ac8-947f-ea0b3e73d23c", + "pk": "184055a5-3d8f-4d97-931a-496067ada17f", "fields": { - "question": 328, - "contribution": 3680, + "question": 322, + "contribution": 3683, "answer": 2, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "316a7796-5424-49b9-a8d3-f5468df66f49", + "pk": "1845d95e-3203-43ef-8009-36e591d39464", "fields": { - "question": 351, - "contribution": 3454, + "question": 348, + "contribution": 1735, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3172ac85-6452-4445-a8f2-9923e2cbd25e", + "pk": "184642d4-ad91-4873-b69f-8bc66de2674c", "fields": { - "question": 366, - "contribution": 4205, - "answer": 4, - "count": 1 + "question": 322, + "contribution": 4138, + "answer": 3, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31805cd2-d0f4-4576-ab7e-4ba414dc9c2c", + "pk": "185df0c0-41a0-4444-aa4f-e1f4cd745916", "fields": { - "question": 473, - "contribution": 1634, + "question": 357, + "contribution": 3529, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "318486df-fc8c-403e-a152-0e11b307d4d4", + "pk": "186052e6-d5d7-4691-a7e5-ddee4e6ce31d", "fields": { - "question": 321, + "question": 262, "contribution": 4138, - "answer": 5, - "count": 2 + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31882a31-1e62-46a3-8865-bf1c9b6a61c2", + "pk": "1868ebff-da4a-4d01-bc02-16a9ba23109a", "fields": { - "question": 325, - "contribution": 881, - "answer": 3, - "count": 1 + "question": 476, + "contribution": 1626, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "318f0160-5484-4d94-9c76-9360be513484", + "pk": "1870aa66-fceb-41ea-b767-ff54e3ba878f", "fields": { - "question": 473, - "contribution": 4116, + "question": 349, + "contribution": 3822, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31a31ddc-7f16-4992-9299-ff1b608fea97", + "pk": "1873e778-f9b4-405a-9da1-c865c2e17748", "fields": { "question": 259, - "contribution": 3474, + "contribution": 884, "answer": 3, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31a5dbfd-885a-458d-85c3-e2de2c50a627", + "pk": "187b3d35-b060-4e78-a23e-954e1cc0661a", "fields": { - "question": 325, - "contribution": 4117, - "answer": 4, - "count": 3 + "question": 322, + "contribution": 864, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31a83d06-c0f8-426c-b2d8-98982da35bd9", + "pk": "187d9ce5-d535-429d-9be9-bf93427c15e8", "fields": { - "question": 476, - "contribution": 3474, + "question": 457, + "contribution": 3862, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31b66d2b-dab1-4350-b25a-b3c1f3dd7685", + "pk": "188234e7-84ba-4e85-a248-e95a39f45d9d", "fields": { - "question": 345, - "contribution": 3796, + "question": 337, + "contribution": 1656, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31b8f202-9f8b-4adf-8f7b-f5df4f4c14b2", + "pk": "1885aa1b-403d-4d4f-9c45-c4163940a1d1", "fields": { - "question": 319, - "contribution": 4022, - "answer": 3, + "question": 348, + "contribution": 4129, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31bc2422-3378-47e4-bd2d-ff9b43507f48", + "pk": "1891c146-3ca1-4c86-9e5e-4f8cc61af225", "fields": { - "question": 370, - "contribution": 1844, - "answer": 1, - "count": 2 + "question": 356, + "contribution": 3848, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31bda806-0919-4034-b60c-0a7695d03b7a", + "pk": "18953536-fbf1-44df-af54-5f31caa88694", "fields": { - "question": 355, - "contribution": 4279, + "question": 338, + "contribution": 3751, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31cf27ef-a3cb-4270-9f97-4c74936e837e", + "pk": "1898758d-3cc1-4196-a20e-0d0a8da405fa", "fields": { - "question": 354, - "contribution": 4228, - "answer": 1, - "count": 3 + "question": 346, + "contribution": 887, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31d08570-adb7-45a7-b27c-b22b32844693", + "pk": "189afaa9-9e7c-4ebd-b10e-34cbd1b76989", "fields": { - "question": 466, - "contribution": 4115, - "answer": 2, - "count": 1 + "question": 357, + "contribution": 3776, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31d69a5b-9a6b-41f2-bc5f-a3dfb31f4ae4", + "pk": "18a2b700-79d0-4673-82d0-6fb50829d74a", "fields": { - "question": 356, - "contribution": 3712, - "answer": 5, - "count": 1 + "question": 259, + "contribution": 884, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31e2c9a9-b6b5-49fb-bd90-5e97dceabc76", + "pk": "18b464a7-ba46-4a9b-8f04-9c4ae808b9c1", "fields": { - "question": 335, - "contribution": 3553, - "answer": 2, - "count": 11 + "question": 326, + "contribution": 1154, + "answer": 3, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31e3f603-9986-40b5-9eb7-3df64414cb8d", + "pk": "18b97e0e-f67d-4534-be74-3fe5906aca9f", "fields": { - "question": 317, - "contribution": 4084, - "answer": 4, - "count": 11 + "question": 333, + "contribution": 3592, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31f9b3c6-6c3a-4aef-a85e-914e9036e512", + "pk": "18c4cd93-cc67-4b30-a52c-c05b426deebf", "fields": { - "question": 257, - "contribution": 912, + "question": 319, + "contribution": 4120, "answer": 3, - "count": 1 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31fae19d-64ee-4bff-b593-bdc9cc359c09", + "pk": "18cf7572-719f-443b-9717-ad7f451e87e8", "fields": { - "question": 326, - "contribution": 3423, - "answer": 3, - "count": 4 + "question": 258, + "contribution": 4138, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31fe3bad-fd68-4473-8b18-d3b350cb1000", + "pk": "18de9810-ec98-49fe-b527-d7b241e759d1", "fields": { - "question": 409, - "contribution": 4038, - "answer": 1, + "question": 460, + "contribution": 3862, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "31fe68fe-e4f3-4c3d-b945-5a91ad3d0015", + "pk": "18e95f2d-5b20-4fa6-a4a0-7907e1cf7290", "fields": { - "question": 337, - "contribution": 3508, - "answer": 1, - "count": 7 + "question": 359, + "contribution": 3919, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3207ee33-7ea4-40f3-a6e2-359cdde29a4e", + "pk": "18f1acff-2018-453f-bc61-a98651961352", "fields": { - "question": 353, - "contribution": 3545, - "answer": 1, - "count": 4 + "question": 362, + "contribution": 1805, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "320811fd-9fde-4077-ad42-16584dc8bca6", + "pk": "18f3c984-d37f-4091-a24b-a40ac61fb7e9", "fields": { - "question": 319, - "contribution": 3679, - "answer": 1, + "question": 329, + "contribution": 1154, + "answer": 2, "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3208b2d3-35d4-4682-844f-1b168d279e86", + "pk": "190123fb-2171-4203-b89c-35fcf0abc7f5", "fields": { - "question": 347, - "contribution": 1228, + "question": 477, + "contribution": 4085, + "answer": 0, + "count": 26 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "190eca71-4cf3-4cb7-b3e3-923e76c7fe91", + "fields": { + "question": 355, + "contribution": 1187, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "321446f3-a820-4520-ab68-55e062e6f56d", + "pk": "19187312-3d10-403a-85b6-be014450f020", "fields": { - "question": 475, - "contribution": 4122, + "question": 341, + "contribution": 3372, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "321aa3dc-63e9-47a5-ac3e-283a370c1a7d", + "pk": "191fa96d-b92d-40f2-9bcc-588aacbda748", "fields": { - "question": 370, - "contribution": 1776, - "answer": 4, - "count": 2 + "question": 354, + "contribution": 4266, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "322d8e7b-8d00-4de6-a9e7-1585b266df5c", + "pk": "1924f628-aaed-432f-b16d-508b8046d0e2", "fields": { "question": 473, - "contribution": 4185, + "contribution": 1640, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32367bf8-35eb-44e0-9f36-17176b96e640", + "pk": "19288598-cf46-4c13-9850-d02fa1be44f8", "fields": { - "question": 322, - "contribution": 3390, + "question": 315, + "contribution": 3474, "answer": 1, - "count": 7 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32394d6f-8961-4969-af3b-86578487a5ff", + "pk": "19331fec-d09c-4428-844d-9a20ff960409", "fields": { - "question": 316, - "contribution": 3725, - "answer": 4, + "question": 354, + "contribution": 1845, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3239e285-32cd-4782-be13-298c7b51a27c", + "pk": "193a1e7c-ee44-497d-a430-f4313773788c", "fields": { - "question": 320, - "contribution": 3679, - "answer": 2, - "count": 6 + "question": 321, + "contribution": 822, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32419f91-1693-4d10-888f-4705ad842fb2", + "pk": "193efb31-35c7-4493-846c-0c393cf56383", "fields": { - "question": 348, - "contribution": 1204, - "answer": 1, - "count": 3 + "question": 326, + "contribution": 1802, + "answer": 4, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "324b9bf2-aa4e-41b8-be13-71cc3fc9c1b7", + "pk": "1943f384-3ec9-4c97-8b2c-ad2a60619cbb", "fields": { - "question": 472, - "contribution": 3482, - "answer": 5, + "question": 402, + "contribution": 3646, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "326ce012-467f-42cd-a634-07424540fd82", + "pk": "19531513-1c0a-4bb6-ae66-21bde6494232", "fields": { - "question": 348, - "contribution": 3879, + "question": 320, + "contribution": 884, "answer": 2, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "327bf989-24f6-4dc8-86bc-918e570a83c0", - "fields": { - "question": 475, - "contribution": 89, - "answer": -3, - "count": 3 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "327f98d9-6660-46b1-860a-970998128885", + "pk": "19695bfe-58c5-4c6e-b55d-20538b87661e", "fields": { "question": 347, - "contribution": 3536, - "answer": 1, + "contribution": 3405, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "328b7683-29d1-4f59-af8d-1b84d9bb3757", + "pk": "19714329-8880-428e-93ad-8a7229b084bf", "fields": { - "question": 337, - "contribution": 3366, - "answer": 1, + "question": 362, + "contribution": 3918, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "329e419e-28fa-47cf-820d-d6b8f45a4b04", + "pk": "19763446-3e50-41f7-81b2-6e9520bb33d8", "fields": { - "question": 428, - "contribution": 4154, - "answer": 3, - "count": 3 + "question": 327, + "contribution": 4203, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32a22a8f-dac6-4ee0-bdea-3b0f79965727", + "pk": "197901cf-c4ac-428f-b120-4b4ab3e432d2", "fields": { - "question": 357, - "contribution": 4278, + "question": 319, + "contribution": 880, "answer": 2, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32a87ad3-cb77-4d87-9aa2-eefecd695a23", + "pk": "19799148-3e00-49b6-be1a-676ebd23ec35", "fields": { - "question": 460, - "contribution": 4141, - "answer": 3, - "count": 4 + "question": 368, + "contribution": 1778, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32ae91d0-80f1-4b7d-bb41-924acfa06a62", + "pk": "197ae7fe-a3be-4206-9831-c4dc856a3b1e", "fields": { - "question": 348, - "contribution": 3900, + "question": 431, + "contribution": 4148, "answer": 1, - "count": 1 + "count": 24 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32b853bf-474b-4b2c-80b7-09548b44fcd7", + "pk": "19831fba-5f90-49b5-9182-b3b867258872", "fields": { - "question": 327, - "contribution": 1287, - "answer": 3, + "question": 338, + "contribution": 832, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32c0b70d-89d2-4a9b-836f-2a248c85d361", + "pk": "19890e8c-5df5-41ae-8f01-6533fcbcfc90", "fields": { - "question": 356, - "contribution": 3545, - "answer": 5, - "count": 1 + "question": 348, + "contribution": 4192, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32c5c3a6-8cbf-494b-a57b-cea174e2eb32", + "pk": "19913630-a754-4f5f-b9f1-211541394fc4", "fields": { - "question": 332, - "contribution": 3595, + "question": 337, + "contribution": 3486, "answer": 1, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32c773b6-d0cf-4805-ad28-80898ef7ba94", + "pk": "1999abe5-9e8e-41b3-a20f-4a2acd5f564e", "fields": { - "question": 370, - "contribution": 3847, + "question": 337, + "contribution": 832, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32cfd016-0903-4ed7-b035-fda78f6e697b", + "pk": "19ac96b0-07e7-4eef-b922-e073b60fb69b", "fields": { - "question": 259, - "contribution": 4084, - "answer": 3, - "count": 6 + "question": 476, + "contribution": 3474, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32d46b97-0ff7-4904-8acd-04cd84848c89", + "pk": "19ad0482-3330-4030-915c-dd7d82714427", "fields": { - "question": 473, - "contribution": 4185, - "answer": 0, - "count": 29 + "question": 475, + "contribution": 804, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32d60d63-efed-4cbb-935b-dc92d7cf18bb", + "pk": "19afcbc1-bc6a-4fdb-895e-38a950f771dd", "fields": { - "question": 320, - "contribution": 3474, - "answer": 2, - "count": 6 + "question": 328, + "contribution": 4153, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32dd6729-9eec-4185-9089-efd509ec4d66", + "pk": "19b3756e-7bcb-4582-b6a3-ed42b6491285", "fields": { - "question": 347, - "contribution": 4129, - "answer": 2, - "count": 6 + "question": 450, + "contribution": 4185, + "answer": 1, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32dde564-9cd4-4967-b6da-786cd4267d00", + "pk": "19b67220-dd97-4caa-851b-c269426058a4", "fields": { - "question": 368, - "contribution": 3666, - "answer": 2, + "question": 371, + "contribution": 3552, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32f24229-70f9-4c6e-a84c-600994cc2e74", + "pk": "19d75bd3-cc70-47d7-8633-5d30a1f61483", "fields": { - "question": 348, - "contribution": 1250, + "question": 326, + "contribution": 1297, "answer": 1, - "count": 4 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "32f71389-cadb-4a0a-b7ea-74bf7e671269", + "pk": "19ddd3c3-d035-4f39-8712-6f6a37f1e0e8", "fields": { - "question": 357, - "contribution": 4268, + "question": 337, + "contribution": 1200, "answer": 2, - "count": 1 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "330f4d96-034a-4a0a-b193-2df6d915663b", + "pk": "19e40061-825b-410b-b1d7-f4b1c7392a70", "fields": { - "question": 326, - "contribution": 881, - "answer": 4, - "count": 5 + "question": 337, + "contribution": 4052, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3310ef9b-f530-46f7-8945-84b724cf3b34", + "pk": "19e916ff-db04-4aa3-9994-1f694532914f", "fields": { - "question": 257, - "contribution": 908, - "answer": 2, - "count": 15 + "question": 325, + "contribution": 1780, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3321fbd8-18c6-48bc-a9da-aff816dca705", + "pk": "19eb2010-5c26-4744-a5d7-eca8c1d557a3", "fields": { - "question": 476, - "contribution": 836, - "answer": -2, + "question": 349, + "contribution": 1247, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "33278be4-1603-4ae6-8131-c8279001c910", + "pk": "19ecac91-3b74-4ff3-b330-62056e002a42", "fields": { - "question": 346, - "contribution": 3516, - "answer": 1, - "count": 10 + "question": 321, + "contribution": 880, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "332cbe2f-a5ba-4509-9bba-51407f352d74", + "pk": "19f0e98b-2811-4177-8c3d-c0a8d7750850", "fields": { - "question": 258, - "contribution": 4084, - "answer": 4, - "count": 10 + "question": 418, + "contribution": 4038, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3330f7cf-a4da-4127-b5be-ef9816a11be2", + "pk": "19f3af8d-9e93-4ed1-9317-eff5f27537cc", "fields": { - "question": 344, - "contribution": 1228, - "answer": 5, + "question": 336, + "contribution": 3681, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "333a8be1-53c7-4828-be2e-5577a9a61f04", + "pk": "1a208426-5cda-435b-b210-a7ae9d0a5138", "fields": { - "question": 349, - "contribution": 1867, + "question": 337, + "contribution": 1200, "answer": 1, - "count": 6 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "334b71a6-a69f-4779-b8a4-8e821cbcc0a3", + "pk": "1a31f6f1-0067-46ea-8502-49a19b51c7fe", "fields": { - "question": 347, - "contribution": 3608, + "question": 363, + "contribution": 1825, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "334f36f6-afed-405c-b24f-66ab2583c8c7", + "pk": "1a3a35e3-554a-46a0-a41d-4e94c35b74b4", "fields": { - "question": 257, - "contribution": 3434, - "answer": 2, - "count": 5 + "question": 332, + "contribution": 3566, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3355ba49-65de-417f-b467-fd74c873ff40", + "pk": "1a3f827f-45c5-4837-82a6-2cb04154a803", "fields": { - "question": 360, - "contribution": 3917, - "answer": 4, - "count": 1 + "question": 367, + "contribution": 1626, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3369fb8b-c75a-4ea8-ac09-c21e77a9cb41", + "pk": "1a400702-3daa-457d-afcc-49cb19b8fdd9", "fields": { - "question": 357, - "contribution": 1844, - "answer": 3, - "count": 1 + "question": 344, + "contribution": 4146, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3378d3e4-51b8-44ed-ac3c-7e323fcc7ec9", + "pk": "1a41fccd-7476-49e0-a1ac-0d1afe8bbcd7", "fields": { - "question": 370, - "contribution": 3852, + "question": 325, + "contribution": 837, "answer": 1, - "count": 4 + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "337c15ba-a994-4907-963b-6113855c921a", + "pk": "1a432a33-6e57-42c5-989b-90248720bc81", "fields": { - "question": 341, - "contribution": 3440, - "answer": 4, + "question": 344, + "contribution": 3934, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3385b077-1226-48a6-a359-c84c45bf705f", + "pk": "1a4c0a6f-4618-4063-8ded-bc3b80a2b759", "fields": { - "question": 356, - "contribution": 3516, - "answer": 2, - "count": 1 + "question": 323, + "contribution": 884, + "answer": 4, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "33871295-eff7-402e-9262-eefa0dfabe7b", + "pk": "1a54fa62-73cf-4329-ae3c-7783143e255f", "fields": { - "question": 327, - "contribution": 3859, + "question": 262, + "contribution": 3679, "answer": 1, - "count": 22 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3393e9a6-65dd-4cec-a2e0-c87076932ed7", + "pk": "1a551fe3-757e-41b1-b724-a82a3554297d", "fields": { - "question": 369, - "contribution": 3649, + "question": 351, + "contribution": 788, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3393f742-5139-410b-aa30-70a554f28c9e", + "pk": "1a630d3d-4565-4776-9cc1-53b2165ae57b", "fields": { "question": 346, - "contribution": 4223, - "answer": 1, + "contribution": 1828, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "33977a23-e86e-4f76-b5f3-b2aa7e402352", - "fields": { - "question": 368, - "contribution": 1617, - "answer": 1, - "count": 18 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "33a023a5-bd44-451f-91e1-ea632b88838b", + "pk": "1a63a209-0e4c-4e08-aad0-fc72e8aae0d9", "fields": { - "question": 472, - "contribution": 4052, + "question": 343, + "contribution": 3609, "answer": 1, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "33a5d470-d2ac-4d2f-8b6a-af3d2109880f", + "pk": "1a67c850-0912-47e0-8365-b32fbb3765e5", "fields": { "question": 328, - "contribution": 823, + "contribution": 1669, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "33a641c6-0630-46bf-ba43-974bca676cfc", + "pk": "1a6c3a7f-ebd0-4419-a0f0-409a032b78e4", "fields": { - "question": 346, - "contribution": 4223, - "answer": 2, - "count": 2 + "question": 333, + "contribution": 3936, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "33a65e14-9da7-43a0-bbe6-c2e5d3b7f45c", + "pk": "1a72f52a-8098-4c0a-83c9-cd3af28136ed", "fields": { - "question": 476, - "contribution": 3721, + "question": 337, + "contribution": 3681, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "33b61937-5fc7-4b98-a377-1ee9714c751c", + "pk": "1a74247e-ed91-451e-a1d5-98ccaecfc9e3", "fields": { - "question": 359, - "contribution": 1811, - "answer": 5, - "count": 1 + "question": 336, + "contribution": 3482, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "33cb4171-5572-4cfb-932e-92fa8adef73b", + "pk": "1a83d826-cac9-4a8a-a682-c8b9bb8b1409", "fields": { - "question": 320, - "contribution": 4118, - "answer": 2, - "count": 4 + "question": 395, + "contribution": 3781, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "33da4795-7c30-4036-ab50-9c284c725b16", + "pk": "1a844795-a9fd-43bf-8380-691b1ec47686", "fields": { - "question": 349, - "contribution": 3528, - "answer": 3, - "count": 1 + "question": 473, + "contribution": 840, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "33e15181-8769-4d88-b9cb-fccc6061c4a0", + "pk": "1a91dfb1-a322-459a-b2f3-5578d3b59d85", "fields": { - "question": 327, - "contribution": 1613, - "answer": 3, - "count": 1 + "question": 328, + "contribution": 1288, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "33f51f30-a675-4b37-8a01-7b200ba53dbc", + "pk": "1a964e66-1cbe-4996-be1e-86927bc731a1", "fields": { - "question": 357, - "contribution": 4267, - "answer": 1, + "question": 360, + "contribution": 1806, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "33f61715-dd50-4dc0-b8fa-3ab1e72b908f", + "pk": "1a9d467d-eb71-4b54-9446-5cd3bb1a2a4e", "fields": { - "question": 337, - "contribution": 3745, + "question": 316, + "contribution": 1658, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "33fb6687-e1ae-4bd3-b5f6-ff8b630b91dd", + "pk": "1aa01ab5-b4e7-4e25-becb-85e129304cf7", "fields": { - "question": 438, - "contribution": 4052, - "answer": 5, + "question": 337, + "contribution": 3685, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3400075e-d6c5-4ace-96d1-adba266ba4ee", + "pk": "1aa450e2-bd05-44fe-a8f5-5c9d355504c3", "fields": { - "question": 325, - "contribution": 3666, + "question": 321, + "contribution": 3406, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3406363e-1238-49ff-8449-5c00964739b3", + "pk": "1aa906fa-3980-4ff5-a0f6-bc8da60839d0", "fields": { - "question": 321, - "contribution": 4120, - "answer": 3, - "count": 4 + "question": 340, + "contribution": 886, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3417093a-20b3-40ca-b06b-e4fe178f609a", + "pk": "1ab0e667-f8ac-47f2-9f5e-59cddf6dcdaf", "fields": { - "question": 343, - "contribution": 1881, - "answer": 2, - "count": 3 + "question": 468, + "contribution": 4115, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "342067af-ce60-4713-8ced-ee23265507ac", + "pk": "1abbb5a8-b00b-42dd-b203-847d67e938f8", "fields": { - "question": 328, - "contribution": 909, - "answer": 1, - "count": 10 + "question": 319, + "contribution": 1612, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34227955-4972-4aac-bd75-bd1118c37253", + "pk": "1abed1cc-9d2f-4f38-98df-5b5433f61507", "fields": { - "question": 366, - "contribution": 4156, + "question": 477, + "contribution": 3435, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34400304-ec56-462c-8feb-ebb6e3e21355", + "pk": "1acd1856-754e-4b93-9cf6-365a1863d8df", "fields": { - "question": 345, - "contribution": 4129, - "answer": 5, - "count": 3 + "question": 347, + "contribution": 3518, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "346d4870-b3aa-48ce-a8c4-466f03120407", + "pk": "1ad7fd53-e7b3-4f18-89dc-6deb66372edd", "fields": { - "question": 347, - "contribution": 1205, - "answer": 1, - "count": 6 + "question": 333, + "contribution": 4156, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "347e9f73-1fc2-4a2d-9111-fb53f038cbb2", + "pk": "1ae18f11-6837-4564-bd5a-d1797338211b", "fields": { - "question": 428, - "contribution": 4152, - "answer": 5, + "question": 321, + "contribution": 1612, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34842e23-a690-4151-8d1a-2832339f4a0e", + "pk": "1afbeb0d-3ea0-4b43-b291-981fa52cd589", "fields": { - "question": 321, - "contribution": 4022, - "answer": 5, - "count": 1 + "question": 361, + "contribution": 3929, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "348e88e5-add5-4673-ab9d-277b804c0ef0", + "pk": "1afd2622-7685-4d34-aa0a-05ca3d557b4a", "fields": { - "question": 315, - "contribution": 4118, + "question": 326, + "contribution": 3556, "answer": 3, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "348fe2d0-74d6-403c-8584-41e5f0fba8d3", + "pk": "1afeae6a-997b-4b48-b9e7-aced4799c609", "fields": { - "question": 459, - "contribution": 4141, + "question": 360, + "contribution": 3919, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "349035d2-d6ba-4fb1-a510-7b65702dad3d", + "pk": "1b031e96-10dd-4ed9-8220-5d693df82dcd", "fields": { - "question": 258, - "contribution": 4084, - "answer": 3, - "count": 8 + "question": 257, + "contribution": 1837, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34917673-d8ae-4eb9-b84d-0633a3ce5c17", + "pk": "1b050361-49a6-42f9-b8a8-26a7999052d9", "fields": { - "question": 343, - "contribution": 1156, - "answer": 2, - "count": 1 + "question": 359, + "contribution": 3929, + "answer": 1, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "349ab017-0814-4356-b92c-b3e013afb736", + "pk": "1b092250-834e-432c-a8c4-749015d332d2", "fields": { - "question": 477, - "contribution": 1635, - "answer": 3, - "count": 2 + "question": 350, + "contribution": 3466, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "349c3498-197a-4d3c-8061-abf7db839b32", + "pk": "1b0ee2a9-0208-44e8-afbb-e0513cf3fffc", "fields": { - "question": 323, - "contribution": 3422, - "answer": 4, - "count": 2 + "question": 472, + "contribution": 4090, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34a956d3-de0c-442b-b669-c4da7f2de271", + "pk": "1b14858a-a6fb-4a0c-8dae-e6325fd14172", "fields": { - "question": 339, - "contribution": 1640, - "answer": 0, + "question": 332, + "contribution": 4205, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34ad2152-1c90-47a9-9dfb-dca8fb1710ff", + "pk": "1b14dd69-8902-4468-bb8d-586b905e6b3d", "fields": { - "question": 255, - "contribution": 1626, + "question": 370, + "contribution": 3545, "answer": 3, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34ad6c7b-a928-4b05-a321-4eb70f960fdf", + "pk": "1b15bcad-c6ac-4b0c-84ed-efa948d0374c", "fields": { - "question": 329, - "contribution": 4085, - "answer": 1, - "count": 18 + "question": 367, + "contribution": 3354, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34ad975e-c393-4e1e-9920-9423e16fad3c", + "pk": "1b1f2dfe-c5a9-4c90-bc02-f917ef911be3", "fields": { - "question": 353, - "contribution": 1784, + "question": 350, + "contribution": 826, "answer": 1, - "count": 8 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34ae889d-3d17-4f45-a8dc-375ffcab496f", + "pk": "1b2b7188-53ef-4e14-9fea-6bc3f7b40200", "fields": { - "question": 391, - "contribution": 3711, - "answer": 1, + "question": 320, + "contribution": 3739, + "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34aeb20e-c2ab-4e01-9338-521ae851daad", + "pk": "1b2c4ae9-b2e6-4e18-8882-3339ebac4cf0", "fields": { - "question": 328, - "contribution": 1186, - "answer": 5, - "count": 4 + "question": 473, + "contribution": 884, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34b6c12a-991b-493e-a779-c6b423ec358c", + "pk": "1b3d9c5e-45c5-4637-bad5-74b82f10c59a", "fields": { - "question": 400, - "contribution": 3646, + "question": 360, + "contribution": 3653, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34bcc099-f060-4e1f-8ded-ce74937e22fa", + "pk": "1b446036-3035-4c72-af44-c9a642936469", "fields": { - "question": 322, - "contribution": 1668, - "answer": 3, - "count": 5 + "question": 1, + "contribution": 4300, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34bdd42f-8b25-4029-8377-177059484731", + "pk": "1b4cfe89-d1e0-45a5-967c-136ee5df15ed", "fields": { - "question": 361, - "contribution": 1799, - "answer": 1, - "count": 3 + "question": 477, + "contribution": 4047, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34cea5a4-9141-4417-9515-93f3f43f5ac9", + "pk": "1b5156a2-20b4-4f2d-8741-f295d9b781da", "fields": { - "question": 328, - "contribution": 1776, - "answer": 1, - "count": 9 + "question": 322, + "contribution": 4084, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34d50573-5abe-4ccc-b019-5f09357c530a", + "pk": "1b532c74-bd15-4e29-aed4-6867357d2029", "fields": { - "question": 333, - "contribution": 3551, - "answer": 1, - "count": 7 + "question": 400, + "contribution": 4177, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34db8567-3c28-42d1-b97b-63dbfc7398bd", + "pk": "1b749c51-34c1-440a-9bbc-e8a2b344defc", "fields": { "question": 357, - "contribution": 1189, - "answer": 2, - "count": 1 + "contribution": 3528, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34e5a09a-562e-4de5-81cc-65a92bcea071", + "pk": "1b7d66c2-13d8-4551-9a15-076f3b18c8b7", "fields": { "question": 339, - "contribution": 3450, - "answer": -3, + "contribution": 1694, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34f357ab-521d-44a6-95cc-d36f5040d0c2", + "pk": "1b850011-8783-4745-b805-be8c49b5e838", "fields": { - "question": 370, - "contribution": 1786, + "question": 368, + "contribution": 3589, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34fb2d7b-0246-42e2-8028-0197057071fe", + "pk": "1b8ff9a4-fbe1-416b-8d87-9115126b7187", "fields": { - "question": 320, - "contribution": 3683, - "answer": 2, + "question": 477, + "contribution": 885, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "34fdf0f9-d849-4dba-848d-52d3ef99cc6e", + "pk": "1b976845-bd81-4fc3-8b5d-051e207c45dd", "fields": { - "question": 255, - "contribution": 3422, + "question": 316, + "contribution": 4128, "answer": 3, - "count": 3 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3500dfcf-d326-4a94-a19b-a9b48796765c", + "pk": "1b9d1170-036e-4ded-a594-73cdcdff2158", "fields": { - "question": 316, - "contribution": 884, - "answer": 2, - "count": 7 + "question": 385, + "contribution": 3781, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "35041707-00ed-4799-adf2-e4c4447a3ae6", + "pk": "1ba109aa-1030-4712-8948-060654570251", "fields": { - "question": 325, - "contribution": 3423, - "answer": 1, - "count": 19 + "question": 369, + "contribution": 3919, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3507840b-0d2a-4712-9cae-5adefcbccf77", + "pk": "1ba20058-e4e4-4ac7-a41f-c0bf9bb9cdce", "fields": { - "question": 476, - "contribution": 3422, - "answer": 1, - "count": 7 + "question": 345, + "contribution": 3900, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "35104d70-f258-47f4-ba24-aa2d86798638", + "pk": "1ba528c4-ffce-4468-8b41-7a9e678acce7", "fields": { - "question": 322, - "contribution": 3472, - "answer": 3, - "count": 2 + "question": 369, + "contribution": 3917, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "351b28ae-f784-4da8-ad81-4ed34a58adb5", + "pk": "1bb5066c-5f57-4299-a832-c9716ff2d7a6", "fields": { - "question": 357, - "contribution": 1782, - "answer": 3, - "count": 1 + "question": 325, + "contribution": 4152, + "answer": 1, + "count": 33 } }, { "model": "evaluation.ratinganswercounter", - "pk": "351c2cf2-19af-4469-bdc0-6775404af9bd", + "pk": "1bc0e849-5e55-4756-b9bb-b93c2bca4c78", "fields": { - "question": 328, - "contribution": 4153, + "question": 259, + "contribution": 3422, "answer": 3, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3522185f-2fc8-45c7-8755-b940d8a323c3", + "pk": "1bc41506-382e-4734-bb43-11216b80fbca", "fields": { - "question": 321, - "contribution": 3390, - "answer": 2, - "count": 7 + "question": 477, + "contribution": 4203, + "answer": 0, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "352399c2-1f9c-4111-b809-628bedba614c", + "pk": "1bd4f5a8-f7e1-44a0-aeb0-2de50eb5d9df", "fields": { - "question": 347, - "contribution": 3855, + "question": 331, + "contribution": 4022, "answer": 1, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "352b2823-90d6-4fcc-bd7d-deb35aa01a27", + "pk": "1bdfc15f-623f-42b2-a4d7-1312eca29fa1", "fields": { - "question": 352, - "contribution": 3406, - "answer": 2, - "count": 3 + "question": 260, + "contribution": 3679, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "352db8c4-c7c6-4e6e-930f-6907e6f31b06", + "pk": "1be4ca62-7c89-494b-95a1-7397ffb58ad4", "fields": { - "question": 321, - "contribution": 908, - "answer": 4, - "count": 2 + "question": 356, + "contribution": 1243, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "35389c79-73ec-4e15-8056-a2bb50861b68", + "pk": "1bf268b7-d283-4569-b8ff-186566423f88", "fields": { "question": 354, - "contribution": 1244, + "contribution": 1189, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "354851cb-ea8e-4a8b-83bc-b6724b109ba8", + "pk": "1bfe30c0-59fd-4a64-b19c-3dfc50cdaa3c", "fields": { - "question": 339, - "contribution": 1638, - "answer": 3, - "count": 2 + "question": 370, + "contribution": 1785, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "35502f77-1142-497b-b364-60c0ee06e5a7", + "pk": "1c1b217b-82b9-4cdd-bd66-6df43e774c3c", "fields": { - "question": 329, - "contribution": 3740, - "answer": 4, + "question": 328, + "contribution": 3407, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "355563f1-5a19-429e-847f-3944c3b04acd", + "pk": "1c1babe6-d4ab-48e4-b2bf-7bcd11a5ed65", "fields": { - "question": 321, - "contribution": 4046, - "answer": 3, - "count": 1 + "question": 473, + "contribution": 1634, + "answer": -1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "355cd89c-71c1-42c2-be9c-5371c751ffb6", + "pk": "1c2f0e47-4c93-4fdf-9e0d-e880f2a5b951", "fields": { - "question": 326, - "contribution": 3680, - "answer": 1, - "count": 17 + "question": 322, + "contribution": 4022, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3560c480-3f5f-4872-9254-a0cd2b431f67", + "pk": "1c4187c3-61fb-4aba-9a20-d39a7b355fa4", "fields": { - "question": 367, - "contribution": 3474, - "answer": 5, - "count": 1 + "question": 332, + "contribution": 1217, + "answer": 1, + "count": 32 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3576dd3b-572f-47cb-8fe1-65e601a14b03", + "pk": "1c4aa13c-554e-478c-9111-ecc81eec5892", "fields": { - "question": 472, - "contribution": 3725, - "answer": 1, - "count": 17 + "question": 459, + "contribution": 3862, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "357774c2-3aa4-415f-a14f-2f47b19fb510", + "pk": "1c4fb2d0-ee97-4eeb-820a-cc825a5f5436", "fields": { - "question": 384, - "contribution": 3711, - "answer": 2, - "count": 1 + "question": 348, + "contribution": 1235, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "357ba658-8c71-473b-a884-8bfb80e93d40", + "pk": "1c5490e8-b11c-46d3-8d7b-eb81e4b4f2b3", "fields": { - "question": 344, - "contribution": 3606, - "answer": 5, + "question": 473, + "contribution": 3679, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "357f7586-7c45-4070-9c68-13e2bc1c19c3", + "pk": "1c685763-3dac-457f-b78d-ae7017b35d93", "fields": { - "question": 322, - "contribution": 864, - "answer": 2, - "count": 4 + "question": 321, + "contribution": 3474, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "35840493-9a6e-4121-a6ff-9cbfe023a83d", + "pk": "1c6ee72c-d273-405e-bcab-6ebe3d6471db", "fields": { - "question": 316, - "contribution": 4046, + "question": 329, + "contribution": 3680, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "358fb995-33cb-49df-8b85-1e1898fb4eb8", + "pk": "1c74b06f-7422-460c-9325-49ad1dd01d42", "fields": { - "question": 325, - "contribution": 1154, + "question": 340, + "contribution": 3440, "answer": 5, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "359477d2-2154-40b4-8b4c-d985c062f094", + "pk": "1c7725f7-a67f-42cb-9c4d-842b81a4eb6a", "fields": { - "question": 354, - "contribution": 3610, + "question": 338, + "contribution": 3452, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "359bfe46-841a-4e8b-accd-2feec1391d5c", + "pk": "1c7794fd-7523-4d62-bb57-d0c1fb915f8d", "fields": { - "question": 344, - "contribution": 1881, + "question": 337, + "contribution": 3751, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "35ab9b82-5b9f-4c23-9313-91a85cf1c3b1", + "pk": "1c786705-1519-4745-bdb7-88fb2baaca46", "fields": { - "question": 328, - "contribution": 3556, + "question": 362, + "contribution": 1825, "answer": 4, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "35b9005f-d155-42ef-ac4b-98d66f202389", - "fields": { - "question": 320, - "contribution": 1612, - "answer": 2, - "count": 10 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "35c5e385-75d5-4ed0-ab12-3559087ac131", + "pk": "1c80d607-c310-4dc9-ab41-d65fd0d8179b", "fields": { - "question": 349, - "contribution": 4146, - "answer": 1, + "question": 477, + "contribution": 1779, + "answer": -1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "35caa3e0-0e64-4992-9c97-98fc7c0dbbb0", - "fields": { - "question": 332, - "contribution": 3553, - "answer": 1, - "count": 10 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "35da06fe-b238-462a-b541-89be11252b57", - "fields": { - "question": 346, - "contribution": 3451, - "answer": 3, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "35db95b8-7b73-4bf6-a967-158a197933ab", + "pk": "1c816569-55fc-4f1b-aa05-2a62dce27823", "fields": { - "question": 354, - "contribution": 1154, + "question": 347, + "contribution": 3545, "answer": 2, - "count": 14 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "35f280d8-c08a-407c-bc56-0ed75d9b715e", + "pk": "1c82961e-61fc-4b47-963f-7568ab6c73c5", "fields": { - "question": 345, - "contribution": 4161, + "question": 344, + "contribution": 1873, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "35f502ec-5238-4d41-8c50-9c45e295798a", + "pk": "1c87ade6-e44b-4d36-8ede-cc6252440527", "fields": { - "question": 347, - "contribution": 1843, - "answer": 4, - "count": 1 + "question": 372, + "contribution": 3440, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "35fbbddd-ddd4-460e-a6d9-565e4aad5976", + "pk": "1c8ebd2b-a027-4979-bb1e-6d95706b0969", "fields": { - "question": 323, - "contribution": 3725, + "question": 337, + "contribution": 3416, "answer": 1, - "count": 22 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "3609b9c2-fab1-4585-8362-724734109476", - "fields": { - "question": 473, - "contribution": 3474, - "answer": -2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "360ada49-d06b-426a-ad71-fcf4a819fe08", + "pk": "1c95e278-c9ae-45d8-a439-d5b6bc30b23e", "fields": { - "question": 315, - "contribution": 1612, - "answer": 1, - "count": 10 + "question": 368, + "contribution": 1669, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "360ba33f-6600-4319-8c46-ee16ac73b5b3", + "pk": "1c9fac27-d982-406e-844e-1b94de930973", "fields": { - "question": 322, - "contribution": 1626, - "answer": 4, - "count": 7 + "question": 329, + "contribution": 3355, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "360c896d-9d35-4587-a2cc-ac542efa98e5", + "pk": "1ca3a87d-bbad-474c-bf09-31b83b428f48", "fields": { - "question": 341, - "contribution": 1656, - "answer": 4, - "count": 1 + "question": 355, + "contribution": 1189, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "361a9da2-e389-4f6b-a31d-c42eb56183d9", + "pk": "1caac544-a678-4c8a-813b-db91b63354d5", "fields": { - "question": 357, - "contribution": 4244, - "answer": 1, - "count": 3 + "question": 343, + "contribution": 1663, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "361e149f-b9b7-4ea4-9744-99715ab8b745", + "pk": "1cabab99-e458-43af-af1f-b773390307bd", "fields": { - "question": 341, - "contribution": 3735, - "answer": 2, + "question": 473, + "contribution": 4116, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "362a8c71-0e46-43e7-bdf1-797deb9488ef", + "pk": "1cb4df56-4ed8-4670-a1ef-6ac1228ef3bd", "fields": { - "question": 379, - "contribution": 3711, - "answer": 3, + "question": 349, + "contribution": 4223, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "362d4891-9840-4c4d-986f-e4835446e0a6", + "pk": "1cb71b6b-4625-4032-a089-2fa9d66e20f6", "fields": { - "question": 333, - "contribution": 3922, - "answer": 3, + "question": 367, + "contribution": 3725, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "362d550f-4ea5-49bd-83eb-8ebdf14064c5", + "pk": "1cc1969f-c999-43b2-aadd-c229e0fcbc68", "fields": { "question": 477, - "contribution": 3530, - "answer": 3, + "contribution": 1288, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "362e9d98-c754-42e5-8f5a-7a905d14ebe4", + "pk": "1cc672e5-ddfd-411b-83c5-8e944c1bf870", "fields": { - "question": 320, - "contribution": 1612, - "answer": 4, + "question": 329, + "contribution": 1797, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3631fab1-e09f-4b94-b96c-cec538af6951", + "pk": "1ccb997e-659a-4896-bc18-1dc185a74dbb", "fields": { - "question": 477, - "contribution": 1287, - "answer": 0, - "count": 30 + "question": 329, + "contribution": 4152, + "answer": 2, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "363d8cef-8171-45c0-abb7-aa86eb3bed38", + "pk": "1ccbf5ae-199f-4f2c-9e9f-8f8e1ff90e2d", "fields": { - "question": 433, - "contribution": 3976, - "answer": 1, + "question": 473, + "contribution": 4138, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3644b44e-75a7-49ba-914f-01ea98af66c7", + "pk": "1cd8b809-3ed4-41ed-88a6-241dff65c4c4", "fields": { - "question": 331, - "contribution": 1626, - "answer": -3, + "question": 336, + "contribution": 1734, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36561241-32c6-4b35-8f97-a28905f2d99e", + "pk": "1cec8381-ad34-414c-a2cc-f08d0a4d5dde", "fields": { - "question": 475, - "contribution": 1660, - "answer": 0, + "question": 357, + "contribution": 1244, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "366b8ba6-dfc1-41ef-b84a-60b5b6e75381", - "fields": { - "question": 326, - "contribution": 1613, - "answer": 2, - "count": 6 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "366e2ab4-34e6-4e8d-b8c0-417a14536695", + "pk": "1cef0124-0d79-45d6-a85d-ce7ce03f5447", "fields": { - "question": 376, - "contribution": 3781, - "answer": 2, + "question": 339, + "contribution": 3466, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3675e7c4-e6a3-44c4-941d-ee46ffc28e21", + "pk": "1cefdb63-ee9b-4c43-9b25-2c02346e213f", "fields": { - "question": 335, - "contribution": 3593, + "question": 350, + "contribution": 3454, "answer": 2, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "3675f2fd-bf29-4dbc-af40-4ace40f4f563", - "fields": { - "question": 476, - "contribution": 1634, - "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "367b97d5-00c4-4804-8320-60c61964e863", + "pk": "1cf71a6d-7d7e-4e11-a9ad-1536538ec380", "fields": { - "question": 315, - "contribution": 1626, - "answer": 2, - "count": 11 + "question": 347, + "contribution": 841, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "368097f3-fd3d-49d1-81c1-60011e069a49", + "pk": "1cf90d21-df78-4482-9466-0fdc7ccadd7c", "fields": { - "question": 428, - "contribution": 4155, - "answer": 4, - "count": 2 + "question": 346, + "contribution": 3405, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "368a2580-d164-4a95-b52c-7a026cf65de5", + "pk": "1cfc3970-7417-4d6a-8b17-dd4e8c3f9cea", "fields": { - "question": 323, - "contribution": 4128, + "question": 326, + "contribution": 1635, "answer": 1, - "count": 6 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "36976280-f425-41c3-be4e-4ca01c8b4372", - "fields": { - "question": 333, - "contribution": 1284, - "answer": 3, - "count": 1 + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "369e9cb8-8916-4f9f-ba50-95ab21ef1596", + "pk": "1cff188c-5dc8-4a1b-b8ea-e5f0560837d4", "fields": { - "question": 340, - "contribution": 804, - "answer": 4, - "count": 3 + "question": 327, + "contribution": 4047, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36a7bd80-33d5-43ae-a0c9-f58f57e77798", + "pk": "1d0c7232-cc87-4f91-9092-da73c2df768e", "fields": { - "question": 349, - "contribution": 4189, - "answer": 2, + "question": 339, + "contribution": 1644, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36af95f2-c450-4aea-a5cb-6c794354d6cd", + "pk": "1d163a97-3642-4d86-882b-bfbcdd2bc0c7", "fields": { - "question": 258, - "contribution": 4128, + "question": 472, + "contribution": 836, "answer": 5, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36c051b1-6970-4f98-8a1a-c61303e381af", + "pk": "1d197295-871e-4d10-b516-d7f6dacdc113", "fields": { "question": 475, - "contribution": 4020, + "contribution": 868, "answer": 0, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36c8df6a-c838-4587-aeb0-cd9c41cdeabf", + "pk": "1d1be1e2-e2fc-4c6a-baf3-00d8206211c5", "fields": { - "question": 363, - "contribution": 1804, - "answer": 5, + "question": 477, + "contribution": 4117, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36d4c231-fc96-4fac-ae91-9befded49e8d", + "pk": "1d2240f3-b713-4a73-9034-a51e235d33c5", "fields": { - "question": 316, - "contribution": 4138, - "answer": 1, - "count": 17 + "question": 325, + "contribution": 4152, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36dffd30-cc54-4a1b-bdb5-21ec8f1ba5a1", + "pk": "1d3ceac2-8bd2-4e06-8bd8-97f6c3e0eeec", "fields": { - "question": 477, - "contribution": 1669, - "answer": 0, - "count": 8 + "question": 363, + "contribution": 1812, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36e05750-f78a-4fee-9460-c1f3d030f3d9", + "pk": "1d44f514-ed17-4d97-a520-3a8e8bb6a5a1", "fields": { - "question": 349, - "contribution": 1156, - "answer": 2, - "count": 1 + "question": 333, + "contribution": 3553, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36e304f4-6873-460e-a1f5-29d4724be7a3", + "pk": "1d459771-8bc9-4f82-ac7b-d5d3cbd0843f", "fields": { - "question": 1, - "contribution": 4300, + "question": 335, + "contribution": 3932, "answer": 2, - "count": 8 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36e58e38-9503-4564-937b-d993a68d01a4", + "pk": "1d4aebb2-e4c1-4f9c-a251-18cb90fa4bbb", "fields": { - "question": 258, - "contribution": 3472, - "answer": 3, + "question": 367, + "contribution": 1680, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36e9300f-6d01-4033-88b3-7744ad6087f2", + "pk": "1d4ecc0f-253e-4432-be04-8143f863250f", "fields": { - "question": 476, - "contribution": 1634, + "question": 368, + "contribution": 4203, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36ecb17c-1773-4626-b97f-2a3df6829acb", + "pk": "1d4f4341-fddc-4fa5-a590-321405c2db6c", "fields": { - "question": 349, - "contribution": 919, + "question": 320, + "contribution": 1724, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36f1738c-baab-4ed3-b628-bc1cebdfb065", + "pk": "1d6240cf-d86d-4317-9613-0c3a620d1e21", "fields": { - "question": 473, - "contribution": 894, - "answer": 2, + "question": 462, + "contribution": 3862, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36fa9780-f13b-494d-ab9d-0c8f23f0b07f", + "pk": "1d6695f0-85ee-4c95-9919-a2b45c2099d3", "fields": { - "question": 258, - "contribution": 3390, + "question": 320, + "contribution": 4118, "answer": 3, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "36fbe242-adce-440a-a7fb-7b23be569b58", + "pk": "1d6cb809-34a4-4a4d-ad61-5378622865b0", "fields": { - "question": 360, - "contribution": 1807, - "answer": 5, + "question": 472, + "contribution": 4038, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3701e8cb-0279-4770-80ae-c3acb9873fde", + "pk": "1d7b1082-9c1d-41cb-9e0a-7e979325f9cb", "fields": { - "question": 357, - "contribution": 1256, + "question": 363, + "contribution": 3920, "answer": 1, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "1d843d41-df89-4a07-a868-5e4cb18863bc", + "fields": { + "question": 359, + "contribution": 1835, + "answer": 2, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3702b4c1-6703-4ce1-b2f2-883344c74a97", + "pk": "1daafd3c-53ca-42bc-865d-35d1304ba917", "fields": { - "question": 328, - "contribution": 3423, - "answer": 4, - "count": 4 + "question": 475, + "contribution": 1660, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "370efac7-2aeb-409e-a71e-9164a638c903", + "pk": "1db4b60f-b797-4f8d-a154-ed8330f0eea2", "fields": { - "question": 326, - "contribution": 3726, + "question": 359, + "contribution": 3653, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "371587b4-bb69-4d04-89ec-672e977e31cb", + "pk": "1db4ed6e-8063-466b-823c-fbaabcb096f1", "fields": { - "question": 353, - "contribution": 4227, - "answer": 1, - "count": 3 + "question": 348, + "contribution": 3451, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "371c4507-8636-4641-9623-681e30746622", + "pk": "1dca400f-7d9f-4d04-bf78-b47514332863", "fields": { - "question": 345, - "contribution": 1206, + "question": 346, + "contribution": 3895, "answer": 1, - "count": 8 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "371e39ce-3625-4f86-a850-ea19a54572b5", + "pk": "1dd7dabd-332a-4c5e-bf71-199b4c4d9915", "fields": { - "question": 368, - "contribution": 3556, - "answer": 5, + "question": 340, + "contribution": 1656, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37324690-af87-4ee7-ba9b-1af02f5a62fb", + "pk": "1ddc4fe5-feb8-42c5-9414-17f09bc08ed6", "fields": { - "question": 464, - "contribution": 4283, - "answer": 3, + "question": 418, + "contribution": 3984, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37351215-0a5c-4207-b033-3057ed0fc2f4", + "pk": "1ddd2d17-93f0-487d-93b2-3c29606a509f", "fields": { - "question": 344, - "contribution": 1824, - "answer": 2, + "question": 356, + "contribution": 3528, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3736555f-812d-4d46-94ac-d83b6a0e7b9e", + "pk": "1ddf43d8-4db0-4e16-8678-61d126754cf4", "fields": { - "question": 475, - "contribution": 918, - "answer": -1, - "count": 5 + "question": 413, + "contribution": 4038, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37380e5f-af23-4d72-9541-42b66cc0e6c2", + "pk": "1de15d67-595d-4744-befe-514b9a02b1f4", "fields": { - "question": 473, - "contribution": 1200, - "answer": -1, + "question": 347, + "contribution": 3606, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37396c04-71e6-49ea-a483-cb25a1c15e1a", + "pk": "1de1e614-c4b1-4a46-95e8-380fdae17d99", "fields": { - "question": 353, - "contribution": 1845, - "answer": 4, - "count": 2 + "question": 328, + "contribution": 3722, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "374a91b1-d134-4c01-83d9-a9bfbaca6232", + "pk": "1de35bc6-dce6-4a37-9bef-b28d120d5b44", "fields": { - "question": 325, - "contribution": 4101, + "question": 332, + "contribution": 3886, "answer": 1, - "count": 7 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "374d5a1d-f4f8-4da0-b3fd-06853ff0e273", + "pk": "1dee10fe-b7a6-4a9c-b080-26cd5bf78bcb", "fields": { - "question": 356, - "contribution": 3923, + "question": 347, + "contribution": 1851, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "375c079e-dae9-4512-885d-7ab62c2b270e", + "pk": "1df4456b-2446-4020-afbc-bad181e63bb2", "fields": { - "question": 346, - "contribution": 3373, - "answer": 3, - "count": 4 + "question": 321, + "contribution": 3462, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "375f5dcf-0186-4848-a44c-7200e0ddf446", + "pk": "1dfa8e62-de24-4989-913d-53cdc02055d5", "fields": { - "question": 326, - "contribution": 1802, - "answer": 1, + "question": 321, + "contribution": 908, + "answer": 3, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "376d5330-9881-4f1f-93ae-2f6809aa3770", + "pk": "1e0326f9-f945-4496-98df-9583ab2b94ce", "fields": { - "question": 320, - "contribution": 4028, - "answer": 1, - "count": 13 + "question": 434, + "contribution": 4052, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "376f2dc4-9659-483c-ac69-55818fc4a248", + "pk": "1e0c28d4-2644-47c8-a2e5-a9e8bedbd256", "fields": { "question": 331, - "contribution": 3354, + "contribution": 1658, "answer": 0, - "count": 21 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3770feca-97cd-47fe-8b71-a2abe99754c1", + "pk": "1e119fb0-0b4e-49a9-91fc-2de19d32b8d4", "fields": { - "question": 340, - "contribution": 3723, + "question": 329, + "contribution": 1288, "answer": 1, - "count": 5 + "count": 28 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3783775e-1e54-44be-849a-afdf92159236", + "pk": "1e16c04d-2caf-476b-ae3b-d5af846374d0", "fields": { - "question": 258, - "contribution": 3406, - "answer": 2, - "count": 5 + "question": 349, + "contribution": 1645, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3788f48f-2b0b-4c55-b9a7-08b3744a430f", + "pk": "1e188d80-5141-470d-835b-e7db847cbb0b", "fields": { - "question": 351, - "contribution": 3394, - "answer": 1, + "question": 359, + "contribution": 1807, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37924661-5f1f-4212-a427-876298d95f0e", + "pk": "1e1bb304-6e45-49a9-a77c-205b285a4afe", "fields": { - "question": 344, - "contribution": 3607, - "answer": 1, - "count": 2 + "question": 345, + "contribution": 4190, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "379955cb-556e-4789-9a5f-495e1c154fa1", + "pk": "1e253bbb-4771-4fb8-88a8-eb2c499023d2", "fields": { - "question": 367, - "contribution": 4120, + "question": 259, + "contribution": 1668, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37a52620-ce78-4b7c-9159-9f16c58c0c88", + "pk": "1e276fc6-96a5-4f71-a61c-9c9aad0e62c4", "fields": { - "question": 353, - "contribution": 4039, + "question": 413, + "contribution": 3984, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37afa263-d914-414c-83ef-ea330ae941d1", + "pk": "1e2ed683-a81a-46d6-9003-8882a9b27784", "fields": { - "question": 357, - "contribution": 3545, - "answer": 1, - "count": 2 + "question": 475, + "contribution": 1200, + "answer": 0, + "count": 24 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37c13be5-3462-4f4e-9365-54c5642346fc", + "pk": "1e2f4916-dede-4996-859d-7d06b64e5652", "fields": { - "question": 413, - "contribution": 3974, - "answer": 1, + "question": 350, + "contribution": 804, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37c1504e-a803-41ae-a75e-a41292899958", + "pk": "1e302522-1b19-4914-9f3b-5ac8d5708794", "fields": { - "question": 369, - "contribution": 3921, + "question": 346, + "contribution": 4187, + "answer": 3, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "1e309b5d-b9d8-4bd6-bb12-65f917a0e1f4", + "fields": { + "question": 477, + "contribution": 823, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37c1908f-cea8-4007-b70d-7b5fe9f40d72", + "pk": "1e32fe27-ebae-4779-9038-09cb7df377cb", "fields": { - "question": 317, - "contribution": 1668, + "question": 336, + "contribution": 858, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37c1f9ce-68c1-44ca-bba0-3171766f86af", + "pk": "1e3d09a0-b7e6-4dda-9f8d-02bb75ae905f", "fields": { - "question": 332, - "contribution": 3594, + "question": 335, + "contribution": 1283, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37c6db60-f0cf-4eb9-af98-20b404c7606c", + "pk": "1e3d78db-adf8-47ab-b2a6-40e83e7810ed", "fields": { - "question": 331, - "contribution": 4084, + "question": 255, + "contribution": 4116, "answer": 1, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37cfcd31-afed-4fb9-8cf6-e3ae4fc26338", + "pk": "1e6f7916-3291-4077-a6d1-abbc98a09c00", "fields": { - "question": 343, - "contribution": 3509, - "answer": 1, - "count": 2 + "question": 326, + "contribution": 1776, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37d37955-0126-4982-86b2-40583ee2436d", + "pk": "1e785641-0eef-4b2d-b4e1-949f28ffcab8", "fields": { - "question": 356, - "contribution": 1844, + "question": 259, + "contribution": 3434, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37d84706-bbe8-47dd-9656-de1d06a75cfd", + "pk": "1e7ec98e-25f6-405e-8988-6353902fe6f5", "fields": { - "question": 357, - "contribution": 1849, + "question": 317, + "contribution": 3474, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37f20207-dcc8-4b7f-9b52-fd7da5a796e2", + "pk": "1e8124ce-38e6-4b57-bbb3-0533568dfc33", "fields": { - "question": 259, - "contribution": 3721, - "answer": 5, - "count": 2 + "question": 317, + "contribution": 4046, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37fa8cf4-4015-4803-9007-c04ac9d99a53", + "pk": "1e8781ac-1435-4eff-93ef-f855f279393a", "fields": { - "question": 257, - "contribution": 3474, - "answer": 2, - "count": 9 + "question": 476, + "contribution": 4046, + "answer": 0, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "37fbca37-b1f2-4984-8b07-d51e8f60194d", + "pk": "1e904bcc-a07b-4684-9e07-98a1108d829f", "fields": { - "question": 335, - "contribution": 3566, + "question": 258, + "contribution": 3725, "answer": 2, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38030430-43a0-478c-abe0-9a7789b9226a", + "pk": "1eb45867-77f1-4d5f-848b-575a0e0dd5e3", "fields": { - "question": 460, - "contribution": 4073, - "answer": 1, - "count": 2 + "question": 473, + "contribution": 3721, + "answer": -1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "380cd4a6-9716-4517-8733-65e786ad211e", + "pk": "1ec28f93-a9ca-4318-99c2-b94fa3062f6b", "fields": { - "question": 341, - "contribution": 3723, + "question": 258, + "contribution": 4118, "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "381f4776-7cd4-496f-9559-b3554c45fd62", + "pk": "1edaf9ab-6132-4dbf-bcc9-73d8bf9c090b", "fields": { - "question": 344, - "contribution": 1735, - "answer": 1, - "count": 4 + "question": 366, + "contribution": 3552, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "382ae47a-b84e-4ca4-9610-03799f7b917b", + "pk": "1edb9c32-eac1-4ed3-85a4-33501553d2af", "fields": { - "question": 345, - "contribution": 1247, - "answer": 2, - "count": 1 + "question": 368, + "contribution": 4101, + "answer": 4, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "383895c4-11fb-4d76-94cd-78c1cec6f073", + "pk": "1ee259df-c245-47f7-9352-a5d8907f4b22", "fields": { - "question": 349, - "contribution": 3939, - "answer": 4, - "count": 2 + "question": 325, + "contribution": 1776, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "384563ab-b51f-4f22-a2e2-7c35e7837b11", + "pk": "1eecd38d-967a-4311-9e48-ede7ee967ae3", "fields": { - "question": 345, - "contribution": 887, + "question": 320, + "contribution": 3462, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "384daac1-01e1-4bc0-9a2b-bc7210ec905f", + "pk": "1eed1752-1255-41f6-88f0-20e1de8e3eb3", "fields": { - "question": 315, - "contribution": 3434, + "question": 329, + "contribution": 3407, "answer": 2, - "count": 14 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38515f66-06ad-480c-86eb-370112c06530", + "pk": "1ef0eafa-0e01-4198-8ab1-3619e2097b3b", "fields": { - "question": 371, - "contribution": 4152, - "answer": 5, - "count": 2 + "question": 337, + "contribution": 3440, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3854dade-7417-47b4-a704-097e5ed8fed3", + "pk": "1efc4145-eaf0-40f9-b15e-3990485dad6d", "fields": { - "question": 476, - "contribution": 4120, - "answer": -1, - "count": 7 + "question": 348, + "contribution": 4189, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "385f01f2-ea8c-4244-96ee-8455c5c168a3", + "pk": "1f0185ea-e828-4c09-aab3-5c3636d44b93", "fields": { - "question": 349, - "contribution": 1202, + "question": 353, + "contribution": 3835, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "386cb35e-bfa9-4cc8-a9fc-ac3edeff05cf", + "pk": "1f08917c-8b60-4071-86a9-893d6dffeec1", "fields": { - "question": 436, - "contribution": 4052, + "question": 349, + "contribution": 1249, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "386e7a23-5160-45c9-96ec-3e20503a5705", + "pk": "1f0a498b-ff0e-4fcf-8513-9d3338fbc37c", "fields": { - "question": 348, - "contribution": 1206, - "answer": 2, - "count": 3 + "question": 477, + "contribution": 3666, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "386eaef7-f3b5-4ac6-b07a-d756d950cf19", + "pk": "1f15f86a-ba61-41cc-ab2b-90b6c151ea21", "fields": { - "question": 343, - "contribution": 1863, - "answer": 1, - "count": 3 + "question": 316, + "contribution": 4022, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3887d5f6-dedc-4c51-871c-537248c5176c", + "pk": "1f26a146-77e8-4cae-bb2d-2c3598d3b6e7", "fields": { - "question": 477, - "contribution": 1617, - "answer": 3, + "question": 348, + "contribution": 1749, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "388d9083-1833-4c0c-9513-4b3f96d5a569", + "pk": "1f3522b0-d683-4f12-bc99-3d7a1d662bfa", "fields": { - "question": 337, - "contribution": 3745, + "question": 321, + "contribution": 1658, "answer": 1, + "count": 12 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "1f37db27-41e5-4209-bf4d-b13e2dc5d03e", + "fields": { + "question": 472, + "contribution": 3354, + "answer": 5, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3898a0f9-16cb-4846-abb9-84dbe29ffc8a", + "pk": "1f3fd137-1ded-44dc-8f1d-5f973e643561", "fields": { - "question": 344, - "contribution": 4187, - "answer": 3, + "question": 356, + "contribution": 3776, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38a3c785-901f-4f13-abfd-43557da3ed90", + "pk": "1f428e34-7965-4d0a-bd54-a92fde58e36b", "fields": { - "question": 323, - "contribution": 3422, + "question": 327, + "contribution": 1779, "answer": 1, - "count": 9 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38a4a573-d65d-4f60-b06d-c86ec7037e6c", + "pk": "1f51717e-8f31-4cd6-8e30-e8a72cbe7864", "fields": { - "question": 366, - "contribution": 3566, + "question": 354, + "contribution": 1154, "answer": 1, - "count": 4 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38add1c7-7571-4004-b6ee-6d9dcecd3543", + "pk": "1f583b62-dc1d-43a0-bd1a-a5e4154da11e", "fields": { - "question": 262, + "question": 351, "contribution": 4046, - "answer": 1, - "count": 10 + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38af9ba4-b99a-4521-ab5a-84e0a2f6d7f2", + "pk": "1f61bf0a-c204-4c78-94e1-73bc868624ef", "fields": { - "question": 326, - "contribution": 3726, - "answer": 2, - "count": 10 + "question": 360, + "contribution": 1807, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38b1c2d3-04e5-44c3-81fd-6aab601d79b7", + "pk": "1f6714ea-0b89-4cbd-a861-62ea4f36cc3c", "fields": { - "question": 476, - "contribution": 3739, - "answer": 0, - "count": 2 + "question": 326, + "contribution": 3519, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38be2407-f655-4a98-8349-c7b8d08bb6c6", + "pk": "1f6e5068-0be5-4f36-970a-293ca82871be", "fields": { - "question": 362, - "contribution": 3929, - "answer": 4, - "count": 2 + "question": 371, + "contribution": 4244, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38c2a8bb-bdce-4f8b-9eed-2c2021485e10", + "pk": "1f6ffd6e-d19c-4d9b-a529-307eddaff573", "fields": { - "question": 355, - "contribution": 1786, - "answer": 2, + "question": 434, + "contribution": 4052, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38c41623-388d-40ea-98f5-fb723a496925", + "pk": "1f74fe57-d8bc-4340-ab38-fdbfa702d497", "fields": { - "question": 335, - "contribution": 4204, - "answer": 1, - "count": 17 + "question": 336, + "contribution": 1662, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38c626b2-fec4-4da4-bd2a-facb3dcf51c0", + "pk": "1f798090-627a-4bd4-88c4-de2fde5e813e", "fields": { - "question": 416, - "contribution": 3974, + "question": 322, + "contribution": 4084, "answer": 1, - "count": 1 + "count": 32 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38c9f0fe-43d0-4fe5-a00f-09c256c06ad1", + "pk": "1f8b6da8-a710-4de7-8d7f-138f3ee5fec4", "fields": { "question": 349, - "contribution": 3525, - "answer": 1, - "count": 1 + "contribution": 1881, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38d18adf-9c40-4d27-9ae6-518c5cf55644", + "pk": "1fa37294-05d4-4e99-8fb2-6d54577bb043", "fields": { - "question": 372, - "contribution": 3406, - "answer": 3, - "count": 2 + "question": 349, + "contribution": 1880, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38d4ab87-4c15-4d03-8f4e-09b62c6ce4c1", + "pk": "1fa86b57-778d-4d06-b2d6-ff2ead6d53f3", "fields": { - "question": 457, - "contribution": 3862, + "question": 354, + "contribution": 1253, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38d61ad3-c2ce-49bd-a151-6aab1ef62ca4", + "pk": "1fa96038-e41a-466c-8c53-ccad5b3d7a7f", "fields": { - "question": 322, - "contribution": 3354, - "answer": 2, - "count": 5 + "question": 257, + "contribution": 1626, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38ee6587-c80e-42f0-86bd-467db9f2177d", + "pk": "1fa9f282-c499-4efa-9b23-ea9b6806d5be", "fields": { "question": 472, - "contribution": 3416, - "answer": 1, - "count": 2 + "contribution": 4116, + "answer": 5, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38f3589d-da12-4a09-afd1-bb6ba945b479", + "pk": "1fafdb02-afdc-4f40-abf3-2a94083b1b9d", "fields": { - "question": 328, - "contribution": 4152, - "answer": 1, - "count": 6 + "question": 346, + "contribution": 1207, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38fa73ae-915f-43e9-9693-dab5f7bd6a4f", + "pk": "1fbf54c8-4b17-4b4e-a8bd-5adf9d34e09f", "fields": { - "question": 390, - "contribution": 3775, - "answer": 2, - "count": 1 + "question": 341, + "contribution": 3482, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38fb505b-b226-4bcd-bc47-f232103d1750", + "pk": "1fc43e0f-7693-4d8d-817d-af64ba0370af", "fields": { - "question": 476, - "contribution": 1658, - "answer": -1, + "question": 329, + "contribution": 3722, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38fbd390-8d22-4725-a967-00e2917eb119", + "pk": "1fcf2bca-5968-4515-8244-5717e96fffa4", "fields": { - "question": 255, - "contribution": 912, + "question": 391, + "contribution": 3781, "answer": 1, - "count": 23 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38fcc58e-e315-43fa-9617-26ca424329ac", + "pk": "1fcfa5bb-7ac6-4cbe-971d-f49452f9a11a", "fields": { "question": 257, - "contribution": 4046, + "contribution": 4022, "answer": 1, - "count": 8 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "38fe5110-e40f-4de8-bf82-d82c81a451ca", + "pk": "1fcfb151-c443-4f07-af67-0002012602c3", "fields": { - "question": 328, - "contribution": 3407, - "answer": 1, + "question": 346, + "contribution": 1203, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "390ed111-8658-45ed-b8a5-733d29ce93c8", - "fields": { - "question": 357, - "contribution": 4227, - "answer": 2, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "3918d67e-2b85-47f8-82fe-87659626a39d", + "pk": "1fff27e9-c0fe-4469-b4c2-0f9e3fc4c84f", "fields": { - "question": 326, - "contribution": 913, + "question": 349, + "contribution": 3939, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3925aa65-889c-46a9-bb74-42ca99c49ec6", + "pk": "200accf9-5617-4ec0-819d-1108888ad5e1", "fields": { - "question": 346, - "contribution": 869, + "question": 349, + "contribution": 1881, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3941a73d-9678-4ba7-a665-b9cf730f320b", + "pk": "200baefb-f917-49dc-ab77-9375d5a6574b", "fields": { - "question": 367, - "contribution": 3721, - "answer": 1, - "count": 9 + "question": 319, + "contribution": 1626, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3945931a-1c30-4677-bad7-6428273f9dcb", + "pk": "2028ed98-11cf-455a-8c3d-0125fe217bb0", "fields": { - "question": 351, - "contribution": 4022, - "answer": 2, + "question": 325, + "contribution": 4117, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "39491ec0-3a53-48ea-af56-863c55bdf738", + "pk": "202902c1-3aca-4b19-a802-4d24f3de2346", "fields": { - "question": 343, - "contribution": 4161, + "question": 260, + "contribution": 4046, "answer": 1, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "394cacfe-fc06-457c-8dde-89fbceb65dc2", + "pk": "205040e9-11e8-4bbf-87ad-456fd7545602", "fields": { - "question": 316, - "contribution": 4128, + "question": 320, + "contribution": 3390, "answer": 4, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "395ad2c7-b1ac-47de-af35-6345b4b0fc46", + "pk": "20509811-1b86-4603-9332-5baf2483d5c5", "fields": { - "question": 340, - "contribution": 862, - "answer": 4, - "count": 1 + "question": 317, + "contribution": 3406, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "396dee35-b74b-4bfc-967f-2c8760641332", + "pk": "2058f5fb-80da-4614-a613-3d18367675fd", "fields": { - "question": 320, - "contribution": 3390, - "answer": 3, - "count": 7 + "question": 477, + "contribution": 1802, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "396f73f6-5495-4e99-af70-95d9f9855296", + "pk": "20606b6c-c012-4b0f-87b9-02fbc0693100", "fields": { - "question": 476, - "contribution": 1837, + "question": 357, + "contribution": 3835, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "397a8b0a-f5fd-4b52-b899-72eacedee67e", + "pk": "20669777-540a-4731-b983-e9e65f60da59", "fields": { - "question": 362, - "contribution": 3929, + "question": 349, + "contribution": 869, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "397b47e8-9894-4408-8e3f-7741435a7b30", + "pk": "20751789-d1e8-45d4-bca2-013314ac9c24", "fields": { - "question": 340, - "contribution": 4036, + "question": 346, + "contribution": 4190, "answer": 1, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "397e7c77-77b7-418d-9b40-ea13c3decb96", + "pk": "207600aa-0617-4f21-b186-eca560e79063", "fields": { - "question": 370, - "contribution": 3776, - "answer": 2, - "count": 1 + "question": 359, + "contribution": 3929, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3989d4b3-1fd3-4ae6-8c51-f4f7fd8c38bd", + "pk": "2077ba7f-f7aa-4907-907f-6c858d91b494", "fields": { - "question": 338, - "contribution": 4002, + "question": 367, + "contribution": 3725, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "39938217-a39c-49f3-93cf-0833d7ebed3c", + "pk": "207ad1ae-dd5c-44a5-9112-7aa7c0b79a02", "fields": { - "question": 476, - "contribution": 3474, - "answer": 0, - "count": 5 + "question": 477, + "contribution": 4153, + "answer": -1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3998fa43-8a7e-44c7-b23c-389f6ab068f4", + "pk": "208afa48-db47-425d-8513-75add3b2c6da", "fields": { - "question": 348, - "contribution": 1809, + "question": 371, + "contribution": 4152, "answer": 4, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "39c24576-612b-4ccf-b501-0fc965ae5c2b", + "pk": "20952147-f2bc-4473-a9d2-522ada3f3ef4", "fields": { - "question": 360, - "contribution": 1808, - "answer": 1, - "count": 2 + "question": 346, + "contribution": 1206, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "39c9697d-6420-4393-a0fd-66143869eba0", + "pk": "20987694-4cfe-40d6-9a10-5f1df894106a", "fields": { - "question": 354, - "contribution": 4279, + "question": 323, + "contribution": 4120, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "39d48cf8-1602-49e8-8b46-65b1b262ba9b", + "pk": "209a2ff1-a18b-4741-b99e-d5a498148540", "fields": { - "question": 321, - "contribution": 4128, - "answer": 3, - "count": 3 + "question": 338, + "contribution": 1656, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "39d84d0b-c658-4626-9f58-dd7afaf14004", + "pk": "209cbefb-b909-494d-b2ff-6ba35724c947", "fields": { "question": 316, - "contribution": 3472, - "answer": 2, - "count": 3 + "contribution": 3462, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "39dd3cf5-b774-4f76-aa89-6397b94d918b", + "pk": "20b1f09a-c55f-4493-998f-ae05861e3b14", "fields": { - "question": 476, - "contribution": 3390, - "answer": -1, - "count": 6 + "question": 472, + "contribution": 3679, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "39e4878d-d143-402d-a4fa-9fc7fb48bb2f", + "pk": "20b4bdb5-b4b7-47b9-962d-a46ed07b820e", "fields": { "question": 327, - "contribution": 4101, - "answer": 1, - "count": 12 + "contribution": 3556, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "39f04487-65af-4013-851b-1769795f4ff8", + "pk": "20d82a23-e15b-45ed-b366-e171f14d95cc", "fields": { - "question": 327, - "contribution": 3883, - "answer": 1, - "count": 5 + "question": 477, + "contribution": 3391, + "answer": -1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "39fe5fe8-5f24-466a-afdf-d27e62be3d23", + "pk": "20dddecf-aac1-4411-9583-bb23d7badad9", "fields": { - "question": 325, - "contribution": 1186, + "question": 350, + "contribution": 4046, "answer": 3, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a0d2540-90d4-4af9-be3f-3bc3562c8494", + "pk": "20e46e62-4929-463f-a4a7-75255223c9c0", "fields": { - "question": 259, - "contribution": 1668, - "answer": 1, - "count": 7 + "question": 322, + "contribution": 3474, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a1fa25a-d95e-40d1-977e-21900427e1b9", + "pk": "20e885bc-8921-4469-af21-94d9889e9e26", "fields": { - "question": 435, - "contribution": 4052, + "question": 458, + "contribution": 4091, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a24a22f-ac21-489b-bcbc-fdfc38b61659", + "pk": "20eb6ab5-217f-4208-ae88-549f955c6166", "fields": { - "question": 344, - "contribution": 1822, + "question": 385, + "contribution": 3711, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a26652e-65db-4784-a99a-1506a077ca51", + "pk": "20ebdbcb-a556-4cef-9d65-745913fbead1", "fields": { - "question": 473, - "contribution": 89, - "answer": -1, + "question": 344, + "contribution": 1863, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a3137de-133b-4f45-b0b0-4566d3eeceaa", + "pk": "20f6b348-a46f-430b-af6b-02a1de2f6f65", "fields": { - "question": 329, - "contribution": 881, - "answer": 4, - "count": 9 + "question": 457, + "contribution": 4091, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a399de9-03e0-450a-bc0d-cfc55458cdf8", + "pk": "20f791ae-3352-4201-9317-283d97803378", "fields": { - "question": 259, - "contribution": 822, + "question": 346, + "contribution": 3704, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a3ec0fb-582a-4c49-a649-a6f92a9eeff3", + "pk": "20f7ba98-5960-4aa9-9977-2f2cffc1cc6c", "fields": { - "question": 361, - "contribution": 1835, - "answer": 2, + "question": 337, + "contribution": 3723, + "answer": 1, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a45e71b-a3cd-4547-aa1b-243a267e1088", + "pk": "20ff1f84-ac8d-4834-930e-b2cb795adc1b", "fields": { - "question": 476, - "contribution": 1634, - "answer": -3, + "question": 255, + "contribution": 3422, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a54a3c9-dca1-4c8f-bfd4-9fb122700f5b", + "pk": "210668d5-9dea-46c1-810f-49775d5b1b43", "fields": { - "question": 359, - "contribution": 3648, + "question": 472, + "contribution": 1638, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a62dfb0-66cb-4269-8a0d-7caabab03d22", + "pk": "2107c88e-1cfe-49af-8bb0-e1d89feb53eb", "fields": { - "question": 369, - "contribution": 3944, + "question": 329, + "contribution": 1613, + "answer": 3, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "21080fdf-aa25-408e-9f78-dab99057dec6", + "fields": { + "question": 255, + "contribution": 3406, + "answer": 1, + "count": 5 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "210eaa11-f0e4-457a-a05c-e7f399c78750", + "fields": { + "question": 258, + "contribution": 1724, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a675f26-b95e-45c6-bf97-b60302aadadd", + "pk": "21163360-323d-4865-ac31-9c63fe74184f", "fields": { - "question": 347, - "contribution": 1151, + "question": 323, + "contribution": 822, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a739cb4-72e1-458e-a772-c645096d3287", + "pk": "211e1e1b-7af4-4955-9d3b-40d0bb385862", "fields": { - "question": 319, - "contribution": 3665, + "question": 323, + "contribution": 3354, "answer": 2, - "count": 4 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a75799e-8fb5-4164-be94-186967cd9bb8", + "pk": "2122f5c7-fdd2-4aca-9a8b-1dd7b58c6097", "fields": { - "question": 370, - "contribution": 3608, + "question": 321, + "contribution": 3472, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a7ad10c-9308-4b59-91ef-bc6973c99733", + "pk": "21236ff0-3f5d-4569-86ff-d24a205e7f64", "fields": { - "question": 362, - "contribution": 3649, - "answer": 4, - "count": 2 + "question": 320, + "contribution": 3354, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a7c2314-b2fb-4a5d-9c88-c5d3bf5f6d12", + "pk": "2125be22-8c4f-4bf0-92cd-c6dada31bd8c", "fields": { - "question": 477, - "contribution": 1287, - "answer": -2, + "question": 368, + "contribution": 4117, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a7ec77a-6dc5-4e4a-a35a-4c4fa784cc66", + "pk": "212b6467-e766-46da-91d6-5127e9ca8612", "fields": { - "question": 258, - "contribution": 1612, - "answer": 4, + "question": 260, + "contribution": 1837, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a839de3-99c3-4a9e-bc18-9493d744e19c", + "pk": "212b89f9-730c-4aaf-8277-d5a96341f1ec", "fields": { - "question": 335, - "contribution": 3631, - "answer": 5, + "question": 346, + "contribution": 3912, + "answer": 4, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "21460111-3d93-4589-bca5-044e8e8a6b08", + "fields": { + "question": 347, + "contribution": 4223, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a90f21d-c48c-48b9-8a26-dfedc9f24ba5", + "pk": "214e2366-8bf0-40c8-ae61-ff574bbee9bd", "fields": { - "question": 341, - "contribution": 3450, - "answer": 4, + "question": 349, + "contribution": 3895, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3a9d1801-6976-431b-80cd-c4d4c566e7f4", + "pk": "2159ae7d-2557-406d-9ceb-8dadfcece977", "fields": { - "question": 259, - "contribution": 3721, + "question": 438, + "contribution": 4008, "answer": 2, - "count": 8 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3aa0adcd-fa06-467c-9beb-840be736ae03", + "pk": "215a49c6-850a-4fe6-93dc-5f6a6afcb255", "fields": { - "question": 343, - "contribution": 3728, - "answer": 1, - "count": 8 + "question": 344, + "contribution": 3405, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3aa114f2-1065-4c2c-822c-e3e2a50b6c77", + "pk": "215dad81-f59a-40fb-a011-2025b10770ca", "fields": { - "question": 337, - "contribution": 3372, + "question": 338, + "contribution": 3486, "answer": 4, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3aa15aef-3786-4b1e-880b-eaaa4c4fc4ac", + "pk": "21641dc2-ad54-4c69-9a30-492113ee8388", "fields": { - "question": 329, - "contribution": 3435, + "question": 370, + "contribution": 1786, "answer": 1, - "count": 33 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3aadb2a5-ba70-44cd-ae9e-c9c326fa3a39", + "pk": "216c6bad-af91-486f-98f3-046acad12a3f", "fields": { - "question": 347, - "contribution": 3607, - "answer": 2, + "question": 336, + "contribution": 1662, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3abbc267-e9e0-475e-9697-1378bcc66ff0", + "pk": "217dfa62-72e1-4440-82bf-b3523aa5267b", "fields": { - "question": 1, - "contribution": 4300, - "answer": 5, + "question": 350, + "contribution": 894, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ac2bd65-6190-4ac0-bf58-9a93463aa819", + "pk": "21870b11-8f07-4785-8037-0335d4c66b4b", "fields": { - "question": 477, - "contribution": 913, - "answer": -3, - "count": 1 + "question": 354, + "contribution": 1781, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3acd9fb3-6019-4c41-9cdc-aff9e5cb6738", + "pk": "218f4f7a-a3ba-4548-9f9e-cae323e41937", "fields": { - "question": 326, - "contribution": 3726, + "question": 343, + "contribution": 3855, "answer": 1, - "count": 15 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3acf8911-de2b-4f79-8a88-53be95800e0f", + "pk": "2192ecce-975c-4320-85a1-76076fd09b1b", "fields": { - "question": 262, - "contribution": 1612, - "answer": 3, - "count": 6 + "question": 347, + "contribution": 3879, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ad3fa08-e189-4b02-a497-fce9ab817260", + "pk": "2194a4a8-7afd-4512-b8c5-329de3e42244", "fields": { - "question": 345, - "contribution": 3405, - "answer": 1, + "question": 362, + "contribution": 1836, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ae7c007-364b-4160-b01c-226a91863b96", + "pk": "21a05351-8b4b-4f8b-916f-a2a58fd443f5", "fields": { - "question": 255, - "contribution": 884, - "answer": 1, - "count": 16 + "question": 331, + "contribution": 4084, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3aea1121-df64-4c9e-aa0e-f1f128daa7bc", + "pk": "21b797bc-8ff9-42f1-966a-e3152b1eb50a", "fields": { - "question": 329, - "contribution": 1779, - "answer": 3, - "count": 2 + "question": 339, + "contribution": 1734, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3aee7c12-39df-4d12-804c-4319d84fe558", + "pk": "21c0b128-0a81-436f-a000-8031764f8ee1", "fields": { - "question": 404, - "contribution": 3984, - "answer": 4, + "question": 344, + "contribution": 1880, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3b018286-562f-4403-876f-ede71a6048db", + "pk": "21c89e20-14e3-4c58-bae1-e86d435e9fa4", "fields": { - "question": 433, - "contribution": 4140, - "answer": 3, + "question": 349, + "contribution": 3879, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3b23715d-b557-4c5f-a4de-a11d25545c11", + "pk": "21d3b2bb-12b5-4562-b758-4129a2b1b034", "fields": { - "question": 328, - "contribution": 3722, - "answer": 5, - "count": 2 + "question": 348, + "contribution": 3517, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3b345fb9-c5bd-41b2-9d7a-aa968edbbc38", + "pk": "21dba727-7850-4b38-9c6e-59b3b7dc1df4", "fields": { - "question": 319, - "contribution": 880, - "answer": 3, - "count": 11 + "question": 355, + "contribution": 1154, + "answer": 1, + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3b3ff101-264f-46c9-80fe-896a54c043cc", + "pk": "21df2b87-70fd-4035-9d19-c2a649c83ade", "fields": { - "question": 366, - "contribution": 3881, - "answer": 3, + "question": 473, + "contribution": 1748, + "answer": 0, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3b436d2a-64f8-47eb-a9f1-795147763fce", + "pk": "21e09118-66f4-4ad6-9d3f-4dae7535cefc", + "fields": { + "question": 319, + "contribution": 4100, + "answer": 5, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "21e2b9f7-1678-4fb5-831f-2c165e31e0db", "fields": { "question": 320, - "contribution": 836, - "answer": 2, - "count": 2 + "contribution": 3721, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3b441a27-05d5-4b65-8167-dfa1e5824786", + "pk": "21f1c242-8fa3-44b1-82ca-191c687df7e4", "fields": { - "question": 339, - "contribution": 3693, - "answer": 0, + "question": 362, + "contribution": 1827, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3b4cb3ab-f27b-4a1c-8800-bf18d22b8855", + "pk": "21f6e5ff-5f88-4e8a-9168-ea7a2a83c26f", "fields": { - "question": 335, - "contribution": 3922, + "question": 345, + "contribution": 1246, "answer": 4, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3b55d164-a43d-49a0-817e-b9ab6f5ba1f4", + "pk": "21f6fec0-f78e-4fb0-ab9e-7b04bbf0d2ec", "fields": { - "question": 262, - "contribution": 822, - "answer": 3, - "count": 2 + "question": 260, + "contribution": 4084, + "answer": 4, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3b5ebd7b-69c0-4256-906c-ee589833bebe", + "pk": "21f8e620-f911-497e-8141-b235a2d73a35", "fields": { - "question": 367, - "contribution": 4128, - "answer": 1, - "count": 3 + "question": 360, + "contribution": 3893, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3b614dfd-c577-40be-bf42-1ef5c3ccbad2", + "pk": "21fa2f17-3e12-4e47-8e2d-53476c7fb548", "fields": { - "question": 344, - "contribution": 4223, + "question": 255, + "contribution": 822, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3b745296-3faa-400b-96b4-1913c24d26c5", + "pk": "21ffca7c-3f06-4664-b090-e340dd2b3a89", "fields": { - "question": 359, - "contribution": 1799, - "answer": 1, - "count": 3 + "question": 257, + "contribution": 1668, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3b8081f0-07e7-4b0e-a6c9-233165eee8d2", + "pk": "2202ee7a-d142-4a0a-bfc5-0c2ae95bb66c", "fields": { - "question": 351, - "contribution": 3759, - "answer": 4, + "question": 347, + "contribution": 3855, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3b8c45b0-2c29-4eb4-ae6c-3fa9c1912684", + "pk": "2203fed5-4272-46e3-a8b5-a11bb92c7378", "fields": { - "question": 336, - "contribution": 862, - "answer": 1, - "count": 7 + "question": 476, + "contribution": 880, + "answer": -2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ba88614-8d3e-42d1-8b9b-1096c5792da8", + "pk": "220d1bc0-fe8d-43e4-9808-b1dd51f8da0b", "fields": { - "question": 475, - "contribution": 3482, - "answer": 3, + "question": 339, + "contribution": 3404, + "answer": 0, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3bade55a-ad15-42cd-aca5-ade659f0ef95", + "pk": "22192feb-2890-438e-a0c5-849bfb390ee5", "fields": { - "question": 349, - "contribution": 3487, - "answer": 1, - "count": 2 + "question": 325, + "contribution": 3740, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3bb2c5fc-ec33-4986-8e45-c008551bb92f", + "pk": "221c4bbb-cde8-451a-9930-c334e7c6e7a0", "fields": { - "question": 348, - "contribution": 1872, - "answer": 1, + "question": 366, + "contribution": 3936, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3bc331b1-8a48-43ea-841b-f283dae5a60f", + "pk": "22406bfb-bd0d-482a-89af-98f04228e2a7", "fields": { - "question": 360, - "contribution": 1812, - "answer": 5, - "count": 2 + "question": 363, + "contribution": 3649, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3bcf9e03-c6e0-4090-83fc-62389cdabd17", + "pk": "2246ecff-1563-450b-bf14-991cde1c2b62", "fields": { - "question": 354, - "contribution": 1860, + "question": 346, + "contribution": 1874, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3bd2bbb3-62b3-475c-b9cd-dc1434c03f46", + "pk": "22481c24-f81a-4484-9129-8274a6d97d27", "fields": { - "question": 350, - "contribution": 3440, + "question": 329, + "contribution": 3519, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3bd3e2f8-11d8-4f43-a1d0-d96269fcd964", + "pk": "225deee2-415b-479f-9bf4-a15e7a9fcb3e", "fields": { - "question": 345, - "contribution": 869, - "answer": 2, + "question": 360, + "contribution": 3944, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3bd4caea-c0c4-4908-86f5-117cd20082a5", + "pk": "225f65b0-2609-4821-ad31-573529562eed", "fields": { - "question": 347, - "contribution": 1663, + "question": 428, + "contribution": 4155, "answer": 1, - "count": 8 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3bdafe36-a1bb-401a-89bd-e2813df6a5a9", + "pk": "2263b140-7744-48de-a13a-d0e8c3913ec3", "fields": { - "question": 354, - "contribution": 3545, - "answer": 2, - "count": 2 + "question": 323, + "contribution": 4138, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3bdc7d57-2d0a-4dc5-80d8-f3618f1f45d1", + "pk": "2269ccfc-921d-41ce-8431-e3766ee7b6d4", "fields": { - "question": 374, - "contribution": 3781, + "question": 372, + "contribution": 3406, "answer": 1, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "3beef492-8eb9-4b84-90e6-9e954aecd263", - "fields": { - "question": 322, - "contribution": 1837, - "answer": 5, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3bf5d605-4e31-42a2-a1a5-492a8e472ac3", + "pk": "226df1a8-19c4-48f5-bca8-eb755e25eea4", "fields": { - "question": 258, - "contribution": 3474, - "answer": 3, - "count": 5 + "question": 257, + "contribution": 1668, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3bfdbc15-1145-4636-9f64-f5133fe3b2e2", + "pk": "2270c1f2-251b-401b-82e4-f97a763179f4", "fields": { - "question": 333, - "contribution": 3936, - "answer": 2, - "count": 3 + "question": 472, + "contribution": 836, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3bff152d-6e58-4da7-af8c-2a93dd75a4be", + "pk": "22714219-3e0a-434f-9b4a-b2b41984f13e", "fields": { - "question": 323, - "contribution": 3406, - "answer": 4, + "question": 260, + "contribution": 3434, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c13cf59-e0e0-41cd-a693-26582f69f0b7", + "pk": "22806bec-9d91-4234-b9b9-a90fe4d8f9e9", "fields": { - "question": 317, - "contribution": 884, + "question": 366, + "contribution": 3595, "answer": 2, - "count": 11 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c315106-5f37-4745-a72c-118430381182", + "pk": "2287d3cd-50f0-4f79-bc32-06aae23aa670", "fields": { - "question": 476, - "contribution": 822, - "answer": 3, + "question": 348, + "contribution": 4095, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c33c190-78af-4a69-a130-7e31f4f67a56", + "pk": "22893f34-5e79-4185-a91d-9632a94d0a45", "fields": { - "question": 360, - "contribution": 1812, + "question": 255, + "contribution": 884, "answer": 4, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c3b47c3-bb16-4baf-84e7-36ac60369cd8", + "pk": "228d1151-ef3f-4143-847e-4cda9329c08e", "fields": { - "question": 370, - "contribution": 3852, - "answer": 2, - "count": 2 + "question": 326, + "contribution": 3859, + "answer": 1, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c3f6879-5143-4ed9-aa48-274a1ac7e32a", + "pk": "228e279f-3304-411f-a47e-e8ecc6d9e899", "fields": { - "question": 326, - "contribution": 3556, - "answer": 2, - "count": 4 + "question": 341, + "contribution": 3685, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c42842c-2e82-41bb-838f-b121a7fbb64d", + "pk": "229a5d5d-f884-46b7-974a-9bd576159756", "fields": { - "question": 475, - "contribution": 3486, - "answer": -1, + "question": 255, + "contribution": 3721, + "answer": 1, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c4a046d-166a-463e-bda4-ac35fbdef72f", + "pk": "22a1a79a-0097-4e18-9d05-25291298b570", "fields": { - "question": 349, - "contribution": 4191, - "answer": 1, - "count": 2 + "question": 353, + "contribution": 1860, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c4e1bfd-a62e-4cff-b5a3-5d21c496d8e7", + "pk": "22a1adc2-5116-40ad-9a30-1153f280edc9", "fields": { - "question": 323, - "contribution": 3739, - "answer": 4, - "count": 2 + "question": 369, + "contribution": 1836, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c56561b-1293-483b-9de0-49ceec8ad7a3", + "pk": "22a239cc-c04c-437a-84d0-22d344c16b4a", "fields": { - "question": 473, - "contribution": 3486, - "answer": 0, - "count": 9 + "question": 356, + "contribution": 1257, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c61b4fb-0d86-440d-a81f-1cde6d4e9391", + "pk": "22abe256-d857-4c58-8624-7a04c9ab619a", "fields": { - "question": 335, - "contribution": 4205, - "answer": 3, + "question": 345, + "contribution": 4234, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c68bf81-9f66-4e47-9498-8506d26b45da", + "pk": "22b30c72-4d79-40e6-a9e7-6110e9098037", "fields": { - "question": 320, - "contribution": 1612, - "answer": 1, - "count": 9 + "question": 345, + "contribution": 3896, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c6ad588-6544-483b-bc8d-d3ccf1165a8e", + "pk": "22dfaf44-70a0-45f4-91b7-f38ad0e56d7f", "fields": { - "question": 475, - "contribution": 3645, + "question": 320, + "contribution": 3406, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c74ce4c-2dca-474e-806a-0fd1ab2501ff", + "pk": "22e0fc7e-64dc-47b4-b0f9-d4289cde7632", "fields": { - "question": 326, - "contribution": 3589, - "answer": 1, - "count": 6 + "question": 321, + "contribution": 4022, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c839971-2d94-4a86-811e-938d77ea9dd8", + "pk": "22f05230-0575-4427-8712-c8ac97a274c5", "fields": { - "question": 315, - "contribution": 3721, - "answer": 4, - "count": 3 + "question": 341, + "contribution": 3745, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c8724f9-7e80-4bad-909a-04ff0c0e27f5", + "pk": "230474b0-9998-4ff0-bcdb-42654119637f", "fields": { - "question": 475, - "contribution": 3751, - "answer": -1, + "question": 349, + "contribution": 1639, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3c8e962f-838b-40c4-bbe2-d92183b2fb07", + "pk": "230ac46e-3591-4dea-ab25-366346d0455a", "fields": { - "question": 344, - "contribution": 919, - "answer": 2, - "count": 6 + "question": 315, + "contribution": 4046, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ca10ffa-b23c-4f88-a149-b621eca617dd", + "pk": "230d9df2-431e-4ff6-8ba9-cf9620b5abc1", "fields": { - "question": 316, - "contribution": 880, - "answer": 3, - "count": 13 + "question": 321, + "contribution": 1634, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ca4d31b-fea2-4377-ba6e-3c10df11e754", + "pk": "230eb9c2-693c-4b91-b78e-acbf694d6765", "fields": { - "question": 435, - "contribution": 4008, - "answer": 3, + "question": 349, + "contribution": 1641, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3cb39ff1-ae6c-46d9-a586-918956b12a3c", + "pk": "230ecbe8-4b2b-4e16-b144-3d9fc67be50b", "fields": { - "question": 335, - "contribution": 3553, - "answer": 1, + "question": 350, + "contribution": 832, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3cb5a4b1-a53b-4973-b6c6-e1d06ba1fa60", + "pk": "23134f1d-b7a4-4aee-9bac-24ee1c0f97b3", "fields": { - "question": 329, - "contribution": 1777, - "answer": 3, - "count": 2 + "question": 355, + "contribution": 1786, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3cc1ffd2-3a41-416d-b2b2-86d0e9a8d44d", + "pk": "23137791-69ef-48e5-be95-ef00af12879c", "fields": { - "question": 438, - "contribution": 4052, - "answer": 3, - "count": 2 + "question": 258, + "contribution": 1634, + "answer": 4, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3cce4abc-e08e-4fcc-bd62-7c42461a7169", + "pk": "23142ccf-d65d-4783-ac93-c2f4b400ffb1", "fields": { - "question": 328, - "contribution": 4153, + "question": 432, + "contribution": 4008, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3cd1c0ac-6463-4d95-80ce-54dac172699f", + "pk": "23145e9c-1ffb-4f01-9318-30bf2e2569b2", "fields": { - "question": 315, - "contribution": 3679, - "answer": 4, - "count": 1 + "question": 323, + "contribution": 1612, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3cd2955d-43c1-4eb1-80a5-bd888fc74529", + "pk": "2319a20f-3766-4a8c-98e1-c0e76544ec9a", "fields": { - "question": 326, - "contribution": 1802, + "question": 472, + "contribution": 3466, "answer": 5, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3cd870ac-6ab8-4466-8606-012d43810609", + "pk": "2320fe96-4a14-411e-8f4c-a5e8753fdf4d", "fields": { - "question": 340, - "contribution": 3482, - "answer": 1, + "question": 323, + "contribution": 3665, + "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ce38141-1073-46c5-a71f-75fe02a56aac", + "pk": "2321ca23-21e7-4f3f-967b-9e63b6dd1b37", "fields": { - "question": 475, - "contribution": 3372, + "question": 331, + "contribution": 3422, "answer": 0, - "count": 1 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3cfc9dfd-a797-4994-a20b-617087655f17", + "pk": "2328c949-404d-46e6-874b-9d6c7b1b0a40", "fields": { - "question": 360, - "contribution": 3597, - "answer": 4, + "question": 346, + "contribution": 1842, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d0e1def-4ea2-4231-9380-08bf0fbe82e9", - "fields": { - "question": 316, - "contribution": 822, - "answer": 1, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "3d15151c-12e4-4bfb-9f8d-4b73a81fe911", + "pk": "232a89e5-031b-4510-b4e1-27da701aebab", "fields": { - "question": 328, - "contribution": 1780, + "question": 346, + "contribution": 1246, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d1d8978-4fb5-4fe8-964b-35431f801c6c", + "pk": "232c5122-cec1-4035-8656-5e4e975eb768", "fields": { "question": 321, - "contribution": 4022, + "contribution": 4028, "answer": 1, - "count": 1 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d29a6dc-c1c1-4e3d-a393-b9878c3df8cc", + "pk": "2338b9ab-7fa6-4411-8a2f-d9ee76d82d5a", "fields": { - "question": 355, - "contribution": 1258, - "answer": 1, - "count": 5 + "question": 369, + "contribution": 3921, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d3cad36-0758-4e32-8050-b410f49f7572", + "pk": "234c1eb7-86bd-402a-b50a-40067124ebca", "fields": { - "question": 322, - "contribution": 3462, + "question": 357, + "contribution": 1860, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d48895e-e9d7-47cc-bca7-2561f15fe13c", + "pk": "23562469-3adf-47b1-ac47-e1dc325b6cc9", "fields": { - "question": 347, - "contribution": 1881, - "answer": 2, - "count": 4 + "question": 428, + "contribution": 4261, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d494355-ad9b-45a6-a2c8-0a5936f629f1", + "pk": "235fc357-27f3-43d4-8796-862b6dbf6f26", "fields": { - "question": 392, - "contribution": 3711, - "answer": 2, - "count": 3 + "question": 258, + "contribution": 4120, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d4d6841-aaab-4bf1-a669-d096f669084d", + "pk": "2369a39f-1432-4378-b4c2-90bb989ec30f", "fields": { - "question": 259, - "contribution": 4084, - "answer": 4, - "count": 2 + "question": 346, + "contribution": 4189, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d4fb04e-f0cb-49b9-bd83-73b7e7b26500", + "pk": "23755fac-bb71-46fd-a694-70c99c160f27", "fields": { - "question": 351, - "contribution": 4022, + "question": 338, + "contribution": 4020, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d50f6d0-4cfb-46b4-8f28-2a0e1b0be21d", + "pk": "2385c21b-3854-4552-9990-b46b50fe1689", "fields": { - "question": 332, - "contribution": 3886, - "answer": 3, - "count": 1 + "question": 321, + "contribution": 3354, + "answer": 1, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d58bbbb-ace2-4944-994e-b125f37ff9f2", + "pk": "2392196a-f608-4d8b-b2db-3db1fdaa8b8c", "fields": { - "question": 458, - "contribution": 4284, - "answer": 4, - "count": 2 + "question": 370, + "contribution": 4269, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d663c1f-febb-4fcb-91d4-1ddc6eb0c7db", + "pk": "23c250b4-bdda-4501-a754-c38549581f98", "fields": { - "question": 341, - "contribution": 3821, - "answer": 3, - "count": 1 + "question": 433, + "contribution": 4140, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d69a52e-7f66-46f6-8bc1-525210edfd71", + "pk": "23c34d61-2381-408d-b567-785d409a5898", "fields": { - "question": 339, - "contribution": 3727, - "answer": 2, - "count": 1 + "question": 349, + "contribution": 3896, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d7840d4-5855-4a45-9464-10b2db15dd55", + "pk": "23c607a4-0fc6-4643-9c4e-526686fe1f5c", "fields": { - "question": 346, - "contribution": 4146, - "answer": 2, + "question": 472, + "contribution": 3727, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d80cb5b-bd50-4327-aeed-33654aa15391", + "pk": "23d07742-a407-4c1e-a22c-d7d58625bfaf", "fields": { - "question": 476, - "contribution": 3390, - "answer": 0, - "count": 8 + "question": 336, + "contribution": 4094, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d8baa3c-616b-4579-bb37-34d0e4078176", + "pk": "23d96fc6-c385-4ce0-a98a-d033a5b86402", "fields": { - "question": 351, - "contribution": 3406, - "answer": 2, - "count": 5 + "question": 348, + "contribution": 4123, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d9701ca-7952-44aa-84a6-19eae8b3b863", + "pk": "23dfaffc-3e0c-413e-b069-c028f51ad311", "fields": { - "question": 345, - "contribution": 1661, + "question": 477, + "contribution": 1613, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d9c6c31-ada9-4756-b49d-eef107d50e43", + "pk": "23eea96a-3d7d-43da-aed9-1e15361f5103", "fields": { - "question": 319, - "contribution": 3721, - "answer": 5, - "count": 9 + "question": 371, + "contribution": 3598, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3d9eab2a-0a43-49b4-85e9-2fcac0c7b44f", + "pk": "23ef06ce-5c91-4bf9-9b0d-1b4c279dea40", "fields": { "question": 475, - "contribution": 3751, - "answer": 0, + "contribution": 868, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3da42d80-acaf-4513-970c-06b0a314d9aa", + "pk": "23fbd675-3c5e-43ff-b01d-d601bbecf9ae", "fields": { - "question": 320, - "contribution": 3462, + "question": 337, + "contribution": 788, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3daae53a-86b5-4d5d-b4e0-b2c28ece5ddc", + "pk": "2408c27f-1335-41d9-92cf-f8c9ff58c8fa", "fields": { - "question": 323, - "contribution": 1612, + "question": 394, + "contribution": 3781, "answer": 2, - "count": 9 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3dac3439-35fc-477a-a024-ba6a7c61a46e", + "pk": "24147e81-4321-47f7-98b9-fe782bea91d5", "fields": { - "question": 315, - "contribution": 3739, + "question": 320, + "contribution": 3721, "answer": 2, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "3dacc0e8-6caa-42f7-b2de-219f0cefc669", - "fields": { - "question": 360, - "contribution": 1812, - "answer": 3, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3db6e978-1e5b-4ad2-936a-076d2d63c5bc", + "pk": "2420c3ab-4e8e-46ab-b8e1-9da47182ec86", "fields": { - "question": 371, - "contribution": 3592, - "answer": 1, - "count": 2 + "question": 477, + "contribution": 1797, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3dba5705-7071-41b1-98b5-b9ea852e1e0e", + "pk": "24232d7f-fab0-4ec9-873f-3bf29c2c5775", "fields": { "question": 262, - "contribution": 4084, - "answer": 4, - "count": 10 + "contribution": 1634, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3dc8246f-226a-46f6-b7f6-4dab458ab8b0", + "pk": "242430e2-c7b8-4414-8dc2-6f3da423bd3e", "fields": { - "question": 462, - "contribution": 4141, - "answer": 2, + "question": 344, + "contribution": 3608, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3dce62b8-046e-4e22-bfbe-0f58d818d3b4", + "pk": "24245e57-eb74-4db6-882d-544f9977b933", "fields": { - "question": 259, - "contribution": 4022, - "answer": 3, + "question": 477, + "contribution": 4101, + "answer": -2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3dd0c3de-cb85-4ce3-88a6-61ebd1608586", + "pk": "2433ecb2-5cd7-4c52-86b0-d1eea4b10f79", "fields": { - "question": 347, - "contribution": 3728, - "answer": 2, - "count": 2 + "question": 328, + "contribution": 4152, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3dd75d39-afe7-4fdf-92eb-a370fb0c132c", + "pk": "24346969-04d0-4c6e-9de4-a0cfb90481fc", "fields": { - "question": 316, - "contribution": 3474, - "answer": 5, - "count": 1 + "question": 370, + "contribution": 1849, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3dea5419-cc93-43f4-8eaf-12a8cad8864c", + "pk": "244588bf-1d23-4fdd-a73d-52e90678d85c", "fields": { - "question": 336, - "contribution": 886, + "question": 338, + "contribution": 3727, "answer": 4, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "3e0a382a-2a16-431c-b755-f4cf7420e556", - "fields": { - "question": 361, - "contribution": 1806, - "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e0af366-0154-446f-8c0e-e1b0567c349e", + "pk": "24460286-5216-4518-a7a5-3c123ff60c30", "fields": { - "question": 349, - "contribution": 3934, - "answer": 3, - "count": 1 + "question": 473, + "contribution": 4185, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e165d31-2874-41d6-a9fa-605775630878", + "pk": "244e9fb4-5ac1-4416-ac18-f1010e9d13b5", "fields": { - "question": 327, - "contribution": 1154, + "question": 321, + "contribution": 4084, "answer": 3, - "count": 7 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e18e91a-9d7e-4295-b50d-0bd9cba14429", + "pk": "24516e60-c8cd-41e7-9c5a-9ac7470e061a", "fields": { - "question": 325, - "contribution": 1635, + "question": 343, + "contribution": 1250, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e1efa65-6a61-4e33-922b-1a8512a0424a", + "pk": "2455079c-8dbc-48f9-8f57-dc01ed70b343", "fields": { - "question": 320, - "contribution": 4046, + "question": 317, + "contribution": 1668, "answer": 1, - "count": 6 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e252f10-f13e-4843-8f36-b9d91c77a75c", + "pk": "245972d7-7dc4-41cf-b169-aaa1fbb53d7a", "fields": { - "question": 317, - "contribution": 3665, - "answer": 5, - "count": 1 + "question": 328, + "contribution": 3589, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e2f043d-afdf-45a8-9bbf-4f7d7f0a2cf5", + "pk": "2474af84-7129-4872-964f-6f37903b22b1", "fields": { - "question": 353, - "contribution": 3832, + "question": 343, + "contribution": 869, "answer": 1, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e30ab88-68e9-4050-808c-43394a77a31e", + "pk": "2476ea93-b8b0-439c-b408-29e81b4334fc", "fields": { - "question": 260, - "contribution": 3434, + "question": 336, + "contribution": 1921, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e3766dd-7ba0-4e79-a03c-a8c5975ac3c6", + "pk": "2483d73f-9a30-4ed8-9abc-0f24d1ce1c0d", "fields": { - "question": 348, - "contribution": 4187, - "answer": 1, - "count": 4 + "question": 367, + "contribution": 864, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e3caa74-ecb4-48d2-943f-872f517d0ab4", + "pk": "248d52df-aba8-4918-85e4-993eff0bcb82", "fields": { - "question": 362, - "contribution": 1836, - "answer": 3, + "question": 331, + "contribution": 4046, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e3d9aa2-34f6-413d-8ef3-d5dfa524fa00", + "pk": "248f7ed6-36eb-4198-85a0-f87b677baf6b", "fields": { - "question": 344, - "contribution": 4189, - "answer": 3, - "count": 2 + "question": 337, + "contribution": 886, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e40fbf5-e8a1-4e39-910f-a53b4fa8ff50", + "pk": "24b4d776-f30d-4023-8442-155786b80f54", "fields": { - "question": 477, - "contribution": 3407, + "question": 320, + "contribution": 836, "answer": 1, - "count": 3 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e4a6f86-c4f2-4ffb-b918-eaaace0d7857", + "pk": "24b5c792-9456-45e3-996d-4f1ea10b058d", "fields": { - "question": 331, - "contribution": 4022, - "answer": 0, - "count": 3 + "question": 379, + "contribution": 3781, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e519e0e-1504-4348-b519-bae80a3bd46e", + "pk": "24bb5b05-167e-4e87-9f1c-8edf72c552ab", "fields": { - "question": 335, - "contribution": 3551, - "answer": 2, - "count": 5 + "question": 346, + "contribution": 887, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e54d047-69dc-4156-a8fb-a0a4b0af7ac7", + "pk": "24c993a5-0c25-4aec-89ca-dedbc6bd7dce", "fields": { - "question": 360, - "contribution": 3921, + "question": 436, + "contribution": 4008, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e59006d-13c3-4813-b07f-bd8ab72fc2b5", + "pk": "24d711eb-a310-4504-902c-cdc71cec1cc2", "fields": { - "question": 317, - "contribution": 4084, - "answer": 3, - "count": 9 + "question": 323, + "contribution": 3434, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e5c9d63-f4c3-4276-94fb-63aa70a97a40", + "pk": "24f578f2-efa1-4304-9817-6326334034ee", "fields": { - "question": 329, - "contribution": 1287, + "question": 262, + "contribution": 3679, "answer": 3, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e6bca21-de81-4e67-ae49-8340bbe0693c", + "pk": "24ff2929-f1eb-4bc7-9681-e8fc803dd815", "fields": { - "question": 476, - "contribution": 3354, - "answer": 1, - "count": 4 + "question": 352, + "contribution": 4022, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3e7c9685-11d5-465a-8e45-863649233919", + "pk": "2505c0ab-bd06-488e-8708-09e70ca024fe", "fields": { - "question": 476, - "contribution": 4138, - "answer": 1, - "count": 12 + "question": 321, + "contribution": 1612, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ebeb38e-3757-4218-ab16-bce9d0bef3f6", + "pk": "25076c8c-0a91-4b3e-bace-472270de0e4d", "fields": { - "question": 360, - "contribution": 3921, - "answer": 1, + "question": 335, + "contribution": 837, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ec6467b-c4b6-4460-a441-90a2eb576dd1", + "pk": "2507baff-45f0-4f64-b231-6248e4914d45", "fields": { - "question": 316, - "contribution": 4118, + "question": 371, + "contribution": 4152, "answer": 3, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ec6f533-e976-4e13-a789-a58329cc427d", + "pk": "250b8eab-8efe-4afd-9eae-8349f1e458a4", "fields": { - "question": 335, - "contribution": 3922, - "answer": 3, - "count": 1 + "question": 473, + "contribution": 3422, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ecf67ba-d189-4e3b-9d39-912b52c938d6", + "pk": "251066f5-5105-4bbe-91cd-fdd2e51af1b2", "fields": { - "question": 331, - "contribution": 3434, - "answer": 0, - "count": 26 + "question": 319, + "contribution": 4084, + "answer": 2, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ed87223-162d-45cd-bc8e-7307cdda41dd", + "pk": "251c63e8-ddc8-44aa-864e-0c22eebcd072", "fields": { - "question": 473, - "contribution": 3474, - "answer": -3, + "question": 400, + "contribution": 4041, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ee9b110-766c-4afe-a07c-cf7ac27d0554", + "pk": "251e4ad8-3499-4e1d-9ca3-5a6387076d88", "fields": { - "question": 475, - "contribution": 3450, + "question": 346, + "contribution": 4188, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3eed4795-6043-4d72-be93-f4484eca7891", + "pk": "2526977e-9fdd-4c0d-9e1e-0bc4d58eb6ae", "fields": { - "question": 338, - "contribution": 1660, + "question": 356, + "contribution": 1188, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3ef33731-415b-4ebb-8e53-41cf662338b9", + "pk": "252b7c0a-492b-47f2-8eee-c90a19669bb1", "fields": { - "question": 329, - "contribution": 1669, + "question": 400, + "contribution": 3646, "answer": 1, - "count": 9 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3efd551e-bb58-4ab8-b3eb-85db7838944d", + "pk": "252de463-51db-45f3-8f4d-224a35b541e5", "fields": { - "question": 340, - "contribution": 3450, - "answer": 4, - "count": 1 + "question": 371, + "contribution": 3936, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f1464d2-9f24-4a7d-ba28-fdea11c50d94", + "pk": "25381d2d-a8c4-4db0-8edf-47ed947920b0", "fields": { - "question": 258, - "contribution": 3665, - "answer": 4, + "question": 348, + "contribution": 3606, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f1b695f-546a-4125-98c1-c69e22edc805", + "pk": "253a3ea4-e686-42a5-990e-fd683e8bab1e", "fields": { - "question": 463, - "contribution": 4073, + "question": 336, + "contribution": 886, + "answer": 3, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "253ae0ca-c93c-4eda-92f0-068bb6d008a4", + "fields": { + "question": 346, + "contribution": 3517, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f2f64d1-7619-4ae2-bf35-992545f6486e", + "pk": "25400d95-f8e4-4991-9920-4d0a708d8f08", "fields": { - "question": 315, - "contribution": 1626, - "answer": 3, - "count": 6 + "question": 327, + "contribution": 909, + "answer": 2, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f3204b7-0f63-4032-a437-3b28aa295c7e", + "pk": "25575a1e-718e-4c5c-9016-7ea90dd571d7", "fields": { - "question": 349, - "contribution": 1869, - "answer": 1, - "count": 1 + "question": 319, + "contribution": 3679, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f32b741-9cf2-4c77-acca-6d106fabc0ca", + "pk": "255eaff1-02e8-462e-a71d-8952b1826bbf", "fields": { - "question": 262, + "question": 319, "contribution": 3390, - "answer": 4, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f3976a9-8d78-4618-b97e-f94d868f6acd", + "pk": "2563b83d-631f-4c9e-8c4e-dd2c9f18e642", "fields": { - "question": 337, - "contribution": 3508, + "question": 340, + "contribution": 840, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f3d9449-13f5-4822-96f6-99c02f71a0f9", + "pk": "25659057-5eba-4fb8-93a8-6252529e2fae", "fields": { - "question": 328, - "contribution": 1186, + "question": 327, + "contribution": 4117, "answer": 2, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f438e9a-fa7d-40ea-a7a2-f26079b1599e", + "pk": "256744fb-71b7-40fd-8c81-4c0699ce9928", "fields": { - "question": 359, - "contribution": 1808, - "answer": 5, + "question": 258, + "contribution": 3679, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f47f71c-b525-4842-aa12-7c40f1030e88", + "pk": "2583e563-7031-47fb-9cd2-1072e2700e22", "fields": { - "question": 368, - "contribution": 3740, - "answer": 3, + "question": 255, + "contribution": 3462, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f50c968-ddb1-48a5-9aaa-1af6efbfa008", + "pk": "25903078-d89c-48ca-bf91-a61944fcf406", "fields": { - "question": 316, - "contribution": 1837, + "question": 367, + "contribution": 3434, "answer": 4, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "3f591feb-9f88-4116-b622-a5a93fa2a87b", - "fields": { - "question": 353, - "contribution": 1243, - "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f6901db-2f46-448b-9f2f-45cd5ca6359e", + "pk": "25a107fb-652b-487b-a695-b6c0380c25c4", "fields": { - "question": 348, - "contribution": 1842, - "answer": 2, - "count": 2 + "question": 331, + "contribution": 3422, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f776dc3-2278-4773-bf76-48abb6ff153c", + "pk": "25a551da-b661-4c13-bfd1-d97773d20c91", "fields": { - "question": 354, - "contribution": 1776, - "answer": 2, - "count": 3 + "question": 362, + "contribution": 1835, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f8685b8-7028-47fb-925b-1d8993a309d1", + "pk": "25a60956-74bd-45b7-9621-87cfca33a413", "fields": { - "question": 360, - "contribution": 3653, + "question": 348, + "contribution": 887, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f886e33-7a42-429f-80a6-46a4d21c16de", + "pk": "25a60c3f-51ac-4db0-9c70-a227c03f4655", "fields": { - "question": 336, - "contribution": 1702, - "answer": 2, + "question": 344, + "contribution": 3939, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f8b3fc1-11ae-444f-9274-877532180cf5", + "pk": "25c3402c-44b9-4afb-8699-df87a42af995", "fields": { - "question": 328, - "contribution": 1802, + "question": 355, + "contribution": 4244, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f94ec26-3c07-4a59-b146-d3279a0cf6e7", + "pk": "25cbd6be-346e-4127-a30b-1afecd7e791c", "fields": { - "question": 338, - "contribution": 3454, - "answer": 3, - "count": 1 + "question": 259, + "contribution": 4120, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f959007-5932-43f3-9f4f-2bd3e98ae875", + "pk": "25ccadab-2997-4729-8aba-f283ee61ad09", "fields": { - "question": 359, - "contribution": 3637, + "question": 332, + "contribution": 4155, "answer": 1, - "count": 1 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f961552-039f-40a4-9061-9bdb5b7b27ca", + "pk": "25d24376-455b-4dcc-a843-e4ac98b97437", "fields": { - "question": 326, - "contribution": 3463, - "answer": 1, - "count": 3 + "question": 340, + "contribution": 3645, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f9cd01f-f81e-4f9b-9897-13a6896bf8e5", + "pk": "25d5f8c0-e462-4611-ad9c-567c2b9e4842", "fields": { - "question": 262, - "contribution": 3354, + "question": 335, + "contribution": 3882, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3f9f3a9e-da9b-41ed-8b5d-1af32126264d", + "pk": "25dda42e-ec89-46f0-8479-61d6783ab372", "fields": { - "question": 473, - "contribution": 1638, - "answer": -1, - "count": 1 + "question": 343, + "contribution": 4129, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3fb2ae03-2cd1-4fd1-a7bb-e7a2b0adefd2", + "pk": "25dea48e-2edf-4bd5-99dc-a27478607534", "fields": { - "question": 258, - "contribution": 3472, - "answer": 1, - "count": 3 + "question": 315, + "contribution": 3665, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3fbef67e-6217-4640-9373-e2da55e0c97c", + "pk": "25e5cff9-062d-44aa-a2bd-93519ecda135", "fields": { - "question": 321, - "contribution": 1626, - "answer": 2, - "count": 4 + "question": 345, + "contribution": 3796, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3fce8c22-2ed4-4b7c-81fc-24c67a013af1", + "pk": "25e6e857-07ee-4cbb-b921-a22996f6953f", "fields": { - "question": 320, - "contribution": 1634, + "question": 332, + "contribution": 4205, "answer": 1, - "count": 6 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3fd361a9-e0e0-4f5b-a0d6-de586668aa2d", + "pk": "25f84c0a-358c-4a6d-8ce4-4a21cde6e96b", "fields": { - "question": 360, - "contribution": 3652, - "answer": 3, - "count": 1 + "question": 472, + "contribution": 1656, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3fde0758-31c5-4c59-9441-5d989fd9a39b", + "pk": "25faeb18-9c65-4be1-9a1d-d9597eece2e5", "fields": { - "question": 317, - "contribution": 3665, + "question": 349, + "contribution": 1206, "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3febb49a-cc2e-45b6-aa53-af1d54952f48", + "pk": "2601adc0-347e-40c9-af9a-1c36edc72b28", "fields": { - "question": 347, - "contribution": 3536, + "question": 375, + "contribution": 3775, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "3feed6d6-755a-4cfb-9cbd-dcb4136cb795", + "pk": "260bd594-86f8-4486-9a58-772bab37af39", "fields": { - "question": 329, + "question": 368, "contribution": 4117, - "answer": 1, - "count": 5 + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40072e71-f0a2-42f6-a65b-3c831266ec03", + "pk": "2615ca39-4816-435b-89be-9e974d9441cc", "fields": { - "question": 327, - "contribution": 4153, + "question": 367, + "contribution": 4100, "answer": 1, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "40087ff8-fa47-49ac-b3d4-fb63762d3dbe", - "fields": { - "question": 328, - "contribution": 909, - "answer": 2, "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40103264-0a99-4c2e-9992-f7064e9ebde2", + "pk": "26166440-b778-4769-8ba5-efb0efd241af", "fields": { - "question": 322, - "contribution": 822, - "answer": 4, + "question": 354, + "contribution": 4025, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4010a62a-2f6e-42ff-a7f5-4e43d8c95a84", + "pk": "26196822-20a7-450b-9a64-285ab5d8cb09", "fields": { - "question": 371, + "question": 428, "contribution": 4156, "answer": 1, "count": 7 @@ -23276,609 +34143,589 @@ }, { "model": "evaluation.ratinganswercounter", - "pk": "401238d3-e77f-4467-83e7-f8c10a7d9e23", + "pk": "26328607-a1a3-44b3-8aec-1fdf3b267ba0", "fields": { - "question": 359, - "contribution": 3944, - "answer": 1, - "count": 3 + "question": 349, + "contribution": 3896, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40136db4-21a2-4e58-a069-174e5d012497", + "pk": "264023e8-bf2c-4b16-ad3c-2405caebc0a9", "fields": { - "question": 476, - "contribution": 3474, - "answer": -3, - "count": 4 + "question": 321, + "contribution": 1837, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4019a25a-dc8b-49a0-8d0d-8d041a0ff4c8", + "pk": "2658d2d9-1b3d-4770-8725-5eef2714d092", "fields": { - "question": 326, - "contribution": 1778, - "answer": 3, + "question": 410, + "contribution": 3974, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "401c9811-7464-4d74-9d72-213543baf94c", + "pk": "266d183f-7985-4094-8acd-a620a5bb80e7", "fields": { - "question": 339, - "contribution": 1748, - "answer": 0, - "count": 1 + "question": 255, + "contribution": 4116, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "401edde6-0b88-468e-864d-d96a88155469", + "pk": "2671b83d-8748-4ff5-bf87-5c66ee92f6f2", "fields": { - "question": 475, - "contribution": 3821, - "answer": -1, - "count": 1 + "question": 369, + "contribution": 3893, + "answer": 1, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40207e59-f650-4fc3-af81-4fc30d8f5127", + "pk": "26767e06-25e9-4236-aa44-4b81e92bcf67", "fields": { - "question": 328, - "contribution": 3556, - "answer": 2, - "count": 4 + "question": 262, + "contribution": 822, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40280e44-5b5e-4865-bbb7-ac25e6465258", + "pk": "267b2781-08a3-4d36-9500-47bd2893f0e4", "fields": { - "question": 477, - "contribution": 3423, + "question": 344, + "contribution": 3606, "answer": 3, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4033838c-d883-4106-b504-abd7088c7418", + "pk": "267f5a66-66b7-46ec-8e57-afca3bcfd6c6", "fields": { - "question": 366, - "contribution": 4154, + "question": 344, + "contribution": 1641, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "403d62f5-cf5a-473e-9ad1-f02c02236a26", + "pk": "268dde4a-0462-4e14-90d2-210f8f932460", "fields": { - "question": 322, - "contribution": 880, + "question": 363, + "contribution": 3918, "answer": 1, - "count": 16 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40465a8e-5a54-4a78-be05-f0a55d51c476", + "pk": "2695406a-d090-4a4f-a739-628636af6dae", "fields": { - "question": 353, - "contribution": 3608, - "answer": 3, - "count": 1 + "question": 359, + "contribution": 1808, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "404c7b02-128a-4a6a-a237-cb0ed6a5a285", + "pk": "2698faf3-2ada-43a8-bedf-2b7c8610a370", "fields": { - "question": 370, - "contribution": 3782, - "answer": 1, - "count": 2 + "question": 433, + "contribution": 4140, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "405052a3-74a4-48dc-ba37-908bd7a09c6b", + "pk": "26a06f2d-4ee4-43af-a302-d5389eaa9b07", "fields": { - "question": 348, - "contribution": 4161, - "answer": 1, + "question": 362, + "contribution": 3919, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "405496e3-b6f8-4af0-8eea-fbbaac654d17", + "pk": "26a8c625-9e8e-4d51-8424-2bdc68a6fc07", "fields": { - "question": 473, - "contribution": 3462, - "answer": -3, + "question": 417, + "contribution": 4024, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4061402b-a6da-4762-b5e1-d32be77e7c0d", + "pk": "26b2dd46-d770-49f4-9c64-f7b3915de1d0", "fields": { - "question": 315, - "contribution": 3679, - "answer": 3, - "count": 3 + "question": 372, + "contribution": 3466, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40657caa-00cd-4113-af82-11f92dfe238d", + "pk": "26bb0e16-888f-4592-a9f5-f73158ed7c71", "fields": { - "question": 347, - "contribution": 1661, + "question": 368, + "contribution": 4152, "answer": 1, - "count": 3 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "406773c4-c944-47fa-9a3b-c9348370a884", + "pk": "26cf57a7-1b13-4367-a125-fd80a9291857", "fields": { - "question": 262, - "contribution": 4046, - "answer": 2, - "count": 1 + "question": 366, + "contribution": 3932, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4069f6c8-b4db-4785-9e62-38bc331aee53", + "pk": "26cf9da9-01ef-4e7b-b8ae-f7177324731b", "fields": { - "question": 477, - "contribution": 4101, - "answer": 1, - "count": 1 + "question": 345, + "contribution": 1228, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40748803-97cf-400b-b485-9676cf712092", + "pk": "26d23dfd-3585-421b-b050-a7212fb07ff9", "fields": { - "question": 433, - "contribution": 4052, - "answer": 3, + "question": 335, + "contribution": 4205, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40751354-aca6-46e6-9296-357733e911ec", + "pk": "26d59197-fd88-43f3-9b91-12d905d37e2d", "fields": { - "question": 357, - "contribution": 3546, - "answer": 4, - "count": 1 + "question": 347, + "contribution": 1867, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "407b1110-13aa-44b7-a5ee-fc30a7648a50", + "pk": "26e0679d-9129-4401-8cac-3f4211ff3028", "fields": { - "question": 262, - "contribution": 3354, - "answer": 4, - "count": 1 + "question": 323, + "contribution": 1837, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "408c2176-b406-4cd0-a710-e6afe0d035bb", + "pk": "26e0f340-114d-4e65-8c0c-2abd8afd0bd0", "fields": { - "question": 384, - "contribution": 3781, - "answer": 3, - "count": 2 + "question": 327, + "contribution": 1154, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "409059a5-556a-4d1c-9623-7208de503fdd", + "pk": "26e79016-37c3-4b48-a937-8452ad30a8ac", "fields": { - "question": 259, - "contribution": 1658, - "answer": 2, - "count": 1 + "question": 460, + "contribution": 4283, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "409174fb-6e09-4d10-a4d8-cafe06bdce8f", + "pk": "26ec1255-e61c-44ba-ad36-8d09b9356a19", "fields": { - "question": 340, - "contribution": 3821, + "question": 326, + "contribution": 3859, "answer": 2, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40938300-c0a9-4340-9fba-43eead15348b", + "pk": "26f2afda-69d2-470f-b65a-51ab6b3f5162", "fields": { - "question": 322, - "contribution": 4028, - "answer": 2, + "question": 345, + "contribution": 4129, + "answer": 1, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40a7c421-ca56-4613-b893-f88f6d137709", + "pk": "26f69435-6d01-48b5-944f-4854e8c68299", "fields": { - "question": 325, - "contribution": 1802, - "answer": 5, + "question": 360, + "contribution": 3943, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40a98862-d58c-46fc-823a-25562c3dcf46", + "pk": "27091be2-6256-404e-9031-d640f5718c67", "fields": { - "question": 262, - "contribution": 4084, - "answer": 5, - "count": 1 + "question": 473, + "contribution": 1200, + "answer": 0, + "count": 26 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40bc67d3-d68d-4e6c-886f-e5435c3ccbeb", + "pk": "2709516c-70fa-4227-a9c2-1e9e4d8791bd", "fields": { - "question": 329, - "contribution": 1635, - "answer": 2, - "count": 5 + "question": 389, + "contribution": 3781, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40c3e769-d0d4-4d1a-84a8-2474be5e50f6", + "pk": "270cd400-66d2-48f1-af33-88766cc93c1f", "fields": { - "question": 328, - "contribution": 3680, - "answer": 4, + "question": 351, + "contribution": 804, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40c54e57-c1fc-47d2-9670-f4c09a049473", + "pk": "2710d6b7-e9ae-4219-9966-2c51a6545f39", "fields": { - "question": 344, - "contribution": 3609, - "answer": 1, - "count": 5 + "question": 458, + "contribution": 4141, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40ccf654-eb4c-4595-9d2b-f21eb4954b81", + "pk": "271858ad-bc28-41e9-a460-0c143df9debe", "fields": { - "question": 348, - "contribution": 3518, + "question": 339, + "contribution": 804, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40d3e28a-031c-400a-b36d-8797d9d1de53", + "pk": "271d499b-090e-43b7-9aa6-1fd594a00d59", "fields": { - "question": 477, - "contribution": 837, - "answer": -1, + "question": 366, + "contribution": 3886, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40d4f516-4230-4659-b69d-c1c73926c4d1", + "pk": "271d7cb3-5993-48fe-8f1c-e1e083fb8f4b", "fields": { - "question": 337, - "contribution": 3450, + "question": 361, + "contribution": 3944, "answer": 4, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "40dbd05d-a01a-4936-8b43-cf730ff2031c", - "fields": { - "question": 477, - "contribution": 3883, - "answer": -2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40dff708-1801-4fd0-8551-96960bc8c3d5", + "pk": "2722fea8-16b4-45cf-8b25-74196244ed22", "fields": { - "question": 350, - "contribution": 832, + "question": 356, + "contribution": 4267, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40e01158-12a2-4055-982f-6fa9c6687418", - "fields": { - "question": 323, - "contribution": 3725, - "answer": 3, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "40e3f1f6-2687-4d93-a0b1-d8908d8258c6", + "pk": "2727fcc3-6a8c-4ff3-892e-c71221fa01ed", "fields": { - "question": 371, - "contribution": 3932, + "question": 349, + "contribution": 4188, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40e66035-5f93-41e1-a26c-a7515eea838d", + "pk": "272d0f77-7ffc-4d81-aa88-0edc0dd62fee", "fields": { "question": 353, - "contribution": 1776, - "answer": 5, - "count": 4 + "contribution": 1785, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40e67b0f-5e46-4285-b4dd-3f74658d00d1", + "pk": "2737332a-7af0-4d12-811e-0dbd519c2a60", "fields": { - "question": 339, - "contribution": 3645, - "answer": -3, + "question": 354, + "contribution": 3849, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40e97eb8-a2d7-44dd-8de8-fe798c713afc", + "pk": "274d5735-df6c-4a3a-85d2-88f81ab528e9", "fields": { - "question": 316, - "contribution": 912, - "answer": 2, - "count": 11 + "question": 433, + "contribution": 4052, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "40f3dac4-ca90-4576-85db-22db9801f109", + "pk": "27590044-9a5d-46f7-a907-f85675036d70", "fields": { - "question": 328, - "contribution": 4117, - "answer": 3, - "count": 4 + "question": 370, + "contribution": 4268, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "410169cc-7536-4db1-a13d-18dd558cfe33", + "pk": "277655fb-37ec-43e2-8a40-160f54217940", "fields": { - "question": 315, - "contribution": 836, + "question": 332, + "contribution": 4244, "answer": 1, - "count": 11 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "41056665-1d81-4e39-abe4-60b5c137baf5", + "pk": "2776eaa2-8234-4803-8bbf-40fe9b229f90", "fields": { - "question": 317, - "contribution": 3462, - "answer": 2, - "count": 2 + "question": 343, + "contribution": 1735, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "411bc730-4bcd-48bf-8ed1-263ff1589d00", + "pk": "277f5b77-e39f-4743-8173-cfb468e3f296", "fields": { - "question": 361, - "contribution": 1835, + "question": 344, + "contribution": 887, "answer": 1, - "count": 8 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "41253e5b-dbc5-4501-b08b-5ce6e4db8920", + "pk": "277fbcc3-795e-49d2-93b7-b1cec390d28f", "fields": { - "question": 351, - "contribution": 4046, - "answer": 1, - "count": 3 + "question": 320, + "contribution": 4138, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "412d67e4-8ac4-4495-8ea8-33f66668943f", + "pk": "2781059f-3d93-4f62-b468-a350d30284b6", "fields": { - "question": 329, - "contribution": 3463, + "question": 375, + "contribution": 3755, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4130be1e-10ff-4b3a-bd88-cdaf294f5737", + "pk": "278143f3-3b6b-4467-9d79-088930812e3b", "fields": { - "question": 475, - "contribution": 3685, - "answer": 0, - "count": 4 + "question": 434, + "contribution": 4140, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "41366bb2-1b6b-4c70-b317-aa1dde232bf2", + "pk": "27823f03-65f0-4602-91a6-87783f3d6b02", "fields": { - "question": 346, - "contribution": 1250, - "answer": 2, - "count": 3 + "question": 328, + "contribution": 4203, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "413f7866-7300-4714-9bef-4970cbafd0ec", + "pk": "2789cc3f-1077-44c7-9e58-5db5399ec02d", "fields": { - "question": 354, - "contribution": 3923, - "answer": 1, + "question": 432, + "contribution": 4140, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "413fc001-ec29-407d-8f4d-4958a69325c8", + "pk": "279f0254-aa34-4d88-8755-d0b66c428a31", "fields": { - "question": 357, - "contribution": 1256, - "answer": 2, + "question": 262, + "contribution": 1837, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4141cbae-f53a-4bfd-b586-f932689e5691", + "pk": "27a4ec77-f6ad-4e86-862e-9dc140457e75", "fields": { - "question": 337, - "contribution": 804, + "question": 461, + "contribution": 4283, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "415276dd-2d10-48fa-b691-d56375237863", + "pk": "27a6e3b9-1300-4b02-b065-3bba825194ba", "fields": { - "question": 344, - "contribution": 1749, + "question": 363, + "contribution": 3893, "answer": 1, - "count": 1 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "415cc257-3097-4813-85bc-65762c46559f", + "pk": "27b42c0a-93a0-40e4-bf1e-d8f2feb3539f", "fields": { - "question": 320, - "contribution": 3394, - "answer": 1, - "count": 2 + "question": 362, + "contribution": 1811, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "415cdcba-43dd-4243-9210-2457f8763cda", + "pk": "27e2f229-3478-4518-bc2c-a5a9a935c38e", "fields": { - "question": 336, - "contribution": 3508, - "answer": 2, - "count": 4 + "question": 315, + "contribution": 3739, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "415e6bfc-f8c0-4588-bc15-196f67df381e", + "pk": "27e3dc1d-03ad-494b-b144-5fdb16cb8cfe", "fields": { - "question": 346, - "contribution": 1822, - "answer": 1, + "question": 319, + "contribution": 1668, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "416b91c5-ccaf-46a9-b870-dace281c3f59", + "pk": "27e84f02-fcb8-43e3-a618-f245d8f04815", "fields": { - "question": 337, - "contribution": 1662, - "answer": 2, + "question": 473, + "contribution": 3390, + "answer": -3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "417fd284-f59b-4bcb-9d15-72c87201f941", + "pk": "27eacf11-bb79-4078-bd8d-283a1c22e0b5", "fields": { - "question": 345, - "contribution": 841, - "answer": 2, - "count": 2 + "question": 343, + "contribution": 4129, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4182d888-0175-4ced-be05-c85603ca5fbd", + "pk": "27f47a15-4e79-43cb-b471-06b6086df633", "fields": { - "question": 317, - "contribution": 3434, + "question": 361, + "contribution": 1808, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "418e6ab1-fe1c-4975-bad5-772bac8e641f", + "pk": "280a3132-d283-451e-acb9-d4928eb3fa76", "fields": { - "question": 433, - "contribution": 4008, - "answer": 2, - "count": 1 + "question": 323, + "contribution": 4120, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4193e49e-8667-4f59-88ad-bd8e375b9bb6", + "pk": "284b0572-1799-49ef-8fba-40607fcc6e8f", "fields": { - "question": 348, - "contribution": 4003, - "answer": 2, + "question": 328, + "contribution": 3407, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "419b9a26-0df6-4ad1-be8d-fb262d870b64", + "pk": "284ebd36-834e-4d00-874f-738552b3497b", "fields": { - "question": 319, - "contribution": 3390, - "answer": 1, + "question": 360, + "contribution": 3649, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "41a4abe7-8221-4684-882e-937106517ab7", + "pk": "285120ab-3168-4335-ad7f-a1364f2d9b13", "fields": { - "question": 407, + "question": 416, "contribution": 4024, "answer": 2, "count": 1 @@ -23886,23709 +34733,23379 @@ }, { "model": "evaluation.ratinganswercounter", - "pk": "41a4e1df-3496-4651-85a1-0d8a579b2d8d", - "fields": { - "question": 349, - "contribution": 3728, - "answer": 1, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "41b9abf5-d8fb-4084-be6b-97cff5dde47b", + "pk": "2857dd92-76c0-4d42-8936-9fdc68c1a132", "fields": { - "question": 329, - "contribution": 1288, + "question": 388, + "contribution": 3711, "answer": 2, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "41cd61ed-f95a-4364-abfd-9708f87c80f3", - "fields": { - "question": 473, - "contribution": 4128, - "answer": 0, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "41cdfd29-3b25-4637-a3a0-311b59cbbd99", - "fields": { - "question": 255, - "contribution": 1612, - "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "41cf093a-3aba-47d1-a6d3-fc93c2facb86", + "pk": "2857edcb-6e74-4db4-9563-e6791d9abd86", "fields": { - "question": 317, - "contribution": 3739, - "answer": 2, - "count": 1 + "question": 359, + "contribution": 3893, + "answer": 1, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "41d67767-4757-41c4-8f58-f615c11c70a0", + "pk": "28594249-19b7-491f-ac9f-73aa66f5e14e", "fields": { - "question": 418, - "contribution": 3974, + "question": 361, + "contribution": 3918, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "41d8a60e-4bad-4001-9c99-353b1bcde7c8", + "pk": "285a3721-637d-4475-afc7-384fc7ad7070", "fields": { - "question": 340, - "contribution": 1660, - "answer": 3, + "question": 396, + "contribution": 3755, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "41d925ee-3f82-4992-abb8-34389f87a036", + "pk": "2860c3c0-3aae-4277-a7f7-29e1ebdd80ef", "fields": { - "question": 321, - "contribution": 1668, + "question": 346, + "contribution": 1843, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "41e1d859-7c84-44a6-9286-9c93ddbc1bd6", - "fields": { - "question": 362, - "contribution": 3944, - "answer": 3, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "41ea196d-3a9e-4ba6-9833-da893e3ea7ae", + "pk": "286645b4-7122-4015-98b8-4fd88e7153a0", "fields": { - "question": 257, - "contribution": 4100, + "question": 320, + "contribution": 1668, "answer": 1, - "count": 19 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "41fcf6e6-4d00-4ad3-8fad-4439f37647c4", + "pk": "286bc12e-eb14-47d5-ab74-22c7c0180ea7", "fields": { - "question": 328, - "contribution": 1798, - "answer": 1, - "count": 3 + "question": 325, + "contribution": 913, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4202f433-274d-4b1c-9ff5-1bbd99d32810", + "pk": "28924814-c03b-4787-9a41-c7da7afa5b73", "fields": { - "question": 257, - "contribution": 4118, - "answer": 2, + "question": 337, + "contribution": 3382, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "420803c4-e824-4ca3-ad76-d1981e9ed587", + "pk": "28926223-e358-4315-9d70-5cb3eeec43c2", "fields": { - "question": 360, - "contribution": 3916, - "answer": 1, - "count": 5 + "question": 349, + "contribution": 1843, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4209fca8-84da-47e2-9765-aedf3942cc48", + "pk": "2898929a-0368-4c65-8f06-2656d46b8b92", "fields": { - "question": 316, - "contribution": 880, + "question": 359, + "contribution": 1825, "answer": 2, - "count": 9 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42189fe6-d815-4ba7-8a97-33b14c131870", + "pk": "289d9acf-0517-4434-8417-3e0b1283efef", "fields": { - "question": 329, - "contribution": 3883, - "answer": 1, - "count": 8 + "question": 322, + "contribution": 1634, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "421eda03-0847-4d82-bb3e-4007a4fe43be", + "pk": "289defa0-cede-4c9f-9300-b93d811dbc06", "fields": { - "question": 260, - "contribution": 1626, - "answer": 3, - "count": 3 + "question": 333, + "contribution": 1812, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4220e0c7-3fc9-40f7-8635-deaa86891adf", + "pk": "28ad5e20-f5a1-4b3d-8ce3-1b9677ebea91", "fields": { - "question": 462, - "contribution": 4141, + "question": 257, + "contribution": 4040, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4225b544-299d-4145-9c30-b8ab838f4e19", + "pk": "28c9a7c7-b04d-421b-ad95-1e2141c4c682", "fields": { - "question": 428, - "contribution": 4152, - "answer": 1, - "count": 8 + "question": 315, + "contribution": 1634, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "423191da-8e06-4423-95ab-32ccbab48cd9", + "pk": "28d0f5f6-5913-4163-87af-228901e7f828", "fields": { - "question": 473, - "contribution": 3721, - "answer": -2, - "count": 3 + "question": 339, + "contribution": 3454, + "answer": 0, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "423968e3-0083-4f6a-8a7e-ab9020759875", + "pk": "28d342f8-0352-4f74-b65b-06641552cb5f", "fields": { - "question": 323, - "contribution": 1626, - "answer": 5, - "count": 7 + "question": 326, + "contribution": 1779, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "423dca1f-8215-4ddc-b3a7-418da75ea510", + "pk": "28d9b13a-81fb-40ee-a6c7-e98dd4efcd4e", "fields": { - "question": 257, - "contribution": 3721, + "question": 328, + "contribution": 885, "answer": 5, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "424906a5-300c-4633-836c-2ae40a83946b", - "fields": { - "question": 357, - "contribution": 1188, - "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4268c422-1bfd-4c27-b412-f19a7a70ea61", + "pk": "28e29b48-edb7-4b1d-86a1-00653607ec83", "fields": { - "question": 345, - "contribution": 3900, + "question": 359, + "contribution": 1836, "answer": 4, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "426b8638-1fad-402f-960a-3c71f03b6665", + "pk": "28f4d527-32df-4344-af55-e0c8b78e6f1d", "fields": { "question": 473, - "contribution": 89, - "answer": -3, + "contribution": 886, + "answer": -1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "426ef0ad-4224-4a94-9bfb-c76a06c07cf5", + "pk": "2903912e-eb44-41b0-b986-77e699f81d7f", "fields": { - "question": 328, - "contribution": 3530, + "question": 343, + "contribution": 4233, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "426f9eda-567d-4794-9b62-2949e0ddee29", + "pk": "290ebd3e-164e-4ea9-a9a9-ad04d1cde699", "fields": { - "question": 434, - "contribution": 4140, - "answer": 4, - "count": 2 + "question": 343, + "contribution": 1881, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42719c0a-c4f4-4796-ad81-97d60b3e14b6", + "pk": "291cb17a-622e-4c6b-b16b-0ba25ebb5068", "fields": { - "question": 409, - "contribution": 4038, - "answer": 2, + "question": 349, + "contribution": 1922, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "427256eb-5a7b-496e-a3c1-49343c26fd11", + "pk": "291d5ec7-745c-4b44-b2d5-a97046d376ad", "fields": { - "question": 328, - "contribution": 1779, - "answer": 4, - "count": 2 + "question": 337, + "contribution": 858, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "427b9078-4191-4215-93a8-2ce6fdee32c4", + "pk": "2931b687-04d5-48bb-ab25-beb5db51bbd3", "fields": { - "question": 336, - "contribution": 3723, - "answer": 1, - "count": 5 + "question": 349, + "contribution": 3606, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "427e0cb4-3f52-48cc-a571-08af264803fc", + "pk": "2933df2b-e978-49e8-aba4-448adfa0f7c1", "fields": { - "question": 325, - "contribution": 3884, - "answer": 2, + "question": 347, + "contribution": 3960, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "427ed3d2-cee4-44fc-9ff3-4e126a59385f", + "pk": "293f388b-3227-4cc5-83ce-e04a86c3167c", "fields": { - "question": 363, - "contribution": 3944, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 3726, + "answer": -1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42809973-a0d5-4e82-bbac-902070065bd7", + "pk": "294cdd49-f63c-4aa9-97ad-c6575f1ac45f", "fields": { - "question": 413, - "contribution": 4024, - "answer": 5, + "question": 355, + "contribution": 1845, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "428c5ed9-cfdf-4769-8c2c-b14da2847e2f", + "pk": "294e3757-d8ed-4b68-ad91-e44cac8dbd53", "fields": { - "question": 315, - "contribution": 4084, + "question": 366, + "contribution": 3553, "answer": 2, - "count": 15 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42983af1-224f-481e-a992-0f034bcac908", + "pk": "2956a644-b1da-4e14-8509-f1b9d08f228b", "fields": { - "question": 354, - "contribution": 4227, - "answer": 1, - "count": 3 + "question": 346, + "contribution": 1880, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42a9d834-d3da-4397-90ef-1fc8a6e493ea", + "pk": "29578497-1aec-4f1a-bc5b-0174538f6073", "fields": { - "question": 341, - "contribution": 3404, - "answer": 5, - "count": 2 + "question": 348, + "contribution": 1249, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42b8be8f-087d-4212-94ba-89bd5ce33b1e", + "pk": "295deddf-b201-467a-b66e-ba9f9df0b9d2", "fields": { - "question": 473, - "contribution": 3454, - "answer": -1, - "count": 1 + "question": 317, + "contribution": 3390, + "answer": 5, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42b91a65-7aa2-4a62-8501-fa19acf99419", + "pk": "2965ae5a-cb08-49b1-a279-b9550a962001", "fields": { - "question": 460, - "contribution": 4141, + "question": 349, + "contribution": 3546, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42bc47d6-928d-47dd-8d57-aeaf2fe10497", + "pk": "296cbc22-e0c0-4b9c-a95c-da502de513f7", "fields": { - "question": 368, - "contribution": 3556, + "question": 257, + "contribution": 3472, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42c1a50f-1683-42ce-a6a2-d6ba774bd295", + "pk": "29702735-c682-4c88-a087-9136d4162c0e", "fields": { - "question": 339, - "contribution": 89, + "question": 347, + "contribution": 4190, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42cfc0d1-5646-4771-9708-a6223c43a186", + "pk": "29761950-8358-4c0b-807d-16b918730167", "fields": { - "question": 349, - "contribution": 3606, + "question": 335, + "contribution": 3882, "answer": 5, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42d1ea15-fb35-4c58-bad2-1780dbea8b3f", + "pk": "29854bab-59d9-4337-9024-48c8e17dd10f", "fields": { - "question": 477, - "contribution": 3883, - "answer": -1, - "count": 2 + "question": 347, + "contribution": 1869, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42d73078-847f-41be-8e35-de2b44a12f74", + "pk": "298ff71d-ae14-4eae-8ef8-318410f113d8", "fields": { - "question": 464, - "contribution": 4091, - "answer": 1, + "question": 345, + "contribution": 3516, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42eaa2b6-2145-4a32-9d64-3170b9045eeb", + "pk": "29a55995-08d0-43ed-8c6a-7f6a9c5fdc78", "fields": { - "question": 403, - "contribution": 4119, - "answer": 1, - "count": 6 + "question": 326, + "contribution": 881, + "answer": 3, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42fb9bbc-129b-467b-9987-5b9731c352a0", + "pk": "29a9bd35-c41b-4fc6-9103-6ef410dd2def", "fields": { - "question": 347, - "contribution": 4187, + "question": 360, + "contribution": 3916, "answer": 2, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "42fc9a6e-c201-42f1-907b-72f31d23a8f4", + "pk": "29b3e2ca-7373-4f81-80d5-f7d1122ca20a", "fields": { - "question": 461, - "contribution": 3786, + "question": 257, + "contribution": 4100, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4305cfe6-7d15-4599-9d78-2dd88d1bdb22", + "pk": "29c121cb-67f6-4522-861a-49eff205c336", + "fields": { + "question": 356, + "contribution": 3607, + "answer": 1, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "29d19ea4-40ed-4d4e-ac5d-510210144807", "fields": { "question": 320, - "contribution": 912, - "answer": 2, - "count": 21 + "contribution": 3679, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "430b2ea7-194a-4e64-9428-f860d5ea9f91", + "pk": "29d56e1f-a8d6-4cad-91f2-d6966235293b", + "fields": { + "question": 319, + "contribution": 1626, + "answer": 5, + "count": 14 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "29e660ce-604e-4585-a04f-368420f16902", "fields": { "question": 344, - "contribution": 4189, - "answer": 1, - "count": 4 + "contribution": 3899, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "430c242d-2fd3-458f-8080-b3fad7589013", + "pk": "29e6ff8a-0602-47bc-8205-9d4d6590d952", "fields": { - "question": 417, - "contribution": 3974, + "question": 326, + "contribution": 3722, "answer": 1, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "431cbc5e-43a8-4073-b656-e4255ff4455a", + "pk": "29e89ace-72ed-4e9b-8e6d-2be754743f66", "fields": { - "question": 341, - "contribution": 1702, - "answer": 3, - "count": 2 + "question": 320, + "contribution": 4022, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "431ec0d2-a869-4309-ac36-ff8b9e9787d3", + "pk": "29eef4fd-1afa-4d03-93c2-a455cde4f542", "fields": { - "question": 327, - "contribution": 3463, + "question": 361, + "contribution": 1806, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43252aed-f474-438f-9fbf-4e77d3b190e6", + "pk": "29fadfc5-c99a-40e0-b8eb-d92f5b9c8265", "fields": { - "question": 475, - "contribution": 3486, - "answer": 0, - "count": 7 + "question": 363, + "contribution": 1803, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4326bdf5-0eae-4501-8276-1169e28e68f3", + "pk": "2a0baed2-1668-4536-9a28-8c6b31dc61c0", "fields": { - "question": 362, - "contribution": 3917, + "question": 359, + "contribution": 3647, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43294264-26fd-485d-a23f-59d06ef0bc81", + "pk": "2a127a08-16a8-4715-ad3b-e849acebaaef", "fields": { - "question": 321, - "contribution": 862, - "answer": 3, - "count": 1 + "question": 346, + "contribution": 3912, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "432bb84b-06f8-4693-9bcd-55fc634f9bf4", + "pk": "2a1ddc0e-793b-4da8-a2e0-7a6fe7941f8c", "fields": { - "question": 395, - "contribution": 3775, - "answer": 1, + "question": 356, + "contribution": 3776, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43313539-db50-4788-a416-b4de0f890c0c", + "pk": "2a303964-61c9-457d-923d-eb166a07bab6", "fields": { - "question": 369, - "contribution": 3919, - "answer": 1, - "count": 2 + "question": 336, + "contribution": 3440, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43335cfa-0e77-4a84-b9e5-69be6a2983ea", + "pk": "2a3331da-18ed-4818-aa01-21f6743489ac", "fields": { - "question": 339, - "contribution": 3821, + "question": 347, + "contribution": 1867, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4335bf37-f396-45e8-9954-1d1479438316", + "pk": "2a404d75-c373-4b9c-94e8-ddd63d401d89", "fields": { - "question": 359, - "contribution": 1827, - "answer": 1, - "count": 2 + "question": 341, + "contribution": 3795, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4341ffaa-1590-4895-bbcb-5d44d7811e93", + "pk": "2a40a42a-1e4f-4b45-9651-cc75fa6f3cda", "fields": { - "question": 333, - "contribution": 4156, - "answer": 1, - "count": 10 + "question": 473, + "contribution": 3974, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43427ff1-5c87-4522-8775-cab978505676", + "pk": "2a412c18-5c96-4a45-a374-8d8998079497", "fields": { - "question": 326, - "contribution": 4101, + "question": 475, + "contribution": 1200, "answer": 1, - "count": 9 + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4348a89d-dab2-4c60-bab4-9011e8911221", + "pk": "2a508fee-51ba-4c42-a766-bbaa24c95970", "fields": { - "question": 343, - "contribution": 919, - "answer": 1, - "count": 10 + "question": 315, + "contribution": 3665, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "434b02a0-968e-4907-967e-6c735a29ef8c", + "pk": "2a68bece-a959-4af3-80d8-a652c787cc13", "fields": { - "question": 345, - "contribution": 1869, - "answer": 1, + "question": 366, + "contribution": 3593, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "434f3124-7ec6-4114-a6f7-ace56ad3aee3", + "pk": "2a77037c-9f32-427f-a4b1-5ac9bc481117", "fields": { - "question": 260, - "contribution": 4138, + "question": 351, + "contribution": 3406, "answer": 1, - "count": 11 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43509ae5-535a-4e8c-8048-5df9ae3bc097", + "pk": "2a793651-cec2-4f7c-b2be-ef760a265ca7", "fields": { - "question": 325, - "contribution": 1681, - "answer": 1, - "count": 3 + "question": 333, + "contribution": 4152, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43520040-0765-4673-bb99-679bf208d332", + "pk": "2a860574-f417-4889-a739-f47885cab92e", "fields": { - "question": 340, - "contribution": 3372, - "answer": 1, + "question": 346, + "contribution": 3515, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43538ae7-dca7-4a9a-b99a-875c2f6f4d11", + "pk": "2a86f742-252a-49e6-9258-5e936e2780af", "fields": { - "question": 344, - "contribution": 1235, - "answer": 1, + "question": 368, + "contribution": 1802, + "answer": 2, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4358b3ec-d825-477f-ae99-80a677b800d8", + "pk": "2a96d671-6477-46b2-b1d4-f7f6e13e781f", "fields": { - "question": 350, - "contribution": 804, - "answer": 4, - "count": 1 + "question": 320, + "contribution": 3390, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "435eb6b3-8116-4f3a-b162-e29f49f9e9e6", + "pk": "2a97094d-b7f6-4d29-9beb-b4db5715f4a8", "fields": { - "question": 368, - "contribution": 1802, + "question": 362, + "contribution": 3916, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43690a45-a551-457c-b990-d21501567549", + "pk": "2aa238c3-cadc-4e35-a21a-4aeb3ddb489d", "fields": { - "question": 262, - "contribution": 3474, + "question": 368, + "contribution": 3859, "answer": 5, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "4374ad92-5a8b-4dc9-9395-6ebfd347f01e", - "fields": { - "question": 477, - "contribution": 4152, - "answer": -2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "437a956d-b81f-4b1e-841a-6fb5a9e6d96f", + "pk": "2ac28304-990e-481d-8194-9be8ae1023f4", "fields": { - "question": 332, - "contribution": 3553, - "answer": 4, + "question": 435, + "contribution": 4090, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "437c0545-2539-43e6-986f-2fec79ba94fd", + "pk": "2ac82c70-f256-4aa0-963c-e16caca7ba3b", "fields": { - "question": 437, - "contribution": 4090, - "answer": 4, + "question": 340, + "contribution": 4122, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4382eb15-6712-4239-9c87-943e97279dc3", + "pk": "2ac988b6-8272-4441-a834-b52ac2f738d7", "fields": { - "question": 262, - "contribution": 3679, - "answer": 4, + "question": 348, + "contribution": 1202, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43845247-b687-436d-aadc-f105b2bc11e2", + "pk": "2acba9f3-1c69-482a-b9ea-0819360ee020", "fields": { - "question": 328, - "contribution": 3666, - "answer": 1, - "count": 10 + "question": 316, + "contribution": 912, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4390016b-cb93-4d75-8dfe-a30f099242bd", + "pk": "2acbdbc8-2429-4fa5-bbcc-5df30226bb78", "fields": { - "question": 320, - "contribution": 3434, - "answer": 1, - "count": 14 + "question": 403, + "contribution": 4148, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "439095e9-1355-4d3a-8816-1ecd79b0a6e9", + "pk": "2acf99da-f171-479d-bd76-984019769bc2", "fields": { - "question": 327, - "contribution": 3589, - "answer": 1, - "count": 7 + "question": 328, + "contribution": 909, + "answer": 4, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "439c6fb3-8151-4ea4-98ea-47638b7f8a9c", + "pk": "2acfd252-8031-4078-99a2-f27486d034e0", "fields": { - "question": 327, - "contribution": 4152, + "question": 322, + "contribution": 1612, "answer": 2, - "count": 17 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43b06303-b063-4736-b98c-ee88036ad163", + "pk": "2ad50bd2-23a3-4e57-9dea-bf73c048eba5", "fields": { - "question": 460, - "contribution": 4284, - "answer": 5, + "question": 345, + "contribution": 1870, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43b0b2a2-e54b-4d1d-a937-0bcb16df3f4d", + "pk": "2ad52bd4-94cd-4c24-80a4-32db5f3f55cf", "fields": { - "question": 326, - "contribution": 3435, - "answer": 1, - "count": 29 + "question": 322, + "contribution": 3739, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43b5e1f1-fef5-453e-a46c-35b76609ae81", + "pk": "2ad73a2e-5509-4b2b-acae-4423a2790cf4", "fields": { - "question": 336, - "contribution": 1702, + "question": 349, + "contribution": 1202, "answer": 1, - "count": 5 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43b720bb-bcec-4069-81b8-76acd697f2ed", + "pk": "2ad943a8-7e7c-4038-88ee-30bb5459ffcf", "fields": { - "question": 316, - "contribution": 912, + "question": 403, + "contribution": 4148, "answer": 1, - "count": 24 + "count": 25 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43bb46cf-0e19-4e2f-9b12-a6e7da424fc5", + "pk": "2adb9a18-bc6e-4306-8cfe-2d42119ca5be", "fields": { - "question": 260, - "contribution": 3434, + "question": 321, + "contribution": 3721, "answer": 2, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43bc0a73-78c4-49c4-977d-cc50add7562f", + "pk": "2adff786-d922-475e-bfe3-7ad761c02f60", "fields": { - "question": 475, - "contribution": 3466, - "answer": -2, + "question": 326, + "contribution": 3859, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43c08c66-75f6-48fa-a12c-bd7c912317b1", + "pk": "2ae2949c-8bc4-4389-97bb-bfa71dd58c22", "fields": { - "question": 260, - "contribution": 836, + "question": 476, + "contribution": 3390, "answer": 1, - "count": 11 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43c61c9c-2367-4e71-89e2-67bab2876a95", + "pk": "2ae6fde6-e18d-4e61-b3ed-13064c78c49f", "fields": { - "question": 336, - "contribution": 3795, + "question": 450, + "contribution": 4185, "answer": 3, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43c648e5-a2fc-4fc9-a27a-54e70e1e3da3", + "pk": "2aee0cf2-4268-4903-9cc8-a91582aef18a", "fields": { - "question": 436, - "contribution": 4052, - "answer": 3, - "count": 3 + "question": 363, + "contribution": 3649, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43cfc452-6cec-4caa-9939-cbc8a2170ee4", + "pk": "2af55acd-d57d-4f88-9732-3407693f84d7", "fields": { - "question": 339, - "contribution": 4072, - "answer": 0, - "count": 3 + "question": 1, + "contribution": 4303, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43d0916f-5ba5-40ac-bbbe-0e3b821aff20", + "pk": "2b0f5685-1e31-4961-9224-0e5592508fe9", "fields": { - "question": 344, - "contribution": 3855, + "question": 462, + "contribution": 3786, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43d50149-6a8f-4a69-adf7-f8dcd6269816", + "pk": "2b166bb0-0c3b-4dc9-889c-e3576bc3c22e", "fields": { - "question": 343, - "contribution": 1870, - "answer": 1, + "question": 436, + "contribution": 4052, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43d5f218-0ab2-483c-a62e-0be72445f1b1", + "pk": "2b17d999-ab2b-459b-b93b-da775c2fab21", "fields": { - "question": 359, - "contribution": 3918, + "question": 336, + "contribution": 840, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43dbcac3-e1f5-4da7-8025-0bf13d95cf7f", + "pk": "2b18c344-d7fa-4cac-abca-e6364677efcb", "fields": { - "question": 431, - "contribution": 4041, - "answer": 3, - "count": 1 + "question": 366, + "contribution": 3922, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43dc8e32-93dc-49c4-bb26-6866046d214c", + "pk": "2b2bd3cc-f24e-4ce3-afc2-bfa38442dde6", "fields": { - "question": 367, - "contribution": 3394, - "answer": 3, - "count": 1 + "question": 346, + "contribution": 1206, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43e99451-e943-46a9-b591-cfd05e456159", + "pk": "2b2f632b-697c-4639-8a62-61d5cda1fb56", "fields": { - "question": 326, - "contribution": 4101, - "answer": 5, - "count": 2 + "question": 329, + "contribution": 3722, + "answer": 1, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43eb1b23-0289-440a-8cb0-42443455e41c", + "pk": "2b43b4da-8b07-453b-9ec2-eaf67eb6822b", "fields": { - "question": 435, - "contribution": 4008, + "question": 362, + "contribution": 3916, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43f05584-93f9-42e3-8683-9bdb40dc4156", + "pk": "2b58769b-f7cd-42ec-8ca9-56d98c05ff5a", "fields": { - "question": 339, - "contribution": 886, - "answer": 0, - "count": 5 + "question": 362, + "contribution": 1825, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43f2f8f0-523f-4750-98e3-a3398701283b", + "pk": "2b615634-d505-4693-9f9d-793855afdc73", "fields": { - "question": 343, - "contribution": 3895, - "answer": 1, - "count": 6 + "question": 472, + "contribution": 3679, + "answer": 5, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43f7752e-7757-4a8b-a1c8-4316c8193576", + "pk": "2b6370cb-0fbb-4eb7-861b-853969577552", "fields": { - "question": 368, - "contribution": 1779, - "answer": 1, - "count": 2 + "question": 337, + "contribution": 3454, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43f8e75f-a5f1-4ecc-b346-1a7a644d27df", + "pk": "2b687d24-eb6b-437c-8c7e-a948a69b6e14", "fields": { - "question": 255, - "contribution": 4046, + "question": 337, + "contribution": 894, "answer": 1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43fe5c87-2d89-41b2-8f60-0c68a8fc57a9", + "pk": "2b6a4753-4831-4643-acd0-d98e8d80e156", "fields": { - "question": 343, - "contribution": 3941, - "answer": 1, - "count": 3 + "question": 473, + "contribution": 3735, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43feb0c2-e555-433b-ad33-a64e5c9b9dd3", + "pk": "2b777818-68b8-49a5-990e-a1b2a2ae5adb", "fields": { - "question": 473, - "contribution": 3372, + "question": 333, + "contribution": 1812, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43fecaab-e1f8-4041-9979-8369aa969760", + "pk": "2b7c6854-3ab5-4db9-9638-a39f7b857f1f", "fields": { - "question": 349, - "contribution": 1157, + "question": 357, + "contribution": 4228, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "43ff340e-6862-40c1-8a00-ecabeee501b4", + "pk": "2b7c8ef5-35d9-4a93-87cb-f9ceeb39ac08", "fields": { - "question": 315, - "contribution": 3390, - "answer": 3, + "question": 331, + "contribution": 822, + "answer": 0, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44312586-f232-443e-af63-3e59e271c4b5", + "pk": "2b82c4f7-37ce-4794-a77d-3342b97f7699", "fields": { - "question": 319, - "contribution": 3721, - "answer": 2, - "count": 3 + "question": 335, + "contribution": 3961, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44313ed3-1666-4285-b7ba-9b89f643f4ec", + "pk": "2b881785-b8cb-4c27-b76e-e07d2c37afd7", "fields": { - "question": 428, - "contribution": 4261, - "answer": 3, - "count": 1 + "question": 449, + "contribution": 4185, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44350903-1d94-43f9-a00d-bea2a50953d9", + "pk": "2b9a5be0-929d-4a8f-b733-58adefd4a507", "fields": { - "question": 349, - "contribution": 919, + "question": 339, + "contribution": 1702, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "444a6101-366c-4c7f-9582-f47871fbda22", + "pk": "2ba1781c-951a-4b0c-8fa4-fa0646f377ae", "fields": { - "question": 345, - "contribution": 887, + "question": 325, + "contribution": 3884, "answer": 1, - "count": 11 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "444c65a8-96af-4e43-b117-e015bf397676", + "pk": "2ba18165-6e55-4ac2-ab44-f726c5521de4", "fields": { "question": 328, - "contribution": 1613, - "answer": 2, - "count": 8 + "contribution": 823, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4453f296-b011-426e-b03b-78e04baa3bfb", + "pk": "2ba26ea7-6cd1-48c8-86f6-07a4f1b6f312", "fields": { - "question": 329, - "contribution": 4085, - "answer": 3, - "count": 7 + "question": 262, + "contribution": 3422, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44545421-2be6-4e0b-9d39-02cce454fc2f", + "pk": "2ba78f7f-3634-487e-83de-19e7ed352bca", "fields": { - "question": 348, - "contribution": 3796, - "answer": 2, - "count": 1 + "question": 322, + "contribution": 836, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44550643-a44c-4474-b64b-f1857f766183", + "pk": "2bba2398-bdf7-462f-992e-b373683618f1", "fields": { - "question": 341, - "contribution": 1656, + "question": 350, + "contribution": 3735, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "445726e4-4703-43e2-b540-a4319699b4a1", + "pk": "2bbb6f97-65ea-4ce5-a912-ae12f006d8ec", "fields": { - "question": 349, - "contribution": 4123, - "answer": 3, - "count": 2 + "question": 338, + "contribution": 858, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44574629-33f9-4f10-8564-b8ac5f0b7eff", + "pk": "2bc28bc1-ff1d-45de-9e0c-5fdfe5cf13bb", "fields": { - "question": 343, - "contribution": 1645, + "question": 339, + "contribution": 3508, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "445b1d98-a022-41cd-be82-ea26882b8a5d", + "pk": "2bcfe7b5-e734-48e9-8111-91c342818d8e", "fields": { - "question": 346, - "contribution": 1868, - "answer": 1, - "count": 1 + "question": 473, + "contribution": 822, + "answer": 0, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "445d2d49-5542-4f08-9c62-65f8f6742249", + "pk": "2bd45692-a3d2-4e91-a57a-161d076e1490", "fields": { - "question": 473, - "contribution": 1694, - "answer": -1, - "count": 1 + "question": 345, + "contribution": 3373, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "446eb1b9-e3c3-4ca7-91a3-e5e2806d7c4e", + "pk": "2bd4dabf-9927-426c-9cca-d1b6e021d209", "fields": { - "question": 325, - "contribution": 3391, - "answer": 5, + "question": 346, + "contribution": 1867, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "447474dc-35d4-4171-b272-3e3d34d8069d", + "pk": "2bda60db-a2fe-40b8-b619-e8ba2171656c", "fields": { - "question": 357, - "contribution": 1783, + "question": 347, + "contribution": 3941, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "447b26ca-bd1f-4ca1-a3e3-267b1f4e4221", + "pk": "2bda8390-a043-4ce8-9efc-45d448c1f32b", "fields": { "question": 347, - "contribution": 1246, - "answer": 2, - "count": 3 + "contribution": 1843, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "447ec59f-8439-4ecb-b2fd-6db3b61bbbe6", + "pk": "2be01a10-0e98-4d82-984f-4685cb22a80c", "fields": { - "question": 326, - "contribution": 3407, + "question": 328, + "contribution": 3722, "answer": 1, - "count": 7 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "447f4000-8c22-4660-ac97-639a6726767a", + "pk": "2bf59d07-8ed6-4ab3-b6d2-83683815117b", "fields": { - "question": 343, - "contribution": 3518, - "answer": 2, + "question": 322, + "contribution": 1658, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "447f9f5e-c500-48c2-85e0-415a01d5d512", + "pk": "2bf815d4-3322-4c58-a669-ad80e78622d1", "fields": { - "question": 464, - "contribution": 4141, - "answer": 2, + "question": 395, + "contribution": 3781, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4488c5d2-f71f-43bf-a6b9-699fb5ea4b7e", + "pk": "2bfd2ad4-b93b-4adf-b39e-70e289384224", "fields": { - "question": 335, - "contribution": 3566, - "answer": 1, - "count": 5 + "question": 404, + "contribution": 3984, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44a15336-2973-4a29-8e4e-c2b1634ac50b", + "pk": "2c04697a-9853-499e-ae7f-26aa7a470b95", "fields": { - "question": 339, - "contribution": 862, - "answer": -2, - "count": 1 + "question": 477, + "contribution": 1635, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44ba8e83-8556-4c61-a210-253801266fd8", + "pk": "2c04ea7d-a8db-44e4-ac79-ff0ebc42035a", "fields": { - "question": 345, - "contribution": 4129, - "answer": 3, + "question": 382, + "contribution": 3781, + "answer": 0, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44bdcaea-3ebc-44bd-ad3a-879b75bf3a8f", + "pk": "2c1145db-c1c4-487a-8495-60e0a79de3eb", "fields": { - "question": 348, - "contribution": 1663, + "question": 333, + "contribution": 3592, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44ca57e8-c7d2-49fc-980f-7ae80c2ac2d2", + "pk": "2c13a1f7-920c-418d-ac94-51b44350a62c", "fields": { - "question": 339, - "contribution": 858, - "answer": 1, - "count": 3 + "question": 258, + "contribution": 4118, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44dab50b-865a-43a3-8a40-ca2a304b1d33", + "pk": "2c1cdf4a-2b4a-455b-a57e-432d03b9aee4", "fields": { - "question": 389, - "contribution": 3775, - "answer": 1, - "count": 4 + "question": 338, + "contribution": 3645, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44e12f90-837d-4c13-8aa4-edc7c2abc5d0", + "pk": "2c20c3cc-5e74-4c41-bcc5-cfb6af094bfd", "fields": { - "question": 343, - "contribution": 1735, + "question": 340, + "contribution": 4052, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44ee15b7-7830-45dd-988c-d851760ac3a6", + "pk": "2c3a5597-0ed3-4e88-b32c-0831f4e53917", "fields": { - "question": 345, - "contribution": 1851, - "answer": 1, - "count": 2 + "question": 325, + "contribution": 1776, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44f1d686-24fa-44dc-9499-2b6854e44b74", + "pk": "2c41a037-8e0f-48a0-9341-df239e8af90f", "fields": { - "question": 328, - "contribution": 1779, - "answer": 1, - "count": 2 + "question": 258, + "contribution": 1612, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "44f3b401-670d-4c81-87e5-3bfdc02db257", + "pk": "2c4b3e3b-756d-452c-ab30-11630d3ca68b", "fields": { - "question": 383, - "contribution": 3775, - "answer": 3, - "count": 4 + "question": 475, + "contribution": 1710, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45001479-9947-4603-b33c-a83e9aff22c0", + "pk": "2c4dc7af-a518-4b55-8ad8-d7b72a25bbc4", "fields": { - "question": 325, - "contribution": 1287, + "question": 472, + "contribution": 4046, "answer": 1, - "count": 29 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45023c7d-54ae-43ff-9538-0462654d39f1", + "pk": "2c53bbf2-e572-468d-b52b-24e1e04c6d61", "fields": { - "question": 473, - "contribution": 880, + "question": 389, + "contribution": 3781, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4503d0c5-a8e3-4b7b-a71b-0c25c0845625", + "pk": "2c5cc076-aec7-4b71-b778-592809ff93fa", "fields": { - "question": 477, - "contribution": 3883, - "answer": 0, - "count": 8 + "question": 337, + "contribution": 3372, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "450913f4-8aa0-4192-b36b-d21c70914a3d", + "pk": "2c66e777-315b-4979-ba1b-a7778510e5f4", "fields": { - "question": 357, - "contribution": 3517, - "answer": 1, - "count": 6 + "question": 328, + "contribution": 3885, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "450b6189-e229-4bfd-b5a8-7762bbbf5923", + "pk": "2c68d020-6d14-465c-bcd0-09d0b44d719e", "fields": { - "question": 363, - "contribution": 1825, - "answer": 1, - "count": 2 + "question": 348, + "contribution": 4188, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "450da554-9f45-4c08-bbb8-59a44ee6f33d", + "pk": "2c693138-cf82-41ea-be70-b4d7dbe2559d", "fields": { - "question": 472, - "contribution": 3683, - "answer": 5, - "count": 4 + "question": 322, + "contribution": 3390, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45101984-2448-4118-955c-0de8bbb77769", + "pk": "2c7a5ab5-5e02-4ff0-8a65-8c85dce64504", "fields": { - "question": 349, - "contribution": 1246, + "question": 366, + "contribution": 3598, "answer": 2, - "count": 6 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "451dc205-40db-4f43-92f1-27484943940f", + "pk": "2c7c2d56-36df-4c7e-8683-a61bb0e6369b", "fields": { - "question": 344, - "contribution": 3516, - "answer": 3, + "question": 462, + "contribution": 4091, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4523354f-abb5-4251-92a0-047e4d8745a2", + "pk": "2c7d4d55-43e3-423e-94e8-4eede512954a", "fields": { "question": 320, - "contribution": 4120, - "answer": 5, - "count": 1 + "contribution": 3354, + "answer": 1, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "452613c1-5359-432c-96ca-41aec31654c3", + "pk": "2c800925-6fdc-494b-af53-56af819ae922", "fields": { - "question": 344, - "contribution": 3899, - "answer": 3, - "count": 1 + "question": 339, + "contribution": 1644, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "453bdd63-cae1-46ff-8785-9f52e3b314db", + "pk": "2c85ef44-7d7e-4d16-8ceb-cae63eca9b1a", "fields": { - "question": 435, - "contribution": 4052, - "answer": 3, - "count": 1 + "question": 371, + "contribution": 4154, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "454b0102-3b8b-4d16-b455-998dec881861", + "pk": "2c8f016e-381c-4434-a658-d764b6680ada", "fields": { - "question": 346, - "contribution": 3515, + "question": 326, + "contribution": 3519, "answer": 2, - "count": 3 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "454c6ae4-db78-46f6-a073-7e03483778cc", + "pk": "2c936eb1-7d68-4ac7-a642-aeebcbbc2f72", "fields": { "question": 336, - "contribution": 3486, + "contribution": 3454, "answer": 2, - "count": 7 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "454d650b-9045-4ede-be76-5bce41893768", - "fields": { - "question": 320, - "contribution": 4022, - "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "455d783e-92c2-4d4b-a0e9-965b62fe7612", + "pk": "2c93de35-6138-4072-9b3d-382e5b7b7a4e", "fields": { "question": 321, "contribution": 1837, - "answer": 4, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "456271f0-9864-4acd-b62c-8e01d13753b8", + "pk": "2c9984db-0769-4b80-a0d7-dbf832ab3adc", "fields": { - "question": 339, - "contribution": 1638, - "answer": 1, + "question": 477, + "contribution": 3885, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4575b21d-06fc-4753-b299-8f046e8cb218", + "pk": "2caf2d25-20d7-4163-95c1-758946be7dfa", "fields": { - "question": 343, - "contribution": 3525, + "question": 472, + "contribution": 3434, "answer": 1, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "457dc2fb-9480-4666-b789-8a10b0045ef7", - "fields": { - "question": 369, - "contribution": 3942, - "answer": 4, - "count": 1 + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "458612a5-2a02-4981-af4a-e7768805f3a1", + "pk": "2cc18819-a422-48a0-a6d2-faa34531edfb", "fields": { - "question": 476, - "contribution": 3390, - "answer": -3, + "question": 343, + "contribution": 3373, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4595ffd6-2faa-431a-9665-b9473998c956", + "pk": "2cc3b51c-e823-4644-bd7d-28dca08d0286", "fields": { - "question": 353, - "contribution": 1782, - "answer": 4, + "question": 355, + "contribution": 1776, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45977575-e34e-4b84-ba63-5f92262a768d", + "pk": "2cc694af-ccbf-4c31-804e-18506c98cbec", "fields": { - "question": 371, - "contribution": 1884, + "question": 338, + "contribution": 918, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45a1d577-c27e-4fde-a948-f2baa11c0db2", + "pk": "2cc96730-b988-4b2a-878f-28153e5da167", "fields": { - "question": 326, - "contribution": 3391, - "answer": 5, - "count": 8 + "question": 340, + "contribution": 826, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45ac32e7-ae6c-4e50-b764-25537e6ab9ce", + "pk": "2ccb8a2a-787d-4fdb-bfe7-c91de782404f", "fields": { - "question": 477, - "contribution": 3722, + "question": 370, + "contribution": 4278, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45ace63a-3d38-4d7b-b0b6-4777b52c2c88", + "pk": "2cd69c0d-f16e-4dca-9376-c487ed4ef150", "fields": { - "question": 349, - "contribution": 4190, + "question": 255, + "contribution": 1724, "answer": 2, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45bde605-18f9-4a10-b602-f9ddb32a1392", + "pk": "2cd7bded-e590-4b3e-a98c-b3bfad3eef5b", "fields": { - "question": 316, - "contribution": 3422, + "question": 354, + "contribution": 1243, "answer": 1, - "count": 12 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "45c1adb1-3601-412b-93ec-96c87ef27270", - "fields": { - "question": 344, - "contribution": 3373, - "answer": 4, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45d6b7ad-f7c0-49b5-b159-a80f12c794a9", + "pk": "2cdcab9d-0855-4e69-bdfd-61805ffe78ba", "fields": { - "question": 348, - "contribution": 1206, + "question": 343, + "contribution": 1246, "answer": 1, - "count": 3 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45deecaf-8888-42be-b9ca-a248ebd6016c", + "pk": "2cdf5a81-c267-4afc-9c30-5440fbb41bf1", "fields": { - "question": 349, - "contribution": 1881, + "question": 435, + "contribution": 4052, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45e28885-ffce-4f15-83bb-12858ab56486", + "pk": "2ce1500c-602f-464d-bcee-3f122448a70a", "fields": { - "question": 344, - "contribution": 1870, - "answer": 1, + "question": 473, + "contribution": 4138, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45eda9ad-7887-47f6-9f36-e71708ca3783", + "pk": "2ce5bd49-2a55-4bfb-9a6c-908ba5ba623f", "fields": { - "question": 472, - "contribution": 1660, - "answer": 5, - "count": 3 + "question": 257, + "contribution": 1724, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45f2ffc8-2b41-4c70-b490-4af31630794f", + "pk": "2ce7e31c-de59-4482-903c-b1bddd9dea4c", "fields": { - "question": 260, - "contribution": 3739, + "question": 340, + "contribution": 894, "answer": 3, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "45f88ae5-92ac-4942-a645-497cfc95e5b3", + "pk": "2ce83712-2c9a-4fa1-bd5c-aad0567f0d0f", "fields": { - "question": 477, - "contribution": 3726, - "answer": 0, - "count": 19 + "question": 337, + "contribution": 4122, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4603d210-5d0b-428d-b050-c97afb4d020d", + "pk": "2cec3f98-3e7f-4f69-a6a4-02e33bb32d59", "fields": { - "question": 258, - "contribution": 4046, - "answer": 3, - "count": 1 + "question": 321, + "contribution": 1626, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "46063073-0e19-4731-81bb-4f54481b52a6", + "pk": "2cef6da6-d59a-4048-acde-73a1db7d8c20", "fields": { - "question": 346, - "contribution": 3608, + "question": 475, + "contribution": 3727, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "460b1354-75f7-48e7-b40f-0b93e5505a1e", + "pk": "2cf63bb1-c333-455d-807c-cd00016fdaa0", "fields": { - "question": 327, - "contribution": 4101, + "question": 322, + "contribution": 912, "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4618ad6c-906d-4456-a95c-6716c57dc79d", + "pk": "2d06541d-e04d-40d8-84cd-d283e1025ec1", "fields": { - "question": 357, - "contribution": 3776, - "answer": 2, - "count": 1 + "question": 344, + "contribution": 3879, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "461aac64-2b4c-427e-b9db-46cf231df989", + "pk": "2d14573f-b5fd-4d58-9bcb-fd43c8a78d5c", "fields": { - "question": 317, - "contribution": 1626, + "question": 362, + "contribution": 3918, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "46246b9e-800f-4d1c-a527-90417e269572", + "pk": "2d173af2-d85d-4bef-838e-7286bc3eac6e", "fields": { - "question": 472, - "contribution": 858, - "answer": 1, - "count": 4 + "question": 322, + "contribution": 1634, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4625b986-6c88-4712-bced-a2b8e518af67", + "pk": "2d1a89ee-241b-4802-9183-a1fd28d91d97", "fields": { - "question": 363, - "contribution": 1805, + "question": 333, + "contribution": 3882, "answer": 5, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4629cf8f-c310-4ebc-8d50-c3c6d5cca2c9", + "pk": "2d1e94ff-7615-4abd-871e-1afcacd0cbb9", "fields": { - "question": 477, - "contribution": 881, + "question": 348, + "contribution": 3899, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4630b125-77de-4080-acc7-351d8cd41faf", + "pk": "2d2238af-7719-4e5d-a8a1-ac25efa07aba", "fields": { - "question": 320, - "contribution": 908, - "answer": 4, - "count": 8 + "question": 344, + "contribution": 3855, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "46492723-2074-4c2f-be23-9c1196988627", + "pk": "2d24b7cf-1055-421a-8162-7818cd8b3ef6", "fields": { - "question": 475, - "contribution": 3466, - "answer": -1, - "count": 1 + "question": 327, + "contribution": 881, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "464ac186-79c2-4ba9-9ef4-30f6bf3523f8", + "pk": "2d25187d-74cf-459b-b57b-15d88588c275", "fields": { - "question": 335, - "contribution": 4154, - "answer": 1, - "count": 5 + "question": 325, + "contribution": 3391, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "46559aca-9ca9-40a9-b287-662d3883d803", + "pk": "2d3be806-2dbb-44c2-8f0f-7d92fe5e2bf5", "fields": { - "question": 345, - "contribution": 3367, - "answer": 1, + "question": 327, + "contribution": 837, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4663418d-1cd5-48e0-8055-1d262830b02b", + "pk": "2d456657-8d51-4328-b586-a4d7cdab20ee", "fields": { - "question": 368, - "contribution": 1681, - "answer": 1, + "question": 319, + "contribution": 3462, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4666bf6b-6c8d-4c76-8e6e-a28589facc7b", + "pk": "2d469580-8198-4383-ae4c-f9eb73faf08d", "fields": { - "question": 349, - "contribution": 1843, - "answer": 1, - "count": 1 + "question": 356, + "contribution": 1849, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "466be424-0939-4d74-9020-0020789c7779", + "pk": "2d514cca-e81e-4098-a4c5-9bd22fa0dbe1", "fields": { - "question": 327, - "contribution": 3407, + "question": 345, + "contribution": 1205, "answer": 1, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "466fc6d1-64ad-4418-9bbd-e5b54b2b3121", + "pk": "2d5b2ce1-8328-4dd3-8692-341d22d0526b", "fields": { - "question": 368, - "contribution": 1777, - "answer": 1, - "count": 4 + "question": 461, + "contribution": 4073, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4677647a-2319-4b09-907e-9f0b1f4e7532", + "pk": "2d5c1a7c-be8a-436a-ae6c-8e7b47a08f61", "fields": { - "question": 317, - "contribution": 912, - "answer": 1, - "count": 20 + "question": 322, + "contribution": 3390, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4683f5e3-6cb8-409c-84a5-be41dc4fb3bf", + "pk": "2d61a4e8-7aab-48fd-b170-88d6ec85b7c8", "fields": { - "question": 321, - "contribution": 1626, + "question": 328, + "contribution": 1776, "answer": 3, - "count": 9 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "46885403-fe13-49dd-bb47-045ee2ddab5a", + "pk": "2d76565d-3df3-4460-958c-7ebd071947fc", "fields": { - "question": 338, - "contribution": 3693, + "question": 257, + "contribution": 912, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "46976d0d-8f58-4f12-92de-8d6b4475abcb", + "pk": "2d785511-f238-4122-bd82-5196fe1eee16", "fields": { - "question": 321, - "contribution": 912, + "question": 397, + "contribution": 3781, "answer": 3, - "count": 10 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "469bcbd2-5ea4-4fc5-a261-6b7c9de0fd01", + "pk": "2d7dfdc0-8fc5-47c2-b35d-803ec71391ab", "fields": { - "question": 340, - "contribution": 3795, - "answer": 4, + "question": 344, + "contribution": 3373, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "469cc3ef-9425-48f2-af3a-af1149cc0ee1", + "pk": "2d83b766-a8c5-404f-b069-2cf3f56e2505", "fields": { - "question": 259, - "contribution": 822, - "answer": 4, - "count": 1 + "question": 326, + "contribution": 3395, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "46b6dba5-74f8-45f6-a91a-5a2dc660ff97", + "pk": "2d8636f3-79d8-48da-a838-933626f93ea2", "fields": { - "question": 372, - "contribution": 3466, - "answer": 3, - "count": 1 + "question": 331, + "contribution": 836, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "46c06aa8-d27a-42ce-aee5-d1176fa7082e", + "pk": "2d8eed82-7481-4a3a-9abe-13186ac836c9", "fields": { - "question": 332, - "contribution": 4154, + "question": 321, + "contribution": 4028, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "46c8c204-4ec7-4882-bbc2-3555f7a23d99", + "pk": "2d8f5ab2-9fd1-4e47-9556-352eca8da27a", "fields": { - "question": 345, - "contribution": 1206, + "question": 322, + "contribution": 1724, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "46d9745f-e61a-49bc-bd8c-17c611d22b4b", + "pk": "2d962fe8-f40d-4e60-993f-054d6c73c72a", "fields": { - "question": 367, - "contribution": 3721, - "answer": 5, - "count": 2 + "question": 354, + "contribution": 1154, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "46da475e-93da-4a6d-acc7-c92acf5a480f", + "pk": "2d9ed50a-fe7f-4eea-935b-2e8a5e0c56fd", "fields": { - "question": 477, - "contribution": 4153, - "answer": 2, - "count": 7 + "question": 361, + "contribution": 3647, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "46db23b3-a274-4205-a71e-fb8fa4e477e8", + "pk": "2da4d60b-8bca-47a3-823b-d14259c30c7a", "fields": { - "question": 329, - "contribution": 1777, + "question": 355, + "contribution": 3782, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "46e21d08-0d87-4cff-9d39-1f29444331d8", + "pk": "2da6eaa1-1351-4ea3-b9b3-1f349e0f31c4", "fields": { - "question": 437, - "contribution": 3976, - "answer": 2, + "question": 255, + "contribution": 822, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "470b9266-d1c9-4b84-94d3-5851176fd2c5", + "pk": "2db980ab-9212-46d4-a6aa-18f9e4dfa805", "fields": { - "question": 320, - "contribution": 864, + "question": 391, + "contribution": 3711, "answer": 2, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "471737f9-ec0a-43ce-8011-cd7954f37927", - "fields": { - "question": 346, - "contribution": 3516, - "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "471ca60b-ef6f-4738-a56d-35850054c1b5", + "pk": "2dc78e6d-ac26-4cab-b23b-533a04200d66", "fields": { - "question": 331, - "contribution": 884, - "answer": -1, + "question": 325, + "contribution": 1777, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "471f3014-6b68-4a06-8e61-412f9c1e4974", + "pk": "2dcdea0e-b463-4703-862f-b50b9f79a3a8", "fields": { - "question": 354, - "contribution": 1844, - "answer": 2, + "question": 338, + "contribution": 894, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "47267b0b-648e-4c1f-bd66-de96156d7da7", + "pk": "2dd3ac68-6c97-4d57-8dea-b7c197e01857", "fields": { - "question": 460, - "contribution": 4283, - "answer": 2, + "question": 338, + "contribution": 3703, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "473b0b0f-8bfb-48a7-9e2f-f4ad38498b2e", + "pk": "2dd9b44f-f1e8-4073-b1a8-9094508bf9dd", "fields": { - "question": 346, - "contribution": 3890, - "answer": 1, - "count": 1 + "question": 323, + "contribution": 4128, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "473c2d1d-5e11-4201-a94b-aeafa9af900e", + "pk": "2dda4d47-471f-453f-9db5-831d62c21692", "fields": { - "question": 475, - "contribution": 3785, - "answer": -1, + "question": 355, + "contribution": 1782, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "473d6189-d71d-4e6d-b170-e00f831d5b66", + "pk": "2ddddd97-a2e8-4155-bde0-a55632cd5f42", "fields": { - "question": 345, - "contribution": 3517, + "question": 325, + "contribution": 3395, "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "473da7ba-c147-476e-8ca4-241f06336e65", + "pk": "2df9652e-a062-457c-bdad-2f47315593f6", "fields": { - "question": 347, - "contribution": 1874, - "answer": 1, - "count": 3 + "question": 339, + "contribution": 1694, + "answer": 0, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "473ecbfb-1877-4883-a518-5a7eb68a953c", + "pk": "2dfb0ddb-08b5-4615-a72f-e98310b03856", "fields": { - "question": 346, - "contribution": 3607, - "answer": 1, - "count": 2 + "question": 431, + "contribution": 4177, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "474c0d71-e664-47d1-9be8-7df90867d6a4", + "pk": "2e0584cd-0231-4aa4-b5b2-eeb901f06236", "fields": { - "question": 402, - "contribution": 3646, - "answer": 2, - "count": 4 + "question": 337, + "contribution": 3795, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "475472a3-0696-443f-ae30-01774ee7dd13", + "pk": "2e065661-ea34-4f30-9708-bfcd7fe824e7", "fields": { - "question": 328, - "contribution": 1669, + "question": 347, + "contribution": 4095, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4758358c-3279-4348-bd15-40d9c3af0efb", + "pk": "2e12874e-f6d1-4018-9e6b-c39069308ad0", "fields": { - "question": 345, - "contribution": 1872, + "question": 437, + "contribution": 4052, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "475d83a5-a241-457a-8187-d31cd58f7c45", + "pk": "2e241222-bad5-4a55-beac-204c282476f4", "fields": { - "question": 401, - "contribution": 4041, - "answer": 4, + "question": 340, + "contribution": 1200, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "475f0196-7ec4-490f-906a-49ebe5f51e46", + "pk": "2e2cf786-30c8-4921-9517-c8091c92e7fc", "fields": { - "question": 317, - "contribution": 4128, + "question": 319, + "contribution": 908, "answer": 3, - "count": 3 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "475f3ce6-1246-4223-83e2-6e7abd7080f1", + "pk": "2e2d9292-c44e-4aa1-a486-4baaa4ff3ef2", "fields": { - "question": 363, - "contribution": 1812, - "answer": 3, - "count": 2 + "question": 255, + "contribution": 880, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "476b98f7-9269-4650-88f9-41e0f74406bb", + "pk": "2e2f8e19-a737-4130-87fa-c9b8f2930da2", "fields": { - "question": 384, - "contribution": 3711, + "question": 350, + "contribution": 3406, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "476e910a-e694-4733-9104-8f1514fab2ac", + "pk": "2e314ccc-7cd2-477b-9415-3c64411cc2fa", "fields": { - "question": 366, - "contribution": 3566, - "answer": 3, - "count": 1 + "question": 359, + "contribution": 1826, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4770b832-9b2b-4238-811b-454e20c9b961", + "pk": "2e4a6c67-2320-409d-8c54-2b8dd7d91268", "fields": { - "question": 316, - "contribution": 4100, + "question": 370, + "contribution": 3610, "answer": 1, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "478a0881-ac7c-4672-a074-6774c6fcb1eb", + "pk": "2e4b9265-5702-4a1a-b798-918afa210c70", "fields": { - "question": 473, - "contribution": 3406, - "answer": -3, + "question": 354, + "contribution": 3546, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "478e614f-ec5f-4a2a-82e0-b16cf231b4e5", + "pk": "2e520e3c-ff2c-47cd-b8e1-a7755f363650", "fields": { - "question": 262, - "contribution": 836, - "answer": 2, - "count": 3 + "question": 476, + "contribution": 1626, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "47a7a1a2-ddcf-4a4e-aaf8-8fb02d713e41", + "pk": "2e6647e8-50d9-4695-bce8-91b1c5de9110", "fields": { - "question": 368, - "contribution": 1613, + "question": 353, + "contribution": 1849, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "47bb607e-8539-4f54-b44b-15416de9f188", + "pk": "2e6e81c5-a94c-4142-acaf-3b6a4cb05df6", "fields": { - "question": 329, - "contribution": 3556, - "answer": 3, - "count": 2 + "question": 338, + "contribution": 1200, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "47c653a6-f121-483c-aa40-33e85a87936e", + "pk": "2e7c5f31-8ea4-4ef6-b806-6b51862e037d", "fields": { - "question": 347, - "contribution": 4189, + "question": 344, + "contribution": 1880, "answer": 3, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "47cec923-f1d7-48b4-9b8d-44eafce0143f", + "pk": "2e87bda6-a3ea-4b07-b98e-8230f62c7da3", "fields": { - "question": 345, - "contribution": 3373, - "answer": 3, - "count": 1 + "question": 315, + "contribution": 4022, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "47e178e2-bf11-4355-9ff1-0663a88dd4d1", + "pk": "2e97e41d-22fc-4b43-ad07-81969094dd7b", "fields": { - "question": 352, - "contribution": 804, + "question": 317, + "contribution": 1612, "answer": 5, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "47e5d73d-3f57-4a31-8cf4-7d9bdd01e3a9", + "pk": "2e9fed2b-84db-483c-b059-655688bd7bb7", "fields": { - "question": 353, - "contribution": 3923, + "question": 327, + "contribution": 1617, "answer": 1, - "count": 2 + "count": 28 } }, { "model": "evaluation.ratinganswercounter", - "pk": "47e5da27-058c-47a9-b51d-e066b0408ce5", + "pk": "2ea6935e-461f-4499-a5d7-5d067e11ac00", "fields": { - "question": 472, - "contribution": 804, - "answer": 5, - "count": 4 + "question": 258, + "contribution": 3422, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "47e674bd-96cb-455b-ad2b-7d06b70c2c98", + "pk": "2eaae023-4417-498e-8c3a-3229335fb138", "fields": { - "question": 260, - "contribution": 3739, - "answer": 5, - "count": 1 + "question": 473, + "contribution": 4128, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "47e85ff4-b68c-4bda-9422-558d72f01148", + "pk": "2eab4413-b599-49b6-b3a7-8d9dc3790850", "fields": { - "question": 367, - "contribution": 1837, + "question": 337, + "contribution": 858, "answer": 2, - "count": 8 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "47e9a137-f04f-40ba-8218-972f7076c5d6", + "pk": "2eab6387-9793-43da-91ac-520232483f82", "fields": { - "question": 367, - "contribution": 4138, + "question": 326, + "contribution": 3519, "answer": 1, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "481204dc-cd89-44c3-a5aa-b241b94293a0", + "pk": "2eaeae17-c6f2-4354-af92-0c30c99d50e0", "fields": { - "question": 370, - "contribution": 1785, + "question": 315, + "contribution": 4116, "answer": 2, + "count": 4 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "2eb902bd-3fc8-46a7-a5a6-eae3280905ef", + "fields": { + "question": 349, + "contribution": 3536, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "481bd491-bb02-4e08-8751-3b218f98e946", + "pk": "2eb9d6eb-91fc-4cdb-b911-46764cca7238", "fields": { - "question": 367, - "contribution": 3422, + "question": 341, + "contribution": 3372, + "answer": 5, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "2ebbbe15-4b68-4a4a-b21e-b3bc8014b77a", + "fields": { + "question": 360, + "contribution": 1810, "answer": 2, - "count": 12 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48224a81-b580-4b42-9046-ae24f583f4da", + "pk": "2ebd612c-9270-4fc8-9d73-b67386914111", "fields": { - "question": 475, - "contribution": 3482, - "answer": 0, + "question": 333, + "contribution": 3881, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48346b14-8525-4108-83a5-f63e6a593b62", + "pk": "2ec2d59a-953d-4152-b4a8-ea38748dbff6", "fields": { - "question": 323, - "contribution": 3434, - "answer": 3, - "count": 7 + "question": 341, + "contribution": 1662, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "484f0a8d-a211-4cfd-a60f-80e77046e383", + "pk": "2ecac675-05b1-4f7b-a01c-3ae72e9df268", "fields": { - "question": 319, - "contribution": 884, - "answer": 1, - "count": 16 + "question": 362, + "contribution": 1826, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "484fb3ff-c59d-43e0-b5fd-04ff685e77f0", + "pk": "2ecb979d-96f0-490b-b608-4fdf4f168526", "fields": { - "question": 327, - "contribution": 1635, + "question": 326, + "contribution": 1681, "answer": 1, - "count": 21 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4852e5e5-83fa-4dc1-a4c6-dc433f1e3e93", + "pk": "2ed55287-678c-41ec-9a18-bfa579db7377", "fields": { - "question": 316, - "contribution": 3679, - "answer": 1, - "count": 8 + "question": 355, + "contribution": 3546, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4868397a-85f8-43b9-bd08-ea5c32dee80d", + "pk": "2edbdb72-9b50-45ec-87a7-03b55004608f", "fields": { - "question": 343, - "contribution": 3517, - "answer": 1, - "count": 9 + "question": 412, + "contribution": 3974, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "486f053e-f049-445b-afdc-6e0921a88c15", + "pk": "2ede91e0-7081-4d5d-bf26-d38401a14902", "fields": { - "question": 341, - "contribution": 3440, - "answer": 5, + "question": 434, + "contribution": 4008, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "488eed2b-a542-4b7e-8c14-02b19f218298", + "pk": "2ee13e73-ab9e-4c48-8060-4a7efde7a9d3", "fields": { - "question": 366, - "contribution": 3881, + "question": 332, + "contribution": 4156, "answer": 1, - "count": 6 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "489539bf-63b3-4e2c-93a6-8063c5ed4291", + "pk": "2ee625cf-b38c-41cb-96f8-beddf5d1ecfe", "fields": { - "question": 319, - "contribution": 836, - "answer": 2, - "count": 6 + "question": 332, + "contribution": 3961, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4898e1bb-5400-4660-b208-3c3a226800f0", + "pk": "2eeb9d3a-dbe6-47c3-a660-bfa3c756ac55", "fields": { - "question": 317, + "question": 259, "contribution": 880, - "answer": 3, - "count": 4 + "answer": 1, + "count": 31 } }, { "model": "evaluation.ratinganswercounter", - "pk": "489afdfc-904a-48aa-a362-8dbe15968065", + "pk": "2eec7b76-b1fb-476a-861e-e0d86bdc2ee4", "fields": { - "question": 338, - "contribution": 4052, - "answer": 2, - "count": 1 + "question": 472, + "contribution": 3508, + "answer": 5, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48a454bc-b384-4aa6-8678-18a4d6056770", + "pk": "2ef37ab3-b329-418b-a12f-80345b28c348", "fields": { - "question": 368, - "contribution": 3885, - "answer": 2, - "count": 2 + "question": 340, + "contribution": 918, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48af247b-8b03-4edb-9062-450f215dc802", + "pk": "2ef7f637-9c2a-4ec6-a120-9f01a28d4f57", "fields": { - "question": 473, - "contribution": 3751, - "answer": -1, + "question": 344, + "contribution": 3528, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48b90fe2-9f71-4670-bafd-4aabcac2e4d2", + "pk": "2efaa44d-8940-4554-bec2-d1fecbdf1496", "fields": { - "question": 258, - "contribution": 1634, - "answer": 5, - "count": 1 + "question": 338, + "contribution": 3685, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48bfcead-867e-4f13-981f-64e4fbe429b9", + "pk": "2f00a9b9-b29f-4d59-b7fe-8e176aaa857c", "fields": { "question": 326, - "contribution": 1779, - "answer": 3, - "count": 2 + "contribution": 3884, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48c2b146-2908-4111-969e-4283ff4ff2c2", + "pk": "2f02596b-e6b7-47be-b112-0a70b21c4e8f", "fields": { - "question": 331, - "contribution": 3739, - "answer": 2, - "count": 3 + "question": 475, + "contribution": 3723, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48d1f5b5-ca64-4b1a-9066-4eb07033d144", + "pk": "2f04d835-3026-49ad-adf0-44e3a9199540", "fields": { - "question": 369, - "contribution": 3597, - "answer": 4, + "question": 319, + "contribution": 864, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48d96e3d-4493-4594-bf13-6fecc9daa3e5", + "pk": "2f28f74b-461f-4444-8068-8dcba7db6c57", "fields": { - "question": 344, - "contribution": 1639, - "answer": 5, + "question": 366, + "contribution": 3592, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48e4b4d7-795f-4076-bb14-5ac867d84e7a", + "pk": "2f29c78c-e7fe-41af-b109-cea46007cde2", "fields": { - "question": 344, - "contribution": 1663, - "answer": 1, - "count": 8 + "question": 346, + "contribution": 1246, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48ed4c0a-6d00-403b-930d-b430453ac3e8", + "pk": "2f30e6a3-482f-4f7a-97ab-18e0919da7c6", "fields": { - "question": 262, - "contribution": 1724, + "question": 473, + "contribution": 1748, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48f94448-b6d0-4fa6-911c-fe002695b05d", + "pk": "2f32f356-1f34-4a50-8727-d406139409aa", "fields": { - "question": 258, - "contribution": 1626, - "answer": 4, + "question": 339, + "contribution": 3645, + "answer": -1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48fa9c2f-4437-4d9a-97bb-6887fa2d6ca2", + "pk": "2f36120c-edab-40bc-9b8f-446a26a1570c", "fields": { - "question": 360, - "contribution": 1827, - "answer": 1, - "count": 1 + "question": 476, + "contribution": 1668, + "answer": 0, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "48fd60ae-fd4b-4f2b-9f83-a5d00086a1f2", + "pk": "2f449721-b29d-4b6c-957d-1c77773180ed", "fields": { - "question": 432, - "contribution": 4090, - "answer": 4, - "count": 1 + "question": 258, + "contribution": 4028, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49060097-9466-48b7-b1b3-1570979d8646", + "pk": "2f474242-6403-4058-a03c-f7eb78b30189", "fields": { - "question": 355, - "contribution": 3608, - "answer": 1, + "question": 473, + "contribution": 3751, + "answer": 0, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "490a0e6e-e810-46e5-927e-f7d909fd5a61", + "pk": "2f479de4-1559-4e8d-ad86-7c63d6a8ff0f", "fields": { - "question": 328, - "contribution": 823, - "answer": 5, - "count": 1 + "question": 354, + "contribution": 1784, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "490a603c-a278-46e6-b6dd-7d8f1cfba80c", + "pk": "2f4a88e1-a52a-4336-90d9-b0fe98150a29", "fields": { - "question": 327, - "contribution": 3680, - "answer": 4, - "count": 2 + "question": 379, + "contribution": 3781, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "490b7c40-c627-44b1-b18a-1d07f1c535c8", + "pk": "2f4cdfc0-8a75-4524-973c-f5e2c8021d92", "fields": { - "question": 362, - "contribution": 3921, - "answer": 3, + "question": 332, + "contribution": 4152, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "490f20c5-ade5-4d2b-8c0f-03e5f1d73d39", + "pk": "2f571286-7c65-4f48-8bc9-6d0acf442845", "fields": { - "question": 344, - "contribution": 1863, - "answer": 1, + "question": 350, + "contribution": 3466, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49114e25-0490-4a0b-a9d1-d732ae029f48", + "pk": "2f5bde6e-f606-4912-97b1-3ff77d569464", "fields": { - "question": 473, - "contribution": 1638, - "answer": 0, - "count": 6 + "question": 366, + "contribution": 3631, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "491e8f39-4c97-47f3-a39e-41e04699e396", + "pk": "2f6f0c42-c7c0-481b-a564-215908ae0d82", "fields": { - "question": 356, - "contribution": 3546, - "answer": 4, - "count": 1 + "question": 325, + "contribution": 3883, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49280f14-d036-4907-98dd-778bb44b1f81", + "pk": "2f73ada5-f594-40af-9818-c173238393c3", "fields": { - "question": 472, - "contribution": 3739, - "answer": 5, + "question": 339, + "contribution": 3482, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "492a2fde-9fd5-43db-91c9-80c236023f0c", + "pk": "2f789b53-7c99-4a49-b9c6-9efa635ca713", "fields": { - "question": 343, - "contribution": 3900, - "answer": 4, - "count": 1 + "question": 326, + "contribution": 1298, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "492c275a-c082-498e-9a9b-42fbda83a20a", + "pk": "2f807006-ad2a-4ac4-815c-37bcfdbc886b", "fields": { - "question": 328, - "contribution": 3391, - "answer": 2, + "question": 335, + "contribution": 3598, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49357e68-a2ca-41e4-80de-8f7effcd39c8", + "pk": "2f8d0304-e5ae-48c9-9db9-e3dc85f51047", "fields": { - "question": 472, - "contribution": 788, - "answer": 5, - "count": 1 + "question": 477, + "contribution": 3885, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "493e9316-3891-4424-9f76-51605a030ce2", + "pk": "2f90c888-ec4f-4d3c-b4f6-cf85ca46565c", "fields": { - "question": 477, - "contribution": 1780, - "answer": -2, + "question": 341, + "contribution": 1710, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "493f8ac1-862f-4b92-b1cb-ab3b61e8b0df", + "pk": "2f91adf5-9f94-4c4a-a250-7547fa2c1df7", "fields": { - "question": 255, - "contribution": 3679, - "answer": 4, + "question": 347, + "contribution": 3545, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4947f502-551c-4865-9dea-19cb22048e22", + "pk": "2f93c19a-c05b-4aba-b6c1-68516575d657", "fields": { - "question": 255, - "contribution": 3390, - "answer": 4, - "count": 3 + "question": 359, + "contribution": 3916, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49535659-e47a-46d0-92dd-5b41dbb628be", + "pk": "2fba9422-9442-44f5-b67b-fe081a9e415d", "fields": { - "question": 327, - "contribution": 1154, - "answer": 1, - "count": 20 + "question": 340, + "contribution": 3452, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49553b19-2fd5-486d-8a51-1ff89df10497", + "pk": "2fbfea7f-67bc-4e51-954c-cf7a1c736790", "fields": { - "question": 316, - "contribution": 1634, - "answer": 2, - "count": 10 + "question": 348, + "contribution": 1868, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "495550a6-615e-4a4e-9d61-ede68f08bb3a", + "pk": "2fcefe92-d912-41c5-b7c0-124689c66437", "fields": { - "question": 329, - "contribution": 1802, - "answer": 4, - "count": 4 + "question": 349, + "contribution": 3728, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "495559ea-f130-4738-8364-75859b58ccee", + "pk": "2fd8e282-91ad-4c1c-a87d-adeef8670c43", "fields": { - "question": 340, - "contribution": 788, + "question": 321, + "contribution": 3472, "answer": 2, - "count": 2 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "495a9ab0-f4e1-4d6e-b99d-53f7b0e03a84", + "pk": "2fdc3414-21ea-40f6-a924-f15bb808f567", "fields": { - "question": 339, - "contribution": 4052, - "answer": 1, + "question": 371, + "contribution": 3631, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49665c78-36a4-45d6-a7ec-a8dc2481e1ed", + "pk": "2fde3688-58f6-4215-b656-cb8f7470af97", "fields": { "question": 477, - "contribution": 3740, - "answer": 0, - "count": 4 + "contribution": 1635, + "answer": -2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49669c42-cbac-49fc-b1ee-ca2b287a9afd", + "pk": "2fe0b18c-931b-46bf-8518-bb4396febab1", "fields": { - "question": 355, - "contribution": 4037, - "answer": 1, + "question": 328, + "contribution": 3435, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "498e06db-dd5a-4d50-9fe1-1edb034b7fa9", + "pk": "2febaaa4-81f7-4beb-962b-bc2db9cc1299", "fields": { - "question": 258, - "contribution": 4128, - "answer": 1, - "count": 4 + "question": 255, + "contribution": 912, + "answer": 2, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4995cb02-1d21-417e-a6c2-5cb9f8e2e87b", + "pk": "2fecdeed-cf0d-434f-a561-eacec3ad68de", "fields": { - "question": 473, - "contribution": 1200, + "question": 319, + "contribution": 3474, "answer": 1, - "count": 10 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "49a18fc1-a6f1-468a-973b-59ee7f0b8d81", - "fields": { - "question": 337, - "contribution": 868, - "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49ad808a-2ff8-462f-b5da-3332b520b132", + "pk": "2fed36a1-192a-4685-bd21-4bf8c77e797a", "fields": { - "question": 357, - "contribution": 4279, - "answer": 5, + "question": 361, + "contribution": 3916, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49b9312b-8e64-45fd-8abb-975e3f28f095", - "fields": { - "question": 340, - "contribution": 858, - "answer": 1, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "49cfe732-bc8f-48a3-9689-1610978ab793", + "pk": "2fee7379-2472-4e30-a0f6-8b8566283996", "fields": { - "question": 367, + "question": 317, "contribution": 4028, - "answer": 1, - "count": 7 + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49d24c0d-ae60-4498-b9ec-e29db32ca91a", + "pk": "2ff92588-b15a-4695-b4fc-7e5b56638f6a", "fields": { - "question": 317, - "contribution": 3721, - "answer": 1, - "count": 15 + "question": 341, + "contribution": 1702, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49d581b6-380d-4cae-8c4a-a70f8b03324c", + "pk": "2ffec9a2-2c0d-4d2f-8ccd-b49e0cf52788", "fields": { - "question": 346, - "contribution": 3607, + "question": 320, + "contribution": 1837, "answer": 2, - "count": 2 + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49d60268-b2f8-4526-9a0a-435d2ef4e232", + "pk": "2ffed84b-1829-4840-8d91-851501785153", "fields": { - "question": 325, - "contribution": 909, - "answer": 3, - "count": 2 + "question": 352, + "contribution": 4022, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49d86c51-574d-4f0d-b512-f6c357b5c248", + "pk": "30011215-bb05-47fe-b1ca-a9cbcfa6f64b", "fields": { - "question": 357, - "contribution": 1860, + "question": 316, + "contribution": 3406, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49daaca6-b3ef-444e-871a-0f1e61184e8c", + "pk": "300fc170-e9ae-4c00-8c2a-b674d7058797", "fields": { - "question": 262, - "contribution": 1658, + "question": 259, + "contribution": 4046, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49e94769-df0a-4466-b34d-ed306ad3ab9f", + "pk": "3013c544-3863-4328-815e-610d7e581a5f", "fields": { - "question": 340, - "contribution": 886, - "answer": 5, - "count": 2 + "question": 326, + "contribution": 3556, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49ebc74d-cfde-41f3-8305-860a021071cb", + "pk": "3019637c-93c3-4f0a-9138-070d18b6856d", "fields": { - "question": 338, - "contribution": 3366, + "question": 327, + "contribution": 3726, "answer": 1, - "count": 1 + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49f30139-cb07-431d-9579-c2771abed474", + "pk": "3038137e-0721-493d-b512-9f3a8767025a", "fields": { - "question": 327, - "contribution": 1802, - "answer": 4, - "count": 1 + "question": 331, + "contribution": 3739, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "49fed3e8-de7e-4939-9809-3408ef650be3", + "pk": "30487697-b418-4fcb-ad37-d5d4abcd1aed", "fields": { - "question": 319, - "contribution": 4084, + "question": 344, + "contribution": 1881, "answer": 3, - "count": 17 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a0a6e80-038b-4e3e-bf47-acb18e5aac5d", + "pk": "304c88a4-c480-4815-91f9-0e7cb1627c2b", "fields": { - "question": 316, - "contribution": 1658, - "answer": 1, - "count": 12 + "question": 349, + "contribution": 1863, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a0bd5c1-7544-49a6-9e9c-9930bcfee485", + "pk": "304d796f-23a9-4c75-b274-0041eaa0d959", "fields": { - "question": 259, - "contribution": 3434, - "answer": 4, - "count": 2 + "question": 348, + "contribution": 1204, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a1392e9-de60-4334-bb31-ed38cb3799d7", + "pk": "30542f34-cb8d-4050-aef9-c10ef06b2016", "fields": { - "question": 477, - "contribution": 3556, - "answer": -1, + "question": 348, + "contribution": 4190, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a36cb12-b8be-43ca-82d0-15335f54d9cc", + "pk": "305d6559-6252-4721-9717-cb9cc928657b", "fields": { - "question": 258, - "contribution": 908, - "answer": 3, - "count": 12 + "question": 259, + "contribution": 1612, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a3c6d2b-cfb4-460f-ad5e-67722a6e3c7b", + "pk": "3060303d-4a80-4466-8f03-b7801676e640", "fields": { - "question": 367, - "contribution": 1837, + "question": 317, + "contribution": 4120, "answer": 3, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a4e7336-c532-47b2-88b6-c2b50b12e652", + "pk": "30663782-72e7-426e-bc89-b0dc7ba3144c", "fields": { - "question": 366, - "contribution": 3595, + "question": 355, + "contribution": 3607, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a570d86-4004-486c-a6f9-08a7802cbb21", + "pk": "3068968a-3bdb-498b-af5f-0a76c096bc43", "fields": { - "question": 477, - "contribution": 3726, + "question": 316, + "contribution": 1612, "answer": 2, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "4a5b6fbc-b322-4e9a-89cf-9c2e7b2e52d5", - "fields": { - "question": 355, - "contribution": 1257, - "answer": 1, - "count": 6 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a5bbad2-c4e0-49d5-88db-8c05285d1831", + "pk": "306beae7-760b-449d-8190-a94b93b95160", "fields": { - "question": 472, - "contribution": 3723, - "answer": 5, + "question": 316, + "contribution": 908, + "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a5ef2a6-50a2-4b3e-8ffd-8d6e6000b2fa", + "pk": "30902dd5-824d-4b81-9ff2-e9cf42a47608", "fields": { - "question": 327, - "contribution": 1802, - "answer": 3, - "count": 6 + "question": 362, + "contribution": 3893, + "answer": 1, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a6ccd3b-61a1-4060-81f4-17651bdd7eb8", + "pk": "3090c584-fe5e-4190-bc9f-c2ff0183cd11", "fields": { - "question": 316, - "contribution": 4118, + "question": 339, + "contribution": 1662, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a6de1ad-01f5-49f5-a497-82ef257e6071", + "pk": "309742be-42f1-4c05-aea4-75ad254c4042", "fields": { - "question": 346, - "contribution": 3545, - "answer": 1, + "question": 326, + "contribution": 3680, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a70f27d-9b76-4c55-8503-463c1c123419", + "pk": "30b30859-6d9a-41cc-832e-2434e49102d8", "fields": { - "question": 459, - "contribution": 4283, - "answer": 1, - "count": 2 + "question": 325, + "contribution": 1802, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a74536a-47ac-422c-9cde-c23cca869ba8", + "pk": "30c16a4a-dd4a-4634-be0a-b9a5c6a4f479", "fields": { - "question": 327, - "contribution": 913, - "answer": 3, - "count": 1 + "question": 338, + "contribution": 886, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a79422c-6340-454b-b851-6dc9613754c8", + "pk": "30d47c84-a65b-4736-8e94-c69095a19ddd", "fields": { - "question": 344, - "contribution": 3822, + "question": 260, + "contribution": 3474, "answer": 2, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a892b32-f778-4dc0-b11b-58d45246b36e", + "pk": "30dbee39-5018-4faf-abcd-3297c3d103f4", "fields": { "question": 337, - "contribution": 3703, + "contribution": 3735, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4a986972-8a5c-4b41-90a0-ba166bda5f06", + "pk": "30e2ac9d-1e90-42c3-89f9-ce79cf7922b3", "fields": { - "question": 315, - "contribution": 3390, + "question": 326, + "contribution": 1288, "answer": 2, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4aa66294-045f-43f8-9cf3-c4348a4dca7d", + "pk": "30e8e8d9-91a5-40ce-81a2-701af748cbe5", "fields": { "question": 344, - "contribution": 3895, + "contribution": 3941, "answer": 1, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "4ab46169-43d9-4ba7-b10e-0b24d1066d4b", - "fields": { - "question": 476, - "contribution": 4138, - "answer": -3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ab6fafc-0471-4d90-ac80-44021875ecd2", + "pk": "30e9d23b-9f3f-4783-b5ce-9a3a9b5e754c", "fields": { - "question": 396, - "contribution": 3781, + "question": 326, + "contribution": 1776, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ab7317e-2a3d-435d-82cd-a01c08783d2d", - "fields": { - "question": 460, - "contribution": 4284, - "answer": 4, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "4ac5d263-4543-48b7-867a-40bba76404c2", + "pk": "30ec2cbc-ae08-4488-8102-aaef2fe21b76", "fields": { - "question": 472, - "contribution": 4002, - "answer": 5, - "count": 3 + "question": 473, + "contribution": 880, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4acc6458-0255-457b-b97f-bad6de415a0e", + "pk": "30ecb834-e0d7-4968-afe4-ff4b7bf286d0", "fields": { - "question": 315, - "contribution": 822, + "question": 328, + "contribution": 4101, "answer": 1, - "count": 6 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ad0a0eb-118a-43a2-9da9-ac1b68ab2004", + "pk": "30ecf2ee-a40a-4e50-8ce5-9c349dd8f9d8", "fields": { - "question": 477, - "contribution": 913, - "answer": -2, - "count": 2 + "question": 260, + "contribution": 884, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ad82ed3-9768-4b3f-a477-d24a35b22194", + "pk": "30edb1d3-82dc-4b09-bbe4-01125c093e82", "fields": { - "question": 356, - "contribution": 4270, - "answer": 1, + "question": 475, + "contribution": 862, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4adf9f09-8b29-48c8-b6b4-2f69506fa40a", + "pk": "30ee3379-5f76-4270-b989-7e1b0a62c7d4", "fields": { - "question": 473, - "contribution": 4084, + "question": 428, + "contribution": 4155, "answer": 2, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4aeb649d-84f6-4fce-a496-35ca594949d8", + "pk": "30f00b7f-3549-4cc5-8a04-3cc4bade1c13", "fields": { - "question": 353, - "contribution": 3517, - "answer": 1, + "question": 367, + "contribution": 3434, + "answer": 3, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b01aed7-d964-4c51-9b07-cb6c156b51db", + "pk": "30f56991-d0f6-47ae-bb39-8b55af450347", "fields": { - "question": 343, - "contribution": 1880, + "question": 321, + "contribution": 836, "answer": 2, - "count": 2 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b01fde0-91b9-4117-9a82-55b37fd9862a", + "pk": "30f9f5ef-4fc4-452f-906b-92b33e71b71c", "fields": { - "question": 341, - "contribution": 1638, - "answer": 3, - "count": 2 + "question": 328, + "contribution": 823, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b088730-bc44-4f75-a8cc-2cde7c1d0aa7", + "pk": "3104acc7-f105-4e78-a463-2345275e487f", "fields": { - "question": 332, - "contribution": 3882, + "question": 337, + "contribution": 886, "answer": 3, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b1986f2-6b9d-4c5f-9086-a1acc2861af0", + "pk": "3109788a-77bb-40ec-b2fa-726cf6ffb15d", "fields": { - "question": 328, - "contribution": 3435, - "answer": 2, - "count": 8 + "question": 360, + "contribution": 3649, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b242611-6c50-4944-ad77-7f1c2db94927", + "pk": "311a4182-7809-4850-af5c-72aed63d6bbf", "fields": { - "question": 321, - "contribution": 862, + "question": 325, + "contribution": 1669, "answer": 2, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b2d5009-194a-4bb6-b43a-87a3b03a092a", + "pk": "31345f59-21d4-40d8-a804-419f73ba9f34", "fields": { - "question": 257, - "contribution": 3679, - "answer": 2, - "count": 3 + "question": 473, + "contribution": 3683, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b3ddc9f-c31b-4b54-b8a6-b1679677c5df", + "pk": "314ca0c8-de10-48d1-9303-0f3749708b77", "fields": { - "question": 437, - "contribution": 4090, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 4101, + "answer": 0, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b3ed48a-2f6e-46a7-8aaf-52208d461ed6", + "pk": "314f3cba-6c32-448e-9792-adac5cc3d6f1", "fields": { - "question": 337, - "contribution": 3685, - "answer": 2, - "count": 3 + "question": 336, + "contribution": 4052, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b40ab2d-3553-4854-b170-704aef8368a8", + "pk": "31541786-f1d8-4199-994e-cd815e8b0c98", "fields": { "question": 341, - "contribution": 4122, - "answer": 1, + "contribution": 1660, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b42e227-83f3-4ec2-a1c5-a23b260c026d", + "pk": "3156cf6e-7884-40f3-865c-69c041ca562f", "fields": { - "question": 473, - "contribution": 3727, - "answer": 0, - "count": 5 + "question": 354, + "contribution": 4271, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b4963fb-e75c-4c9b-8126-ae2725ce7d7d", + "pk": "31597dc0-0d2b-4ac8-947f-ea0b3e73d23c", "fields": { - "question": 315, - "contribution": 4100, - "answer": 3, - "count": 8 + "question": 328, + "contribution": 3680, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b531173-06e1-4b35-8be0-4fef729857f9", + "pk": "316a7796-5424-49b9-a8d3-f5468df66f49", "fields": { - "question": 327, - "contribution": 837, - "answer": 1, - "count": 19 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "4b581207-6dae-4294-ae9f-c19c369e0703", - "fields": { - "question": 322, - "contribution": 1626, - "answer": 3, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "4b5de65a-35ac-4e35-983b-9c9f75894ae7", - "fields": { - "question": 339, - "contribution": 3372, - "answer": -3, + "question": 351, + "contribution": 3454, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b5eeee9-e0da-4cda-95fe-6607767155e3", + "pk": "3172ac85-6452-4445-a8f2-9923e2cbd25e", "fields": { - "question": 344, - "contribution": 3606, + "question": 366, + "contribution": 4205, "answer": 4, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b5f249f-fe0c-4de4-bd40-5fb659b792aa", + "pk": "31805cd2-d0f4-4576-ab7e-4ba414dc9c2c", "fields": { - "question": 260, - "contribution": 3721, - "answer": 4, - "count": 1 + "question": 473, + "contribution": 1634, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b668f20-fbc2-497e-8ea1-086cbd902499", + "pk": "318486df-fc8c-403e-a152-0e11b307d4d4", "fields": { - "question": 322, - "contribution": 3474, - "answer": 1, - "count": 1 + "question": 321, + "contribution": 4138, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b7444cb-a504-41b0-9ac0-af20c0ad6c58", + "pk": "31882a31-1e62-46a3-8865-bf1c9b6a61c2", "fields": { - "question": 369, - "contribution": 3929, - "answer": 4, + "question": 325, + "contribution": 881, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b788e05-1827-4a3d-add7-36a92dcb834e", + "pk": "318f0160-5484-4d94-9c76-9360be513484", "fields": { - "question": 371, - "contribution": 3593, + "question": 473, + "contribution": 4116, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b78bbce-849f-4d7d-bb92-a130ca649bcb", + "pk": "31a31ddc-7f16-4992-9299-ff1b608fea97", "fields": { - "question": 322, - "contribution": 4022, - "answer": 2, - "count": 1 + "question": 259, + "contribution": 3474, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b7b202f-b818-4ceb-836c-1438f95f93ec", + "pk": "31a5dbfd-885a-458d-85c3-e2de2c50a627", "fields": { - "question": 345, - "contribution": 3606, + "question": 325, + "contribution": 4117, "answer": 4, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b7b4ac7-dba8-4f24-afc1-ec91c7ff0b48", + "pk": "31a83d06-c0f8-426c-b2d8-98982da35bd9", "fields": { "question": 476, - "contribution": 880, - "answer": 0, - "count": 21 + "contribution": 3474, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b7e9838-4f61-4cbb-bcc6-c0c5127df488", + "pk": "31b66d2b-dab1-4350-b25a-b3c1f3dd7685", "fields": { - "question": 408, - "contribution": 3984, - "answer": 5, + "question": 345, + "contribution": 3796, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4b9741bd-96f8-4a97-b877-51c14483c6c5", + "pk": "31b8f202-9f8b-4adf-8f7b-f5df4f4c14b2", "fields": { - "question": 329, - "contribution": 1776, - "answer": 2, - "count": 12 + "question": 319, + "contribution": 4022, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4bad7957-9d74-468d-b3b1-50ce06ca4f3a", + "pk": "31bc2422-3378-47e4-bd2d-ff9b43507f48", "fields": { - "question": 389, - "contribution": 3775, - "answer": 2, + "question": 370, + "contribution": 1844, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4bb4908f-9f6c-435b-bc62-83404e3dc04d", + "pk": "31bda806-0919-4034-b60c-0a7695d03b7a", "fields": { - "question": 257, - "contribution": 1626, + "question": 355, + "contribution": 4279, "answer": 4, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4bc3d894-47f1-4df1-9b14-e9733fab5c74", + "pk": "31cf27ef-a3cb-4270-9f97-4c74936e837e", "fields": { - "question": 336, - "contribution": 804, + "question": 354, + "contribution": 4228, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4bc3f48b-3c62-4892-8b8a-972859569c87", + "pk": "31d08570-adb7-45a7-b27c-b22b32844693", "fields": { - "question": 349, - "contribution": 3405, + "question": 466, + "contribution": 4115, "answer": 2, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4bdd1124-987f-45a7-a5b2-c4ea3c4f3bc2", + "pk": "31d69a5b-9a6b-41f2-bc5f-a3dfb31f4ae4", "fields": { - "question": 331, - "contribution": 3434, - "answer": -3, + "question": 356, + "contribution": 3712, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4bdf06fa-6031-4d20-b571-e3fa4cfa4232", + "pk": "31e2c9a9-b6b5-49fb-bd90-5e97dceabc76", "fields": { - "question": 349, - "contribution": 1735, - "answer": 1, - "count": 3 + "question": 335, + "contribution": 3553, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4be784d1-9cb5-4963-a234-511a70df4e5e", + "pk": "31e3f603-9986-40b5-9eb7-3df64414cb8d", "fields": { - "question": 349, - "contribution": 1205, - "answer": 3, - "count": 1 + "question": 317, + "contribution": 4084, + "answer": 4, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4bf326e0-f423-426f-b34b-094103f92cb6", + "pk": "31f9b3c6-6c3a-4aef-a85e-914e9036e512", "fields": { - "question": 347, - "contribution": 1204, + "question": 257, + "contribution": 912, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4bf95ece-2758-429c-9cd7-55da4e790eb7", + "pk": "31fae19d-64ee-4bff-b593-bdc9cc359c09", "fields": { - "question": 339, - "contribution": 894, - "answer": 0, - "count": 2 + "question": 326, + "contribution": 3423, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4bff7be7-02fc-44b0-bd2a-8e4db7709fb8", + "pk": "31fe3bad-fd68-4473-8b18-d3b350cb1000", "fields": { - "question": 475, - "contribution": 3454, - "answer": 2, + "question": 409, + "contribution": 4038, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c056a85-7855-442c-bd95-6eddda214faf", + "pk": "31fe68fe-e4f3-4c3d-b945-5a91ad3d0015", "fields": { - "question": 335, - "contribution": 3882, + "question": 337, + "contribution": 3508, "answer": 1, - "count": 5 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c05856b-3124-42f5-9f77-104e5f10d7d3", + "pk": "3207ee33-7ea4-40f3-a6e2-359cdde29a4e", "fields": { - "question": 352, - "contribution": 3466, + "question": 353, + "contribution": 3545, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c0668d7-12c5-4285-928a-3dd864422bfc", + "pk": "320811fd-9fde-4077-ad42-16584dc8bca6", "fields": { - "question": 472, - "contribution": 4052, - "answer": 5, - "count": 1 + "question": 319, + "contribution": 3679, + "answer": 1, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c11fa18-7946-4aa7-a196-7f790aed2a22", + "pk": "3208b2d3-35d4-4682-844f-1b168d279e86", "fields": { - "question": 328, - "contribution": 1725, - "answer": 3, - "count": 1 + "question": 347, + "contribution": 1228, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c1b942b-bf66-404d-b866-0ca2147f870f", + "pk": "321446f3-a820-4520-ab68-55e062e6f56d", "fields": { - "question": 357, - "contribution": 4278, - "answer": 1, + "question": 475, + "contribution": 4122, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c27b6dc-94ea-4a0a-bb12-07d352248848", + "pk": "321aa3dc-63e9-47a5-ac3e-283a370c1a7d", "fields": { - "question": 322, - "contribution": 3390, - "answer": 5, - "count": 3 + "question": 370, + "contribution": 1776, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c2ca3d0-4b07-4434-b3fc-6d6a2c5de7a8", + "pk": "322d8e7b-8d00-4de6-a9e7-1585b266df5c", "fields": { - "question": 383, - "contribution": 3781, + "question": 473, + "contribution": 4185, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c308b6d-c345-40b2-a410-3a959e570bf7", + "pk": "32367bf8-35eb-44e0-9f36-17176b96e640", "fields": { - "question": 329, - "contribution": 1298, + "question": 322, + "contribution": 3390, "answer": 1, - "count": 8 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "4c362dd6-c3b2-4ae1-b6bf-b4a68e562414", - "fields": { - "question": 476, - "contribution": 3422, - "answer": 3, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c44a85a-5a2a-4287-8216-7d51af84c7b2", + "pk": "32394d6f-8961-4969-af3b-86578487a5ff", "fields": { - "question": 414, - "contribution": 4024, - "answer": 1, + "question": 316, + "contribution": 3725, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c4df786-bfde-47f3-92c2-c4cbede2044a", + "pk": "3239e285-32cd-4782-be13-298c7b51a27c", "fields": { - "question": 356, - "contribution": 3852, - "answer": 1, + "question": 320, + "contribution": 3679, + "answer": 2, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c5a3d6b-a24f-4c7a-b848-ffad480cec19", + "pk": "32419f91-1693-4d10-888f-4705ad842fb2", "fields": { - "question": 328, - "contribution": 1287, - "answer": 3, + "question": 348, + "contribution": 1204, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c600b45-fcff-406a-ab5e-32ac6a547585", - "fields": { - "question": 325, - "contribution": 4047, - "answer": 3, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "4c6301d1-2a0e-40ea-8b76-5f7c0d00f223", + "pk": "324b9bf2-aa4e-41b8-be13-71cc3fc9c1b7", "fields": { - "question": 338, - "contribution": 3440, + "question": 472, + "contribution": 3482, "answer": 5, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c731a0d-aac6-45fc-bdd7-07b835358f71", + "pk": "326ce012-467f-42cd-a634-07424540fd82", "fields": { - "question": 475, - "contribution": 4094, - "answer": 1, + "question": 348, + "contribution": 3879, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c742ee5-c3fa-4207-bce8-166a133c87ef", + "pk": "327bf989-24f6-4dc8-86bc-918e570a83c0", "fields": { - "question": 477, - "contribution": 1186, - "answer": 1, + "question": 475, + "contribution": 89, + "answer": -3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c772f17-5593-4cda-b908-73e771b49ef5", + "pk": "327f98d9-6660-46b1-860a-970998128885", "fields": { - "question": 477, - "contribution": 1802, + "question": 347, + "contribution": 3536, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c7c5711-5ff9-4369-a051-5bfad9a5d43a", + "pk": "328b7683-29d1-4f59-af8d-1b84d9bb3757", "fields": { - "question": 339, - "contribution": 4122, - "answer": 0, - "count": 4 + "question": 337, + "contribution": 3366, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4c8e9c54-371e-42c1-8c77-766597fc1462", + "pk": "329e419e-28fa-47cf-820d-d6b8f45a4b04", "fields": { - "question": 449, - "contribution": 4185, + "question": 428, + "contribution": 4154, "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ca7fa69-d430-4652-819b-e0b14767079a", + "pk": "32a22a8f-dac6-4ee0-bdea-3b0f79965727", "fields": { - "question": 320, - "contribution": 4084, - "answer": 5, - "count": 2 + "question": 357, + "contribution": 4278, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4cac8199-d36f-403f-b638-3e2b47ddefb6", + "pk": "32a87ad3-cb77-4d87-9aa2-eefecd695a23", "fields": { - "question": 316, - "contribution": 4084, - "answer": 4, - "count": 6 + "question": 460, + "contribution": 4141, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4caf0d5e-b9ce-4779-97fe-39052e173394", + "pk": "32ae91d0-80f1-4b7d-bb41-924acfa06a62", "fields": { - "question": 372, - "contribution": 3735, - "answer": 4, - "count": 2 + "question": 348, + "contribution": 3900, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4cc09c0a-24c5-4780-9008-f1d03aefaa92", + "pk": "32b853bf-474b-4b2c-80b7-09548b44fcd7", "fields": { - "question": 354, - "contribution": 1786, + "question": 327, + "contribution": 1287, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ccee7c5-5bdc-4756-aa90-501ce4af11c2", + "pk": "32c0b70d-89d2-4a9b-836f-2a248c85d361", "fields": { - "question": 459, - "contribution": 4284, - "answer": 2, + "question": 356, + "contribution": 3545, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4cd8bd6a-abb1-4608-888d-23112cec163d", + "pk": "32c5c3a6-8cbf-494b-a57b-cea174e2eb32", "fields": { - "question": 361, - "contribution": 3929, - "answer": 3, - "count": 1 + "question": 332, + "contribution": 3595, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ceb7267-a362-4d32-bf91-89c9e80790a7", + "pk": "32c773b6-d0cf-4805-ad28-80898ef7ba94", "fields": { - "question": 372, - "contribution": 3394, - "answer": 3, - "count": 1 + "question": 370, + "contribution": 3847, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ceec684-5aba-4f06-a48f-f4a4a9464b05", + "pk": "32cfd016-0903-4ed7-b035-fda78f6e697b", "fields": { - "question": 368, - "contribution": 1798, - "answer": 1, - "count": 3 + "question": 259, + "contribution": 4084, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4cf28d6b-6863-4b21-a334-eb0a3981d042", + "pk": "32d46b97-0ff7-4904-8acd-04cd84848c89", "fields": { - "question": 323, - "contribution": 4028, - "answer": 3, - "count": 2 + "question": 473, + "contribution": 4185, + "answer": 0, + "count": 29 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d01781d-4c68-49fd-bcb7-727aadfae30e", + "pk": "32d60d63-efed-4cbb-935b-dc92d7cf18bb", "fields": { - "question": 340, - "contribution": 3450, - "answer": 1, - "count": 1 + "question": 320, + "contribution": 3474, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d0353f0-f457-47a4-abe5-a3d7f7ac35ac", + "pk": "32dd6729-9eec-4185-9089-efd509ec4d66", "fields": { - "question": 353, - "contribution": 1154, + "question": 347, + "contribution": 4129, "answer": 2, - "count": 7 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d0eef7c-8b72-4374-8e86-1dac8ee1e859", + "pk": "32dde564-9cd4-4967-b6da-786cd4267d00", "fields": { - "question": 260, - "contribution": 836, - "answer": 4, + "question": 368, + "contribution": 3666, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d121fa5-214d-485e-8ad2-b852255f4eaf", + "pk": "32f24229-70f9-4c6e-a84c-600994cc2e74", "fields": { - "question": 323, - "contribution": 1634, - "answer": 5, + "question": 348, + "contribution": 1250, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d1aa524-e8a3-46b9-902f-e33ea1b689cf", + "pk": "32f71389-cadb-4a0a-b7ea-74bf7e671269", "fields": { - "question": 476, - "contribution": 3434, - "answer": 1, - "count": 2 + "question": 357, + "contribution": 4268, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d1e049b-939a-4b2a-bb29-d4a01b922390", + "pk": "330f4d96-034a-4a0a-b193-2df6d915663b", "fields": { - "question": 366, - "contribution": 3886, - "answer": 2, - "count": 2 + "question": 326, + "contribution": 881, + "answer": 4, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d3028ac-62da-4e92-a5d6-d2cc89188ff5", + "pk": "3310ef9b-f530-46f7-8945-84b724cf3b34", "fields": { - "question": 396, - "contribution": 3711, + "question": 257, + "contribution": 908, "answer": 2, - "count": 2 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d3077d4-6906-4eb8-9d05-63dbf227ad09", + "pk": "3321fbd8-18c6-48bc-a9da-aff816dca705", "fields": { - "question": 356, - "contribution": 4025, - "answer": 2, + "question": 476, + "contribution": 836, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d38b3f7-f88f-4101-b3ab-ce9c97181067", + "pk": "33278be4-1603-4ae6-8131-c8279001c910", "fields": { - "question": 477, - "contribution": 1154, - "answer": 2, - "count": 3 + "question": 346, + "contribution": 3516, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d48e35b-22a0-4517-bc64-972c7749139e", + "pk": "332cbe2f-a5ba-4509-9bba-51407f352d74", "fields": { - "question": 472, - "contribution": 1658, - "answer": 5, + "question": 258, + "contribution": 4084, + "answer": 4, "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d5bc245-fe58-44f2-bdb5-f6de449b8300", + "pk": "3330f7cf-a4da-4127-b5be-ef9816a11be2", "fields": { - "question": 360, - "contribution": 3942, - "answer": 3, + "question": 344, + "contribution": 1228, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d5e0bcc-9abe-4679-a12f-2ee39d5f7130", + "pk": "333a8be1-53c7-4828-be2e-5577a9a61f04", "fields": { - "question": 341, - "contribution": 3645, - "answer": 2, - "count": 2 + "question": 349, + "contribution": 1867, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d71021f-7945-488f-9079-a68b4670472b", + "pk": "334b71a6-a69f-4779-b8a4-8e821cbcc0a3", "fields": { - "question": 370, - "contribution": 4268, - "answer": 1, + "question": 347, + "contribution": 3608, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4d7f830e-a5f9-43a3-b389-91ce145db460", + "pk": "334f36f6-afed-405c-b24f-66ab2583c8c7", "fields": { - "question": 368, - "contribution": 3391, - "answer": 3, - "count": 4 + "question": 257, + "contribution": 3434, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4daefe47-5e47-49f3-b1dc-0c32e149be93", + "pk": "3355ba49-65de-417f-b467-fd74c873ff40", "fields": { - "question": 336, - "contribution": 3486, - "answer": 1, - "count": 6 + "question": 360, + "contribution": 3917, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4db4ebac-9558-4e00-ae7d-de793f8d6a37", + "pk": "3369fb8b-c75a-4ea8-ac09-c21e77a9cb41", "fields": { - "question": 344, - "contribution": 1250, - "answer": 2, - "count": 2 + "question": 357, + "contribution": 1844, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4db664ad-a204-46db-a288-6d2360c57386", + "pk": "3378d3e4-51b8-44ed-ac3c-7e323fcc7ec9", "fields": { - "question": 473, - "contribution": 886, + "question": 370, + "contribution": 3852, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4dc00aaf-a237-4be0-9fe4-e0251f8250ad", + "pk": "337c15ba-a994-4907-963b-6113855c921a", "fields": { - "question": 336, - "contribution": 4052, - "answer": 5, + "question": 341, + "contribution": 3440, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4dc21572-f2dd-4703-9d7d-52c054984db8", + "pk": "3385b077-1226-48a6-a359-c84c45bf705f", "fields": { - "question": 363, - "contribution": 1836, + "question": 356, + "contribution": 3516, "answer": 2, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4dc45c26-1836-40c3-af9c-b3e72e2294e1", + "pk": "33871295-eff7-402e-9262-eefa0dfabe7b", "fields": { - "question": 329, - "contribution": 3519, + "question": 327, + "contribution": 3859, "answer": 1, - "count": 11 + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4dc492a6-19b3-4c87-b8bb-f8e311e007ca", + "pk": "3393e9a6-65dd-4cec-a2e0-c87076932ed7", "fields": { - "question": 336, - "contribution": 832, - "answer": 1, + "question": 369, + "contribution": 3649, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4dca8245-7430-44b1-a34a-b79dd4c4900e", + "pk": "3393f742-5139-410b-aa30-70a554f28c9e", "fields": { - "question": 477, - "contribution": 4023, - "answer": 0, - "count": 3 + "question": 346, + "contribution": 4223, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4dcf3b70-427a-4d42-a031-09a4a9486ee3", + "pk": "33977a23-e86e-4f76-b5f3-b2aa7e402352", "fields": { - "question": 356, - "contribution": 3516, + "question": 368, + "contribution": 1617, "answer": 1, - "count": 7 + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4dd64bdb-d015-4950-9026-3a6e5d419eea", + "pk": "33a023a5-bd44-451f-91e1-ea632b88838b", "fields": { - "question": 337, - "contribution": 3372, - "answer": 5, - "count": 1 + "question": 472, + "contribution": 4052, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4dd6d68b-caec-4bf8-9e71-460e7e17c5a7", + "pk": "33a5d470-d2ac-4d2f-8b6a-af3d2109880f", "fields": { - "question": 255, - "contribution": 3406, + "question": 328, + "contribution": 823, "answer": 2, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4dd85c88-0ee8-4091-b552-b1dbdab45dbc", + "pk": "33a641c6-0630-46bf-ba43-974bca676cfc", "fields": { - "question": 473, - "contribution": 3683, - "answer": -1, - "count": 1 + "question": 346, + "contribution": 4223, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4dda9eeb-4d96-4739-9d54-50434c84c190", + "pk": "33a65e14-9da7-43a0-bbe6-c2e5d3b7f45c", "fields": { - "question": 258, - "contribution": 4028, - "answer": 2, + "question": 476, + "contribution": 3721, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ddf7a6b-0f76-40b2-940c-33242d824770", + "pk": "33b61937-5fc7-4b98-a377-1ee9714c751c", "fields": { - "question": 341, - "contribution": 4002, - "answer": 4, + "question": 359, + "contribution": 1811, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4dfdfb5e-3335-49a6-b5b9-964f9269e2e6", + "pk": "33cb4171-5572-4cfb-932e-92fa8adef73b", "fields": { - "question": 343, - "contribution": 4223, - "answer": 1, - "count": 3 + "question": 320, + "contribution": 4118, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e1a413b-1e9d-45df-a747-22021a2e472c", + "pk": "33da4795-7c30-4036-ab50-9c284c725b16", "fields": { - "question": 367, - "contribution": 4116, - "answer": 5, - "count": 4 + "question": 349, + "contribution": 3528, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e2de597-720d-4010-856d-b6e37ba84b17", + "pk": "33e15181-8769-4d88-b9cb-fccc6061c4a0", "fields": { - "question": 346, - "contribution": 4161, + "question": 327, + "contribution": 1613, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e342b16-2899-4b84-9a1f-1e6febdab9a3", + "pk": "33f51f30-a675-4b37-8a01-7b200ba53dbc", "fields": { - "question": 327, - "contribution": 3519, - "answer": 3, - "count": 2 + "question": 357, + "contribution": 4267, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e39d10c-81e7-4a01-9858-15d435c9d41d", + "pk": "33f61715-dd50-4dc0-b8fa-3ab1e72b908f", "fields": { - "question": 325, - "contribution": 1287, + "question": 337, + "contribution": 3745, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e39e4e0-0386-4aa9-a9d6-ab1a33b8a0cf", + "pk": "33fb6687-e1ae-4bd3-b5f6-ff8b630b91dd", "fields": { - "question": 317, - "contribution": 1612, - "answer": 3, - "count": 2 + "question": 438, + "contribution": 4052, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e3c24ff-eb95-447c-b4f0-5e621226bbbf", + "pk": "3400075e-d6c5-4ace-96d1-adba266ba4ee", "fields": { - "question": 262, - "contribution": 3739, - "answer": 4, - "count": 2 + "question": 325, + "contribution": 3666, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e3d05b1-9685-4260-9506-efc3c0657812", + "pk": "3406363e-1238-49ff-8449-5c00964739b3", "fields": { - "question": 361, - "contribution": 1804, - "answer": 5, - "count": 1 + "question": 321, + "contribution": 4120, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e3ed411-8f37-463f-a9ee-9f2bee9042a8", + "pk": "3417093a-20b3-40ca-b06b-e4fe178f609a", "fields": { - "question": 347, - "contribution": 3528, - "answer": 1, - "count": 2 + "question": 343, + "contribution": 1881, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e4a22a3-6b43-4374-a754-2c627cdfa596", + "pk": "342067af-ce60-4713-8ced-ee23265507ac", "fields": { - "question": 333, - "contribution": 4155, + "question": 328, + "contribution": 909, "answer": 1, - "count": 8 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e4caba0-4d56-48c3-9527-050c28c80527", + "pk": "34227955-4972-4aac-bd75-bd1118c37253", "fields": { - "question": 328, - "contribution": 3519, + "question": 366, + "contribution": 4156, "answer": 2, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e4fe1cd-8134-47dd-8baf-3a193da9714b", + "pk": "34400304-ec56-462c-8feb-ebb6e3e21355", "fields": { - "question": 362, - "contribution": 3647, - "answer": 2, + "question": 345, + "contribution": 4129, + "answer": 5, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e53aff5-a394-45a6-ba87-f612e7130bca", + "pk": "346d4870-b3aa-48ce-a8c4-466f03120407", "fields": { - "question": 461, - "contribution": 3862, - "answer": 3, - "count": 2 + "question": 347, + "contribution": 1205, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e55cdab-a219-4e04-b778-d40d1439d21e", + "pk": "347e9f73-1fc2-4a2d-9111-fb53f038cbb2", "fields": { - "question": 340, - "contribution": 3372, - "answer": 2, + "question": 428, + "contribution": 4152, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e583733-ea19-491a-b6a7-2e696cf8c011", + "pk": "34842e23-a690-4151-8d1a-2832339f4a0e", "fields": { - "question": 341, - "contribution": 4122, - "answer": 2, - "count": 3 + "question": 321, + "contribution": 4022, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e5e784c-3c60-49a1-8785-4a6df38fc685", + "pk": "348e88e5-add5-4673-ab9d-277b804c0ef0", "fields": { - "question": 326, - "contribution": 1186, - "answer": 4, - "count": 3 + "question": 315, + "contribution": 4118, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e6f9b6e-eaa7-4757-9b16-67e25a65d251", + "pk": "348fe2d0-74d6-403c-8584-41e5f0fba8d3", "fields": { - "question": 337, - "contribution": 1710, + "question": 459, + "contribution": 4141, "answer": 1, - "count": 5 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e76ec71-09c4-487d-8b8f-cdf41b36ae9e", + "pk": "349035d2-d6ba-4fb1-a510-7b65702dad3d", "fields": { - "question": 319, - "contribution": 3354, + "question": 258, + "contribution": 4084, "answer": 3, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e7f92f6-db9a-4d2e-8125-fd644238fa29", + "pk": "34917673-d8ae-4eb9-b84d-0633a3ce5c17", "fields": { - "question": 326, - "contribution": 1802, - "answer": 3, - "count": 3 + "question": 343, + "contribution": 1156, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e81eb35-e33a-4bf4-84dc-fd31e009b454", + "pk": "349ab017-0814-4356-b92c-b3e013afb736", "fields": { - "question": 344, - "contribution": 4003, + "question": 477, + "contribution": 1635, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4e8aef49-fbd7-42fc-9a77-6e5a17d858c1", + "pk": "349c3498-197a-4d3c-8061-abf7db839b32", "fields": { - "question": 315, - "contribution": 3390, + "question": 323, + "contribution": 3422, "answer": 4, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4eb5f918-efff-4bd3-9830-9d0fb3556c69", + "pk": "34a956d3-de0c-442b-b669-c4da7f2de271", "fields": { - "question": 316, - "contribution": 3434, - "answer": 5, + "question": 339, + "contribution": 1640, + "answer": 0, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ebeb0e0-e08c-4f38-a0d9-ad73968d6652", + "pk": "34ad2152-1c90-47a9-9dfb-dca8fb1710ff", "fields": { - "question": 367, - "contribution": 3354, - "answer": 1, - "count": 14 + "question": 255, + "contribution": 1626, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ebf1802-9aca-4207-8e77-5b5fc88a53ae", + "pk": "34ad6c7b-a928-4b05-a321-4eb70f960fdf", "fields": { - "question": 356, - "contribution": 1784, - "answer": 2, - "count": 3 + "question": 329, + "contribution": 4085, + "answer": 1, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ec9b44e-6eaa-4ea8-b33d-50d85406f3b1", + "pk": "34ad975e-c393-4e1e-9920-9423e16fad3c", "fields": { - "question": 260, - "contribution": 1612, - "answer": 3, - "count": 4 + "question": 353, + "contribution": 1784, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ece909f-f2c7-4425-8927-08653f1810e7", + "pk": "34ae889d-3d17-4f45-a8dc-375ffcab496f", "fields": { - "question": 333, - "contribution": 3594, + "question": 391, + "contribution": 3711, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ed52166-6f96-42a7-a927-2e3e20a7c760", + "pk": "34aeb20e-c2ab-4e01-9338-521ae851daad", "fields": { - "question": 360, - "contribution": 1826, - "answer": 4, - "count": 1 + "question": 328, + "contribution": 1186, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4edd965e-43ec-4c33-8eb2-8f0e41a31e38", + "pk": "34b6c12a-991b-493e-a779-c6b423ec358c", "fields": { - "question": 473, - "contribution": 4185, - "answer": -3, - "count": 2 + "question": 400, + "contribution": 3646, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4eea0b10-dabe-4a5e-b7b0-84a3a76b837f", + "pk": "34bcc099-f060-4e1f-8ded-ce74937e22fa", "fields": { - "question": 349, - "contribution": 1880, + "question": 322, + "contribution": 1668, "answer": 3, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ef59afa-e45f-44af-9906-345bf626d1b4", + "pk": "34bdd42f-8b25-4029-8377-177059484731", "fields": { - "question": 345, - "contribution": 1863, + "question": 361, + "contribution": 1799, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ef8cdc3-9ee5-4e09-990a-ed1aa5588a96", + "pk": "34cea5a4-9141-4417-9515-93f3f43f5ac9", "fields": { - "question": 260, - "contribution": 1612, - "answer": 4, - "count": 4 + "question": 328, + "contribution": 1776, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4efcd123-e615-4cd4-9698-76bab5b9a659", + "pk": "34d50573-5abe-4ccc-b019-5f09357c530a", "fields": { - "question": 329, - "contribution": 3666, - "answer": 3, - "count": 4 + "question": 333, + "contribution": 3551, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4efdf0b7-3605-4ddc-aad3-1d1cded82870", + "pk": "34db8567-3c28-42d1-b97b-63dbfc7398bd", "fields": { - "question": 473, - "contribution": 836, + "question": 357, + "contribution": 1189, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f0c426a-c86e-481c-b31f-da42ba84d7e5", + "pk": "34e5a09a-562e-4de5-81cc-65a92bcea071", "fields": { - "question": 333, - "contribution": 3631, - "answer": 3, - "count": 4 + "question": 339, + "contribution": 3450, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f186d93-c0a5-45e9-90d6-92218dba9e5c", + "pk": "34f357ab-521d-44a6-95cc-d36f5040d0c2", "fields": { - "question": 319, - "contribution": 4120, - "answer": 4, - "count": 3 + "question": 370, + "contribution": 1786, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f1a9adb-3793-42e3-a13c-ee823e572373", + "pk": "34fb2d7b-0246-42e2-8028-0197057071fe", "fields": { - "question": 473, - "contribution": 3645, - "answer": 0, - "count": 5 + "question": 320, + "contribution": 3683, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f24cfaf-0f59-4c77-bdf3-56a7aac5a876", + "pk": "34fdf0f9-d849-4dba-848d-52d3ef99cc6e", "fields": { - "question": 326, - "contribution": 881, + "question": 255, + "contribution": 3422, + "answer": 3, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "3500dfcf-d326-4a94-a19b-a9b48796765c", + "fields": { + "question": 316, + "contribution": 884, "answer": 2, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f250c12-aa7b-448b-9e8c-8834d3c06714", + "pk": "35041707-00ed-4799-adf2-e4c4447a3ae6", "fields": { - "question": 477, - "contribution": 1780, - "answer": -1, - "count": 1 + "question": 325, + "contribution": 3423, + "answer": 1, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f31971d-b6d8-4528-9b16-80ad5f8cbd5f", + "pk": "3507840b-0d2a-4712-9cae-5adefcbccf77", "fields": { - "question": 257, - "contribution": 3462, + "question": 476, + "contribution": 3422, + "answer": 1, + "count": 7 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "35104d70-f258-47f4-ba24-aa2d86798638", + "fields": { + "question": 322, + "contribution": 3472, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f3d0c7b-fa9a-4315-84cf-28ed6492fbef", + "pk": "351b28ae-f784-4da8-ad81-4ed34a58adb5", "fields": { - "question": 359, - "contribution": 1812, - "answer": 5, + "question": 357, + "contribution": 1782, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f4420b6-4448-4c69-b769-fb5d663a7f55", + "pk": "351c2cf2-19af-4469-bdc0-6775404af9bd", "fields": { - "question": 477, - "contribution": 3859, - "answer": 2, - "count": 3 + "question": 328, + "contribution": 4153, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f5221b5-54fe-4d75-9dcc-4d51c09eec5a", + "pk": "3522185f-2fc8-45c7-8755-b940d8a323c3", "fields": { - "question": 349, - "contribution": 3367, - "answer": 1, - "count": 1 + "question": 321, + "contribution": 3390, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f5b862a-9e25-4aa6-82c3-0ec0201d1fe9", + "pk": "352399c2-1f9c-4111-b809-628bedba614c", "fields": { - "question": 328, - "contribution": 4117, - "answer": 5, - "count": 7 + "question": 347, + "contribution": 3855, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f6062a5-f234-44ce-a33b-5284c4667fd7", + "pk": "352b2823-90d6-4fcc-bd7d-deb35aa01a27", "fields": { - "question": 255, - "contribution": 1668, + "question": 352, + "contribution": 3406, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f6b11e8-f013-4a1d-ad4e-3d66a5cc1fa0", + "pk": "352db8c4-c7c6-4e6e-930f-6907e6f31b06", "fields": { - "question": 355, - "contribution": 1776, + "question": 321, + "contribution": 908, "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f726c5a-137e-4d39-9cb0-11c2ab24fa18", + "pk": "35389c79-73ec-4e15-8056-a2bb50861b68", "fields": { - "question": 315, - "contribution": 4128, + "question": 354, + "contribution": 1244, + "answer": 1, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "354851cb-ea8e-4a8b-83bc-b6724b109ba8", + "fields": { + "question": 339, + "contribution": 1638, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f817c6e-b273-4f73-8a7d-2f95820c0ef5", + "pk": "35502f77-1142-497b-b364-60c0ee06e5a7", "fields": { - "question": 371, - "contribution": 3553, - "answer": 1, + "question": 329, + "contribution": 3740, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f8aea4c-d396-4f24-bae1-032e3ed15de4", + "pk": "355563f1-5a19-429e-847f-3944c3b04acd", "fields": { - "question": 476, - "contribution": 3739, + "question": 321, + "contribution": 4046, "answer": 3, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f8c27d7-1ed5-49b1-aa4f-b8a91e0e42c4", + "pk": "355cd89c-71c1-42c2-be9c-5371c751ffb6", "fields": { - "question": 317, - "contribution": 3472, + "question": 326, + "contribution": 3680, "answer": 1, - "count": 3 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f8fd7bb-ae3a-49fd-98e9-60bb0e1af3ae", + "pk": "3560c480-3f5f-4872-9254-a0cd2b431f67", "fields": { - "question": 329, - "contribution": 3391, - "answer": 4, - "count": 5 + "question": 367, + "contribution": 3474, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f9829b0-532f-4581-9042-048db2f3843b", + "pk": "3576dd3b-572f-47cb-8fe1-65e601a14b03", "fields": { - "question": 337, - "contribution": 3482, - "answer": 4, + "question": 472, + "contribution": 3725, + "answer": 1, + "count": 17 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "357774c2-3aa4-415f-a14f-2f47b19fb510", + "fields": { + "question": 384, + "contribution": 3711, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f99b5e4-afab-4194-9062-3032e013f59e", + "pk": "357ba658-8c71-473b-a884-8bfb80e93d40", "fields": { - "question": 257, - "contribution": 4084, - "answer": 1, - "count": 12 + "question": 344, + "contribution": 3606, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f9d4f11-4bfd-49e2-954b-6b33789ab9d3", + "pk": "357f7586-7c45-4070-9c68-13e2bc1c19c3", "fields": { - "question": 315, - "contribution": 4100, + "question": 322, + "contribution": 864, "answer": 2, - "count": 10 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f9d834b-e76c-4dd6-ae17-ea758b342769", + "pk": "35840493-9a6e-4121-a6ff-9cbfe023a83d", "fields": { - "question": 323, + "question": 316, "contribution": 4046, - "answer": 4, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4f9ff274-6d95-4d92-9482-4ee7494d10d3", + "pk": "358fb995-33cb-49df-8b85-1e1898fb4eb8", "fields": { - "question": 345, - "contribution": 3405, - "answer": 2, - "count": 3 + "question": 325, + "contribution": 1154, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4fa1f9be-9b51-4b10-a039-50a54bfc1459", + "pk": "359477d2-2154-40b4-8b4c-d985c062f094", "fields": { - "question": 370, - "contribution": 3849, + "question": 354, + "contribution": 3610, "answer": 1, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4fa4d48d-ef64-486e-8d44-912647a0df82", + "pk": "359bfe46-841a-4e8b-accd-2feec1391d5c", "fields": { - "question": 356, - "contribution": 1189, + "question": 344, + "contribution": 1881, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4fa6e4ca-4cb6-4ed5-80c7-503752a43c2d", + "pk": "35ab9b82-5b9f-4c23-9313-91a85cf1c3b1", "fields": { - "question": 336, - "contribution": 4072, - "answer": 1, - "count": 3 + "question": 328, + "contribution": 3556, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4fb90e4e-f60d-4ed8-bf3a-7ac0ed2a5ae7", + "pk": "35b9005f-d155-42ef-ac4b-98d66f202389", "fields": { - "question": 344, - "contribution": 3610, - "answer": 1, - "count": 5 + "question": 320, + "contribution": 1612, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4fbb7a50-8351-49ea-b3e0-367e4cc1753f", + "pk": "35c5e385-75d5-4ed0-ab12-3559087ac131", "fields": { "question": 349, - "contribution": 3516, + "contribution": 4146, "answer": 1, - "count": 8 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4fc1a1f0-36ac-4650-a7c4-9b0fcb04e2ae", + "pk": "35caa3e0-0e64-4992-9c97-98fc7c0dbbb0", "fields": { - "question": 333, - "contribution": 3595, + "question": 332, + "contribution": 3553, "answer": 1, - "count": 1 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4fc1cd18-99fc-4af3-9949-d01b57b46e49", + "pk": "35da06fe-b238-462a-b541-89be11252b57", "fields": { - "question": 360, - "contribution": 1804, - "answer": 5, + "question": 346, + "contribution": 3451, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4fd7e29f-b379-42c7-a82f-4b7feadf6011", + "pk": "35db95b8-7b73-4bf6-a967-158a197933ab", "fields": { - "question": 355, - "contribution": 3528, - "answer": 1, - "count": 2 + "question": 354, + "contribution": 1154, + "answer": 2, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4fdd6488-4082-4e6b-88ec-5da9dfb73611", + "pk": "35f280d8-c08a-407c-bc56-0ed75d9b715e", "fields": { - "question": 319, - "contribution": 4116, + "question": 345, + "contribution": 4161, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4fe4a351-5a87-4dc5-addb-50d8bf6135dc", + "pk": "35f502ec-5238-4d41-8c50-9c45e295798a", "fields": { - "question": 346, - "contribution": 1881, - "answer": 2, - "count": 4 + "question": 347, + "contribution": 1843, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "4ff00522-ed55-4994-987f-13066678a642", + "pk": "35fbbddd-ddd4-460e-a6d9-565e4aad5976", "fields": { - "question": 322, - "contribution": 3434, - "answer": 5, - "count": 3 + "question": 323, + "contribution": 3725, + "answer": 1, + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5005e98d-01f9-4d6a-b0c2-25a2a1a45506", + "pk": "3609b9c2-fab1-4585-8362-724734109476", "fields": { - "question": 356, - "contribution": 4279, - "answer": 5, - "count": 1 + "question": 473, + "contribution": 3474, + "answer": -2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50110851-2893-4e2d-8d72-ccecb2a7c29e", + "pk": "360ada49-d06b-426a-ad71-fcf4a819fe08", "fields": { - "question": 472, - "contribution": 4120, - "answer": 5, - "count": 12 + "question": 315, + "contribution": 1612, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5013a06f-bbe3-4e57-a484-316964a21c4b", + "pk": "360ba33f-6600-4319-8c46-ee16ac73b5b3", "fields": { - "question": 317, - "contribution": 884, - "answer": 1, - "count": 15 + "question": 322, + "contribution": 1626, + "answer": 4, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "501cd804-536e-4186-bdfe-1dc8bb424ed2", + "pk": "360c896d-9d35-4587-a2cc-ac542efa98e5", "fields": { - "question": 322, - "contribution": 3394, - "answer": 2, + "question": 341, + "contribution": 1656, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "501d49be-7c2c-4250-8796-8a5cdde11225", + "pk": "361a9da2-e389-4f6b-a31d-c42eb56183d9", "fields": { - "question": 257, - "contribution": 3462, - "answer": 2, + "question": 357, + "contribution": 4244, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5022664f-6697-47db-be35-442fb7063850", + "pk": "361e149f-b9b7-4ea4-9744-99715ab8b745", "fields": { - "question": 344, - "contribution": 1809, - "answer": 4, + "question": 341, + "contribution": 3735, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5029e424-bd8c-4ebe-9fd9-3476548535d3", + "pk": "362a8c71-0e46-43e7-bdf1-797deb9488ef", "fields": { - "question": 340, - "contribution": 868, - "answer": 2, + "question": 379, + "contribution": 3711, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "502a64d5-9f7c-4f73-990f-c7a8ab29d3e2", + "pk": "362d4891-9840-4c4d-986f-e4835446e0a6", "fields": { - "question": 354, - "contribution": 3528, - "answer": 2, + "question": 333, + "contribution": 3922, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5037653a-3fed-4cd1-9113-eff19be6b20c", + "pk": "362d550f-4ea5-49bd-83eb-8ebdf14064c5", "fields": { - "question": 329, - "contribution": 3666, - "answer": 2, + "question": 477, + "contribution": 3530, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "503da5d2-ede3-44fe-8268-f2edeb7e09ed", + "pk": "362e9d98-c754-42e5-8f5a-7a905d14ebe4", "fields": { - "question": 346, - "contribution": 3606, - "answer": 5, - "count": 5 + "question": 320, + "contribution": 1612, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50450f94-e1fe-4e59-92e1-310aadd4c3dc", + "pk": "3631fab1-e09f-4b94-b96c-cec538af6951", "fields": { - "question": 347, - "contribution": 3896, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 1287, + "answer": 0, + "count": 30 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50615c98-ee79-434f-8a00-e888aa576d7c", + "pk": "363d8cef-8171-45c0-abb7-aa86eb3bed38", "fields": { - "question": 361, - "contribution": 1807, + "question": 433, + "contribution": 3976, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5075b702-42a0-45d0-9456-c8d3ea7a2179", + "pk": "3644b44e-75a7-49ba-914f-01ea98af66c7", "fields": { - "question": 257, - "contribution": 4052, - "answer": 3, - "count": 1 + "question": 331, + "contribution": 1626, + "answer": -3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50775d0d-6e3d-4208-9ba5-3f2710cb7b5c", + "pk": "36561241-32c6-4b35-8f97-a28905f2d99e", "fields": { - "question": 369, - "contribution": 3916, - "answer": 1, - "count": 4 + "question": 475, + "contribution": 1660, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5087b44a-6c71-4e9a-9937-420db4426d15", + "pk": "366b8ba6-dfc1-41ef-b84a-60b5b6e75381", "fields": { - "question": 328, - "contribution": 1617, - "answer": 1, - "count": 13 + "question": 326, + "contribution": 1613, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50987e5a-e19c-4370-9a25-00c25ac3f8af", + "pk": "366e2ab4-34e6-4e8d-b8c0-417a14536695", "fields": { - "question": 355, - "contribution": 1243, - "answer": 1, - "count": 5 + "question": 376, + "contribution": 3781, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5099cf6e-2b76-4f78-9c47-dbd957b24887", + "pk": "3675e7c4-e6a3-44c4-941d-ee46ffc28e21", "fields": { - "question": 354, - "contribution": 1785, - "answer": 1, - "count": 8 + "question": 335, + "contribution": 3593, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50a4106e-f6aa-4ff7-a8db-ee3a16791778", + "pk": "3675f2fd-bf29-4dbc-af40-4ace40f4f563", "fields": { - "question": 323, - "contribution": 880, - "answer": 4, + "question": 476, + "contribution": 1634, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50b07b89-2ffd-47de-97c5-df025622985e", + "pk": "367b97d5-00c4-4804-8320-60c61964e863", "fields": { - "question": 336, - "contribution": 3735, - "answer": 1, - "count": 3 + "question": 315, + "contribution": 1626, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50b179b1-8c34-4523-8d92-b6ea7a01f33a", + "pk": "368097f3-fd3d-49d1-81c1-60011e069a49", "fields": { - "question": 262, - "contribution": 1724, - "answer": 2, - "count": 3 + "question": 428, + "contribution": 4155, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50b4a518-828b-4df6-a9f2-74fa72580145", + "pk": "368a2580-d164-4a95-b52c-7a026cf65de5", "fields": { - "question": 255, - "contribution": 1612, - "answer": 2, - "count": 10 + "question": 323, + "contribution": 4128, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50c668f2-f076-44bf-af96-849fcc1cb026", + "pk": "36976280-f425-41c3-be4e-4ca01c8b4372", "fields": { - "question": 322, - "contribution": 3725, - "answer": 2, - "count": 9 + "question": 333, + "contribution": 1284, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50ccaa74-5737-4ae9-8fed-4d5db5fa54fa", + "pk": "369e9cb8-8916-4f9f-ba50-95ab21ef1596", "fields": { - "question": 398, - "contribution": 3781, - "answer": 3, - "count": 2 + "question": 340, + "contribution": 804, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50e7c04a-927e-4d0e-beec-edf980dd006e", + "pk": "36a7bd80-33d5-43ae-a0c9-f58f57e77798", "fields": { - "question": 355, - "contribution": 3847, + "question": 349, + "contribution": 4189, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50e94a17-9607-4b22-a6ad-b7d2077b0e02", + "pk": "36af95f2-c450-4aea-a5cb-6c794354d6cd", "fields": { - "question": 315, - "contribution": 1634, - "answer": 1, - "count": 20 + "question": 258, + "contribution": 4128, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50e96581-dce9-447e-8cf4-76f23bcb8d6c", + "pk": "36c051b1-6970-4f98-8a1a-c61303e381af", "fields": { - "question": 472, - "contribution": 3440, - "answer": 1, + "question": 475, + "contribution": 4020, + "answer": 0, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50f2c8c3-c37c-49fb-ab04-e117a9a158bd", + "pk": "36c8df6a-c838-4587-aeb0-cd9c41cdeabf", "fields": { - "question": 461, - "contribution": 3453, - "answer": 1, + "question": 363, + "contribution": 1804, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "50f50a32-5ab8-4cb3-bb2b-4cd6cc237c48", + "pk": "36d4c231-fc96-4fac-ae91-9befded49e8d", "fields": { - "question": 346, - "contribution": 3487, + "question": 316, + "contribution": 4138, "answer": 1, - "count": 1 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51062745-852a-4442-91bb-aaa97867b9fb", + "pk": "36dffd30-cc54-4a1b-bdb5-21ec8f1ba5a1", "fields": { - "question": 329, - "contribution": 3519, - "answer": 3, - "count": 2 + "question": 477, + "contribution": 1669, + "answer": 0, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "510c8d2f-7705-4968-9f58-0c451073f047", + "pk": "36e05750-f78a-4fee-9460-c1f3d030f3d9", "fields": { - "question": 401, - "contribution": 3646, + "question": 349, + "contribution": 1156, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5112e505-e7e1-4641-a062-ff5872b54e7a", + "pk": "36e304f4-6873-460e-a1f5-29d4724be7a3", "fields": { - "question": 367, - "contribution": 3683, - "answer": 1, - "count": 2 + "question": 1, + "contribution": 4300, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "511c0496-345d-44cc-a00e-027a876bffb0", + "pk": "36e58e38-9503-4564-937b-d993a68d01a4", "fields": { - "question": 328, - "contribution": 1635, + "question": 258, + "contribution": 3472, "answer": 3, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5124bd6d-6074-45bf-bf77-c30b8f3ecd0a", + "pk": "36e9300f-6d01-4033-88b3-7744ad6087f2", "fields": { - "question": 351, - "contribution": 804, + "question": 476, + "contribution": 1634, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5125b3b4-6b85-4ab8-a281-f09b4ee26d96", + "pk": "36ecb17c-1773-4626-b97f-2a3df6829acb", "fields": { - "question": 355, - "contribution": 1782, - "answer": 1, - "count": 6 + "question": 349, + "contribution": 919, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "512a4406-c6ab-46d9-b8f9-7068bfa8a329", + "pk": "36f1738c-baab-4ed3-b628-bc1cebdfb065", "fields": { - "question": 337, - "contribution": 4122, - "answer": 1, - "count": 2 + "question": 473, + "contribution": 894, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "512b83bd-16c7-4e7b-ac61-bca9b9007f39", + "pk": "36fa9780-f13b-494d-ab9d-0c8f23f0b07f", "fields": { - "question": 367, + "question": 258, "contribution": 3390, - "answer": 5, - "count": 5 + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "512fada3-2793-4b28-94ee-1d993a4ef9f2", + "pk": "36fbe242-adce-440a-a7fb-7b23be569b58", "fields": { - "question": 335, - "contribution": 1284, - "answer": 1, + "question": 360, + "contribution": 1807, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5135af50-fb45-4645-a81c-176d9e09defd", + "pk": "3701e8cb-0279-4770-80ae-c3acb9873fde", "fields": { - "question": 323, - "contribution": 3679, - "answer": 2, - "count": 8 + "question": 357, + "contribution": 1256, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "513dc28f-cf28-4d13-a0b2-c2a8459e937f", + "pk": "3702b4c1-6703-4ce1-b2f2-883344c74a97", "fields": { - "question": 349, - "contribution": 1749, - "answer": 1, - "count": 1 + "question": 328, + "contribution": 3423, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5140fa27-251a-4408-9b0b-8a935fccbcee", + "pk": "370efac7-2aeb-409e-a71e-9164a638c903", "fields": { - "question": 473, - "contribution": 1734, - "answer": 0, - "count": 3 + "question": 326, + "contribution": 3726, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "514b52be-745d-4299-a07a-6e40311c0f90", + "pk": "371587b4-bb69-4d04-89ec-672e977e31cb", "fields": { - "question": 359, - "contribution": 1810, - "answer": 5, - "count": 1 + "question": 353, + "contribution": 4227, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "514e10c1-2bdd-4d76-abf8-50c805048eb5", + "pk": "371c4507-8636-4641-9623-681e30746622", "fields": { - "question": 475, - "contribution": 3645, + "question": 345, + "contribution": 1206, "answer": 1, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5153ecf7-5a13-442c-9c10-e43e19795cc9", + "pk": "371e39ce-3625-4f86-a850-ea19a54572b5", "fields": { - "question": 345, - "contribution": 3536, - "answer": 1, + "question": 368, + "contribution": 3556, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5162747f-aa05-4242-9b39-b484c4d00002", + "pk": "37324690-af87-4ee7-ba9b-1af02f5a62fb", "fields": { - "question": 326, - "contribution": 3740, - "answer": 1, + "question": 464, + "contribution": 4283, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51665116-cde6-4b07-ac53-af4e1a370b68", + "pk": "37351215-0a5c-4207-b033-3057ed0fc2f4", "fields": { - "question": 326, - "contribution": 1186, - "answer": 3, - "count": 3 + "question": 344, + "contribution": 1824, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5168583d-f9ae-4ffe-b250-6edc1bff29f1", + "pk": "3736555f-812d-4d46-94ac-d83b6a0e7b9e", "fields": { - "question": 258, - "contribution": 4128, - "answer": 3, - "count": 2 + "question": 475, + "contribution": 918, + "answer": -1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "516a7bb5-1c78-448b-badf-509255fa6661", + "pk": "37380e5f-af23-4d72-9541-42b66cc0e6c2", "fields": { - "question": 325, - "contribution": 3726, - "answer": 2, - "count": 8 + "question": 473, + "contribution": 1200, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "516f4874-a3c8-4b98-b825-7c9f097c8a8a", + "pk": "37396c04-71e6-49ea-a483-cb25a1c15e1a", "fields": { - "question": 346, - "contribution": 1663, - "answer": 2, + "question": 353, + "contribution": 1845, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51807f2a-54af-4d61-815a-2b2f805c7f50", + "pk": "374a91b1-d134-4c01-83d9-a9bfbaca6232", "fields": { - "question": 340, - "contribution": 1748, - "answer": 3, - "count": 1 + "question": 325, + "contribution": 4101, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51820521-9855-4b78-9f95-e553662ba38a", + "pk": "374d5a1d-f4f8-4da0-b3fd-06853ff0e273", "fields": { - "question": 370, - "contribution": 3831, - "answer": 2, + "question": 356, + "contribution": 3923, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51874253-2294-4a34-b79a-d1999210b349", + "pk": "375c079e-dae9-4512-885d-7ab62c2b270e", "fields": { - "question": 323, - "contribution": 908, - "answer": 5, - "count": 3 + "question": 346, + "contribution": 3373, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "518a3b30-1976-4068-aaee-e6676dd8d62a", + "pk": "375f5dcf-0186-4848-a44c-7200e0ddf446", "fields": { - "question": 361, - "contribution": 3637, - "answer": 2, - "count": 1 + "question": 326, + "contribution": 1802, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "518b8d28-abb1-4732-b630-47caacba7aaa", + "pk": "376d5330-9881-4f1f-93ae-2f6809aa3770", "fields": { - "question": 260, - "contribution": 3721, - "answer": 5, - "count": 2 + "question": 320, + "contribution": 4028, + "answer": 1, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "519fea00-27aa-41b7-9899-e83369d163eb", + "pk": "376f2dc4-9659-483c-ac69-55818fc4a248", "fields": { - "question": 325, - "contribution": 3530, - "answer": 1, - "count": 3 + "question": 331, + "contribution": 3354, + "answer": 0, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51a0fc58-e5f7-4701-b641-8362614e4d7b", + "pk": "3770feca-97cd-47fe-8b71-a2abe99754c1", "fields": { - "question": 317, - "contribution": 4118, - "answer": 2, - "count": 2 + "question": 340, + "contribution": 3723, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51a2fb72-a1b3-49ac-94eb-720ce3b46ba8", + "pk": "3783775e-1e54-44be-849a-afdf92159236", "fields": { - "question": 473, - "contribution": 4185, + "question": 258, + "contribution": 3406, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51a9836d-ff36-411b-bde9-f597a469665a", + "pk": "3788f48f-2b0b-4c55-b9a7-08b3744a430f", "fields": { - "question": 395, - "contribution": 3781, - "answer": 2, + "question": 351, + "contribution": 3394, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51b65112-5a04-403d-b4c0-40bbc063c85b", + "pk": "37924661-5f1f-4212-a427-876298d95f0e", "fields": { - "question": 473, - "contribution": 1634, - "answer": 2, - "count": 1 + "question": 344, + "contribution": 3607, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51ba101a-252a-491d-822e-b0160dd3da10", + "pk": "379955cb-556e-4789-9a5f-495e1c154fa1", "fields": { - "question": 320, - "contribution": 1658, + "question": 367, + "contribution": 4120, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51bdc42f-e373-4e1c-9fc5-ab0b9f917ccc", + "pk": "37a52620-ce78-4b7c-9159-9f16c58c0c88", "fields": { - "question": 354, - "contribution": 1187, + "question": 353, + "contribution": 4039, "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51bf5bb5-e974-49b5-83da-1e28c3f74588", + "pk": "37afa263-d914-414c-83ef-ea330ae941d1", "fields": { - "question": 346, - "contribution": 4129, - "answer": 5, + "question": 357, + "contribution": 3545, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51caa698-b64a-4f07-a274-5211d903f978", + "pk": "37c13be5-3462-4f4e-9365-54c5642346fc", "fields": { - "question": 317, - "contribution": 1680, - "answer": 2, - "count": 1 + "question": 413, + "contribution": 3974, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51ccf765-a5ea-4bcd-87c1-e7f7231ab3ed", + "pk": "37c1504e-a803-41ae-a75e-a41292899958", "fields": { - "question": 473, - "contribution": 3390, - "answer": 3, + "question": 369, + "contribution": 3921, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51cf39a4-a45d-4921-ad65-7fd01928823f", - "fields": { - "question": 319, - "contribution": 3422, - "answer": 5, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "51d04385-0339-4f65-911f-3bc6c9cbbc41", + "pk": "37c1908f-cea8-4007-b70d-7b5fe9f40d72", "fields": { - "question": 338, - "contribution": 1662, + "question": 317, + "contribution": 1668, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51f2bd53-5af4-4bf5-90f2-0faa94f5ac59", + "pk": "37c1f9ce-68c1-44ca-bba0-3171766f86af", "fields": { - "question": 464, - "contribution": 3862, + "question": 332, + "contribution": 3594, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51fbf844-c36d-4fe7-b6e3-afeca9589cfa", + "pk": "37c6db60-f0cf-4eb9-af98-20b404c7606c", "fields": { - "question": 336, - "contribution": 1710, + "question": 331, + "contribution": 4084, "answer": 1, - "count": 5 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "51fe3a77-6bba-4e27-92fc-50f2dfc2c9a5", + "pk": "37cfcd31-afed-4fb9-8cf6-e3ae4fc26338", "fields": { - "question": 368, - "contribution": 3473, - "answer": 2, - "count": 3 + "question": 343, + "contribution": 3509, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5200232e-9786-4828-a367-fdc9ae539aa5", + "pk": "37d37955-0126-4982-86b2-40583ee2436d", "fields": { - "question": 316, - "contribution": 3679, - "answer": 4, + "question": 356, + "contribution": 1844, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5200a060-8161-4a2a-9abd-f70aa370044f", + "pk": "37d84706-bbe8-47dd-9656-de1d06a75cfd", "fields": { - "question": 340, - "contribution": 1640, + "question": 357, + "contribution": 1849, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5205e99c-d99f-4636-b11d-ea904db52cc3", + "pk": "37f20207-dcc8-4b7f-9b52-fd7da5a796e2", "fields": { "question": 259, - "contribution": 1626, + "contribution": 3721, "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "520d069b-bb4e-4e53-97af-97ee7409ae83", + "pk": "37fa8cf4-4015-4803-9007-c04ac9d99a53", "fields": { - "question": 368, - "contribution": 1635, - "answer": 3, - "count": 2 + "question": 257, + "contribution": 3474, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5214d542-e519-4514-9d7d-0cdb472c3b38", + "pk": "37fbca37-b1f2-4984-8b07-d51e8f60194d", "fields": { - "question": 255, - "contribution": 3721, + "question": 335, + "contribution": 3566, "answer": 2, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5224a581-7aaf-4b2f-83cc-23d1e5086147", + "pk": "38030430-43a0-478c-abe0-9a7789b9226a", "fields": { - "question": 319, - "contribution": 4028, - "answer": 3, + "question": 460, + "contribution": 4073, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5226ebe5-1bec-44b5-982e-732fbfc059d0", + "pk": "380cd4a6-9716-4517-8733-65e786ad211e", "fields": { - "question": 260, - "contribution": 1626, - "answer": 4, - "count": 3 + "question": 341, + "contribution": 3723, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5227dcad-04c4-4e57-8426-55e86002efb1", + "pk": "381f4776-7cd4-496f-9559-b3554c45fd62", "fields": { - "question": 346, - "contribution": 3728, + "question": 344, + "contribution": 1735, "answer": 1, - "count": 7 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52294e99-f96b-427f-81c3-458b8e37a0d2", + "pk": "382ae47a-b84e-4ca4-9610-03799f7b917b", "fields": { - "question": 329, - "contribution": 1617, + "question": 345, + "contribution": 1247, "answer": 2, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "523ab36c-646c-4024-96c8-465340a429d8", + "pk": "383895c4-11fb-4d76-94cd-78c1cec6f073", "fields": { - "question": 343, - "contribution": 1869, - "answer": 1, - "count": 1 + "question": 349, + "contribution": 3939, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "524d8dec-1f18-4d40-92bb-2c058db9f9dc", + "pk": "384563ab-b51f-4f22-a2e2-7c35e7837b11", "fields": { - "question": 473, - "contribution": 3739, - "answer": 1, - "count": 3 + "question": 345, + "contribution": 887, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52588062-72c2-4624-8e77-f42372cfab4c", + "pk": "384daac1-01e1-4bc0-9a2b-bc7210ec905f", "fields": { - "question": 346, - "contribution": 1881, - "answer": 3, - "count": 1 + "question": 315, + "contribution": 3434, + "answer": 2, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "525c0f48-103f-4c2a-aea2-b6e4b1cc038c", + "pk": "38515f66-06ad-480c-86eb-370112c06530", "fields": { - "question": 345, - "contribution": 3526, - "answer": 1, - "count": 1 + "question": 371, + "contribution": 4152, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "525eedc3-e2c6-430e-80bc-6f2d7af6c5d2", + "pk": "3854dade-7417-47b4-a704-097e5ed8fed3", "fields": { - "question": 460, - "contribution": 4073, - "answer": 4, - "count": 1 + "question": 476, + "contribution": 4120, + "answer": -1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5261e9e5-4371-4051-bceb-72ffdffb9e69", + "pk": "385f01f2-ea8c-4244-96ee-8455c5c168a3", "fields": { - "question": 339, - "contribution": 89, - "answer": 3, - "count": 2 + "question": 349, + "contribution": 1202, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "528fe60a-3ac2-4db6-947c-965fc90519c8", + "pk": "386cb35e-bfa9-4cc8-a9fc-ac3edeff05cf", "fields": { - "question": 338, - "contribution": 1644, + "question": 436, + "contribution": 4052, "answer": 1, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5292a751-1e35-4abf-8e9d-c21564dffaf4", + "pk": "386e7a23-5160-45c9-96ec-3e20503a5705", "fields": { - "question": 259, - "contribution": 3474, - "answer": 5, - "count": 1 + "question": 348, + "contribution": 1206, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "529c6551-4aab-4c8f-bd3a-48236ce067b6", + "pk": "386eaef7-f3b5-4ac6-b07a-d756d950cf19", "fields": { - "question": 349, - "contribution": 1203, - "answer": 2, - "count": 1 + "question": 343, + "contribution": 1863, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52a2ce8f-f1d7-4c59-9a3d-eda3aa74d5e1", + "pk": "3887d5f6-dedc-4c51-871c-537248c5176c", "fields": { - "question": 350, - "contribution": 864, - "answer": 1, - "count": 5 + "question": 477, + "contribution": 1617, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52ad3589-474a-43b0-ba38-9a868627383c", + "pk": "388d9083-1833-4c0c-9513-4b3f96d5a569", "fields": { - "question": 332, - "contribution": 1283, - "answer": 2, - "count": 1 + "question": 337, + "contribution": 3745, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52b01522-32fa-41cb-af21-79ecd17eae2e", + "pk": "3898a0f9-16cb-4846-abb9-84dbe29ffc8a", "fields": { - "question": 354, - "contribution": 3608, + "question": 344, + "contribution": 4187, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52be4cab-ebb0-4d0b-b744-517f1a7e43c9", + "pk": "38a3c785-901f-4f13-abfd-43557da3ed90", "fields": { - "question": 345, - "contribution": 1204, + "question": 323, + "contribution": 3422, "answer": 1, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52c28c2d-d3ff-470b-a067-de9e0ecf33bf", + "pk": "38a4a573-d65d-4f60-b06d-c86ec7037e6c", "fields": { - "question": 472, - "contribution": 4116, + "question": 366, + "contribution": 3566, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52ce8bb5-c447-4b8c-adf6-665fdf872bd1", + "pk": "38add1c7-7571-4004-b6ee-6d9dcecd3543", "fields": { - "question": 409, - "contribution": 3984, + "question": 262, + "contribution": 4046, + "answer": 1, + "count": 10 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "38af9ba4-b99a-4521-ab5a-84e0a2f6d7f2", + "fields": { + "question": 326, + "contribution": 3726, + "answer": 2, + "count": 10 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "38b1c2d3-04e5-44c3-81fd-6aab601d79b7", + "fields": { + "question": 476, + "contribution": 3739, + "answer": 0, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "38be2407-f655-4a98-8349-c7b8d08bb6c6", + "fields": { + "question": 362, + "contribution": 3929, "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52dcc061-48b0-47b3-9de5-94e662f73071", + "pk": "38c2a8bb-bdce-4f8b-9eed-2c2021485e10", "fields": { - "question": 354, - "contribution": 4223, + "question": 355, + "contribution": 1786, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52e06557-6337-4314-8da3-2e1722791d9e", + "pk": "38c41623-388d-40ea-98f5-fb723a496925", "fields": { - "question": 327, - "contribution": 1725, + "question": 335, + "contribution": 4204, "answer": 1, - "count": 5 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52e3d4f2-e8b4-4402-88de-d5943a909775", + "pk": "38c626b2-fec4-4da4-bd2a-facb3dcf51c0", "fields": { - "question": 348, - "contribution": 1202, + "question": 416, + "contribution": 3974, "answer": 1, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52e47176-e056-4285-ba1b-bbeac14cbd51", + "pk": "38c9f0fe-43d0-4fe5-a00f-09c256c06ad1", "fields": { - "question": 323, - "contribution": 3721, - "answer": 4, - "count": 4 + "question": 349, + "contribution": 3525, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52e627a7-1be8-431c-9d9d-6386f8383252", + "pk": "38d18adf-9c40-4d27-9ae6-518c5cf55644", "fields": { - "question": 344, - "contribution": 3528, + "question": 372, + "contribution": 3406, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52f0f252-101e-4993-91e4-7093a04a891d", + "pk": "38d4ab87-4c15-4d03-8f4e-09b62c6ce4c1", "fields": { - "question": 331, - "contribution": 1634, - "answer": -1, + "question": 457, + "contribution": 3862, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52fd183e-609a-4c13-be79-1c63cae34d66", + "pk": "38d61ad3-c2ce-49bd-a151-6aab1ef62ca4", "fields": { - "question": 477, - "contribution": 3740, - "answer": -1, - "count": 4 + "question": 322, + "contribution": 3354, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "52ffe635-210b-485e-b9e5-a84157c1a21d", + "pk": "38ee6587-c80e-42f0-86bd-467db9f2177d", "fields": { - "question": 349, - "contribution": 4003, + "question": 472, + "contribution": 3416, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "53081296-69e7-4644-9242-1771254b4526", + "pk": "38f3589d-da12-4a09-afd1-bb6ba945b479", "fields": { - "question": 259, - "contribution": 3462, + "question": 328, + "contribution": 4152, "answer": 1, - "count": 4 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5309e5f2-5676-4b63-a570-3ee814967692", + "pk": "38fa73ae-915f-43e9-9693-dab5f7bd6a4f", "fields": { - "question": 346, - "contribution": 3516, + "question": 390, + "contribution": 3775, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "530c4e69-2476-4631-9258-0cbe9bbf15f4", + "pk": "38fb505b-b226-4bcd-bc47-f232103d1750", "fields": { - "question": 340, - "contribution": 868, - "answer": 3, + "question": 476, + "contribution": 1658, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5311bf31-4661-4f7e-a336-21acf753befd", + "pk": "38fbd390-8d22-4725-a967-00e2917eb119", "fields": { - "question": 339, - "contribution": 4002, - "answer": -1, - "count": 1 + "question": 255, + "contribution": 912, + "answer": 1, + "count": 23 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5316e015-bea2-488d-9ca4-6a756fb8baad", + "pk": "38fcc58e-e315-43fa-9617-26ca424329ac", "fields": { - "question": 404, - "contribution": 4038, + "question": 257, + "contribution": 4046, "answer": 1, - "count": 3 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "53195c37-f551-4884-bced-fd1b637db35b", + "pk": "38fe5110-e40f-4de8-bf82-d82c81a451ca", "fields": { - "question": 336, - "contribution": 1638, - "answer": 4, + "question": 328, + "contribution": 3407, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "531c1f5d-ba5d-44f1-87a7-9a650c6b8a7c", + "pk": "390ed111-8658-45ed-b8a5-733d29ce93c8", "fields": { - "question": 344, - "contribution": 1843, - "answer": 3, + "question": 357, + "contribution": 4227, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5322da56-2e28-42a6-897b-c842de427a74", + "pk": "3918d67e-2b85-47f8-82fe-87659626a39d", "fields": { - "question": 322, - "contribution": 1626, - "answer": 1, - "count": 4 + "question": 326, + "contribution": 913, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5328acb9-db32-4a05-b1ed-c998bb0625bd", + "pk": "3925aa65-889c-46a9-bb74-42ca99c49ec6", "fields": { - "question": 339, - "contribution": 1656, + "question": 346, + "contribution": 869, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "532c79c7-309f-4d55-85ee-7b99424deddc", + "pk": "3941a73d-9678-4ba7-a665-b9cf730f320b", "fields": { - "question": 319, - "contribution": 1658, + "question": 367, + "contribution": 3721, "answer": 1, - "count": 12 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "532eb48d-e287-48f3-8daa-951c779f9f10", + "pk": "3945931a-1c30-4677-bad7-6428273f9dcb", "fields": { - "question": 357, - "contribution": 4223, - "answer": 3, + "question": 351, + "contribution": 4022, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "533412be-1fce-4bec-942e-465951190e28", + "pk": "39491ec0-3a53-48ea-af56-863c55bdf738", "fields": { - "question": 322, - "contribution": 1658, - "answer": 2, - "count": 4 + "question": 343, + "contribution": 4161, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "53558151-8a22-48a4-a409-4f08f09d5ca9", + "pk": "394cacfe-fc06-457c-8dde-89fbceb65dc2", "fields": { - "question": 353, - "contribution": 1189, - "answer": 1, - "count": 7 + "question": 316, + "contribution": 4128, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "53719304-e539-48e7-ad84-b51fa351e9ab", + "pk": "395ad2c7-b1ac-47de-af35-6345b4b0fc46", "fields": { - "question": 326, - "contribution": 4152, - "answer": 5, - "count": 2 + "question": 340, + "contribution": 862, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "537233d9-828d-4bca-8d18-539c87cb2864", + "pk": "396dee35-b74b-4bfc-967f-2c8760641332", "fields": { - "question": 346, - "contribution": 3609, - "answer": 1, - "count": 5 + "question": 320, + "contribution": 3390, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "537987b9-5a1e-4eeb-8ec8-072614f4283d", + "pk": "396f73f6-5495-4e99-af70-95d9f9855296", "fields": { - "question": 262, - "contribution": 3462, + "question": 476, + "contribution": 1837, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "537dcb0b-2849-4727-a5fe-9ceef1cbf711", + "pk": "397a8b0a-f5fd-4b52-b899-72eacedee67e", "fields": { - "question": 339, - "contribution": 918, - "answer": 0, - "count": 5 + "question": 362, + "contribution": 3929, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5386e312-f082-4e30-b9fd-6f87ec2b2f65", + "pk": "397b47e8-9894-4408-8e3f-7741435a7b30", "fields": { - "question": 262, - "contribution": 4084, + "question": 340, + "contribution": 4036, "answer": 1, - "count": 12 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "53951156-62da-48a7-886a-5f53cd72002b", + "pk": "397e7c77-77b7-418d-9b40-ea13c3decb96", "fields": { - "question": 332, - "contribution": 3922, + "question": 370, + "contribution": 3776, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "53a2f1f3-4194-4c3f-8ecf-e3a5daa5d717", + "pk": "3989d4b3-1fd3-4ae6-8c51-f4f7fd8c38bd", "fields": { - "question": 476, - "contribution": 3721, - "answer": 0, - "count": 13 + "question": 338, + "contribution": 4002, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "53cbed18-d309-4ba4-8b06-522e5f4e36e6", + "pk": "39938217-a39c-49f3-93cf-0833d7ebed3c", "fields": { - "question": 368, - "contribution": 3666, - "answer": 4, - "count": 1 + "question": 476, + "contribution": 3474, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "53cc4e1a-df30-4802-8b63-d9c45a257a63", + "pk": "3998fa43-8a7e-44c7-b23c-389f6ab068f4", "fields": { - "question": 371, - "contribution": 4152, - "answer": 1, - "count": 12 + "question": 348, + "contribution": 1809, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "53dbd7c3-51d2-4fdf-9468-be0bf0b6164a", + "pk": "39c24576-612b-4ccf-b501-0fc965ae5c2b", "fields": { - "question": 344, - "contribution": 1869, + "question": 360, + "contribution": 1808, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "53e30a38-bd2e-4b82-ac78-c54e7ee9c25b", + "pk": "39c9697d-6420-4393-a0fd-66143869eba0", "fields": { - "question": 322, - "contribution": 3679, - "answer": 2, - "count": 9 + "question": 354, + "contribution": 4279, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "53fcf114-6c59-4230-91bc-2f6521b729af", + "pk": "39d48cf8-1602-49e8-8b46-65b1b262ba9b", "fields": { - "question": 322, - "contribution": 3434, - "answer": 4, + "question": 321, + "contribution": 4128, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54124ee7-71f9-403a-bff3-15ac39701b0f", + "pk": "39d84d0b-c658-4626-9f58-dd7afaf14004", "fields": { - "question": 346, - "contribution": 3610, + "question": 316, + "contribution": 3472, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5412acfd-e537-47bd-b4a3-ff34eee8aa63", + "pk": "39dd3cf5-b774-4f76-aa89-6397b94d918b", "fields": { - "question": 366, - "contribution": 4152, - "answer": 2, + "question": 476, + "contribution": 3390, + "answer": -1, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5413b2f4-036a-420b-83c9-437d5cc78944", + "pk": "39e4878d-d143-402d-a4fa-9fc7fb48bb2f", "fields": { - "question": 316, - "contribution": 4120, - "answer": 3, - "count": 4 + "question": 327, + "contribution": 4101, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "541b0cbf-8c81-4f01-9bc6-920480d0e62b", + "pk": "39f04487-65af-4013-851b-1769795f4ff8", "fields": { - "question": 344, - "contribution": 1851, + "question": 327, + "contribution": 3883, "answer": 1, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "542255e3-4cfa-4da0-8d5c-70bda4a83967", + "pk": "39fe5fe8-5f24-466a-afdf-d27e62be3d23", "fields": { - "question": 328, - "contribution": 1778, + "question": 325, + "contribution": 1186, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "542ff185-236d-4069-a5cc-f53f191fd599", + "pk": "3a0d2540-90d4-4af9-be3f-3bc3562c8494", "fields": { - "question": 346, - "contribution": 1872, + "question": 259, + "contribution": 1668, "answer": 1, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5433b6d5-fe92-46ba-ba60-c4a283e25574", + "pk": "3a1fa25a-d95e-40d1-977e-21900427e1b9", "fields": { - "question": 326, - "contribution": 4117, - "answer": 1, - "count": 5 + "question": 435, + "contribution": 4052, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "543e9ae1-6b63-4bdf-975b-8c052b89921a", + "pk": "3a24a22f-ac21-489b-bcbc-fdfc38b61659", "fields": { - "question": 315, - "contribution": 1724, - "answer": 2, - "count": 3 + "question": 344, + "contribution": 1822, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "544788d9-110b-4a80-ac5e-9745a0ca2b9d", + "pk": "3a26652e-65db-4784-a99a-1506a077ca51", "fields": { - "question": 477, - "contribution": 1288, - "answer": 0, - "count": 30 + "question": 473, + "contribution": 89, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54498e6b-9edf-4320-8c6f-b4c9ace80771", + "pk": "3a3137de-133b-4f45-b0b0-4566d3eeceaa", "fields": { - "question": 322, - "contribution": 4084, + "question": 329, + "contribution": 881, "answer": 4, - "count": 1 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5449c22e-ca5b-49c5-a6a9-fb9137fe03cc", + "pk": "3a399de9-03e0-450a-bc0d-cfc55458cdf8", "fields": { - "question": 333, - "contribution": 3882, - "answer": 3, - "count": 1 + "question": 259, + "contribution": 822, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "544f2740-7f51-4781-955b-2367ed4868d8", + "pk": "3a3ec0fb-582a-4c49-a649-a6f92a9eeff3", "fields": { - "question": 329, - "contribution": 1617, - "answer": 1, - "count": 26 + "question": 361, + "contribution": 1835, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54565f93-6df7-4879-9d2b-2225d53049d8", + "pk": "3a45e71b-a3cd-4547-aa1b-243a267e1088", "fields": { - "question": 255, - "contribution": 822, - "answer": 1, - "count": 3 + "question": 476, + "contribution": 1634, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "545f23f3-cac3-4ac0-85e2-a5cd529e14e9", + "pk": "3a54a3c9-dca1-4c8f-bfd4-9fb122700f5b", "fields": { - "question": 472, - "contribution": 3735, + "question": 359, + "contribution": 3648, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5460aa2a-dc66-4474-844f-08230ed69e72", + "pk": "3a62dfb0-66cb-4269-8a0d-7caabab03d22", "fields": { - "question": 322, - "contribution": 4138, + "question": 369, + "contribution": 3944, "answer": 1, - "count": 8 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "547254aa-998e-4d23-81bb-15da2eb8cbda", + "pk": "3a675f26-b95e-45c6-bf97-b60302aadadd", "fields": { - "question": 339, - "contribution": 1656, - "answer": 0, - "count": 6 + "question": 347, + "contribution": 1151, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "547ed933-edc0-4253-ac14-adf419f938c6", + "pk": "3a739cb4-72e1-458e-a772-c645096d3287", "fields": { - "question": 323, - "contribution": 1634, + "question": 319, + "contribution": 3665, "answer": 2, - "count": 11 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "547ef6c4-cbf0-4cfc-b7a0-653122436b62", + "pk": "3a75799e-8fb5-4164-be94-186967cd9bb8", "fields": { - "question": 452, - "contribution": 4185, + "question": 370, + "contribution": 3608, "answer": 1, - "count": 29 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "547f3898-14c6-4cbd-bdfb-4285c9158900", + "pk": "3a7ad10c-9308-4b59-91ef-bc6973c99733", "fields": { - "question": 257, - "contribution": 4028, - "answer": 1, - "count": 14 + "question": 362, + "contribution": 3649, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "548220c7-ef9b-4063-97c0-b2f8748a85cb", + "pk": "3a7c2314-b2fb-4a5d-9c88-c5d3bf5f6d12", "fields": { - "question": 328, - "contribution": 4203, - "answer": 1, + "question": 477, + "contribution": 1287, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54a3aa48-2994-4607-b12d-12c5f519ee1b", + "pk": "3a7ec77a-6dc5-4e4a-a35a-4c4fa784cc66", "fields": { - "question": 353, - "contribution": 3518, - "answer": 1, - "count": 5 + "question": 258, + "contribution": 1612, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54a6161f-ad9b-4085-bb29-bd2e3d3fa480", + "pk": "3a839de3-99c3-4a9e-bc18-9493d744e19c", "fields": { - "question": 368, - "contribution": 1778, - "answer": 1, - "count": 4 + "question": 335, + "contribution": 3631, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54a7f572-9b88-447a-9c4e-841c52b539b1", + "pk": "3a90f21d-c48c-48b9-8a26-dfedc9f24ba5", "fields": { - "question": 327, - "contribution": 3680, - "answer": 3, - "count": 2 + "question": 341, + "contribution": 3450, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54abe3cb-c2c7-4eb9-a152-cef613d939c4", + "pk": "3a9d1801-6976-431b-80cd-c4d4c566e7f4", "fields": { - "question": 320, - "contribution": 4028, + "question": 259, + "contribution": 3721, "answer": 2, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54b3f040-c87f-4161-b639-8d7e645e7869", + "pk": "3aa0adcd-fa06-467c-9beb-840be736ae03", "fields": { - "question": 475, - "contribution": 3645, - "answer": -1, - "count": 3 + "question": 343, + "contribution": 3728, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54b7322b-70d7-42b8-b138-6b8f41855ec2", + "pk": "3aa114f2-1065-4c2c-822c-e3e2a50b6c77", "fields": { - "question": 329, - "contribution": 1681, - "answer": 1, - "count": 2 + "question": 337, + "contribution": 3372, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54bced67-cd86-4374-83b7-2244ce26b910", + "pk": "3aa15aef-3786-4b1e-880b-eaaa4c4fc4ac", "fields": { - "question": 372, - "contribution": 3394, - "answer": 2, - "count": 1 + "question": 329, + "contribution": 3435, + "answer": 1, + "count": 33 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54beb0bc-b59b-4d35-99b3-9b26e1b3baee", + "pk": "3aadb2a5-ba70-44cd-ae9e-c9c326fa3a39", "fields": { - "question": 316, - "contribution": 1634, - "answer": 4, - "count": 5 + "question": 347, + "contribution": 3607, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54c5c153-09b6-413a-89de-086a65a296f5", + "pk": "3abbc267-e9e0-475e-9697-1378bcc66ff0", "fields": { - "question": 339, - "contribution": 89, - "answer": -2, + "question": 1, + "contribution": 4300, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54ca4f21-6314-4e95-a78e-ee041119ed16", + "pk": "3ac2bd65-6190-4ac0-bf58-9a93463aa819", "fields": { - "question": 344, - "contribution": 3536, - "answer": 1, + "question": 477, + "contribution": 913, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54cd03a6-b309-45ea-860a-d1d62ff37ddb", + "pk": "3acd9fb3-6019-4c41-9cdc-aff9e5cb6738", "fields": { - "question": 363, - "contribution": 1827, - "answer": 3, - "count": 1 + "question": 326, + "contribution": 3726, + "answer": 1, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54dfb3fd-4e71-486a-ba1c-f6ba5a5527f7", + "pk": "3acf8911-de2b-4f79-8a88-53be95800e0f", "fields": { - "question": 476, - "contribution": 3462, + "question": 262, + "contribution": 1612, "answer": 3, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54e4625a-6387-4865-8a2c-918005a227b9", + "pk": "3ad3fa08-e189-4b02-a497-fce9ab817260", "fields": { - "question": 337, - "contribution": 3404, - "answer": 5, - "count": 1 + "question": 345, + "contribution": 3405, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "54f1ee1f-2188-41d0-b936-0010b40e8821", + "pk": "3ae7c007-364b-4160-b01c-226a91863b96", "fields": { - "question": 329, - "contribution": 3885, - "answer": 2, - "count": 4 + "question": 255, + "contribution": 884, + "answer": 1, + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5500ffd3-7cb7-4999-a3d3-a2fa9893ce73", + "pk": "3aea1121-df64-4c9e-aa0e-f1f128daa7bc", "fields": { - "question": 346, - "contribution": 869, + "question": 329, + "contribution": 1779, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "550316d5-23e3-45c6-8b0a-61f08410fe1a", + "pk": "3aee7c12-39df-4d12-804c-4319d84fe558", "fields": { - "question": 344, - "contribution": 3373, - "answer": 5, + "question": 404, + "contribution": 3984, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55135338-f693-47c0-a74a-71438d8ead32", + "pk": "3b018286-562f-4403-876f-ede71a6048db", "fields": { - "question": 258, - "contribution": 1724, - "answer": 2, + "question": 433, + "contribution": 4140, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5513a5af-5958-44e5-a5c8-cb3321ff7abe", + "pk": "3b23715d-b557-4c5f-a4de-a11d25545c11", "fields": { - "question": 348, - "contribution": 3728, - "answer": 2, - "count": 1 + "question": 328, + "contribution": 3722, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55194690-edfd-4185-8fc5-342f2565b947", + "pk": "3b345fb9-c5bd-41b2-9d7a-aa968edbbc38", "fields": { - "question": 320, - "contribution": 4046, - "answer": 2, - "count": 4 + "question": 319, + "contribution": 880, + "answer": 3, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5526eb35-e8e7-4da7-9776-a86605078230", + "pk": "3b3ff101-264f-46c9-80fe-896a54c043cc", "fields": { - "question": 356, - "contribution": 1776, - "answer": 5, - "count": 2 + "question": 366, + "contribution": 3881, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "552e9f85-0afa-4df5-9bfa-e6cc7f5e181c", + "pk": "3b436d2a-64f8-47eb-a9f1-795147763fce", "fields": { "question": 320, - "contribution": 908, - "answer": 5, + "contribution": 836, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "552edb47-f2dc-4329-99d5-fc416e67bc79", + "pk": "3b441a27-05d5-4b65-8167-dfa1e5824786", "fields": { - "question": 473, - "contribution": 3472, + "question": 339, + "contribution": 3693, "answer": 0, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "553140fd-0a7a-4ad3-9473-7e8178d712d5", + "pk": "3b4cb3ab-f27b-4a1c-8800-bf18d22b8855", "fields": { - "question": 326, - "contribution": 3556, - "answer": 5, + "question": 335, + "contribution": 3922, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5531b5dc-560f-4a8e-8a36-cb1015b8f29a", + "pk": "3b55d164-a43d-49a0-817e-b9ab6f5ba1f4", "fields": { - "question": 258, - "contribution": 3721, - "answer": 4, - "count": 1 + "question": 262, + "contribution": 822, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "553893ce-1047-4756-a554-9b5280bb23d7", + "pk": "3b5ebd7b-69c0-4256-906c-ee589833bebe", "fields": { - "question": 317, - "contribution": 1626, - "answer": 4, - "count": 7 + "question": 367, + "contribution": 4128, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "553acadc-dd1c-4e92-9d55-0c66f8b96a3d", + "pk": "3b614dfd-c577-40be-bf42-1ef5c3ccbad2", "fields": { - "question": 343, - "contribution": 4189, + "question": 344, + "contribution": 4223, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "554b568b-30b6-4389-955b-00ea54fa3084", - "fields": { - "question": 326, - "contribution": 909, - "answer": 3, - "count": 10 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "554c22c7-9473-4fd3-a46a-db9061dc9a67", + "pk": "3b745296-3faa-400b-96b4-1913c24d26c5", "fields": { - "question": 325, - "contribution": 1776, + "question": 359, + "contribution": 1799, "answer": 1, - "count": 15 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "555378f1-0d7f-49c3-8b08-2d9fda60863d", + "pk": "3b8081f0-07e7-4b0e-a6c9-233165eee8d2", "fields": { - "question": 345, - "contribution": 4123, - "answer": 3, + "question": 351, + "contribution": 3759, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "555984c3-67b1-4841-beb4-2090891163bd", + "pk": "3b8c45b0-2c29-4eb4-ae6c-3fa9c1912684", "fields": { "question": 336, - "contribution": 4020, + "contribution": 862, "answer": 1, - "count": 3 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "555a8c7a-a4cb-4cb2-86a9-c92cded170f6", + "pk": "3ba88614-8d3e-42d1-8b9b-1096c5792da8", "fields": { - "question": 331, - "contribution": 1612, - "answer": -2, + "question": 475, + "contribution": 3482, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "555ddab5-1c77-4733-995d-f7516f85e785", + "pk": "3bade55a-ad15-42cd-aca5-ade659f0ef95", "fields": { - "question": 343, - "contribution": 4003, + "question": 349, + "contribution": 3487, "answer": 1, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55666c99-6f45-4d07-9d18-44661063da25", + "pk": "3bb2c5fc-ec33-4986-8e45-c008551bb92f", "fields": { - "question": 255, - "contribution": 3422, - "answer": 2, - "count": 11 + "question": 348, + "contribution": 1872, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5568a380-0889-4691-a404-178396623f8a", + "pk": "3bc331b1-8a48-43ea-841b-f283dae5a60f", "fields": { - "question": 346, - "contribution": 1228, - "answer": 3, - "count": 1 + "question": 360, + "contribution": 1812, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55782fea-5548-4aa6-949c-d718ed209db1", + "pk": "3bcf9e03-c6e0-4090-83fc-62389cdabd17", "fields": { - "question": 476, - "contribution": 1724, - "answer": -1, - "count": 2 + "question": 354, + "contribution": 1860, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55786350-e216-4a60-b1db-ff45fc6ab5dd", + "pk": "3bd2bbb3-62b3-475c-b9cd-dc1434c03f46", "fields": { - "question": 346, - "contribution": 3405, - "answer": 2, + "question": 350, + "contribution": 3440, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55799add-74ee-487e-9011-54f9af4f907b", + "pk": "3bd3e2f8-11d8-4f43-a1d0-d96269fcd964", "fields": { - "question": 325, - "contribution": 1797, - "answer": 1, - "count": 4 + "question": 345, + "contribution": 869, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55865755-7411-47c4-99ce-e3898a37bb46", + "pk": "3bd4caea-c0c4-4908-86f5-117cd20082a5", "fields": { - "question": 320, - "contribution": 3679, - "answer": 5, - "count": 2 + "question": 347, + "contribution": 1663, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5597d52d-5048-436c-a42c-3844c7601bb8", + "pk": "3bdafe36-a1bb-401a-89bd-e2813df6a5a9", "fields": { - "question": 326, - "contribution": 1288, - "answer": 1, - "count": 22 + "question": 354, + "contribution": 3545, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55982b74-d528-4c67-a0e2-5e2b0458fe2e", + "pk": "3bdc7d57-2d0a-4dc5-80d8-f3618f1f45d1", "fields": { - "question": 332, - "contribution": 3881, + "question": 374, + "contribution": 3781, "answer": 1, - "count": 10 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55be7a21-a978-4690-a833-b81e32783766", + "pk": "3beef492-8eb9-4b84-90e6-9e954aecd263", "fields": { - "question": 340, - "contribution": 804, + "question": 322, + "contribution": 1837, "answer": 5, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55c441b1-f6c5-4935-b86e-6bd1eb9e631c", + "pk": "3bf5d605-4e31-42a2-a1a5-492a8e472ac3", "fields": { - "question": 322, - "contribution": 3683, - "answer": 1, - "count": 4 + "question": 258, + "contribution": 3474, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55c6c30c-1177-4311-9592-369b0eafee7b", + "pk": "3bfdbc15-1145-4636-9f64-f5133fe3b2e2", "fields": { - "question": 359, - "contribution": 1827, + "question": 333, + "contribution": 3936, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55c80acf-60df-410b-bb39-b16704b8d4e7", + "pk": "3bff152d-6e58-4da7-af8c-2a93dd75a4be", "fields": { - "question": 338, - "contribution": 3727, - "answer": 3, + "question": 323, + "contribution": 3406, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55ca0f96-e625-44fb-81f4-bc2bdb0a52ad", + "pk": "3c13cf59-e0e0-41cd-a693-26582f69f0b7", "fields": { - "question": 435, - "contribution": 3976, + "question": 317, + "contribution": 884, "answer": 2, - "count": 1 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55ca9249-823b-48c0-9669-f242267dbd3b", + "pk": "3c315106-5f37-4745-a72c-118430381182", "fields": { - "question": 391, - "contribution": 3775, - "answer": 1, - "count": 5 + "question": 476, + "contribution": 822, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55cb082c-802b-4c95-86f5-868c3748f519", + "pk": "3c33c190-78af-4a69-a130-7e31f4f67a56", "fields": { - "question": 323, - "contribution": 4138, - "answer": 1, - "count": 14 + "question": 360, + "contribution": 1812, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55cb09ce-4ddd-4bd6-9531-9c2240629c3d", + "pk": "3c3b47c3-bb16-4baf-84e7-36ac60369cd8", "fields": { - "question": 436, - "contribution": 4140, + "question": 370, + "contribution": 3852, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55d0ab6a-f637-4404-bfc0-952dd456a507", + "pk": "3c3f6879-5143-4ed9-aa48-274a1ac7e32a", "fields": { - "question": 348, - "contribution": 1874, - "answer": 1, - "count": 3 + "question": 326, + "contribution": 3556, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55d3c90c-3e88-4d8a-abf9-31426dc4b384", + "pk": "3c42842c-2e82-41bb-838f-b121a7fbb64d", "fields": { - "question": 345, - "contribution": 1645, - "answer": 1, - "count": 3 + "question": 475, + "contribution": 3486, + "answer": -1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55d939b9-cbf8-48cc-8656-2d1b336ac925", + "pk": "3c4a046d-166a-463e-bda4-ac35fbdef72f", "fields": { - "question": 331, - "contribution": 3721, + "question": 349, + "contribution": 4191, "answer": 1, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55e260f2-0ff1-4b7a-bd9c-dafb3acb36ca", + "pk": "3c4e1bfd-a62e-4cff-b5a3-5d21c496d8e7", "fields": { - "question": 315, - "contribution": 3406, - "answer": 3, + "question": 323, + "contribution": 3739, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "55ea3f71-d91d-48c8-b726-ba4bc77e5368", + "pk": "3c56561b-1293-483b-9de0-49ceec8ad7a3", "fields": { - "question": 472, - "contribution": 886, - "answer": 1, - "count": 5 + "question": 473, + "contribution": 3486, + "answer": 0, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "560e54d3-b0fe-4163-90ab-3b9dc7221be3", + "pk": "3c61b4fb-0d86-440d-a81f-1cde6d4e9391", "fields": { - "question": 322, - "contribution": 4022, - "answer": 1, + "question": 335, + "contribution": 4205, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "560f87c5-d746-4ba4-bdf7-4b48f3267897", + "pk": "3c68bf81-9f66-4e47-9498-8506d26b45da", "fields": { - "question": 460, - "contribution": 3786, - "answer": 3, - "count": 1 + "question": 320, + "contribution": 1612, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56188ef1-8c99-4b17-a6ad-55490986b8f4", + "pk": "3c6ad588-6544-483b-bc8d-d3ccf1165a8e", "fields": { - "question": 316, - "contribution": 3422, + "question": 475, + "contribution": 3645, "answer": 2, - "count": 8 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "561c9b30-80c4-4239-a10e-eb383b7068ec", + "pk": "3c74ce4c-2dca-474e-806a-0fd1ab2501ff", "fields": { - "question": 347, - "contribution": 3704, + "question": 326, + "contribution": 3589, "answer": 1, - "count": 5 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56287437-8d6f-48b3-ad30-0cf1ef545117", + "pk": "3c839971-2d94-4a86-811e-938d77ea9dd8", "fields": { - "question": 327, - "contribution": 3859, - "answer": 2, - "count": 4 + "question": 315, + "contribution": 3721, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5634202f-d638-43f1-936e-a36144628c2c", + "pk": "3c8724f9-7e80-4bad-909a-04ff0c0e27f5", "fields": { - "question": 349, - "contribution": 4191, - "answer": 4, + "question": 475, + "contribution": 3751, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "563c8f73-de87-40ab-a2e5-1a224d6b7e28", + "pk": "3c8e962f-838b-40c4-bbe2-d92183b2fb07", "fields": { - "question": 356, - "contribution": 4223, + "question": 344, + "contribution": 919, "answer": 2, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "564c7af5-968a-4991-b26a-2f4b7724c083", + "pk": "3ca10ffa-b23c-4f88-a149-b621eca617dd", "fields": { - "question": 347, - "contribution": 1851, - "answer": 2, - "count": 1 + "question": 316, + "contribution": 880, + "answer": 3, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "565874f9-3759-4abf-b4e0-2fc222b2aa78", + "pk": "3ca4d31b-fea2-4377-ba6e-3c10df11e754", "fields": { - "question": 317, - "contribution": 1724, + "question": 435, + "contribution": 4008, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5669d78f-7065-48ff-94b7-8c5093f4efad", + "pk": "3cb39ff1-ae6c-46d9-a586-918956b12a3c", "fields": { - "question": 360, - "contribution": 1835, + "question": 335, + "contribution": 3553, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56762884-149b-448f-b543-f4d23d25991f", + "pk": "3cb5a4b1-a53b-4973-b6c6-e1d06ba1fa60", "fields": { - "question": 262, - "contribution": 4138, - "answer": 1, - "count": 11 + "question": 329, + "contribution": 1777, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "567ddc72-58c3-426e-ab7c-0176b6bb992f", + "pk": "3cc1ffd2-3a41-416d-b2b2-86d0e9a8d44d", "fields": { - "question": 320, - "contribution": 1668, - "answer": 2, - "count": 3 + "question": 438, + "contribution": 4052, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56820223-a1c8-4b58-bb5e-b6db328e7e9a", + "pk": "3cce4abc-e08e-4fcc-bd62-7c42461a7169", "fields": { "question": 328, - "contribution": 3884, - "answer": 2, - "count": 2 + "contribution": 4153, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56909483-11cd-4efd-ab28-88837dcd9862", + "pk": "3cd1c0ac-6463-4d95-80ce-54dac172699f", "fields": { - "question": 348, - "contribution": 4233, - "answer": 1, - "count": 3 + "question": 315, + "contribution": 3679, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5695ad16-a2c9-464e-b039-2c2898829714", + "pk": "3cd2955d-43c1-4eb1-80a5-bd888fc74529", "fields": { - "question": 348, - "contribution": 3728, - "answer": 1, - "count": 2 + "question": 326, + "contribution": 1802, + "answer": 5, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "569a6787-6ff2-484d-94fb-e5d26398b007", + "pk": "3cd870ac-6ab8-4466-8606-012d43810609", "fields": { - "question": 436, - "contribution": 4008, + "question": 340, + "contribution": 3482, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56a2b38e-1c62-4f04-a651-af62e3d40df0", + "pk": "3ce38141-1073-46c5-a71f-75fe02a56aac", "fields": { - "question": 477, - "contribution": 885, - "answer": 2, + "question": 475, + "contribution": 3372, + "answer": 0, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56a4a830-a989-4620-8f5c-727207111378", + "pk": "3cfc9dfd-a797-4994-a20b-617087655f17", "fields": { - "question": 321, - "contribution": 4116, - "answer": 5, - "count": 5 + "question": 360, + "contribution": 3597, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56a970c6-b309-49c5-a21c-666632e0ee8b", + "pk": "3d0e1def-4ea2-4231-9380-08bf0fbe82e9", "fields": { - "question": 258, - "contribution": 3354, - "answer": 3, - "count": 1 + "question": 316, + "contribution": 822, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56ab2de3-a9da-4fda-844c-c6ea33b02dff", + "pk": "3d15151c-12e4-4bfb-9f8d-4b73a81fe911", "fields": { - "question": 339, - "contribution": 1640, - "answer": 1, + "question": 328, + "contribution": 1780, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56aff938-9d76-4be4-a6ac-3ced5a2a9cb1", + "pk": "3d1d8978-4fb5-4fe8-964b-35431f801c6c", "fields": { - "question": 345, - "contribution": 3606, - "answer": 2, + "question": 321, + "contribution": 4022, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56b96ecf-c0ce-40e4-a448-d8e8924fcde4", + "pk": "3d29a6dc-c1c1-4e3d-a393-b9878c3df8cc", "fields": { - "question": 349, - "contribution": 3545, - "answer": 3, - "count": 2 + "question": 355, + "contribution": 1258, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56bb6ab2-d501-4aee-9fbe-481c826a1861", + "pk": "3d3cad36-0758-4e32-8050-b410f49f7572", "fields": { - "question": 348, - "contribution": 1207, - "answer": 3, - "count": 2 + "question": 322, + "contribution": 3462, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56c2f11a-73a3-494e-86e3-d956c4cf19cf", + "pk": "3d48895e-e9d7-47cc-bca7-2561f15fe13c", "fields": { - "question": 349, - "contribution": 3912, - "answer": 4, - "count": 1 + "question": 347, + "contribution": 1881, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56c3a3c6-a0ca-4807-bc3c-e5e3e5b2dbc4", + "pk": "3d494355-ad9b-45a6-a2c8-0a5936f629f1", "fields": { - "question": 367, - "contribution": 3665, - "answer": 4, - "count": 1 + "question": 392, + "contribution": 3711, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56caf99d-50db-489e-8449-073f4405a67c", + "pk": "3d4d6841-aaab-4bf1-a669-d096f669084d", "fields": { - "question": 352, - "contribution": 3440, - "answer": 1, + "question": 259, + "contribution": 4084, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56d77d24-304f-4c20-96a5-d970cde8bdb0", + "pk": "3d4fb04e-f0cb-49b9-bd83-73b7e7b26500", "fields": { - "question": 315, - "contribution": 4120, - "answer": 3, - "count": 2 + "question": 351, + "contribution": 4022, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56decd6e-10c5-429c-b32f-63b484b5e106", + "pk": "3d50f6d0-4cfb-46b4-8f28-2a0e1b0be21d", "fields": { - "question": 458, - "contribution": 4283, - "answer": 2, + "question": 332, + "contribution": 3886, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56e06725-9362-4be4-9c5d-4aae9188250a", + "pk": "3d58bbbb-ace2-4944-994e-b125f37ff9f2", "fields": { - "question": 369, - "contribution": 1799, - "answer": 1, - "count": 3 + "question": 458, + "contribution": 4284, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56e16e60-1362-487c-b8ad-fe0eb3fd3c7f", + "pk": "3d663c1f-febb-4fcb-91d4-1ddc6eb0c7db", "fields": { - "question": 369, - "contribution": 3653, - "answer": 2, - "count": 2 + "question": 341, + "contribution": 3821, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56f2aadc-dee5-481d-9efe-a0fdd14ea5ff", + "pk": "3d69a52e-7f66-46f6-8bc1-525210edfd71", "fields": { - "question": 325, - "contribution": 3859, - "answer": 1, - "count": 25 + "question": 339, + "contribution": 3727, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56f2bd94-69a7-466f-80f3-f249f5a65f8e", + "pk": "3d7840d4-5855-4a45-9464-10b2db15dd55", "fields": { - "question": 353, - "contribution": 3782, + "question": 346, + "contribution": 4146, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56fad430-0ae7-48b1-b160-30e4196ed1c1", + "pk": "3d80cb5b-bd50-4327-aeed-33654aa15391", "fields": { - "question": 368, - "contribution": 4152, - "answer": 4, - "count": 1 + "question": 476, + "contribution": 3390, + "answer": 0, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56fd10a8-4161-4039-9f6b-57ab7179e415", + "pk": "3d8baa3c-616b-4579-bb37-34d0e4078176", "fields": { - "question": 346, - "contribution": 3896, - "answer": 1, - "count": 3 + "question": 351, + "contribution": 3406, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "56fd2c3a-2ee0-484c-a91b-b9ce2061aed1", + "pk": "3d9701ca-7952-44aa-84a6-19eae8b3b863", "fields": { - "question": 337, - "contribution": 918, - "answer": 2, + "question": 345, + "contribution": 1661, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "570066bc-295c-4595-a20a-da02f05bb8fb", + "pk": "3d9c6c31-ada9-4756-b49d-eef107d50e43", "fields": { - "question": 355, - "contribution": 3848, - "answer": 1, - "count": 3 + "question": 319, + "contribution": 3721, + "answer": 5, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5709a717-ab88-4914-99d5-f2766f57a460", + "pk": "3d9eab2a-0a43-49b4-85e9-2fcac0c7b44f", "fields": { - "question": 328, - "contribution": 3589, - "answer": 3, + "question": 475, + "contribution": 3751, + "answer": 0, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "570a0f9d-eae1-4fe4-8038-e8d0a0144fb2", + "pk": "3da42d80-acaf-4513-970c-06b0a314d9aa", "fields": { - "question": 316, - "contribution": 884, - "answer": 4, - "count": 4 + "question": 320, + "contribution": 3462, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "570dfee5-5e03-468d-b257-288cb815ae1a", + "pk": "3daae53a-86b5-4d5d-b4e0-b2c28ece5ddc", "fields": { - "question": 346, - "contribution": 3941, - "answer": 4, - "count": 1 + "question": 323, + "contribution": 1612, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "571697a8-b7c1-4648-a471-8672d893b74e", + "pk": "3dac3439-35fc-477a-a024-ba6a7c61a46e", "fields": { - "question": 336, - "contribution": 3759, - "answer": 3, - "count": 1 + "question": 315, + "contribution": 3739, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57193c5a-5456-45fd-9bbb-8677edc1443b", + "pk": "3dacc0e8-6caa-42f7-b2de-219f0cefc669", "fields": { - "question": 344, - "contribution": 1206, + "question": 360, + "contribution": 1812, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "572142ef-8ab2-4597-821f-a8b59efec25c", - "fields": { - "question": 321, - "contribution": 3725, - "answer": 4, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "57266eb3-b3c5-40c5-8c92-fe9f7fbce36c", + "pk": "3db6e978-1e5b-4ad2-936a-076d2d63c5bc", "fields": { - "question": 460, - "contribution": 3862, + "question": 371, + "contribution": 3592, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5727c154-8d2c-4b01-ac0d-3e5b17786eee", + "pk": "3dba5705-7071-41b1-98b5-b9ea852e1e0e", "fields": { - "question": 477, - "contribution": 3859, - "answer": 3, - "count": 1 + "question": 262, + "contribution": 4084, + "answer": 4, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "572839b7-cdee-4656-b5ff-6ef1f78c64bf", + "pk": "3dc8246f-226a-46f6-b7f6-4dab458ab8b0", "fields": { - "question": 348, - "contribution": 4187, + "question": 462, + "contribution": 4141, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "572b0210-5d4e-4538-85df-8fc2b0575306", + "pk": "3dce62b8-046e-4e22-bfbe-0f58d818d3b4", "fields": { - "question": 361, - "contribution": 3921, + "question": 259, + "contribution": 4022, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5731f881-0033-49aa-b793-3162e5e0ba52", + "pk": "3dd0c3de-cb85-4ce3-88a6-61ebd1608586", "fields": { - "question": 354, - "contribution": 1784, - "answer": 1, - "count": 4 + "question": 347, + "contribution": 3728, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "573886fd-6df5-462e-8439-ed1e20c44bcc", + "pk": "3dd75d39-afe7-4fdf-92eb-a370fb0c132c", "fields": { - "question": 475, - "contribution": 3440, - "answer": 1, + "question": 316, + "contribution": 3474, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "574ef062-7214-4fd9-b40e-f5bb6da9ecc7", + "pk": "3dea5419-cc93-43f4-8eaf-12a8cad8864c", "fields": { "question": 336, - "contribution": 3372, - "answer": 1, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "575358d3-dbab-460d-ad6f-7f844161f424", - "fields": { - "question": 335, - "contribution": 4156, - "answer": 2, - "count": 2 + "contribution": 886, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5762142f-bea5-4fef-b254-4fe6b20a1194", + "pk": "3e0a382a-2a16-431c-b755-f4cf7420e556", "fields": { - "question": 475, - "contribution": 3440, - "answer": -2, + "question": 361, + "contribution": 1806, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57752802-60a6-4536-a996-fbdb7545dab1", + "pk": "3e0af366-0154-446f-8c0e-e1b0567c349e", "fields": { - "question": 345, - "contribution": 1881, - "answer": 1, - "count": 4 + "question": 349, + "contribution": 3934, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "577bb71c-f34f-451b-a64e-0888401caeaf", + "pk": "3e165d31-2874-41d6-a9fa-605775630878", "fields": { - "question": 410, - "contribution": 3984, + "question": 327, + "contribution": 1154, "answer": 3, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5780a423-1448-4beb-bb86-748495b12707", + "pk": "3e18e91a-9d7e-4295-b50d-0bd9cba14429", "fields": { - "question": 340, - "contribution": 3727, - "answer": 1, - "count": 3 + "question": 325, + "contribution": 1635, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57882059-ca34-46ff-b080-9258d69dff44", + "pk": "3e1efa65-6a61-4e33-922b-1a8512a0424a", "fields": { - "question": 259, - "contribution": 3354, + "question": 320, + "contribution": 4046, "answer": 1, - "count": 12 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "578870bd-7ed4-4a17-b438-fa3d3ae21938", + "pk": "3e252f10-f13e-4843-8f36-b9d91c77a75c", "fields": { - "question": 329, - "contribution": 4203, - "answer": 1, + "question": 317, + "contribution": 3665, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5792b6f0-c8a9-4260-9d62-f3198f1482d4", + "pk": "3e2f043d-afdf-45a8-9bbf-4f7d7f0a2cf5", "fields": { - "question": 477, - "contribution": 3666, - "answer": -2, + "question": 353, + "contribution": 3832, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "579896a4-93ac-448d-840f-11253c7fe393", + "pk": "3e30ab88-68e9-4050-808c-43394a77a31e", "fields": { - "question": 315, - "contribution": 4040, - "answer": 3, - "count": 1 + "question": 260, + "contribution": 3434, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57a07e77-64cf-4a8a-b91d-65307d2ed7d1", + "pk": "3e3766dd-7ba0-4e79-a03c-a8c5975ac3c6", "fields": { - "question": 370, - "contribution": 3848, + "question": 348, + "contribution": 4187, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57aa6067-c4b4-47e8-bcca-c92f3b339361", + "pk": "3e3caa74-ecb4-48d2-943f-872f517d0ab4", "fields": { - "question": 338, - "contribution": 832, + "question": 362, + "contribution": 1836, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57b1034e-33b1-4d21-88fe-46ac017a6f05", + "pk": "3e3d9aa2-34f6-413d-8ef3-d5dfa524fa00", "fields": { - "question": 321, - "contribution": 4046, - "answer": 1, - "count": 7 + "question": 344, + "contribution": 4189, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57b8e4d9-c59f-40d8-bbaf-11d1fe05a593", + "pk": "3e40fbf5-e8a1-4e39-910f-a53b4fa8ff50", "fields": { - "question": 262, - "contribution": 1658, + "question": 477, + "contribution": 3407, "answer": 1, - "count": 12 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57c5a4f1-4b9e-48cb-9822-502931b8c24c", + "pk": "3e4a6f86-c4f2-4ffb-b918-eaaace0d7857", "fields": { - "question": 359, - "contribution": 1825, - "answer": 1, + "question": 331, + "contribution": 4022, + "answer": 0, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57ca61f0-ea8e-479c-881a-c976d6ca5142", + "pk": "3e519e0e-1504-4348-b519-bae80a3bd46e", "fields": { - "question": 366, - "contribution": 3593, + "question": 335, + "contribution": 3551, "answer": 2, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57d24829-ba93-49e8-9cdb-4e820d4f5489", + "pk": "3e54d047-69dc-4156-a8fb-a0a4b0af7ac7", "fields": { - "question": 315, - "contribution": 4138, + "question": 360, + "contribution": 3921, "answer": 2, - "count": 15 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57d2d167-00ac-4dcc-aade-860dc3a164c6", + "pk": "3e59006d-13c3-4813-b07f-bd8ab72fc2b5", "fields": { - "question": 344, - "contribution": 3912, - "answer": 2, - "count": 1 + "question": 317, + "contribution": 4084, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57d730a0-9ec4-46d9-969c-d9c2eb58879d", + "pk": "3e5c9d63-f4c3-4276-94fb-63aa70a97a40", "fields": { - "question": 459, - "contribution": 4141, + "question": 329, + "contribution": 1287, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57f2bded-ff6a-4043-b294-911f6002dc3d", + "pk": "3e6bca21-de81-4e67-ae49-8340bbe0693c", "fields": { - "question": 472, - "contribution": 4140, - "answer": 5, - "count": 1 + "question": 476, + "contribution": 3354, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57f2d496-7af4-42ac-98f8-2aff5f1520a6", + "pk": "3e7c9685-11d5-465a-8e45-863649233919", "fields": { - "question": 345, - "contribution": 1151, - "answer": 2, - "count": 1 + "question": 476, + "contribution": 4138, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57f53000-58ef-4e6d-98d0-441660aedc2f", + "pk": "3ebeb38e-3757-4218-ab16-bce9d0bef3f6", "fields": { - "question": 363, - "contribution": 3919, - "answer": 2, - "count": 3 + "question": 360, + "contribution": 3921, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57f78070-8a40-4e10-a7b9-3b7b0c526461", + "pk": "3ec6467b-c4b6-4460-a441-90a2eb576dd1", "fields": { - "question": 477, - "contribution": 1776, - "answer": 0, - "count": 14 + "question": 316, + "contribution": 4118, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "57fb21b0-6388-42b0-9040-449ba5c2a633", + "pk": "3ec6f533-e976-4e13-a789-a58329cc427d", "fields": { - "question": 319, - "contribution": 1612, - "answer": 1, - "count": 7 + "question": 335, + "contribution": 3922, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5810cf8e-ccb7-4f05-8e77-31c2bed5daad", + "pk": "3ecf67ba-d189-4e3b-9d39-912b52c938d6", "fields": { - "question": 338, - "contribution": 1710, - "answer": 5, - "count": 1 + "question": 331, + "contribution": 3434, + "answer": 0, + "count": 26 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5811b7dc-7d9c-4a07-9fcd-061099e776e6", + "pk": "3ed87223-162d-45cd-bc8e-7307cdda41dd", "fields": { - "question": 322, - "contribution": 1658, - "answer": 1, - "count": 6 + "question": 473, + "contribution": 3474, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5818cf9c-613a-40dd-bcbe-2221eb8937e9", + "pk": "3ee9b110-766c-4afe-a07c-cf7ac27d0554", "fields": { - "question": 347, - "contribution": 1860, - "answer": 4, + "question": 475, + "contribution": 3450, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5818e3a6-0025-4ff9-bbab-f73f7b50e716", + "pk": "3eed4795-6043-4d72-be93-f4484eca7891", "fields": { - "question": 370, - "contribution": 3518, + "question": 338, + "contribution": 1660, "answer": 1, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "581cdf2a-540a-4af6-9631-e9b2c4ca83b5", + "pk": "3ef33731-415b-4ebb-8e53-41cf662338b9", "fields": { - "question": 258, - "contribution": 3390, + "question": 329, + "contribution": 1669, "answer": 1, - "count": 7 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "582f7c97-454c-42d1-a42a-4de0910ef940", + "pk": "3efd551e-bb58-4ab8-b3eb-85db7838944d", "fields": { - "question": 463, - "contribution": 4283, - "answer": 5, + "question": 340, + "contribution": 3450, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5832fd6c-2f4b-4029-9d11-0c00ad58ecb2", + "pk": "3f1464d2-9f24-4a7d-ba28-fdea11c50d94", "fields": { - "question": 320, - "contribution": 3725, - "answer": 2, - "count": 13 + "question": 258, + "contribution": 3665, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5841dfcf-dba1-4558-be0c-4f84d0183dbb", + "pk": "3f1b695f-546a-4125-98c1-c69e22edc805", "fields": { - "question": 337, - "contribution": 862, - "answer": 2, - "count": 3 + "question": 463, + "contribution": 4073, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58422e0e-39d2-488a-a07c-3719793f91d6", + "pk": "3f2f64d1-7619-4ae2-bf35-992545f6486e", "fields": { - "question": 257, - "contribution": 4084, + "question": 315, + "contribution": 1626, "answer": 3, - "count": 10 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "584705a7-4398-4004-8adf-5988dbcde8d8", + "pk": "3f3204b7-0f63-4032-a437-3b28aa295c7e", "fields": { - "question": 335, - "contribution": 4156, + "question": 349, + "contribution": 1869, "answer": 1, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5848f0c6-05e7-49cf-8458-d83e0b6b1de9", + "pk": "3f32b741-9cf2-4c77-acca-6d106fabc0ca", "fields": { - "question": 346, - "contribution": 4189, - "answer": 3, - "count": 2 + "question": 262, + "contribution": 3390, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "584d4657-ca6b-4a63-827c-b706df216331", + "pk": "3f3976a9-8d78-4618-b97e-f94d868f6acd", "fields": { - "question": 356, - "contribution": 4228, - "answer": 1, - "count": 3 + "question": 337, + "contribution": 3508, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5853cb88-67e2-4193-b68a-d91709c3ebc9", + "pk": "3f3d9449-13f5-4822-96f6-99c02f71a0f9", "fields": { - "question": 323, - "contribution": 3472, + "question": 328, + "contribution": 1186, "answer": 2, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5856469e-748d-4f30-8396-d707cf749dfc", + "pk": "3f438e9a-fa7d-40ea-a7a2-f26079b1599e", "fields": { - "question": 347, - "contribution": 3934, - "answer": 2, + "question": 359, + "contribution": 1808, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "585a7fe1-d8b1-4c17-9668-b8956072586f", + "pk": "3f47f71c-b525-4842-aa12-7c40f1030e88", "fields": { - "question": 328, - "contribution": 1780, - "answer": 1, - "count": 5 + "question": 368, + "contribution": 3740, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58617260-5d72-4af2-a410-8ed32b39c723", + "pk": "3f50c968-ddb1-48a5-9aaa-1af6efbfa008", "fields": { - "question": 320, - "contribution": 4084, - "answer": 1, - "count": 8 + "question": 316, + "contribution": 1837, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5862efef-e8ca-41c7-a130-6b9642b96fbe", + "pk": "3f591feb-9f88-4116-b622-a5a93fa2a87b", "fields": { - "question": 341, - "contribution": 1656, - "answer": 3, - "count": 1 + "question": 353, + "contribution": 1243, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58630885-b465-4238-8455-c24cecc41b80", + "pk": "3f6901db-2f46-448b-9f2f-45cd5ca6359e", "fields": { - "question": 402, - "contribution": 4148, + "question": 348, + "contribution": 1842, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5865c083-457f-4e55-b098-be9687e72483", + "pk": "3f776dc3-2278-4773-bf76-48abb6ff153c", "fields": { - "question": 361, - "contribution": 1827, - "answer": 1, + "question": 354, + "contribution": 1776, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58686ff2-51d1-4187-8909-ad2998b487e6", + "pk": "3f8685b8-7028-47fb-925b-1d8993a309d1", "fields": { - "question": 258, - "contribution": 1612, - "answer": 1, - "count": 13 + "question": 360, + "contribution": 3653, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58798557-c521-4d18-b6f1-90bf84426e6f", + "pk": "3f886e33-7a42-429f-80a6-46a4d21c16de", "fields": { - "question": 323, - "contribution": 4028, - "answer": 4, - "count": 1 + "question": 336, + "contribution": 1702, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "587e608e-23ab-4230-97b2-17a92a674832", + "pk": "3f8b3fc1-11ae-444f-9274-877532180cf5", "fields": { - "question": 347, - "contribution": 3610, - "answer": 2, + "question": 328, + "contribution": 1802, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "587e8948-9ac7-46c3-889e-e114fcca0ab8", + "pk": "3f94ec26-3c07-4a59-b146-d3279a0cf6e7", "fields": { - "question": 477, - "contribution": 1779, + "question": 338, + "contribution": 3454, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5881e372-db67-4b7b-9493-fd7c9d8d5ccb", + "pk": "3f959007-5932-43f3-9f4f-2bd3e98ae875", "fields": { - "question": 255, - "contribution": 3434, - "answer": 3, - "count": 3 + "question": 359, + "contribution": 3637, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "588312e0-f712-4538-8433-9d07ad2dc580", + "pk": "3f961552-039f-40a4-9061-9bdb5b7b27ca", "fields": { - "question": 323, - "contribution": 3739, - "answer": 3, - "count": 1 + "question": 326, + "contribution": 3463, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58831a58-1eb9-40c3-882d-16eedda7a6ac", + "pk": "3f9cd01f-f81e-4f9b-9897-13a6896bf8e5", "fields": { - "question": 352, - "contribution": 894, - "answer": 2, - "count": 1 + "question": 262, + "contribution": 3354, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "588f3991-4914-4c0d-b5ab-e56e65afad6d", + "pk": "3f9f3a9e-da9b-41ed-8b5d-1af32126264d", "fields": { - "question": 343, - "contribution": 3728, - "answer": 2, - "count": 3 + "question": 473, + "contribution": 1638, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58902c6d-55f8-41ee-89cd-13da49af51ba", + "pk": "3fb2ae03-2cd1-4fd1-a7bb-e7a2b0adefd2", "fields": { - "question": 345, - "contribution": 3935, + "question": 258, + "contribution": 3472, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58941946-9d49-4397-9c17-bd6eb2a579c9", + "pk": "3fbef67e-6217-4640-9373-e2da55e0c97c", "fields": { - "question": 340, - "contribution": 1734, - "answer": 1, + "question": 321, + "contribution": 1626, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "589bb660-18b8-403b-a4d7-c44102d3996e", + "pk": "3fce8c22-2ed4-4b7c-81fc-24c67a013af1", "fields": { - "question": 340, - "contribution": 3486, + "question": 320, + "contribution": 1634, "answer": 1, - "count": 4 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "589dc318-fdf0-425e-b1f3-edd357da83d3", + "pk": "3fd361a9-e0e0-4f5b-a0d6-de586668aa2d", "fields": { - "question": 320, - "contribution": 4128, + "question": 360, + "contribution": 3652, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58a75579-da2d-4d6b-97de-572cc8a9d226", + "pk": "3fde0758-31c5-4c59-9441-5d989fd9a39b", "fields": { - "question": 457, - "contribution": 4073, - "answer": 2, - "count": 1 + "question": 317, + "contribution": 3665, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58ae0732-f7e3-4bd0-ae00-15bb25beb0dc", + "pk": "3febb49a-cc2e-45b6-aa53-af1d54952f48", "fields": { - "question": 356, - "contribution": 1782, + "question": 347, + "contribution": 3536, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58b8c801-f908-4805-9074-19c660e0ae8f", + "pk": "3feed6d6-755a-4cfb-9cbd-dcb4136cb795", "fields": { - "question": 402, - "contribution": 3646, + "question": 329, + "contribution": 4117, "answer": 1, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58c5afd0-9122-4ce4-ba4e-3ac3af9b17af", + "pk": "40072e71-f0a2-42f6-a65b-3c831266ec03", "fields": { - "question": 477, - "contribution": 881, - "answer": 3, - "count": 7 + "question": 327, + "contribution": 4153, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58d62ff8-5f88-4583-8a3d-f9077f894fa3", + "pk": "40087ff8-fa47-49ac-b3d4-fb63762d3dbe", "fields": { - "question": 260, - "contribution": 1724, - "answer": 1, - "count": 2 + "question": 328, + "contribution": 909, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58e1051d-32f5-42c0-950e-b0ca35ec1e45", + "pk": "40103264-0a99-4c2e-9992-f7064e9ebde2", "fields": { - "question": 321, - "contribution": 4138, + "question": 322, + "contribution": 822, "answer": 4, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58e78ffa-39a4-4c16-a577-19bc8b987474", + "pk": "4010a62a-2f6e-42ff-a7f5-4e43d8c95a84", "fields": { - "question": 477, - "contribution": 3589, - "answer": -3, - "count": 1 + "question": 371, + "contribution": 4156, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "58ff992e-df1e-4761-ae3b-d4d96492d947", + "pk": "401238d3-e77f-4467-83e7-f8c10a7d9e23", "fields": { - "question": 370, - "contribution": 3528, + "question": 359, + "contribution": 3944, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "591db44f-9a51-41be-897e-ace24963d237", + "pk": "40136db4-21a2-4e58-a069-174e5d012497", "fields": { - "question": 325, - "contribution": 885, - "answer": 1, - "count": 35 + "question": 476, + "contribution": 3474, + "answer": -3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "591f4781-d5dc-4e8d-97dc-5bc0796526d0", + "pk": "4019a25a-dc8b-49a0-8d0d-8d041a0ff4c8", "fields": { - "question": 322, - "contribution": 4116, + "question": 326, + "contribution": 1778, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "592bcc5a-a51d-4929-bfe7-fcb278cb76cc", + "pk": "401c9811-7464-4d74-9d72-213543baf94c", "fields": { - "question": 477, - "contribution": 4085, - "answer": 1, - "count": 4 + "question": 339, + "contribution": 1748, + "answer": 0, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "592dcd39-35b3-4091-abda-146e65d7f857", + "pk": "401edde6-0b88-468e-864d-d96a88155469", "fields": { - "question": 338, - "contribution": 3416, - "answer": 4, + "question": 475, + "contribution": 3821, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5933fc8f-dd51-42dd-81ed-b62c077953e4", + "pk": "40207e59-f650-4fc3-af81-4fc30d8f5127", "fields": { - "question": 363, - "contribution": 1806, - "answer": 1, - "count": 2 + "question": 328, + "contribution": 3556, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5938ebb5-27f4-4b08-bbb9-731a3bee216b", + "pk": "40280e44-5b5e-4865-bbb7-ac25e6465258", "fields": { - "question": 344, - "contribution": 1843, - "answer": 1, - "count": 1 + "question": 477, + "contribution": 3423, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "593f7905-97b5-4497-9ee4-d91ceded9520", + "pk": "4033838c-d883-4106-b504-abd7088c7418", "fields": { - "question": 255, - "contribution": 3739, - "answer": 4, + "question": 366, + "contribution": 4154, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5944fda2-35b9-47f8-b669-b48fcb7aa19d", + "pk": "403d62f5-cf5a-473e-9ad1-f02c02236a26", "fields": { - "question": 366, - "contribution": 4261, + "question": 322, + "contribution": 880, "answer": 1, - "count": 9 + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "59666c1d-8998-4b0b-a42b-b3db7484535c", + "pk": "40465a8e-5a54-4a78-be05-f0a55d51c476", "fields": { - "question": 340, - "contribution": 3486, + "question": 353, + "contribution": 3608, "answer": 3, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "596936c1-f44f-43c7-9c49-bfc78801fe9b", - "fields": { - "question": 348, - "contribution": 1863, - "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5979d80d-079d-4bc4-81d7-b380a917c716", + "pk": "404c7b02-128a-4a6a-a237-cb0ed6a5a285", "fields": { - "question": 343, - "contribution": 3760, + "question": 370, + "contribution": 3782, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "597c3399-a403-4213-9c0a-019fc90b8233", + "pk": "405052a3-74a4-48dc-ba37-908bd7a09c6b", "fields": { - "question": 356, - "contribution": 4039, + "question": 348, + "contribution": 4161, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "597eeb64-33a6-4997-bd01-3b724308df7f", - "fields": { - "question": 356, - "contribution": 3545, - "answer": 2, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "5982c089-bf78-453c-ad56-5ac2cf6930a3", + "pk": "405496e3-b6f8-4af0-8eea-fbbaac654d17", "fields": { - "question": 335, - "contribution": 3922, - "answer": 2, - "count": 2 + "question": 473, + "contribution": 3462, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "598d177f-bf27-470b-a05f-3177be6cddd6", + "pk": "4061402b-a6da-4762-b5e1-d32be77e7c0d", "fields": { - "question": 464, - "contribution": 4141, + "question": 315, + "contribution": 3679, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "599480bf-1ed7-4239-968b-51f099742941", + "pk": "40657caa-00cd-4113-af82-11f92dfe238d", "fields": { - "question": 325, - "contribution": 1798, + "question": 347, + "contribution": 1661, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "599d4848-c86e-4a89-a9cd-03757f6fd318", + "pk": "406773c4-c944-47fa-9a3b-c9348370a884", "fields": { - "question": 258, - "contribution": 3721, - "answer": 5, - "count": 2 + "question": 262, + "contribution": 4046, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "599f2aa9-1387-40f0-a22b-a8a905c2208f", + "pk": "4069f6c8-b4db-4785-9e62-38bc331aee53", "fields": { - "question": 347, - "contribution": 1203, + "question": 477, + "contribution": 4101, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "599ffa51-dcaa-40de-adae-31ba6c0d9ba8", + "pk": "40748803-97cf-400b-b485-9676cf712092", "fields": { - "question": 320, - "contribution": 912, - "answer": 4, - "count": 2 + "question": 433, + "contribution": 4052, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "59a4cc23-b395-4777-8a0d-026bb334e2d3", + "pk": "40751354-aca6-46e6-9296-357733e911ec", "fields": { - "question": 363, - "contribution": 3917, + "question": 357, + "contribution": 3546, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "59b3d113-799d-44c7-b6a9-7dcc7c44f69c", + "pk": "407b1110-13aa-44b7-a5ee-fc30a7648a50", "fields": { - "question": 320, - "contribution": 4116, + "question": 262, + "contribution": 3354, "answer": 4, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "59c6f7c0-179f-4469-b801-fe112fc75848", + "pk": "408c2176-b406-4cd0-a710-e6afe0d035bb", "fields": { - "question": 325, - "contribution": 3556, + "question": 384, + "contribution": 3781, "answer": 3, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "59cdfe0c-5678-4af2-8b9a-e3ff0e9c761f", - "fields": { - "question": 338, - "contribution": 3372, - "answer": 4, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "59d47397-5198-4993-96c2-46c1102a279c", + "pk": "409059a5-556a-4d1c-9623-7208de503fdd", "fields": { "question": 259, - "contribution": 3679, - "answer": 3, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "59d4d1c3-5caa-4f76-bc43-16eeb3e076b7", - "fields": { - "question": 413, - "contribution": 4038, - "answer": 1, + "contribution": 1658, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "59db61e7-d190-4aac-b262-093823d1101f", - "fields": { - "question": 354, - "contribution": 1776, - "answer": 3, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "59dca961-7f76-4cb8-80d0-2071e2d56807", + "pk": "409174fb-6e09-4d10-a4d8-cafe06bdce8f", "fields": { - "question": 319, - "contribution": 1724, - "answer": 3, + "question": 340, + "contribution": 3821, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "59dd459f-a288-4d3b-8aa6-3c96ee93c327", + "pk": "40938300-c0a9-4340-9fba-43eead15348b", "fields": { - "question": 361, - "contribution": 1826, - "answer": 1, - "count": 4 + "question": 322, + "contribution": 4028, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "59de9293-bb70-4847-b094-aa0a1870ea24", + "pk": "40a7c421-ca56-4613-b893-f88f6d137709", "fields": { - "question": 348, - "contribution": 1639, + "question": 325, + "contribution": 1802, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "59df33f5-9073-4d48-8be3-9f1ef838f084", + "pk": "40a98862-d58c-46fc-823a-25562c3dcf46", "fields": { "question": 262, - "contribution": 3434, + "contribution": 4084, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "59e45d67-1015-42e6-b2ed-7b4424b65942", + "pk": "40bc67d3-d68d-4e6c-886f-e5435c3ccbeb", "fields": { - "question": 462, - "contribution": 3862, + "question": 329, + "contribution": 1635, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "59fd896b-0180-467f-bb91-c4ff4b50aef4", + "pk": "40c3e769-d0d4-4d1a-84a8-2474be5e50f6", "fields": { - "question": 333, - "contribution": 3886, - "answer": 3, - "count": 2 + "question": 328, + "contribution": 3680, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "59fe9f28-86d2-4d33-94d3-4638b43c04cb", + "pk": "40c54e57-c1fc-47d2-9670-f4c09a049473", "fields": { - "question": 339, - "contribution": 1644, - "answer": -2, - "count": 1 + "question": 344, + "contribution": 3609, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a118d94-18b6-4136-98be-1874f95ef5b9", + "pk": "40ccf654-eb4c-4595-9d2b-f21eb4954b81", "fields": { - "question": 347, - "contribution": 1842, + "question": 348, + "contribution": 3518, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a156bdc-fa96-4be3-a33f-e0831bb38ad5", + "pk": "40d3e28a-031c-400a-b36d-8797d9d1de53", "fields": { - "question": 255, - "contribution": 4052, - "answer": 5, + "question": 477, + "contribution": 837, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a25020f-6f7c-4f6c-b2fd-2c63fda82e81", + "pk": "40d4f516-4230-4659-b69d-c1c73926c4d1", "fields": { - "question": 325, - "contribution": 1154, - "answer": 3, - "count": 3 + "question": 337, + "contribution": 3450, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a264899-dfb6-436e-9480-3e82868cadbf", + "pk": "40dbd05d-a01a-4936-8b43-cf730ff2031c", "fields": { - "question": 473, - "contribution": 1724, - "answer": 0, - "count": 5 + "question": 477, + "contribution": 3883, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a2b9431-e6ca-444e-806f-b0fe3cf13337", + "pk": "40dff708-1801-4fd0-8551-96960bc8c3d5", "fields": { - "question": 370, - "contribution": 1781, - "answer": 1, - "count": 7 + "question": 350, + "contribution": 832, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a367c7a-c188-4cde-a684-036f71f41381", + "pk": "40e01158-12a2-4055-982f-6fa9c6687418", "fields": { - "question": 326, - "contribution": 1287, - "answer": 1, - "count": 21 + "question": 323, + "contribution": 3725, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a4ed8e0-bf20-4ac9-835a-ef796ef3916f", + "pk": "40e3f1f6-2687-4d93-a0b1-d8908d8258c6", "fields": { - "question": 321, - "contribution": 3434, + "question": 371, + "contribution": 3932, "answer": 2, - "count": 14 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a4fe1ad-9c0e-4998-8fdf-9320eb4c6f57", + "pk": "40e66035-5f93-41e1-a26c-a7515eea838d", "fields": { - "question": 322, - "contribution": 912, - "answer": 4, - "count": 6 + "question": 353, + "contribution": 1776, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a538be1-52a3-455e-b827-6ec42be443c3", + "pk": "40e67b0f-5e46-4285-b4dd-3f74658d00d1", "fields": { "question": 339, - "contribution": 3372, - "answer": -2, + "contribution": 3645, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a58f61c-6d08-45b5-9ae1-7df5816f21b1", + "pk": "40e97eb8-a2d7-44dd-8de8-fe798c713afc", "fields": { - "question": 356, - "contribution": 1189, + "question": 316, + "contribution": 912, + "answer": 2, + "count": 11 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "40f3dac4-ca90-4576-85db-22db9801f109", + "fields": { + "question": 328, + "contribution": 4117, "answer": 3, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a61d550-8994-4160-9af6-0251d7a39f83", + "pk": "410169cc-7536-4db1-a13d-18dd558cfe33", "fields": { - "question": 477, - "contribution": 4203, + "question": 315, + "contribution": 836, "answer": 1, - "count": 3 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a6281bb-ee61-408f-846f-f3a7727ecff2", + "pk": "41056665-1d81-4e39-abe4-60b5c137baf5", "fields": { - "question": 341, - "contribution": 3452, + "question": 317, + "contribution": 3462, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a6bad83-443b-40ae-a9da-c415547eb73b", + "pk": "411bc730-4bcd-48bf-8ed1-263ff1589d00", "fields": { - "question": 319, - "contribution": 3739, - "answer": 4, - "count": 1 + "question": 361, + "contribution": 1835, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a6de101-7feb-46fc-a70b-3c6c4edd73b4", + "pk": "41253e5b-dbc5-4501-b08b-5ce6e4db8920", "fields": { - "question": 477, - "contribution": 1287, + "question": 351, + "contribution": 4046, "answer": 1, - "count": 8 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a74b97d-65df-4107-b8f6-33b54aed7cec", + "pk": "412d67e4-8ac4-4495-8ea8-33f66668943f", "fields": { - "question": 354, - "contribution": 3832, + "question": 329, + "contribution": 3463, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a826fea-367e-4ba2-934d-33bce723c3c4", + "pk": "4130be1e-10ff-4b3a-bd88-cdaf294f5737", "fields": { - "question": 340, + "question": 475, "contribution": 3685, - "answer": 1, - "count": 6 + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a862d5b-08e2-421c-8b1a-474e2e18764d", + "pk": "41366bb2-1b6b-4c70-b317-aa1dde232bf2", "fields": { - "question": 323, - "contribution": 864, - "answer": 3, - "count": 1 + "question": 346, + "contribution": 1250, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a8aa13d-e1ab-4424-9d7e-a1f1243225c8", + "pk": "413f7866-7300-4714-9bef-4970cbafd0ec", "fields": { "question": 354, - "contribution": 1782, + "contribution": 3923, "answer": 1, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a8da60d-da0e-40ca-9dd8-5a10e479573d", + "pk": "413fc001-ec29-407d-8f4d-4958a69325c8", "fields": { - "question": 473, - "contribution": 3454, - "answer": 0, - "count": 5 + "question": 357, + "contribution": 1256, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a8de20c-11aa-47df-9849-467b8389aff8", + "pk": "4141cbae-f53a-4bfd-b586-f932689e5691", "fields": { - "question": 347, - "contribution": 1842, - "answer": 1, + "question": 337, + "contribution": 804, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a9337ff-d23e-4d5e-8297-e5332512d076", + "pk": "415276dd-2d10-48fa-b691-d56375237863", "fields": { - "question": 370, - "contribution": 4266, + "question": 344, + "contribution": 1749, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5a9eca75-3ab0-4a41-935f-beab9a61d566", + "pk": "415cc257-3097-4813-85bc-65762c46559f", "fields": { - "question": 259, - "contribution": 1837, - "answer": 3, + "question": 320, + "contribution": 3394, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5aa39db7-3d0d-4a56-af89-63cc2a4a9531", + "pk": "415cdcba-43dd-4243-9210-2457f8763cda", "fields": { - "question": 473, - "contribution": 4046, - "answer": -2, - "count": 1 + "question": 336, + "contribution": 3508, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5aa5a971-f4df-45fb-a71d-5297ad268095", + "pk": "415e6bfc-f8c0-4588-bc15-196f67df381e", "fields": { - "question": 472, - "contribution": 1656, - "answer": 5, - "count": 2 + "question": 346, + "contribution": 1822, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ab6ca99-3fd5-4281-9399-ed755bd54c06", + "pk": "416b91c5-ccaf-46a9-b870-dace281c3f59", "fields": { - "question": 356, - "contribution": 1860, + "question": 337, + "contribution": 1662, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ac11b6a-b21e-4d18-84e5-fa22843b9d26", + "pk": "417fd284-f59b-4bcb-9d15-72c87201f941", "fields": { - "question": 260, - "contribution": 4120, - "answer": 1, - "count": 23 + "question": 345, + "contribution": 841, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ad2154f-4e0a-4ca1-8161-a2d8ca53e59f", + "pk": "4182d888-0175-4ced-be05-c85603ca5fbd", "fields": { - "question": 347, - "contribution": 4161, - "answer": 2, + "question": 317, + "contribution": 3434, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ad7becf-fa38-4dfd-8682-99b95c2b14dd", + "pk": "418e6ab1-fe1c-4975-bad5-772bac8e641f", "fields": { - "question": 357, - "contribution": 1845, - "answer": 4, + "question": 433, + "contribution": 4008, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ad8a3a8-0292-4b73-906e-5fe11007e2d6", + "pk": "4193e49e-8667-4f59-88ad-bd8e375b9bb6", "fields": { - "question": 255, - "contribution": 4052, - "answer": 1, + "question": 348, + "contribution": 4003, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ad95a43-d390-457b-bf3f-e15f73f38266", + "pk": "419b9a26-0df6-4ad1-be8d-fb262d870b64", "fields": { - "question": 327, - "contribution": 3463, - "answer": 2, - "count": 2 + "question": 319, + "contribution": 3390, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5adcc6dd-8f82-4450-926d-0420ad0e0bcd", + "pk": "41a4abe7-8221-4684-882e-937106517ab7", "fields": { - "question": 323, - "contribution": 3665, - "answer": 1, - "count": 4 + "question": 407, + "contribution": 4024, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ae7cba1-7652-41dc-8633-c6a4b3aed2ba", + "pk": "41a4e1df-3496-4651-85a1-0d8a579b2d8d", "fields": { - "question": 348, - "contribution": 3607, - "answer": 3, - "count": 1 + "question": 349, + "contribution": 3728, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5af3107a-08fa-4d21-b333-8e6408bf4ed0", + "pk": "41b9abf5-d8fb-4084-be6b-97cff5dde47b", "fields": { - "question": 326, - "contribution": 4085, - "answer": 4, - "count": 4 + "question": 329, + "contribution": 1288, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5afe7d74-4635-4104-a008-bbfa35b2af5a", + "pk": "41cd61ed-f95a-4364-abfd-9708f87c80f3", "fields": { - "question": 320, - "contribution": 880, - "answer": 2, - "count": 12 + "question": 473, + "contribution": 4128, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b022f1f-ec41-4229-bd3e-b3bbf146fd79", + "pk": "41cdfd29-3b25-4637-a3a0-311b59cbbd99", "fields": { - "question": 336, - "contribution": 1694, + "question": 255, + "contribution": 1612, "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b068c93-e312-4e3a-90ce-c0f96263d0be", + "pk": "41cf093a-3aba-47d1-a6d3-fc93c2facb86", "fields": { - "question": 338, - "contribution": 1660, + "question": 317, + "contribution": 3739, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b07f4a8-60f6-43f8-868a-714b017a1a36", + "pk": "41d67767-4757-41c4-8f58-f615c11c70a0", "fields": { - "question": 257, - "contribution": 4120, + "question": 418, + "contribution": 3974, "answer": 1, - "count": 19 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b127168-105e-4d4c-a60c-02a5d7a45c3d", + "pk": "41d8a60e-4bad-4001-9c99-353b1bcde7c8", "fields": { - "question": 473, - "contribution": 1694, - "answer": 0, - "count": 2 + "question": 340, + "contribution": 1660, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b14c75a-f6c3-4097-a812-3ef08ea3ff9a", + "pk": "41d925ee-3f82-4992-abb8-34389f87a036", "fields": { - "question": 343, - "contribution": 841, - "answer": 1, - "count": 4 + "question": 321, + "contribution": 1668, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b19cf24-7902-4720-855f-7e2cbd7abc50", + "pk": "41e1d859-7c84-44a6-9286-9c93ddbc1bd6", "fields": { - "question": 369, - "contribution": 3918, + "question": 362, + "contribution": 3944, + "answer": 3, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "41ea196d-3a9e-4ba6-9833-da893e3ea7ae", + "fields": { + "question": 257, + "contribution": 4100, "answer": 1, - "count": 2 + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b1d0366-cae7-446d-bd60-dd407a3969f1", + "pk": "41fcf6e6-4d00-4ad3-8fad-4439f37647c4", "fields": { - "question": 472, - "contribution": 868, + "question": 328, + "contribution": 1798, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b248b47-26e8-463c-bb88-5c521b272190", + "pk": "4202f433-274d-4b1c-9ff5-1bbd99d32810", "fields": { - "question": 347, - "contribution": 1202, - "answer": 3, + "question": 257, + "contribution": 4118, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b262741-9ad9-4725-a828-d8beb7d20268", + "pk": "420803c4-e824-4ca3-ad76-d1981e9ed587", "fields": { - "question": 472, - "contribution": 3404, + "question": 360, + "contribution": 3916, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b311f1b-059e-4828-bf2c-a8838a97df57", + "pk": "4209fca8-84da-47e2-9765-aedf3942cc48", "fields": { - "question": 317, - "contribution": 836, - "answer": 1, - "count": 11 + "question": 316, + "contribution": 880, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b32d81d-044e-472f-b200-4c80ba7c8cdd", + "pk": "42189fe6-d815-4ba7-8a97-33b14c131870", "fields": { - "question": 367, - "contribution": 1658, + "question": 329, + "contribution": 3883, "answer": 1, - "count": 9 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b3d3f79-4967-4c50-bd0c-0df244fc6e89", + "pk": "421eda03-0847-4d82-bb3e-4007a4fe43be", "fields": { - "question": 320, - "contribution": 4116, - "answer": 1, - "count": 5 + "question": 260, + "contribution": 1626, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b42434c-36c9-48b4-bd1b-e397cc0e55fa", + "pk": "4220e0c7-3fc9-40f7-8635-deaa86891adf", "fields": { - "question": 258, - "contribution": 3739, - "answer": 4, - "count": 1 + "question": 462, + "contribution": 4141, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b45e714-b2b2-4fb9-9431-35e62a93eddb", + "pk": "4225b544-299d-4145-9c30-b8ab838f4e19", "fields": { - "question": 339, - "contribution": 886, + "question": 428, + "contribution": 4152, "answer": 1, - "count": 4 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b49c811-cafc-4a4a-8bf3-5d935ff1c67f", + "pk": "423191da-8e06-4423-95ab-32ccbab48cd9", "fields": { - "question": 369, - "contribution": 1806, - "answer": 1, - "count": 1 + "question": 473, + "contribution": 3721, + "answer": -2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b4e3901-99ed-4b38-9512-5de4af52d11c", + "pk": "423968e3-0083-4f6a-8a7e-ab9020759875", "fields": { - "question": 335, - "contribution": 4154, - "answer": 2, - "count": 1 + "question": 323, + "contribution": 1626, + "answer": 5, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b58410f-ab81-4a6c-a42d-083b1403385a", + "pk": "423dca1f-8215-4ddc-b3a7-418da75ea510", "fields": { - "question": 346, - "contribution": 3879, - "answer": 1, + "question": 257, + "contribution": 3721, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b65c387-da67-4659-9248-e2a8470c56cf", + "pk": "424906a5-300c-4633-836c-2ae40a83946b", "fields": { - "question": 340, - "contribution": 1638, - "answer": 1, - "count": 3 + "question": 357, + "contribution": 1188, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b6d309d-d9f6-45ec-83ec-48e68a7d0c50", + "pk": "4268c422-1bfd-4c27-b412-f19a7a70ea61", "fields": { - "question": 347, - "contribution": 1870, - "answer": 2, - "count": 1 + "question": 345, + "contribution": 3900, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b6f81b0-4ce0-4d64-b796-6396a97170c9", + "pk": "426b8638-1fad-402f-960a-3c71f03b6665", "fields": { - "question": 325, - "contribution": 3883, - "answer": 2, - "count": 1 + "question": 473, + "contribution": 89, + "answer": -3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b7830ca-d8d6-43d6-8e05-05884a2f959a", + "pk": "426ef0ad-4224-4a94-9bfb-c76a06c07cf5", "fields": { - "question": 473, - "contribution": 3462, + "question": 328, + "contribution": 3530, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b7d35ce-99db-4547-9d7c-f0182e481f23", + "pk": "426f9eda-567d-4794-9b62-2949e0ddee29", "fields": { - "question": 368, - "contribution": 3726, - "answer": 1, - "count": 10 + "question": 434, + "contribution": 4140, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b861f08-d100-4717-92fa-65f2300989aa", + "pk": "42719c0a-c4f4-4796-ad81-97d60b3e14b6", "fields": { - "question": 315, - "contribution": 3422, + "question": 409, + "contribution": 4038, "answer": 2, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5b973400-5f46-4326-b6e0-5800399b0863", + "pk": "427256eb-5a7b-496e-a3c1-49343c26fd11", "fields": { - "question": 341, - "contribution": 3508, - "answer": 2, - "count": 1 + "question": 328, + "contribution": 1779, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5bb94c20-060f-4bc1-b72a-84f6bb42ad08", + "pk": "427b9078-4191-4215-93a8-2ce6fdee32c4", "fields": { - "question": 475, - "contribution": 3440, - "answer": 3, - "count": 2 + "question": 336, + "contribution": 3723, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5bd36e1a-6bf4-4c52-832a-15c36ffe12ba", + "pk": "427e0cb4-3f52-48cc-a571-08af264803fc", "fields": { - "question": 327, - "contribution": 1780, - "answer": 3, + "question": 325, + "contribution": 3884, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5be82eb7-6e5c-4004-9be2-fbe7fe8c11b9", + "pk": "427ed3d2-cee4-44fc-9ff3-4e126a59385f", "fields": { - "question": 476, - "contribution": 3462, - "answer": 1, - "count": 2 + "question": 363, + "contribution": 3944, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5bead6b1-e2a7-4947-9edf-ef47ac6f7f9b", + "pk": "42809973-a0d5-4e82-bbac-902070065bd7", "fields": { - "question": 323, - "contribution": 3390, + "question": 413, + "contribution": 4024, "answer": 5, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5bf3235e-e230-47a7-bbb4-2860f825c7ee", + "pk": "428c5ed9-cfdf-4769-8c2c-b14da2847e2f", "fields": { - "question": 355, - "contribution": 3985, + "question": 315, + "contribution": 4084, "answer": 2, - "count": 1 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c0ccc51-437e-403b-91b7-bcddec7d1479", + "pk": "42983af1-224f-481e-a992-0f034bcac908", "fields": { - "question": 392, - "contribution": 3775, + "question": 354, + "contribution": 4227, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c144c4b-3594-4c55-876a-ed45e3c6b5b5", + "pk": "42a9d834-d3da-4397-90ef-1fc8a6e493ea", "fields": { - "question": 326, - "contribution": 3740, + "question": 341, + "contribution": 3404, "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c1667e4-db6c-4026-9a1e-d298aba74483", + "pk": "42b8be8f-087d-4212-94ba-89bd5ce33b1e", "fields": { - "question": 329, - "contribution": 1776, - "answer": 3, - "count": 2 + "question": 473, + "contribution": 3454, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c1df35a-ce34-40e8-8182-5209beac9283", + "pk": "42b91a65-7aa2-4a62-8501-fa19acf99419", "fields": { - "question": 332, - "contribution": 4156, + "question": 460, + "contribution": 4141, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c234b08-b13e-4257-8493-4eabbd55deef", + "pk": "42bc47d6-928d-47dd-8d57-aeaf2fe10497", "fields": { - "question": 335, - "contribution": 1282, + "question": 368, + "contribution": 3556, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c2b3095-c4ff-487c-af09-adc4b6b847a2", + "pk": "42c1a50f-1683-42ce-a6a2-d6ba774bd295", "fields": { - "question": 336, - "contribution": 4052, + "question": 339, + "contribution": 89, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c39b2b6-4339-42cc-aa94-ad147b3a690f", - "fields": { - "question": 255, - "contribution": 3721, - "answer": 4, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "5c3d22ad-ffd0-4413-a3db-668bc04ecf2a", + "pk": "42cfc0d1-5646-4771-9708-a6223c43a186", "fields": { - "question": 362, - "contribution": 1810, - "answer": 1, - "count": 6 + "question": 349, + "contribution": 3606, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c3f2879-68ce-49fb-87b8-ef4b46657ae9", + "pk": "42d1ea15-fb35-4c58-bad2-1780dbea8b3f", "fields": { - "question": 255, - "contribution": 4138, - "answer": 3, - "count": 8 + "question": 477, + "contribution": 3883, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c543ee9-8a1a-4118-a4e2-63754ed66197", + "pk": "42d73078-847f-41be-8e35-de2b44a12f74", "fields": { - "question": 473, - "contribution": 884, + "question": 464, + "contribution": 4091, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c5807d7-2736-4192-8acd-b7a27eeca1c9", + "pk": "42eaa2b6-2145-4a32-9d64-3170b9045eeb", "fields": { - "question": 345, - "contribution": 3487, + "question": 403, + "contribution": 4119, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c6928f1-fc11-4a41-a4bd-62386978c5cf", + "pk": "42fb9bbc-129b-467b-9987-5b9731c352a0", "fields": { - "question": 327, - "contribution": 3684, + "question": 347, + "contribution": 4187, "answer": 2, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c6af6f1-188a-410d-acb6-824bd18e7bdb", + "pk": "42fc9a6e-c201-42f1-907b-72f31d23a8f4", "fields": { - "question": 319, - "contribution": 4118, + "question": 461, + "contribution": 3786, "answer": 3, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "5c75eb20-d08b-49e7-a900-73a2fb824377", - "fields": { - "question": 351, - "contribution": 4046, - "answer": 4, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c7f779c-9283-4614-bdd4-0654875e715c", + "pk": "4305cfe6-7d15-4599-9d78-2dd88d1bdb22", "fields": { - "question": 319, - "contribution": 3434, + "question": 320, + "contribution": 912, "answer": 2, - "count": 11 + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c80ec4f-28ca-43e3-b96b-15fa07836e5a", + "pk": "430b2ea7-194a-4e64-9428-f860d5ea9f91", "fields": { - "question": 345, - "contribution": 3939, + "question": 344, + "contribution": 4189, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5c859da6-5e31-4f63-b0e6-7eef81959329", + "pk": "430c242d-2fd3-458f-8080-b3fad7589013", "fields": { - "question": 321, - "contribution": 3390, - "answer": 3, - "count": 7 + "question": 417, + "contribution": 3974, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ca25f5b-8ac1-45db-9850-483226c2faef", + "pk": "431cbc5e-43a8-4073-b656-e4255ff4455a", "fields": { - "question": 475, - "contribution": 3745, - "answer": -1, + "question": 341, + "contribution": 1702, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ca2a094-7e7f-4f7c-815d-eabf716d4ea4", + "pk": "431ec0d2-a869-4309-ac36-ff8b9e9787d3", "fields": { - "question": 323, - "contribution": 1626, - "answer": 4, + "question": 327, + "contribution": 3463, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ca56fd5-e624-4a64-a5c5-78c23527b074", + "pk": "43252aed-f474-438f-9fbf-4e77d3b190e6", "fields": { - "question": 341, - "contribution": 1694, - "answer": 3, - "count": 4 + "question": 475, + "contribution": 3486, + "answer": 0, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5cab7453-224f-453e-8e29-66571ca788e6", + "pk": "4326bdf5-0eae-4501-8276-1169e28e68f3", "fields": { - "question": 367, - "contribution": 3474, - "answer": 4, + "question": 362, + "contribution": 3917, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5cb3a759-4f77-4e67-94cf-d51c6e96c4e3", + "pk": "43294264-26fd-485d-a23f-59d06ef0bc81", "fields": { - "question": 337, - "contribution": 868, - "answer": 1, - "count": 3 + "question": 321, + "contribution": 862, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5cb8c8a8-1a98-4719-8fc3-f2b91c5c95ad", + "pk": "432bb84b-06f8-4693-9bcd-55fc634f9bf4", "fields": { - "question": 343, - "contribution": 3546, - "answer": 2, - "count": 3 + "question": 395, + "contribution": 3775, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5cb975fb-c368-44a1-b9c6-51e2b1d9d3ca", + "pk": "43313539-db50-4788-a416-b4de0f890c0c", "fields": { - "question": 463, - "contribution": 4141, + "question": 369, + "contribution": 3919, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5cc6de97-e644-4808-9c45-80a672fcd91d", + "pk": "43335cfa-0e77-4a84-b9e5-69be6a2983ea", "fields": { - "question": 353, - "contribution": 1266, + "question": 339, + "contribution": 3821, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5cd1d890-838d-405e-9652-86e24dd588bb", + "pk": "4335bf37-f396-45e8-9954-1d1479438316", "fields": { - "question": 416, - "contribution": 4038, + "question": 359, + "contribution": 1827, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5cd288fb-1e3a-4c3b-87c8-dadde0bbfc1a", + "pk": "4341ffaa-1590-4895-bbcb-5d44d7811e93", "fields": { - "question": 316, - "contribution": 4128, - "answer": 5, - "count": 3 + "question": 333, + "contribution": 4156, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5cdad687-f110-41da-b4fc-f0ea49c7e23f", + "pk": "43427ff1-5c87-4522-8775-cab978505676", "fields": { - "question": 367, - "contribution": 1837, + "question": 326, + "contribution": 4101, "answer": 1, - "count": 18 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5cdfe90b-7901-4625-af3e-75bbc02fe07e", + "pk": "4348a89d-dab2-4c60-bab4-9011e8911221", "fields": { - "question": 368, - "contribution": 3519, - "answer": 2, - "count": 2 + "question": 343, + "contribution": 919, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ceb205a-cee8-4452-96dd-13387918e7f5", + "pk": "434b02a0-968e-4907-967e-6c735a29ef8c", "fields": { - "question": 338, - "contribution": 3785, - "answer": 2, - "count": 2 + "question": 345, + "contribution": 1869, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5cf0c6aa-6951-4f4b-8220-7eee8720e0b0", + "pk": "434f3124-7ec6-4114-a6f7-ace56ad3aee3", "fields": { - "question": 316, - "contribution": 1626, - "answer": 3, - "count": 9 + "question": 260, + "contribution": 4138, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5cf0d69c-ca44-4bfb-b7e0-ac0088e800d6", + "pk": "43509ae5-535a-4e8c-8048-5df9ae3bc097", "fields": { - "question": 332, - "contribution": 3553, - "answer": 3, + "question": 325, + "contribution": 1681, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d0b3c3e-fe94-4f77-8b8a-216e6a73ce58", + "pk": "43520040-0765-4673-bb99-679bf208d332", "fields": { - "question": 349, - "contribution": 1228, - "answer": 4, + "question": 340, + "contribution": 3372, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d0de47f-ad2f-40c3-877f-3bc9b8285ed1", + "pk": "43538ae7-dca7-4a9a-b99a-875c2f6f4d11", "fields": { - "question": 347, - "contribution": 4233, + "question": 344, + "contribution": 1235, "answer": 1, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d1355ec-cbd6-4135-9063-a38d6e761cbf", + "pk": "4358b3ec-d825-477f-ae99-80a677b800d8", "fields": { - "question": 410, - "contribution": 4024, - "answer": 1, + "question": 350, + "contribution": 804, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d15a917-93a5-469e-973b-bdb35b40c6fd", + "pk": "435eb6b3-8116-4f3a-b162-e29f49f9e9e6", "fields": { - "question": 357, - "contribution": 3607, - "answer": 1, - "count": 3 + "question": 368, + "contribution": 1802, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d352797-0a94-4446-9a0b-27c3512212dd", + "pk": "43690a45-a551-457c-b990-d21501567549", "fields": { - "question": 336, - "contribution": 1200, + "question": 262, + "contribution": 3474, "answer": 5, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d355d81-2a3c-4a98-b71e-12decdaaf6ae", + "pk": "4374ad92-5a8b-4dc9-9395-6ebfd347f01e", "fields": { - "question": 319, - "contribution": 3725, - "answer": 3, - "count": 2 + "question": 477, + "contribution": 4152, + "answer": -2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d3ef292-81bf-49e1-852d-47aaa3d56ddb", + "pk": "437a956d-b81f-4b1e-841a-6fb5a9e6d96f", "fields": { - "question": 316, - "contribution": 3472, - "answer": 1, - "count": 4 + "question": 332, + "contribution": 3553, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d4406e4-eef5-4518-b690-2b30f9d8c1f7", + "pk": "437c0545-2539-43e6-986f-2fec79ba94fd", "fields": { - "question": 353, - "contribution": 3960, - "answer": 1, + "question": 437, + "contribution": 4090, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d5453f3-c657-4365-aadd-185bcbf99303", + "pk": "4382eb15-6712-4239-9c87-943e97279dc3", "fields": { - "question": 328, - "contribution": 3726, - "answer": 5, + "question": 262, + "contribution": 3679, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d599ebd-f73d-476e-8fad-171d3dccc6f3", + "pk": "43845247-b687-436d-aadc-f105b2bc11e2", "fields": { - "question": 360, - "contribution": 1803, + "question": 328, + "contribution": 3666, "answer": 1, - "count": 4 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d5dbe23-13b4-4788-aadc-e21c9dda3c72", + "pk": "4390016b-cb93-4d75-8dfe-a30f099242bd", "fields": { - "question": 363, - "contribution": 1811, - "answer": 5, - "count": 1 + "question": 320, + "contribution": 3434, + "answer": 1, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d637a25-24bb-4384-9ee0-c59a9bb497be", + "pk": "439095e9-1355-4d3a-8816-1ecd79b0a6e9", "fields": { - "question": 347, - "contribution": 3516, - "answer": 2, - "count": 1 + "question": 327, + "contribution": 3589, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d6ba495-f7d1-47ab-b95a-b0fbde9cfd6a", + "pk": "439c6fb3-8151-4ea4-98ea-47638b7f8a9c", "fields": { - "question": 473, - "contribution": 3711, - "answer": 0, - "count": 3 + "question": 327, + "contribution": 4152, + "answer": 2, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d6d22bd-240a-4795-b1c7-e2dd71bacdcd", + "pk": "43b06303-b063-4736-b98c-ee88036ad163", "fields": { - "question": 354, - "contribution": 4039, - "answer": 2, + "question": 460, + "contribution": 4284, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d6fc2dc-d754-400f-9ae4-e1c28bcbc07d", + "pk": "43b0b2a2-e54b-4d1d-a937-0bcb16df3f4d", "fields": { - "question": 472, - "contribution": 3739, + "question": 326, + "contribution": 3435, "answer": 1, - "count": 5 + "count": 29 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d72c6d6-18b4-47c3-b362-e5d8e77117f2", + "pk": "43b5e1f1-fef5-453e-a46c-35b76609ae81", "fields": { - "question": 320, - "contribution": 4022, - "answer": 2, - "count": 1 + "question": 336, + "contribution": 1702, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d7c3eee-d3c7-4bdc-a640-4722e3c63b65", + "pk": "43b720bb-bcec-4069-81b8-76acd697f2ed", "fields": { - "question": 400, - "contribution": 4119, + "question": 316, + "contribution": 912, "answer": 1, - "count": 7 + "count": 24 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d8505e5-d426-42bf-9b92-5920d408acc8", + "pk": "43bb46cf-0e19-4e2f-9b12-a6e7da424fc5", "fields": { - "question": 347, - "contribution": 3606, + "question": 260, + "contribution": 3434, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d851df7-d5c9-4b47-b6ae-8b0fa0a76116", + "pk": "43bc0a73-78c4-49c4-977d-cc50add7562f", "fields": { - "question": 332, - "contribution": 3551, - "answer": 2, - "count": 5 + "question": 475, + "contribution": 3466, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d85bedc-08b4-4e13-8673-3f5c42a4377f", + "pk": "43c08c66-75f6-48fa-a12c-bd7c912317b1", "fields": { - "question": 472, - "contribution": 1694, + "question": 260, + "contribution": 836, "answer": 1, - "count": 3 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d8acdfd-7e15-4afc-b173-ffb791a9d381", + "pk": "43c61c9c-2367-4e71-89e2-67bab2876a95", "fields": { - "question": 476, - "contribution": 1612, - "answer": -2, - "count": 2 + "question": 336, + "contribution": 3795, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d8acf63-26c8-4934-b9b3-f3cb920f68d1", + "pk": "43c648e5-a2fc-4fc9-a27a-54e70e1e3da3", "fields": { - "question": 259, - "contribution": 3434, - "answer": 1, - "count": 2 + "question": 436, + "contribution": 4052, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d8f5cba-c9de-4160-a9d9-f6210275e515", + "pk": "43cfc452-6cec-4caa-9939-cbc8a2170ee4", "fields": { - "question": 319, - "contribution": 3422, - "answer": 4, - "count": 5 + "question": 339, + "contribution": 4072, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5d9eeb0b-fbe1-4b84-abd1-6e58b6ce11fd", + "pk": "43d0916f-5ba5-40ac-bbbe-0e3b821aff20", "fields": { - "question": 258, - "contribution": 3434, - "answer": 3, - "count": 7 + "question": 344, + "contribution": 3855, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5da4eafd-000a-4e9b-b919-3cad2e341709", + "pk": "43d50149-6a8f-4a69-adf7-f8dcd6269816", "fields": { - "question": 255, - "contribution": 3474, - "answer": 5, - "count": 3 + "question": 343, + "contribution": 1870, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5da8ee03-01ac-4f43-9a5a-08bdba1cc0d8", + "pk": "43d5f218-0ab2-483c-a62e-0be72445f1b1", "fields": { - "question": 344, - "contribution": 3545, + "question": 359, + "contribution": 3918, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5db72638-ea18-404e-893c-52ad931c45e0", + "pk": "43dbcac3-e1f5-4da7-8025-0bf13d95cf7f", "fields": { - "question": 354, - "contribution": 1256, - "answer": 1, - "count": 7 + "question": 431, + "contribution": 4041, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5db8b247-7744-4f56-bada-3e4efb12aa72", + "pk": "43dc8e32-93dc-49c4-bb26-6866046d214c", "fields": { - "question": 477, - "contribution": 3435, + "question": 367, + "contribution": 3394, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5dc3e2fc-a9d7-48ae-8b46-8ca85bf4c433", + "pk": "43e99451-e943-46a9-b591-cfd05e456159", "fields": { - "question": 336, - "contribution": 804, - "answer": 2, - "count": 4 + "question": 326, + "contribution": 4101, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5dd99125-56ac-4921-9c5f-7c75cd7fc270", + "pk": "43eb1b23-0289-440a-8cb0-42443455e41c", "fields": { - "question": 348, - "contribution": 4188, + "question": 435, + "contribution": 4008, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ddab872-9363-48c0-9f02-a29dd22a2401", + "pk": "43f05584-93f9-42e3-8683-9bdb40dc4156", "fields": { - "question": 317, - "contribution": 3739, - "answer": 5, - "count": 2 + "question": 339, + "contribution": 886, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ddc174b-8baf-454c-8edc-38c74ea63132", + "pk": "43f2f8f0-523f-4750-98e3-a3398701283b", "fields": { - "question": 255, - "contribution": 862, + "question": 343, + "contribution": 3895, "answer": 1, - "count": 9 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "5ddceed9-8699-4b19-8e84-9a2c31d02437", - "fields": { - "question": 332, - "contribution": 4155, - "answer": 5, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5de6dea8-8093-4f8a-9807-22f7884df055", + "pk": "43f7752e-7757-4a8b-a1c8-4316c8193576", "fields": { - "question": 374, - "contribution": 3755, - "answer": 2, - "count": 1 + "question": 368, + "contribution": 1779, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e044cf9-4824-47da-bdc9-bd329ff0e3f8", + "pk": "43f8e75f-a5f1-4ecc-b346-1a7a644d27df", "fields": { - "question": 355, - "contribution": 4266, + "question": 255, + "contribution": 4046, "answer": 1, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e1e0102-8b8d-4f97-a6e8-132a04ea4a1e", + "pk": "43fe5c87-2d89-41b2-8f60-0c68a8fc57a9", "fields": { - "question": 332, - "contribution": 3882, + "question": 343, + "contribution": 3941, "answer": 1, - "count": 8 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e1e17f0-4372-4cf3-b8ff-dbf20d47bb02", + "pk": "43feb0c2-e555-433b-ad33-a64e5c9b9dd3", "fields": { - "question": 341, + "question": 473, "contribution": 3372, - "answer": 4, - "count": 1 + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e21b1a9-4e0f-460c-a72c-87b936fc0e97", + "pk": "43fecaab-e1f8-4041-9979-8369aa969760", "fields": { - "question": 344, - "contribution": 4161, - "answer": 4, + "question": 349, + "contribution": 1157, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e24455d-a5af-4b21-a4d4-3329a8934fba", + "pk": "43ff340e-6862-40c1-8a00-ecabeee501b4", "fields": { - "question": 349, - "contribution": 4129, + "question": 315, + "contribution": 3390, "answer": 3, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e2bf5ba-8225-4192-8d17-07001a988c8e", + "pk": "44312586-f232-443e-af63-3e59e271c4b5", "fields": { - "question": 337, - "contribution": 3785, + "question": 319, + "contribution": 3721, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e2c44b8-629e-4cc0-90f9-b33044c0e27e", + "pk": "44313ed3-1666-4285-b7ba-9b89f643f4ec", "fields": { - "question": 476, - "contribution": 1724, - "answer": 0, - "count": 3 + "question": 428, + "contribution": 4261, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e3491ef-9c0b-446a-b0c0-34e8efacc055", + "pk": "44350903-1d94-43f9-a00d-bea2a50953d9", "fields": { - "question": 339, - "contribution": 3372, - "answer": -1, - "count": 1 + "question": 349, + "contribution": 919, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e4ad4f7-b10f-4d47-8805-953dc45e7402", + "pk": "444a6101-366c-4c7f-9582-f47871fbda22", "fields": { - "question": 317, - "contribution": 880, - "answer": 5, - "count": 7 + "question": 345, + "contribution": 887, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e68eb06-ba5b-47be-84eb-3512c6def826", + "pk": "444c65a8-96af-4e43-b117-e015bf397676", "fields": { - "question": 259, - "contribution": 884, - "answer": 4, - "count": 2 + "question": 328, + "contribution": 1613, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e6bb124-cd06-43ee-b2f1-e35ada9c94c6", + "pk": "4453f296-b011-426e-b03b-78e04baa3bfb", "fields": { - "question": 259, - "contribution": 836, - "answer": 1, - "count": 17 + "question": 329, + "contribution": 4085, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e6ec0ee-a994-4028-bcc3-ce26e0710529", + "pk": "44545421-2be6-4e0b-9d39-02cce454fc2f", "fields": { - "question": 357, - "contribution": 4227, - "answer": 1, - "count": 2 + "question": 348, + "contribution": 3796, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e877050-92d2-4c5c-8852-71fe1d03f62c", + "pk": "44550643-a44c-4474-b64b-f1857f766183", "fields": { - "question": 414, - "contribution": 3974, + "question": 341, + "contribution": 1656, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e8e31fc-b6ad-47cc-8687-6639ed3f0bf3", + "pk": "445726e4-4703-43e2-b540-a4319699b4a1", "fields": { - "question": 327, - "contribution": 3726, - "answer": 5, - "count": 1 + "question": 349, + "contribution": 4123, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5e9993a7-d9e0-4f63-b1f1-c65432ae1ee8", + "pk": "44574629-33f9-4f10-8564-b8ac5f0b7eff", "fields": { - "question": 477, - "contribution": 1779, + "question": 343, + "contribution": 1645, "answer": 1, - "count": 5 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ea9308c-fc7a-436a-8dad-348a2ef89699", + "pk": "445b1d98-a022-41cd-be82-ea26882b8a5d", "fields": { - "question": 477, - "contribution": 1154, + "question": 346, + "contribution": 1868, "answer": 1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5eb0b3aa-56a0-42e0-89bf-d977d6d12669", + "pk": "445d2d49-5542-4f08-9c62-65f8f6742249", "fields": { - "question": 328, - "contribution": 3519, - "answer": 1, - "count": 6 + "question": 473, + "contribution": 1694, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5eb115af-498c-4883-ab6d-d4e683e6b83b", + "pk": "446eb1b9-e3c3-4ca7-91a3-e5e2806d7c4e", "fields": { - "question": 341, - "contribution": 3466, - "answer": 3, + "question": 325, + "contribution": 3391, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ebfacd1-6661-4597-a98b-c135616dd089", + "pk": "447474dc-35d4-4171-b272-3e3d34d8069d", "fields": { - "question": 360, - "contribution": 1810, + "question": 357, + "contribution": 1783, "answer": 1, - "count": 10 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ed02f07-5a81-4b65-987e-7cdb2f6bf56a", + "pk": "447b26ca-bd1f-4ca1-a3e3-267b1f4e4221", "fields": { - "question": 337, - "contribution": 3482, + "question": 347, + "contribution": 1246, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5edeb486-6e75-43ba-8874-a868466f41d6", + "pk": "447ec59f-8439-4ecb-b2fd-6db3b61bbbe6", "fields": { - "question": 258, - "contribution": 4022, + "question": 326, + "contribution": 3407, "answer": 1, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f066acd-8a37-4592-b513-a2f844aefa8a", + "pk": "447f4000-8c22-4660-ac97-639a6726767a", "fields": { - "question": 320, - "contribution": 3683, - "answer": 3, + "question": 343, + "contribution": 3518, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f104caa-fbb7-4dc3-83de-d5811002a6c1", + "pk": "447f9f5e-c500-48c2-85e0-415a01d5d512", "fields": { - "question": 336, - "contribution": 4002, + "question": 464, + "contribution": 4141, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f1cbfe0-04c5-4a8e-8d52-8744a38929da", + "pk": "4488c5d2-f71f-43bf-a6b9-699fb5ea4b7e", "fields": { - "question": 346, - "contribution": 1203, + "question": 335, + "contribution": 3566, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f1eb5e2-65cc-4222-af24-45d24f767b10", + "pk": "44a15336-2973-4a29-8e4e-c2b1634ac50b", "fields": { - "question": 257, - "contribution": 1634, - "answer": 1, - "count": 13 + "question": 339, + "contribution": 862, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f28808d-31be-4d35-a031-d8af1ce27032", + "pk": "44ba8e83-8556-4c61-a210-253801266fd8", "fields": { - "question": 361, - "contribution": 1825, - "answer": 2, - "count": 1 + "question": 345, + "contribution": 4129, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f2c93a4-3aac-46f3-bae3-591f738cce92", + "pk": "44bdcaea-3ebc-44bd-ad3a-879b75bf3a8f", "fields": { - "question": 335, - "contribution": 3598, - "answer": 4, - "count": 1 + "question": 348, + "contribution": 1663, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f31c2e1-e5a8-47c5-b050-3f37d45c732c", + "pk": "44ca57e8-c7d2-49fc-980f-7ae80c2ac2d2", "fields": { - "question": 257, - "contribution": 4116, - "answer": 4, + "question": 339, + "contribution": 858, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f3fcb07-ae50-4661-8b70-49489b3cb136", + "pk": "44dab50b-865a-43a3-8a40-ca2a304b1d33", "fields": { - "question": 336, - "contribution": 3466, - "answer": 3, - "count": 1 + "question": 389, + "contribution": 3775, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f44ab34-d5fa-41d7-ae8f-98ab8e1454aa", + "pk": "44e12f90-837d-4c13-8aa4-edc7c2abc5d0", "fields": { - "question": 346, - "contribution": 1249, - "answer": 1, - "count": 2 + "question": 343, + "contribution": 1735, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f46b89b-df9d-4814-bdb5-cc91ef2a89fa", + "pk": "44ee15b7-7830-45dd-988c-d851760ac3a6", "fields": { - "question": 349, - "contribution": 3373, - "answer": 4, - "count": 1 + "question": 345, + "contribution": 1851, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f4b1ba9-a5eb-43b0-a8af-4ad17231c378", + "pk": "44f1d686-24fa-44dc-9499-2b6854e44b74", "fields": { - "question": 336, - "contribution": 4002, + "question": 328, + "contribution": 1779, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f4c092b-42a1-4084-b1a8-7ac91b3211d2", + "pk": "44f3b401-670d-4c81-87e5-3bfdc02db257", "fields": { - "question": 329, - "contribution": 1681, + "question": 383, + "contribution": 3775, "answer": 3, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f55b7b5-a9bd-49b9-9783-d235f15bae26", + "pk": "45001479-9947-4603-b33c-a83e9aff22c0", "fields": { - "question": 343, - "contribution": 3518, + "question": 325, + "contribution": 1287, "answer": 1, - "count": 4 + "count": 29 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f58aea5-4940-4265-8bc6-99267ceef02d", + "pk": "45023c7d-54ae-43ff-9538-0462654d39f1", "fields": { - "question": 475, - "contribution": 3454, - "answer": 0, - "count": 3 + "question": 473, + "contribution": 880, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f5b1a20-a22c-4b49-80e0-71a173380bf6", + "pk": "4503d0c5-a8e3-4b7b-a71b-0c25c0845625", "fields": { - "question": 329, - "contribution": 4152, - "answer": 3, - "count": 13 + "question": 477, + "contribution": 3883, + "answer": 0, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f62ef43-d520-4d3d-a538-bd95472b5ada", + "pk": "450913f4-8aa0-4192-b36b-d21c70914a3d", "fields": { - "question": 319, - "contribution": 1612, - "answer": 5, - "count": 1 + "question": 357, + "contribution": 3517, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f6cc6f2-0b17-4e79-8aea-5737c6b37ce9", + "pk": "450b6189-e229-4bfd-b5a8-7762bbbf5923", "fields": { - "question": 257, - "contribution": 1612, + "question": 363, + "contribution": 1825, "answer": 1, - "count": 17 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f71ab8d-31cb-434e-b0ad-72a7516cfb2e", + "pk": "450da554-9f45-4c08-bbb8-59a44ee6f33d", "fields": { - "question": 326, - "contribution": 3519, - "answer": 3, - "count": 1 + "question": 472, + "contribution": 3683, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f7cc076-9f2e-4fd9-a405-eb4a439b288e", + "pk": "45101984-2448-4118-955c-0de8bbb77769", "fields": { - "question": 401, - "contribution": 4177, - "answer": 1, - "count": 4 + "question": 349, + "contribution": 1246, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5f813c68-574d-48ba-b2c5-883ddf57df7a", + "pk": "451dc205-40db-4f43-92f1-27484943940f", "fields": { - "question": 333, - "contribution": 1884, - "answer": 1, - "count": 4 + "question": 344, + "contribution": 3516, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5fa584c3-a55b-41c5-af73-1a9ef6cc9f23", + "pk": "4523354f-abb5-4251-92a0-047e4d8745a2", "fields": { - "question": 259, - "contribution": 4084, - "answer": 2, - "count": 17 + "question": 320, + "contribution": 4120, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5fadde17-0587-465a-beae-ddf63bc3b085", + "pk": "452613c1-5359-432c-96ca-41aec31654c3", "fields": { "question": 344, "contribution": 3899, - "answer": 5, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5faf3efc-873c-4974-b1e6-581718dcd0da", + "pk": "453bdd63-cae1-46ff-8785-9f52e3b314db", "fields": { - "question": 321, - "contribution": 4084, - "answer": 2, - "count": 14 + "question": 435, + "contribution": 4052, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5fb405e4-12f7-4560-b15e-80be788ad7c9", + "pk": "454b0102-3b8b-4d16-b455-998dec881861", "fields": { - "question": 344, - "contribution": 1228, + "question": 346, + "contribution": 3515, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5fb4c499-bd4d-4539-b79c-1c65f49de0cb", + "pk": "454c6ae4-db78-46f6-a073-7e03483778cc", "fields": { - "question": 339, - "contribution": 1656, - "answer": -1, - "count": 2 + "question": 336, + "contribution": 3486, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5fb73617-188a-4499-86f8-d1186323fbc4", + "pk": "454d650b-9045-4ede-be76-5bce41893768", "fields": { - "question": 352, - "contribution": 788, - "answer": 4, + "question": 320, + "contribution": 4022, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5fbd757e-a208-48c3-99c8-a3a9c0ed9dd7", + "pk": "455d783e-92c2-4d4b-a0e9-965b62fe7612", "fields": { - "question": 333, - "contribution": 3552, + "question": 321, + "contribution": 1837, "answer": 4, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5fbe8973-7d77-41ae-85da-8d7406007c9b", + "pk": "456271f0-9864-4acd-b62c-8e01d13753b8", "fields": { - "question": 406, - "contribution": 4024, + "question": 339, + "contribution": 1638, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5fc73d9a-627a-4d87-91b3-a7d7367d0770", + "pk": "4575b21d-06fc-4753-b299-8f046e8cb218", "fields": { - "question": 341, - "contribution": 3482, + "question": 343, + "contribution": 3525, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5fcf3f7b-5b45-4fda-90f5-7737f4193443", + "pk": "457dc2fb-9480-4666-b789-8a10b0045ef7", "fields": { - "question": 262, - "contribution": 3390, - "answer": 3, - "count": 5 + "question": 369, + "contribution": 3942, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5fd2d636-4660-42b4-a169-6e6e7a74ed79", + "pk": "458612a5-2a02-4981-af4a-e7768805f3a1", "fields": { - "question": 438, - "contribution": 4090, - "answer": 4, - "count": 1 + "question": 476, + "contribution": 3390, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5fe856eb-6cab-473d-9dda-21ae60a01cd8", + "pk": "4595ffd6-2faa-431a-9665-b9473998c956", "fields": { - "question": 258, - "contribution": 4116, - "answer": 1, - "count": 4 + "question": 353, + "contribution": 1782, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5febfd8b-06e8-4342-a5b2-be4f528c1ca8", + "pk": "45977575-e34e-4b84-ba63-5f92262a768d", "fields": { - "question": 348, - "contribution": 1860, - "answer": 1, - "count": 5 + "question": 371, + "contribution": 1884, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ff0c46a-4030-4d87-95f8-05fa5eecd9f3", + "pk": "45a1d577-c27e-4fde-a948-f2baa11c0db2", "fields": { - "question": 369, - "contribution": 1835, - "answer": 1, - "count": 5 + "question": 326, + "contribution": 3391, + "answer": 5, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "5ff77953-013e-47b4-b0dd-02454b38ef5d", + "pk": "45ac32e7-ae6c-4e50-b764-25537e6ab9ce", "fields": { - "question": 317, - "contribution": 4118, - "answer": 3, + "question": 477, + "contribution": 3722, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60070015-7b00-4c9d-8df6-fa2ad0617dee", + "pk": "45ace63a-3d38-4d7b-b0b6-4777b52c2c88", "fields": { - "question": 317, - "contribution": 3390, - "answer": 4, - "count": 7 + "question": 349, + "contribution": 4190, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "600780d5-f6e6-4783-97e7-37f9b2316753", + "pk": "45bde605-18f9-4a10-b602-f9ddb32a1392", "fields": { - "question": 338, - "contribution": 3404, - "answer": 5, - "count": 1 + "question": 316, + "contribution": 3422, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60111f1f-9c5e-42a4-b048-44fe4323660a", + "pk": "45c1adb1-3601-412b-93ec-96c87ef27270", "fields": { - "question": 316, - "contribution": 3390, - "answer": 3, - "count": 10 + "question": 344, + "contribution": 3373, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60177eb3-a870-4d5d-9956-db7a945dc87c", + "pk": "45d6b7ad-f7c0-49b5-b159-a80f12c794a9", "fields": { - "question": 259, - "contribution": 3721, + "question": 348, + "contribution": 1206, "answer": 1, - "count": 12 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "601a45fe-08e3-4102-8502-10cd0a58f31e", + "pk": "45deecaf-8888-42be-b9ca-a248ebd6016c", "fields": { - "question": 322, - "contribution": 4100, - "answer": 5, - "count": 1 + "question": 349, + "contribution": 1881, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6022195f-c6b9-42b2-afb2-e717d17135e1", + "pk": "45e28885-ffce-4f15-83bb-12858ab56486", "fields": { - "question": 352, - "contribution": 832, + "question": 344, + "contribution": 1870, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6026b31a-fc7a-4e86-bed4-86963b8a3ff8", + "pk": "45eda9ad-7887-47f6-9f36-e71708ca3783", "fields": { - "question": 329, - "contribution": 3680, - "answer": 4, - "count": 2 + "question": 472, + "contribution": 1660, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60278681-7d56-4c92-9393-e25a2c1701fc", + "pk": "45f2ffc8-2b41-4c70-b490-4af31630794f", "fields": { - "question": 345, - "contribution": 1867, + "question": 260, + "contribution": 3739, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "602c0ac0-4e0c-457e-8faf-bee83a46a6f7", + "pk": "45f88ae5-92ac-4942-a645-497cfc95e5b3", "fields": { - "question": 317, - "contribution": 912, - "answer": 4, - "count": 1 + "question": 477, + "contribution": 3726, + "answer": 0, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "602f91ce-a599-45b4-a249-ec47422d4c0d", + "pk": "4603d210-5d0b-428d-b050-c97afb4d020d", "fields": { - "question": 322, - "contribution": 4028, + "question": 258, + "contribution": 4046, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60386ce3-5b2c-4a63-b7a6-5ef527777e1a", + "pk": "46063073-0e19-4731-81bb-4f54481b52a6", "fields": { - "question": 350, - "contribution": 3440, - "answer": 1, - "count": 3 + "question": 346, + "contribution": 3608, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6038da23-cfbb-4d66-8065-ab0858753fe9", + "pk": "460b1354-75f7-48e7-b40f-0b93e5505a1e", "fields": { - "question": 338, - "contribution": 4052, + "question": 327, + "contribution": 4101, "answer": 5, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "603c0a3d-db5e-45c2-9c4e-e36457aa6058", + "pk": "4618ad6c-906d-4456-a95c-6716c57dc79d", "fields": { - "question": 473, - "contribution": 4020, - "answer": 0, - "count": 2 + "question": 357, + "contribution": 3776, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "603ed937-15ae-4dbf-99ab-61e5404b6b2e", + "pk": "461aac64-2b4c-427e-b9db-46cf231df989", "fields": { - "question": 316, - "contribution": 1612, + "question": 317, + "contribution": 1626, "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60403a8a-3538-4702-a1fe-98cdda006b48", - "fields": { - "question": 336, - "contribution": 1644, - "answer": 2, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "6048d7dd-39ee-4535-a3ba-02b42533a414", + "pk": "46246b9e-800f-4d1c-a527-90417e269572", "fields": { - "question": 473, - "contribution": 4052, + "question": 472, + "contribution": 858, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "604c614f-024b-43cf-bdc5-9ffadcbb2cc7", + "pk": "4625b986-6c88-4712-bced-a2b8e518af67", "fields": { - "question": 397, - "contribution": 3781, + "question": 363, + "contribution": 1805, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6057e2b0-82b0-4c7d-9f34-bd4bf4d5ca7d", + "pk": "4629cf8f-c310-4ebc-8d50-c3c6d5cca2c9", "fields": { - "question": 333, - "contribution": 1217, + "question": 477, + "contribution": 881, "answer": 2, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60586c0a-ce7f-42c9-aaf1-8d37e3df6183", + "pk": "4630b125-77de-4080-acc7-351d8cd41faf", "fields": { - "question": 328, - "contribution": 3684, - "answer": 1, - "count": 1 + "question": 320, + "contribution": 908, + "answer": 4, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "605fea86-b017-4ccc-a67a-a39f2ddc45cd", + "pk": "46492723-2074-4c2f-be23-9c1196988627", "fields": { - "question": 328, - "contribution": 1613, - "answer": 4, - "count": 2 + "question": 475, + "contribution": 3466, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "606caa8d-63e7-42cb-87df-4ce41c1d731a", + "pk": "464ac186-79c2-4ba9-9ef4-30f6bf3523f8", "fields": { - "question": 367, - "contribution": 3739, - "answer": 3, - "count": 1 + "question": 335, + "contribution": 4154, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60745a27-7cc7-4947-8c39-1f366e8adbc8", + "pk": "46559aca-9ca9-40a9-b287-662d3883d803", "fields": { - "question": 343, - "contribution": 3546, + "question": 345, + "contribution": 3367, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "609199ac-4e6b-447b-8369-3f00bdf9470b", + "pk": "4663418d-1cd5-48e0-8055-1d262830b02b", "fields": { - "question": 327, - "contribution": 3423, + "question": 368, + "contribution": 1681, "answer": 1, - "count": 8 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6094a4c0-24c2-4bbf-83a2-ef4311367d56", + "pk": "4666bf6b-6c8d-4c76-8e6e-a28589facc7b", "fields": { - "question": 322, - "contribution": 4118, + "question": 349, + "contribution": 1843, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60d003a2-0567-4176-91a4-e7ca7714a212", + "pk": "466be424-0939-4d74-9020-0020789c7779", "fields": { - "question": 316, - "contribution": 836, - "answer": 2, - "count": 4 + "question": 327, + "contribution": 3407, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60d39152-3fc8-4640-89c5-aba5896ee767", + "pk": "466fc6d1-64ad-4418-9bbd-e5b54b2b3121", "fields": { - "question": 350, - "contribution": 4022, + "question": 368, + "contribution": 1777, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60d6d694-6138-4f70-9eee-1806e52ccdf9", + "pk": "4677647a-2319-4b09-907e-9f0b1f4e7532", "fields": { - "question": 345, - "contribution": 1235, + "question": 317, + "contribution": 912, "answer": 1, - "count": 6 + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60dd27b6-9618-4685-9710-99f58ea42a45", + "pk": "4683f5e3-6cb8-409c-84a5-be41dc4fb3bf", "fields": { - "question": 262, - "contribution": 1634, - "answer": 2, - "count": 4 + "question": 321, + "contribution": 1626, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60e1a269-ac0f-442f-a3fa-d2b75dcc5bcb", + "pk": "46885403-fe13-49dd-bb47-045ee2ddab5a", "fields": { - "question": 359, - "contribution": 3918, + "question": 338, + "contribution": 3693, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60e1decc-1d9b-4374-b36b-3118620cebf2", + "pk": "46976d0d-8f58-4f12-92de-8d6b4475abcb", "fields": { - "question": 322, - "contribution": 880, + "question": 321, + "contribution": 912, "answer": 3, - "count": 7 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60e2c9b9-a516-4e5e-81b1-94b664cda590", + "pk": "469bcbd2-5ea4-4fc5-a261-6b7c9de0fd01", "fields": { - "question": 259, - "contribution": 3434, - "answer": 3, - "count": 3 + "question": 340, + "contribution": 3795, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60e5c407-51c3-43b9-95d8-17140aacab70", + "pk": "469cc3ef-9425-48f2-af3a-af1149cc0ee1", "fields": { - "question": 473, - "contribution": 3390, - "answer": 1, - "count": 2 + "question": 259, + "contribution": 822, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60f01ade-1652-4a30-80f7-15fd8ebe4459", + "pk": "46b6dba5-74f8-45f6-a91a-5a2dc660ff97", "fields": { - "question": 338, - "contribution": 4122, - "answer": 4, + "question": 372, + "contribution": 3466, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "60f96f9b-f55c-41cd-83c9-f90deac52eff", + "pk": "46c06aa8-d27a-42ce-aee5-d1176fa7082e", "fields": { - "question": 329, - "contribution": 1635, - "answer": 3, + "question": 332, + "contribution": 4154, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "610dbd2a-8a09-4d78-a72f-bfc617535385", + "pk": "46c8c204-4ec7-4882-bbc2-3555f7a23d99", "fields": { - "question": 352, - "contribution": 3759, - "answer": 1, + "question": 345, + "contribution": 1206, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "610e400c-7ef5-4c27-a3d4-08c226277da5", + "pk": "46d9745f-e61a-49bc-bd8c-17c611d22b4b", "fields": { - "question": 370, - "contribution": 4039, - "answer": 1, + "question": 367, + "contribution": 3721, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61120cbf-de80-4a77-a9a5-8f45dc0fd4e8", + "pk": "46da475e-93da-4a6d-acc7-c92acf5a480f", "fields": { - "question": 325, - "contribution": 913, - "answer": 3, - "count": 2 + "question": 477, + "contribution": 4153, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6113ab6c-47bc-4e02-959c-57c9432d6d90", + "pk": "46db23b3-a274-4205-a71e-fb8fa4e477e8", "fields": { - "question": 362, - "contribution": 3919, - "answer": 1, + "question": 329, + "contribution": 1777, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6121cf36-3f90-469f-b375-9677386fe435", + "pk": "46e21d08-0d87-4cff-9d39-1f29444331d8", "fields": { - "question": 361, - "contribution": 1804, - "answer": 1, - "count": 9 + "question": 437, + "contribution": 3976, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "612abd14-eaad-4707-92e0-5d32a94577b6", + "pk": "470b9266-d1c9-4b84-94d3-5851176fd2c5", "fields": { - "question": 367, - "contribution": 4138, - "answer": 4, - "count": 11 + "question": 320, + "contribution": 864, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "612c748c-4a78-47b8-9928-2ff34e605ba8", + "pk": "471737f9-ec0a-43ce-8011-cd7954f37927", "fields": { - "question": 367, - "contribution": 4084, - "answer": 4, - "count": 2 + "question": 346, + "contribution": 3516, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "612de9ab-4c86-4379-930b-aeae42dfb4e0", + "pk": "471ca60b-ef6f-4738-a56d-35850054c1b5", "fields": { - "question": 477, - "contribution": 3740, - "answer": 1, - "count": 1 + "question": 331, + "contribution": 884, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6133795d-9302-42ed-92d8-6091b5e66bde", + "pk": "471f3014-6b68-4a06-8e61-412f9c1e4974", "fields": { - "question": 335, - "contribution": 4155, - "answer": 1, - "count": 9 + "question": 354, + "contribution": 1844, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "613afbb6-a61a-4440-8fa7-e50f6fcf53d8", + "pk": "47267b0b-648e-4c1f-bd66-de96156d7da7", "fields": { - "question": 346, - "contribution": 1863, - "answer": 1, - "count": 1 + "question": 460, + "contribution": 4283, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "613ccd92-aa11-46ea-a9d3-ac8f506283b8", + "pk": "473b0b0f-8bfb-48a7-9e2f-f4ad38498b2e", "fields": { - "question": 473, - "contribution": 804, + "question": 346, + "contribution": 3890, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61444237-cc52-4c5f-acf9-f48cad607c1a", + "pk": "473c2d1d-5e11-4201-a94b-aeafa9af900e", "fields": { - "question": 329, - "contribution": 837, - "answer": 1, - "count": 9 + "question": 475, + "contribution": 3785, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61503514-535c-4940-b996-0420f4493b8a", + "pk": "473d6189-d71d-4e6d-b170-e00f831d5b66", "fields": { - "question": 361, - "contribution": 3648, + "question": 345, + "contribution": 3517, "answer": 1, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6153b3c2-8d1a-4c3d-9ac7-e586ca4526bc", + "pk": "473da7ba-c147-476e-8ca4-241f06336e65", "fields": { - "question": 366, - "contribution": 3936, + "question": 347, + "contribution": 1874, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "616077d6-f820-41d2-bb45-ce07c6f44cab", + "pk": "473ecbfb-1877-4883-a518-5a7eb68a953c", "fields": { - "question": 326, - "contribution": 1635, - "answer": 5, - "count": 1 + "question": 346, + "contribution": 3607, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "616a77c1-1f5a-41ac-9963-724637933c09", + "pk": "474c0d71-e664-47d1-9be8-7df90867d6a4", "fields": { - "question": 326, - "contribution": 4152, + "question": 402, + "contribution": 3646, "answer": 2, - "count": 22 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61738f1d-397b-4183-81b4-a83de5ae9633", + "pk": "475472a3-0696-443f-ae30-01774ee7dd13", "fields": { - "question": 257, - "contribution": 1626, - "answer": 2, - "count": 7 + "question": 328, + "contribution": 1669, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6176b973-4397-43fc-bedb-3d8179db13f0", + "pk": "4758358c-3279-4348-bd15-40d9c3af0efb", "fields": { - "question": 327, - "contribution": 3435, + "question": 345, + "contribution": 1872, "answer": 1, - "count": 32 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "617d5859-22ea-4f5a-aed8-796b7c12da53", + "pk": "475d83a5-a241-457a-8187-d31cd58f7c45", "fields": { - "question": 328, - "contribution": 1776, - "answer": 2, - "count": 8 + "question": 401, + "contribution": 4041, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "617edd56-37e6-477d-b864-9810c325a205", + "pk": "475f0196-7ec4-490f-906a-49ebe5f51e46", "fields": { - "question": 329, - "contribution": 3885, - "answer": 1, - "count": 4 + "question": 317, + "contribution": 4128, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61a1e710-9edc-495d-a001-c48b02124001", + "pk": "475f3ce6-1246-4223-83e2-6e7abd7080f1", "fields": { - "question": 322, - "contribution": 4100, - "answer": 1, - "count": 5 + "question": 363, + "contribution": 1812, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61a328ce-8e0e-43a5-b98e-4b4e7f1c55fe", + "pk": "476b98f7-9269-4650-88f9-41e0f74406bb", "fields": { - "question": 346, - "contribution": 3383, + "question": 384, + "contribution": 3711, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61b31df6-ba53-456e-96c5-03a8d4d0b8c7", + "pk": "476e910a-e694-4733-9104-8f1514fab2ac", "fields": { - "question": 326, - "contribution": 4023, + "question": 366, + "contribution": 3566, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61bbe3c6-cf87-4924-be23-e223a106a335", - "fields": { - "question": 473, - "contribution": 3394, - "answer": 0, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "61be5fa0-cf58-4cc5-9112-0fd05cac5b1b", + "pk": "4770b832-9b2b-4238-811b-454e20c9b961", "fields": { - "question": 321, - "contribution": 4138, - "answer": 3, - "count": 9 + "question": 316, + "contribution": 4100, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61c565af-ace0-4b1e-91c8-4010e4bf5be6", + "pk": "478a0881-ac7c-4672-a074-6774c6fcb1eb", "fields": { - "question": 320, - "contribution": 4116, - "answer": 3, - "count": 5 + "question": 473, + "contribution": 3406, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61e2d2ba-5115-4fdd-a908-9fab8f6217a1", + "pk": "478e614f-ec5f-4a2a-82e0-b16cf231b4e5", "fields": { - "question": 355, - "contribution": 1860, + "question": 262, + "contribution": 836, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61e49b7c-64d5-4a69-8332-288fccf0dda0", + "pk": "47a7a1a2-ddcf-4a4e-aaf8-8fb02d713e41", "fields": { - "question": 348, - "contribution": 3518, + "question": 368, + "contribution": 1613, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61f31629-8238-4f27-9e58-93c9aa6f56bc", + "pk": "47bb607e-8539-4f54-b44b-15416de9f188", "fields": { - "question": 345, - "contribution": 3515, - "answer": 2, - "count": 3 + "question": 329, + "contribution": 3556, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61f5503f-a5ae-4fbb-9dba-424df48e4688", + "pk": "47c653a6-f121-483c-aa40-33e85a87936e", "fields": { - "question": 363, - "contribution": 3917, - "answer": 2, + "question": 347, + "contribution": 4189, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "61f7301a-aaf2-4de8-a6ba-b8dbb94594c8", + "pk": "47cec923-f1d7-48b4-9b8d-44eafce0143f", "fields": { - "question": 315, - "contribution": 4028, - "answer": 1, - "count": 9 + "question": 345, + "contribution": 3373, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "620bc94c-8f05-4b3d-89f8-93d33e01ce7a", + "pk": "47e178e2-bf11-4355-9ff1-0663a88dd4d1", "fields": { - "question": 461, - "contribution": 3786, - "answer": 1, - "count": 1 + "question": 352, + "contribution": 804, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6217b63d-5fda-44cb-962a-b033600f46d7", + "pk": "47e5d73d-3f57-4a31-8cf4-7d9bdd01e3a9", "fields": { - "question": 356, - "contribution": 1786, + "question": 353, + "contribution": 3923, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62196188-d574-451f-9995-68731b9b1010", + "pk": "47e5da27-058c-47a9-b51d-e066b0408ce5", "fields": { - "question": 327, - "contribution": 881, - "answer": 4, - "count": 9 + "question": 472, + "contribution": 804, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "621f8fae-6a2f-4d32-8733-5484dd731531", + "pk": "47e674bd-96cb-455b-ad2b-7d06b70c2c98", "fields": { - "question": 477, - "contribution": 1778, - "answer": 1, - "count": 3 + "question": 260, + "contribution": 3739, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6224a942-cdbf-4305-ae1a-950d234d118d", + "pk": "47e85ff4-b68c-4bda-9422-558d72f01148", "fields": { - "question": 258, - "contribution": 4128, + "question": 367, + "contribution": 1837, "answer": 2, - "count": 5 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "623039aa-df13-43da-95cb-b0dd3f22ba78", + "pk": "47e9a137-f04f-40ba-8218-972f7076c5d6", "fields": { - "question": 477, - "contribution": 3391, + "question": 367, + "contribution": 4138, "answer": 1, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "623945cc-e2b4-42aa-b497-59948368c39a", + "pk": "481204dc-cd89-44c3-a5aa-b241b94293a0", "fields": { - "question": 258, - "contribution": 3739, - "answer": 3, - "count": 4 + "question": 370, + "contribution": 1785, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "623c8692-4552-4fd0-b5a9-8ba34304f642", + "pk": "481bd491-bb02-4e08-8751-3b218f98e946", "fields": { "question": 367, - "contribution": 4084, - "answer": 3, - "count": 9 + "contribution": 3422, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6246f186-0c79-4670-94e0-a5803e3bf7ef", + "pk": "48224a81-b580-4b42-9046-ae24f583f4da", "fields": { - "question": 338, - "contribution": 832, - "answer": 4, + "question": 475, + "contribution": 3482, + "answer": 0, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "624f0772-30a1-4872-8a8c-6d6ccb7ff5de", - "fields": { - "question": 476, - "contribution": 4046, - "answer": -1, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "62558b9f-ae32-4c01-bb13-54c9205b89e9", + "pk": "48346b14-8525-4108-83a5-f63e6a593b62", "fields": { - "question": 369, - "contribution": 3917, - "answer": 4, - "count": 1 + "question": 323, + "contribution": 3434, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62803875-21d3-40c8-b046-eef7ccd22bde", + "pk": "484f0a8d-a211-4cfd-a60f-80e77046e383", "fields": { - "question": 316, - "contribution": 3725, - "answer": 2, - "count": 11 + "question": 319, + "contribution": 884, + "answer": 1, + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62881e59-23f1-4039-b08c-0f43c2a56099", + "pk": "484fb3ff-c59d-43e0-b5fd-04ff685e77f0", "fields": { - "question": 328, + "question": 327, "contribution": 1635, "answer": 1, - "count": 11 + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62922954-28f2-4baa-83ed-5604a73315ef", + "pk": "4852e5e5-83fa-4dc1-a4c6-dc433f1e3e93", "fields": { - "question": 363, - "contribution": 1799, - "answer": 5, - "count": 1 + "question": 316, + "contribution": 3679, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62938faf-df7a-475d-bec9-59119f60ff0d", + "pk": "4868397a-85f8-43b9-bd08-ea5c32dee80d", "fields": { - "question": 357, - "contribution": 1849, - "answer": 3, - "count": 1 + "question": 343, + "contribution": 3517, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62989069-d9b1-4c91-a327-4aa02a29194c", + "pk": "486f053e-f049-445b-afdc-6e0921a88c15", "fields": { - "question": 348, - "contribution": 4191, - "answer": 4, - "count": 1 + "question": 341, + "contribution": 3440, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6298a4f3-1adb-43c6-bc82-4d1d72e7b885", + "pk": "488eed2b-a542-4b7e-8c14-02b19f218298", "fields": { - "question": 328, - "contribution": 3395, + "question": 366, + "contribution": 3881, "answer": 1, - "count": 2 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62a9646b-cf01-4837-b48e-a55ba44b5e15", + "pk": "489539bf-63b3-4e2c-93a6-8063c5ed4291", "fields": { - "question": 323, - "contribution": 1634, - "answer": 1, - "count": 7 + "question": 319, + "contribution": 836, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62bb61d4-3753-4656-a2a4-cf96531f123b", + "pk": "4898e1bb-5400-4660-b208-3c3a226800f0", "fields": { - "question": 257, - "contribution": 1837, - "answer": 1, - "count": 22 + "question": 317, + "contribution": 880, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62ce4dd9-dd83-4d6b-a0bb-d590f4d26b19", + "pk": "489afdfc-904a-48aa-a362-8dbe15968065", "fields": { - "question": 1, - "contribution": 4302, + "question": 338, + "contribution": 4052, "answer": 2, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62d77834-2d1a-449c-8341-9bcae8f54969", + "pk": "48a454bc-b384-4aa6-8678-18a4d6056770", "fields": { - "question": 346, - "contribution": 1156, + "question": 368, + "contribution": 3885, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62df8984-19f4-438c-87e1-8bffba3700ee", + "pk": "48af247b-8b03-4edb-9062-450f215dc802", "fields": { - "question": 357, - "contribution": 1154, - "answer": 1, - "count": 10 + "question": 473, + "contribution": 3751, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62e97187-1459-473c-8eed-ca9a380bab30", + "pk": "48b90fe2-9f71-4670-bafd-4aabcac2e4d2", "fields": { - "question": 341, - "contribution": 3795, - "answer": 2, + "question": 258, + "contribution": 1634, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62f1e8a8-9c3e-421c-9f52-ced73130ff55", + "pk": "48bfcead-867e-4f13-981f-64e4fbe429b9", "fields": { - "question": 260, - "contribution": 1724, + "question": 326, + "contribution": 1779, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62f71f70-e87a-474c-841a-e42525f22213", + "pk": "48c2b146-2908-4111-969e-4283ff4ff2c2", "fields": { - "question": 344, - "contribution": 4129, - "answer": 4, - "count": 1 + "question": 331, + "contribution": 3739, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62fae1e1-4d7c-425a-b7f8-6af450e9ff6f", + "pk": "48d1f5b5-ca64-4b1a-9066-4eb07033d144", "fields": { - "question": 472, - "contribution": 3725, - "answer": 5, - "count": 5 + "question": 369, + "contribution": 3597, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62fb63a5-449e-414c-91fc-9500c95858ac", + "pk": "48d96e3d-4493-4594-bf13-6fecc9daa3e5", "fields": { - "question": 332, - "contribution": 1217, - "answer": 2, - "count": 2 + "question": 344, + "contribution": 1639, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "62fd61df-7924-404b-9141-c70741a678f3", + "pk": "48e4b4d7-795f-4076-bb14-5ac867d84e7a", "fields": { - "question": 255, - "contribution": 4118, + "question": 344, + "contribution": 1663, "answer": 1, - "count": 5 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63118421-ed9e-4c8b-a470-d5bd56df415f", + "pk": "48ed4c0a-6d00-403b-930d-b430453ac3e8", "fields": { - "question": 347, - "contribution": 1645, - "answer": 2, + "question": 262, + "contribution": 1724, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6317547f-20a4-401e-89d6-e1a8a8144b85", + "pk": "48f94448-b6d0-4fa6-911c-fe002695b05d", "fields": { - "question": 328, - "contribution": 4152, + "question": 258, + "contribution": 1626, "answer": 4, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "631cc5b2-1438-4005-bc3b-6496a2c14ced", - "fields": { - "question": 320, - "contribution": 884, - "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "631d68f4-f0ca-4660-be02-7051d48fdd0d", + "pk": "48fa9c2f-4437-4d9a-97bb-6887fa2d6ca2", "fields": { - "question": 326, - "contribution": 1776, - "answer": 2, - "count": 5 + "question": 360, + "contribution": 1827, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6329f6a8-1365-40b5-b93b-598daaeb24d0", + "pk": "48fd60ae-fd4b-4f2b-9f83-a5d00086a1f2", "fields": { - "question": 344, - "contribution": 1204, - "answer": 5, + "question": 432, + "contribution": 4090, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "632cc748-efca-46cd-a321-9adde27d9726", + "pk": "49060097-9466-48b7-b1b3-1570979d8646", "fields": { - "question": 317, - "contribution": 3474, + "question": 355, + "contribution": 3608, "answer": 1, - "count": 13 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "632cea37-7b12-4b61-b930-9c935c2251a8", + "pk": "490a0e6e-e810-46e5-927e-f7d909fd5a61", "fields": { - "question": 472, - "contribution": 1638, + "question": 328, + "contribution": 823, "answer": 5, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "632e7a0c-89f0-4d59-aa9e-218b7066d572", + "pk": "490a603c-a278-46e6-b6dd-7d8f1cfba80c", "fields": { - "question": 339, - "contribution": 826, - "answer": -1, - "count": 1 + "question": 327, + "contribution": 3680, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "632fbded-2894-43bf-b4ed-ca8bf002e4c4", + "pk": "490b7c40-c627-44b1-b18a-1d07f1c535c8", "fields": { - "question": 347, - "contribution": 1207, - "answer": 2, + "question": 362, + "contribution": 3921, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "633109c8-03d6-47ee-882c-a14f74b9d86c", + "pk": "490f20c5-ade5-4d2b-8c0f-03e5f1d73d39", "fields": { - "question": 369, - "contribution": 3921, - "answer": 3, + "question": 344, + "contribution": 1863, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63332797-fe12-4bc0-8ee6-57abe42876e2", + "pk": "49114e25-0490-4a0b-a9d1-d732ae029f48", "fields": { - "question": 361, - "contribution": 1836, - "answer": 4, - "count": 1 + "question": 473, + "contribution": 1638, + "answer": 0, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "633ea141-54b4-448d-bd5a-f13c4d5df58e", + "pk": "491e8f39-4c97-47f3-a39e-41e04699e396", "fields": { - "question": 371, - "contribution": 4155, + "question": 356, + "contribution": 3546, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63439f7a-26ef-4032-bd7f-9482085c27c7", + "pk": "49280f14-d036-4907-98dd-778bb44b1f81", "fields": { "question": 472, - "contribution": 1668, - "answer": 1, - "count": 6 + "contribution": 3739, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6350c54f-ebb9-4666-9e47-20a044a02896", + "pk": "492a2fde-9fd5-43db-91c9-80c236023f0c", "fields": { - "question": 322, - "contribution": 3462, - "answer": 2, + "question": 343, + "contribution": 3900, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "635d4fa7-4a3c-4bbf-a669-0fe9bd682f0c", + "pk": "492c275a-c082-498e-9a9b-42fbda83a20a", "fields": { - "question": 371, - "contribution": 3593, + "question": 328, + "contribution": 3391, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "635e15e6-1031-41ee-bc27-3a516695288a", + "pk": "49357e68-a2ca-41e4-80de-8f7effcd39c8", "fields": { - "question": 354, - "contribution": 3516, - "answer": 3, + "question": 472, + "contribution": 788, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "635fb4e6-7b8b-4e3c-ac11-6b1dab9fa4f9", + "pk": "493e9316-3891-4424-9f76-51605a030ce2", "fields": { - "question": 258, - "contribution": 880, - "answer": 2, - "count": 8 + "question": 477, + "contribution": 1780, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6364516e-3ac0-4211-8872-52b7914e7e36", + "pk": "493f8ac1-862f-4b92-b1cb-ab3b61e8b0df", "fields": { - "question": 328, - "contribution": 881, - "answer": 5, - "count": 12 + "question": 255, + "contribution": 3679, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "636eb0dc-0772-45c5-9037-f204dbf9ebc9", + "pk": "4947f502-551c-4865-9dea-19cb22048e22", "fields": { - "question": 354, - "contribution": 3849, - "answer": 1, - "count": 5 + "question": 255, + "contribution": 3390, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "636f9de5-cfc1-4124-a23f-5810df10e2a1", + "pk": "49535659-e47a-46d0-92dd-5b41dbb628be", "fields": { - "question": 343, - "contribution": 1663, + "question": 327, + "contribution": 1154, "answer": 1, - "count": 7 + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63790f9c-d024-4714-a39d-7b880e5a68f7", + "pk": "49553b19-2fd5-486d-8a51-1ff89df10497", "fields": { - "question": 322, - "contribution": 912, - "answer": 1, - "count": 13 + "question": 316, + "contribution": 1634, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "637b8671-5e8a-43d4-8fc0-7e0397f63d9e", + "pk": "495550a6-615e-4a4e-9d61-ede68f08bb3a", "fields": { - "question": 356, - "contribution": 3528, - "answer": 1, + "question": 329, + "contribution": 1802, + "answer": 4, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "637e2ae5-d019-46d4-a9be-caf53c384052", + "pk": "495559ea-f130-4738-8364-75859b58ccee", "fields": { - "question": 321, - "contribution": 3354, - "answer": 3, - "count": 1 + "question": 340, + "contribution": 788, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "638ac78c-f1db-4f45-b624-05276966a770", + "pk": "495a9ab0-f4e1-4d6e-b99d-53f7b0e03a84", "fields": { - "question": 357, - "contribution": 1188, + "question": 339, + "contribution": 4052, "answer": 1, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "638c6e6f-3810-4749-a6e5-d1c5b200adf6", - "fields": { - "question": 337, - "contribution": 1702, - "answer": 4, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "638ffa3c-348d-4d40-9a09-29fa7f0bab21", + "pk": "49665c78-36a4-45d6-a7ec-a8dc2481e1ed", "fields": { - "question": 371, - "contribution": 1812, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 3740, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63a18db5-c259-47f4-a34a-65971fef81ba", + "pk": "49669c42-cbac-49fc-b1ee-ca2b287a9afd", "fields": { - "question": 348, - "contribution": 1663, - "answer": 4, + "question": 355, + "contribution": 4037, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63ac1b6d-5b42-4d86-8797-1caa7ae17ebe", + "pk": "498e06db-dd5a-4d50-9fe1-1edb034b7fa9", "fields": { - "question": 347, - "contribution": 4003, + "question": 258, + "contribution": 4128, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63ac2df4-6f5d-48d2-bc68-4ecba3c64ef8", + "pk": "4995cb02-1d21-417e-a6c2-5cb9f8e2e87b", "fields": { - "question": 319, - "contribution": 4120, + "question": 473, + "contribution": 1200, "answer": 1, - "count": 4 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63b065ed-8f79-4d04-8007-1deeee7fc16c", + "pk": "49a18fc1-a6f1-468a-973b-59ee7f0b8d81", "fields": { - "question": 329, - "contribution": 3463, - "answer": 1, - "count": 5 + "question": 337, + "contribution": 868, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63b303d6-5134-4167-97cb-c4e6494daa3e", + "pk": "49ad808a-2ff8-462f-b5da-3332b520b132", "fields": { - "question": 371, - "contribution": 3566, - "answer": 2, + "question": 357, + "contribution": 4279, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63b30724-4c71-4f64-bddf-1637304e993b", + "pk": "49b9312b-8e64-45fd-8abb-975e3f28f095", "fields": { - "question": 473, - "contribution": 4038, - "answer": 0, - "count": 2 + "question": 340, + "contribution": 858, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63ca3fcf-5013-42b3-8899-5eff7d9c339e", + "pk": "49cfe732-bc8f-48a3-9689-1610978ab793", "fields": { - "question": 319, - "contribution": 836, - "answer": 3, - "count": 2 + "question": 367, + "contribution": 4028, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63d32a86-8c25-483d-8360-b8fc551c4a32", + "pk": "49d24c0d-ae60-4498-b9ec-e29db32ca91a", "fields": { - "question": 255, - "contribution": 1837, + "question": 317, + "contribution": 3721, "answer": 1, - "count": 20 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63d99b45-09e9-498f-a37b-3fc6fd060e84", + "pk": "49d581b6-380d-4cae-8c4a-a70f8b03324c", "fields": { - "question": 321, - "contribution": 3422, + "question": 346, + "contribution": 3607, "answer": 2, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "63dd0324-c442-419f-9a36-793e7f5b06db", + "pk": "49d60268-b2f8-4526-9a0a-435d2ef4e232", "fields": { - "question": 326, - "contribution": 4117, - "answer": 5, - "count": 6 + "question": 325, + "contribution": 909, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64006282-6c6e-43f1-bd0e-0c21bb7d625c", + "pk": "49d86c51-574d-4f0d-b512-f6c357b5c248", "fields": { - "question": 337, - "contribution": 3645, - "answer": 3, - "count": 3 + "question": 357, + "contribution": 1860, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64036115-aff1-4413-b0c7-ea0bf3141cc3", + "pk": "49daaca6-b3ef-444e-871a-0f1e61184e8c", "fields": { - "question": 320, - "contribution": 3390, + "question": 262, + "contribution": 1658, "answer": 2, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "640cc3a3-af59-408b-a9b8-2008f7a64888", + "pk": "49e94769-df0a-4466-b34d-ed306ad3ab9f", "fields": { - "question": 337, + "question": 340, "contribution": 886, "answer": 5, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64149dd3-e73c-414e-b7a9-dabc8245b89e", + "pk": "49ebc74d-cfde-41f3-8305-860a021071cb", "fields": { - "question": 329, - "contribution": 1778, + "question": 338, + "contribution": 3366, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "641b0978-dc3f-451a-a928-a047bd9f7066", + "pk": "49f30139-cb07-431d-9579-c2771abed474", "fields": { - "question": 321, - "contribution": 3665, - "answer": 3, + "question": 327, + "contribution": 1802, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "641f8e08-8b6d-4b2f-88cf-f7a2949aa9bc", + "pk": "49fed3e8-de7e-4939-9809-3408ef650be3", "fields": { - "question": 357, - "contribution": 1783, - "answer": 2, - "count": 1 + "question": 319, + "contribution": 4084, + "answer": 3, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64259dd7-92fe-4edf-a3c5-ee9ac81d5b14", + "pk": "4a0a6e80-038b-4e3e-bf47-acb18e5aac5d", "fields": { - "question": 338, - "contribution": 3745, - "answer": 4, - "count": 1 + "question": 316, + "contribution": 1658, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64265b3d-9e5b-453d-87b2-99c3fae0a888", + "pk": "4a0bd5c1-7544-49a6-9e9c-9930bcfee485", "fields": { - "question": 333, - "contribution": 3886, - "answer": 1, + "question": 259, + "contribution": 3434, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64303c37-3368-49de-8f90-bcca38917963", + "pk": "4a1392e9-de60-4334-bb31-ed38cb3799d7", "fields": { - "question": 367, - "contribution": 3725, - "answer": 1, - "count": 6 + "question": 477, + "contribution": 3556, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6438326f-18db-4a19-ac7e-442bb33b6c6c", + "pk": "4a36cb12-b8be-43ca-82d0-15335f54d9cc", "fields": { - "question": 362, - "contribution": 3597, - "answer": 1, - "count": 1 + "question": 258, + "contribution": 908, + "answer": 3, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64416b8f-e2ad-4e7e-8d05-22dc92bcd32b", + "pk": "4a3c6d2b-cfb4-460f-ad5e-67722a6e3c7b", "fields": { - "question": 344, - "contribution": 3704, - "answer": 1, - "count": 3 + "question": 367, + "contribution": 1837, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6445cabd-810c-4461-8ce1-555f534f0f39", + "pk": "4a4e7336-c532-47b2-88b6-c2b50b12e652", "fields": { - "question": 472, - "contribution": 840, - "answer": 1, - "count": 3 + "question": 366, + "contribution": 3595, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64492b2a-9a9c-4c59-8eb6-e6884e3afd1f", + "pk": "4a570d86-4004-486c-a6f9-08a7802cbb21", "fields": { - "question": 323, - "contribution": 3739, + "question": 477, + "contribution": 3726, "answer": 2, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "645a931b-6684-480a-bf61-a85e97fc97c2", - "fields": { - "question": 344, - "contribution": 869, - "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6464d627-1896-406c-82a7-36b183a7c4c5", + "pk": "4a5b6fbc-b322-4e9a-89cf-9c2e7b2e52d5", "fields": { - "question": 255, - "contribution": 4084, + "question": 355, + "contribution": 1257, "answer": 1, - "count": 20 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6469e1e4-8f77-4129-aba6-1ef14e415b8a", + "pk": "4a5bbad2-c4e0-49d5-88db-8c05285d1831", "fields": { - "question": 320, - "contribution": 3422, + "question": 472, + "contribution": 3723, "answer": 5, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "648ba4c4-1c80-461e-aa53-69f475b99adb", + "pk": "4a5ef2a6-50a2-4b3e-8ffd-8d6e6000b2fa", "fields": { - "question": 326, - "contribution": 1777, + "question": 327, + "contribution": 1802, "answer": 3, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "648d1412-b350-411c-b29b-1ab811c85793", - "fields": { - "question": 341, - "contribution": 3645, - "answer": 4, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6498f2fc-f477-439d-91f8-73826777ab29", + "pk": "4a6ccd3b-61a1-4060-81f4-17651bdd7eb8", "fields": { - "question": 338, - "contribution": 886, - "answer": 3, + "question": 316, + "contribution": 4118, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "649c764f-5a4f-47b3-b75c-856eb1d04a44", + "pk": "4a6de1ad-01f5-49f5-a497-82ef257e6071", "fields": { "question": 346, - "contribution": 3509, + "contribution": 3545, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "649fb593-3e61-4d2e-8e7f-cbb2c4b9bdef", + "pk": "4a70f27d-9b76-4c55-8503-463c1c123419", "fields": { - "question": 348, - "contribution": 1250, - "answer": 3, + "question": 459, + "contribution": 4283, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64ab86a3-4a27-42c7-ae68-acb130b83eb2", + "pk": "4a74536a-47ac-422c-9cde-c23cca869ba8", "fields": { "question": 327, - "contribution": 1802, - "answer": 5, - "count": 2 + "contribution": 913, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64b0de63-3c78-44a6-8e9b-e56d99ac062b", + "pk": "4a79422c-6340-454b-b851-6dc9613754c8", "fields": { - "question": 326, - "contribution": 909, - "answer": 4, - "count": 3 + "question": 344, + "contribution": 3822, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64b9cc01-ca57-41ab-8f47-7316850c3810", + "pk": "4a892b32-f778-4dc0-b11b-58d45246b36e", "fields": { - "question": 315, - "contribution": 1837, - "answer": 2, - "count": 11 + "question": 337, + "contribution": 3703, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64bb5b3b-6739-4f64-a623-8fff7a399bb5", + "pk": "4a986972-8a5c-4b41-90a0-ba166bda5f06", "fields": { - "question": 344, - "contribution": 3935, - "answer": 1, - "count": 1 + "question": 315, + "contribution": 3390, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64c6ec20-cf8f-4857-9677-55e7bc6464d5", + "pk": "4aa66294-045f-43f8-9cf3-c4348a4dca7d", "fields": { - "question": 337, - "contribution": 1921, + "question": 344, + "contribution": 3895, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64cf6d38-7110-4137-af0a-a47a5de5c12c", + "pk": "4ab46169-43d9-4ba7-b10e-0b24d1066d4b", "fields": { - "question": 262, - "contribution": 1612, - "answer": 4, - "count": 3 + "question": 476, + "contribution": 4138, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64d47a9d-e2dc-437c-bb37-f4ec78602027", + "pk": "4ab6fafc-0471-4d90-ac80-44021875ecd2", "fields": { - "question": 362, - "contribution": 1826, + "question": 396, + "contribution": 3781, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64dae821-f759-4501-9ece-d168c7ac578e", + "pk": "4ab7317e-2a3d-435d-82cd-a01c08783d2d", "fields": { - "question": 333, - "contribution": 3566, - "answer": 2, - "count": 3 + "question": 460, + "contribution": 4284, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64e2ba54-9c8e-4cbd-bea9-e41a29e56eab", + "pk": "4ac5d263-4543-48b7-867a-40bba76404c2", "fields": { - "question": 345, - "contribution": 3608, - "answer": 4, - "count": 1 + "question": 472, + "contribution": 4002, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64ed124d-1be5-4810-96ee-8a1a9568e020", + "pk": "4acc6458-0255-457b-b97f-bad6de415a0e", "fields": { - "question": 323, - "contribution": 4028, + "question": 315, + "contribution": 822, "answer": 1, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64ed49b1-15b5-4875-93cc-24294705dfb2", + "pk": "4ad0a0eb-118a-43a2-9da9-ac1b68ab2004", "fields": { - "question": 341, - "contribution": 3466, - "answer": 4, - "count": 1 + "question": 477, + "contribution": 913, + "answer": -2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64f2c68a-786c-42bd-9364-7ba86d80201f", + "pk": "4ad82ed3-9768-4b3f-a477-d24a35b22194", "fields": { - "question": 257, - "contribution": 884, - "answer": 3, + "question": 356, + "contribution": 4270, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64fe9d6d-c412-41c6-87fb-8fda0b9c4174", + "pk": "4adf9f09-8b29-48c8-b6b4-2f69506fa40a", "fields": { - "question": 357, - "contribution": 1844, - "answer": 1, - "count": 1 + "question": 473, + "contribution": 4084, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64ff1ea1-5225-44c9-a0e8-bfd97b8bd944", + "pk": "4aeb649d-84f6-4fce-a496-35ca594949d8", "fields": { - "question": 346, - "contribution": 3607, - "answer": 3, - "count": 1 + "question": 353, + "contribution": 3517, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "64ffd1b5-40e6-44f0-aa24-509430ae5a5f", + "pk": "4b01aed7-d964-4c51-9b07-cb6c156b51db", "fields": { - "question": 354, - "contribution": 1782, + "question": 343, + "contribution": 1880, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6503b7f1-a8f9-486a-8330-e80f956b8a99", + "pk": "4b01fde0-91b9-4117-9a82-55b37fd9862a", "fields": { - "question": 349, - "contribution": 1872, - "answer": 1, + "question": 341, + "contribution": 1638, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6503f041-977b-425b-b576-7a0004196cef", + "pk": "4b088730-bc44-4f75-a8cc-2cde7c1d0aa7", "fields": { - "question": 366, - "contribution": 1812, - "answer": 5, + "question": 332, + "contribution": 3882, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65093dd4-ac92-4fad-b36c-f49a3cfd7983", + "pk": "4b1986f2-6b9d-4c5f-9086-a1acc2861af0", "fields": { - "question": 473, - "contribution": 4072, - "answer": 0, - "count": 2 + "question": 328, + "contribution": 3435, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "650c91e2-bbb5-4608-a71e-bc1256e8046f", + "pk": "4b242611-6c50-4944-ad77-7f1c2db94927", "fields": { - "question": 344, - "contribution": 3526, - "answer": 1, - "count": 1 + "question": 321, + "contribution": 862, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "651774d5-8f4a-47f3-93fa-e634c2fc46c3", + "pk": "4b2d5009-194a-4bb6-b43a-87a3b03a092a", "fields": { - "question": 473, - "contribution": 3727, - "answer": -2, - "count": 2 + "question": 257, + "contribution": 3679, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6525a82f-2601-450b-b53f-e2051c85dd05", + "pk": "4b3ddc9f-c31b-4b54-b8a6-b1679677c5df", "fields": { - "question": 325, - "contribution": 3473, + "question": 437, + "contribution": 4090, "answer": 2, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65364942-4577-4fc2-ab69-01b65a81e577", + "pk": "4b3ed48a-2f6e-46a7-8aaf-52208d461ed6", "fields": { - "question": 325, - "contribution": 913, + "question": 337, + "contribution": 3685, "answer": 2, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6536ff27-c14e-48e2-b078-a745471ef0ef", + "pk": "4b40ab2d-3553-4854-b170-704aef8368a8", "fields": { - "question": 347, - "contribution": 3451, - "answer": 4, - "count": 3 + "question": 341, + "contribution": 4122, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "653ae956-8dfd-4408-8957-57aed8921459", + "pk": "4b42e227-83f3-4ec2-a1c5-a23b260c026d", "fields": { - "question": 477, - "contribution": 3391, + "question": 473, + "contribution": 3727, "answer": 0, - "count": 6 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65524db9-d46f-4148-8adb-380465fbb0b9", + "pk": "4b4963fb-e75c-4c9b-8126-ae2725ce7d7d", "fields": { - "question": 367, - "contribution": 1634, - "answer": 1, - "count": 5 + "question": 315, + "contribution": 4100, + "answer": 3, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "655ab590-4819-4cd6-a964-f019ae89df14", + "pk": "4b531173-06e1-4b35-8be0-4fef729857f9", "fields": { - "question": 344, - "contribution": 1868, + "question": 327, + "contribution": 837, "answer": 1, - "count": 1 + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65625f3b-a303-4f88-9ead-3a7629630bbc", + "pk": "4b581207-6dae-4294-ae9f-c19c369e0703", "fields": { - "question": 328, - "contribution": 909, + "question": 322, + "contribution": 1626, "answer": 3, - "count": 13 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65651017-31bb-4a61-8c00-86762f47f0e4", + "pk": "4b5de65a-35ac-4e35-983b-9c9f75894ae7", "fields": { - "question": 315, - "contribution": 908, - "answer": 1, - "count": 25 + "question": 339, + "contribution": 3372, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6567fa33-570b-42e9-899e-069496bc46d3", + "pk": "4b5eeee9-e0da-4cda-95fe-6607767155e3", "fields": { - "question": 473, - "contribution": 1200, - "answer": 3, - "count": 4 + "question": 344, + "contribution": 3606, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65691e2d-8306-4dc0-85df-1fcd960635ef", + "pk": "4b5f249f-fe0c-4de4-bd40-5fb659b792aa", "fields": { - "question": 472, - "contribution": 884, - "answer": 5, - "count": 18 + "question": 260, + "contribution": 3721, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6569b73b-9f40-4f14-b3a2-242fb199dad6", + "pk": "4b668f20-fbc2-497e-8ea1-086cbd902499", "fields": { - "question": 476, - "contribution": 880, - "answer": 3, + "question": 322, + "contribution": 3474, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "656f78fc-b037-47a8-9c67-abaef06a4c87", + "pk": "4b7444cb-a504-41b0-9ac0-af20c0ad6c58", "fields": { - "question": 328, - "contribution": 1613, - "answer": 1, - "count": 12 + "question": 369, + "contribution": 3929, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65807ce2-33fd-48eb-9f11-9146843ff4ae", + "pk": "4b788e05-1827-4a3d-add7-36a92dcb834e", "fields": { - "question": 346, - "contribution": 1824, + "question": 371, + "contribution": 3593, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6584a864-0fda-4e6b-bc19-6de5c697e61d", + "pk": "4b78bbce-849f-4d7d-bb92-a130ca649bcb", "fields": { - "question": 336, - "contribution": 3821, - "answer": 1, - "count": 3 + "question": 322, + "contribution": 4022, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6589cfc3-ae2a-43dc-8e38-646668388bef", + "pk": "4b7b202f-b818-4ceb-836c-1438f95f93ec", "fields": { - "question": 321, - "contribution": 3434, + "question": 345, + "contribution": 3606, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "659ad1a0-85aa-4ed8-8fed-a83d353e9c52", + "pk": "4b7b4ac7-dba8-4f24-afc1-ec91c7ff0b48", "fields": { - "question": 477, - "contribution": 1778, - "answer": -1, - "count": 8 + "question": 476, + "contribution": 880, + "answer": 0, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65a0ecef-3566-460c-b8ac-7018abd3523f", + "pk": "4b7e9838-4f61-4cbb-bcc6-c0c5127df488", "fields": { - "question": 377, - "contribution": 3781, - "answer": 1, + "question": 408, + "contribution": 3984, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65a51dae-603f-425c-8db0-19494b8bbf6b", + "pk": "4b9741bd-96f8-4a97-b877-51c14483c6c5", "fields": { - "question": 255, - "contribution": 3462, - "answer": 3, - "count": 1 + "question": 329, + "contribution": 1776, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65b115ee-bab1-4edd-bd6a-685c18056b1f", + "pk": "4bad7957-9d74-468d-b3b1-50ce06ca4f3a", "fields": { - "question": 322, - "contribution": 3665, - "answer": 1, - "count": 7 + "question": 389, + "contribution": 3775, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65b4e0b0-d223-4d76-acbd-26d2fdeea07e", + "pk": "4bb4908f-9f6c-435b-bc62-83404e3dc04d", "fields": { - "question": 259, - "contribution": 4138, + "question": 257, + "contribution": 1626, "answer": 4, - "count": 4 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65bd1514-beea-4483-a3cb-fd8c6a3e0985", + "pk": "4bc3d894-47f1-4df1-9b14-e9733fab5c74", "fields": { - "question": 369, - "contribution": 3650, - "answer": 3, + "question": 336, + "contribution": 804, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65c0ef19-fddd-47d7-8316-9131fc9a3781", + "pk": "4bc3f48b-3c62-4892-8b8a-972859569c87", "fields": { - "question": 321, - "contribution": 3474, + "question": 349, + "contribution": 3405, "answer": 2, - "count": 8 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65cb0a45-bd4f-4479-b7e5-6d30a18ada55", + "pk": "4bdd1124-987f-45a7-a5b2-c4ea3c4f3bc2", "fields": { - "question": 473, - "contribution": 3422, - "answer": 3, + "question": 331, + "contribution": 3434, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65d5a00d-57bf-48d5-885a-04cc069933c4", + "pk": "4bdf06fa-6031-4d20-b571-e3fa4cfa4232", "fields": { - "question": 346, - "contribution": 3822, - "answer": 2, - "count": 1 + "question": 349, + "contribution": 1735, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65e263c4-bfe0-46b6-b6ac-6b8a953d27f1", + "pk": "4be784d1-9cb5-4963-a234-511a70df4e5e", "fields": { - "question": 338, - "contribution": 3735, - "answer": 4, + "question": 349, + "contribution": 1205, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65f35954-000d-4256-b203-dec32fd8b250", + "pk": "4bf326e0-f423-426f-b34b-094103f92cb6", "fields": { - "question": 260, - "contribution": 3739, - "answer": 2, - "count": 3 + "question": 347, + "contribution": 1204, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65fee2fb-4f0f-4601-9189-e14748574370", + "pk": "4bf95ece-2758-429c-9cd7-55da4e790eb7", "fields": { - "question": 317, - "contribution": 3390, - "answer": 1, - "count": 1 + "question": 339, + "contribution": 894, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "65ff3275-07a0-46c9-8990-413eda5cc24b", + "pk": "4bff7be7-02fc-44b0-bd2a-8e4db7709fb8", "fields": { - "question": 347, - "contribution": 1873, - "answer": 1, + "question": 475, + "contribution": 3454, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "660629c7-ab0d-48f5-be22-a4534e8c9187", + "pk": "4c056a85-7855-442c-bd95-6eddda214faf", "fields": { - "question": 355, - "contribution": 4227, + "question": 335, + "contribution": 3882, "answer": 1, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66074b19-d813-49dc-916d-43b4e816a7c9", + "pk": "4c05856b-3124-42f5-9f77-104e5f10d7d3", "fields": { - "question": 356, - "contribution": 1187, + "question": 352, + "contribution": 3466, "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "660a79f9-2aa1-4fd5-aeae-b64e41f4530c", + "pk": "4c0668d7-12c5-4285-928a-3dd864422bfc", "fields": { - "question": 341, - "contribution": 4094, - "answer": 1, - "count": 3 + "question": 472, + "contribution": 4052, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "660ddbe8-dbf9-43b0-9f87-226b569c3a1e", + "pk": "4c11fa18-7946-4aa7-a196-7f790aed2a22", "fields": { - "question": 396, - "contribution": 3711, - "answer": 4, + "question": 328, + "contribution": 1725, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "660fd1e5-eca8-453c-9035-50a45d2cfa40", + "pk": "4c1b942b-bf66-404d-b866-0ca2147f870f", "fields": { - "question": 473, - "contribution": 3482, - "answer": 0, - "count": 4 + "question": 357, + "contribution": 4278, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6610e5fd-bab3-49c8-8b3c-70c118c31d81", + "pk": "4c27b6dc-94ea-4a0a-bb12-07d352248848", "fields": { - "question": 366, - "contribution": 1884, - "answer": 2, - "count": 1 + "question": 322, + "contribution": 3390, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6616d9d5-64c3-47ae-ac72-b149314be684", + "pk": "4c2ca3d0-4b07-4434-b3fc-6d6a2c5de7a8", "fields": { - "question": 428, - "contribution": 4152, - "answer": 2, - "count": 13 + "question": 383, + "contribution": 3781, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "661c17bc-6297-4d22-8cfc-c1d626dc301f", + "pk": "4c308b6d-c345-40b2-a410-3a959e570bf7", "fields": { - "question": 316, - "contribution": 908, - "answer": 2, - "count": 12 + "question": 329, + "contribution": 1298, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66267ce3-1da0-4e57-87ce-ed2c38e652f5", + "pk": "4c362dd6-c3b2-4ae1-b6bf-b4a68e562414", "fields": { - "question": 349, - "contribution": 3555, - "answer": 2, + "question": 476, + "contribution": 3422, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "662a35b6-117f-44c3-82be-879312324f37", + "pk": "4c44a85a-5a2a-4287-8216-7d51af84c7b2", "fields": { - "question": 370, - "contribution": 3516, + "question": 414, + "contribution": 4024, "answer": 1, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "663427a2-bbd7-4b4d-b14e-0bf218891786", + "pk": "4c4df786-bfde-47f3-92c2-c4cbede2044a", "fields": { - "question": 477, - "contribution": 1186, - "answer": -1, - "count": 9 + "question": 356, + "contribution": 3852, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66386dee-535c-4d30-9b40-e5306a53fcae", + "pk": "4c5a3d6b-a24f-4c7a-b848-ffad480cec19", "fields": { - "question": 362, - "contribution": 3942, - "answer": 2, - "count": 1 + "question": 328, + "contribution": 1287, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "663a4008-883e-4007-b6bd-a1503b07dd8b", + "pk": "4c600b45-fcff-406a-ab5e-32ac6a547585", "fields": { - "question": 357, - "contribution": 1782, - "answer": 1, - "count": 5 + "question": 325, + "contribution": 4047, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66408de7-ded4-4209-a446-f601ab59e731", + "pk": "4c6301d1-2a0e-40ea-8b76-5f7c0d00f223", "fields": { - "question": 347, - "contribution": 1246, - "answer": 1, - "count": 4 + "question": 338, + "contribution": 3440, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "664cc418-d0da-47fb-9272-f8c988c7b9fa", + "pk": "4c731a0d-aac6-45fc-bdd7-07b835358f71", "fields": { - "question": 315, - "contribution": 880, - "answer": 3, - "count": 10 + "question": 475, + "contribution": 4094, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "665144d2-be4e-4c55-898b-b68592dabae5", + "pk": "4c742ee5-c3fa-4207-bce8-166a133c87ef", "fields": { - "question": 315, - "contribution": 4046, - "answer": 4, - "count": 1 + "question": 477, + "contribution": 1186, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66552290-127f-496c-8dd8-7d2b2cdbebd0", + "pk": "4c772f17-5593-4cda-b908-73e771b49ef5", "fields": { - "question": 327, - "contribution": 3680, - "answer": 2, + "question": 477, + "contribution": 1802, + "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66729092-157b-4125-96a3-0337902a71c1", + "pk": "4c7c5711-5ff9-4369-a051-5bfad9a5d43a", "fields": { - "question": 346, - "contribution": 3609, - "answer": 3, - "count": 1 + "question": 339, + "contribution": 4122, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6677517b-efe4-450c-ace5-204b23125a84", + "pk": "4c8e9c54-371e-42c1-8c77-766597fc1462", "fields": { - "question": 321, - "contribution": 4100, + "question": 449, + "contribution": 4185, "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "667edb74-8678-46aa-b9e3-e71f469d17e3", + "pk": "4ca7fa69-d430-4652-819b-e0b14767079a", "fields": { - "question": 352, - "contribution": 3466, - "answer": 4, - "count": 1 + "question": 320, + "contribution": 4084, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "667fd8be-ceb8-4048-8aba-2818c3c7ced8", + "pk": "4cac8199-d36f-403f-b638-3e2b47ddefb6", "fields": { - "question": 319, - "contribution": 1612, + "question": 316, + "contribution": 4084, "answer": 4, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6696caea-7259-4311-b531-b0e129661b0a", + "pk": "4caf0d5e-b9ce-4779-97fe-39052e173394", "fields": { - "question": 360, - "contribution": 1812, - "answer": 2, + "question": 372, + "contribution": 3735, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "669984cc-aece-4fd8-ac4b-078715d935cb", + "pk": "4cc09c0a-24c5-4780-9008-f1d03aefaa92", "fields": { - "question": 477, - "contribution": 881, - "answer": 1, - "count": 7 + "question": 354, + "contribution": 1786, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66a7a3bd-2fe3-4ad0-ba10-170f0beffef6", + "pk": "4ccee7c5-5bdc-4756-aa90-501ce4af11c2", "fields": { - "question": 315, - "contribution": 4138, - "answer": 3, - "count": 2 + "question": 459, + "contribution": 4284, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66b6b413-d636-446e-ab26-0b7be3e6fe31", + "pk": "4cd8bd6a-abb1-4608-888d-23112cec163d", "fields": { - "question": 327, - "contribution": 3435, - "answer": 2, - "count": 5 + "question": 361, + "contribution": 3929, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66bd5deb-8a8c-4417-bbd1-1ff9f6f4e22d", + "pk": "4ceb7267-a362-4d32-bf91-89c9e80790a7", "fields": { - "question": 362, - "contribution": 1799, - "answer": 5, + "question": 372, + "contribution": 3394, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66c4872a-ed3c-4fcc-bbea-07a96c64350c", + "pk": "4ceec684-5aba-4f06-a48f-f4a4a9464b05", "fields": { - "question": 345, - "contribution": 1843, + "question": 368, + "contribution": 1798, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66de1b26-3912-46ba-b4e4-aad3eecfd51a", + "pk": "4cf28d6b-6863-4b21-a334-eb0a3981d042", "fields": { - "question": 315, - "contribution": 3474, + "question": 323, + "contribution": 4028, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66e4204a-bbef-4e7f-88e9-0492f200d489", + "pk": "4d01781d-4c68-49fd-bcb7-727aadfae30e", "fields": { - "question": 331, - "contribution": 4138, + "question": 340, + "contribution": 3450, "answer": 1, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66e48ced-7eab-4432-93d1-aed8b1f11f5c", + "pk": "4d0353f0-f457-47a4-abe5-a3d7f7ac35ac", "fields": { - "question": 473, - "contribution": 918, - "answer": 1, + "question": 353, + "contribution": 1154, + "answer": 2, + "count": 7 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "4d0eef7c-8b72-4374-8e86-1dac8ee1e859", + "fields": { + "question": 260, + "contribution": 836, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66e58a11-728b-4316-9388-234cffa29b8d", + "pk": "4d121fa5-214d-485e-8ad2-b852255f4eaf", "fields": { - "question": 331, - "contribution": 1626, - "answer": -2, - "count": 3 + "question": 323, + "contribution": 1634, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "66f164e1-a973-4d6e-ad6c-472a716417cf", + "pk": "4d1aa524-e8a3-46b9-902f-e33ea1b689cf", "fields": { - "question": 317, - "contribution": 4120, + "question": 476, + "contribution": 3434, "answer": 1, - "count": 9 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67034b96-3ff1-47e9-9407-d2e6b31ef869", + "pk": "4d1e049b-939a-4b2a-bb29-d4a01b922390", "fields": { - "question": 333, - "contribution": 3922, - "answer": 1, - "count": 1 + "question": 366, + "contribution": 3886, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67040fe9-99a8-4085-95ca-53da2c6a32e8", + "pk": "4d3028ac-62da-4e92-a5d6-d2cc89188ff5", "fields": { - "question": 360, - "contribution": 3917, - "answer": 3, - "count": 1 + "question": 396, + "contribution": 3711, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "670d8832-9343-4db5-85e8-2e4ffaf26100", + "pk": "4d3077d4-6906-4eb8-9d05-63dbf227ad09", "fields": { - "question": 345, - "contribution": 1843, + "question": 356, + "contribution": 4025, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67107ee6-a29a-4ef7-be67-014f654b1b9e", + "pk": "4d38b3f7-f88f-4101-b3ab-ce9c97181067", "fields": { - "question": 347, - "contribution": 3934, - "answer": 1, - "count": 1 + "question": 477, + "contribution": 1154, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67134d13-198e-4871-94aa-ea66ac302d6f", + "pk": "4d48e35b-22a0-4517-bc64-972c7749139e", "fields": { - "question": 351, - "contribution": 3735, + "question": 472, + "contribution": 1658, "answer": 5, - "count": 1 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67181682-1140-4d14-9cb3-89828c1ba361", + "pk": "4d5bc245-fe58-44f2-bdb5-f6de449b8300", "fields": { "question": 360, - "contribution": 3944, - "answer": 1, - "count": 1 + "contribution": 3942, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67325870-4403-4f0a-988b-462b68ea7856", + "pk": "4d5e0bcc-9abe-4679-a12f-2ee39d5f7130", "fields": { - "question": 357, - "contribution": 3608, - "answer": 3, - "count": 1 + "question": 341, + "contribution": 3645, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "673f8cf1-4ac8-4e61-ac9c-5cb577b5b8a6", + "pk": "4d71021f-7945-488f-9079-a68b4670472b", "fields": { - "question": 331, - "contribution": 3462, + "question": 370, + "contribution": 4268, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "674d2e06-e070-4205-a0d4-9e13cb088750", + "pk": "4d7f830e-a5f9-43a3-b389-91ce145db460", "fields": { - "question": 372, - "contribution": 4022, - "answer": 2, - "count": 2 + "question": 368, + "contribution": 3391, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6754d4c7-f584-472f-976a-f33db220d591", + "pk": "4daefe47-5e47-49f3-b1dc-0c32e149be93", "fields": { - "question": 354, - "contribution": 3607, + "question": 336, + "contribution": 3486, "answer": 1, + "count": 6 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "4db4ebac-9558-4e00-ae7d-de793f8d6a37", + "fields": { + "question": 344, + "contribution": 1250, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67641482-ecf5-4286-ac0e-646026f9b521", + "pk": "4db664ad-a204-46db-a288-6d2360c57386", "fields": { - "question": 335, - "contribution": 3552, + "question": 473, + "contribution": 886, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "676891d6-c4aa-44ae-bf2f-5d141dda1ce6", + "pk": "4dc00aaf-a237-4be0-9fe4-e0251f8250ad", "fields": { - "question": 371, - "contribution": 4155, - "answer": 3, + "question": 336, + "contribution": 4052, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "677faa6d-21cd-4197-82ee-9b4bbf48935f", + "pk": "4dc21572-f2dd-4703-9d7d-52c054984db8", "fields": { - "question": 260, - "contribution": 1634, - "answer": 4, - "count": 3 + "question": 363, + "contribution": 1836, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "678d73ca-5e25-4a03-8b87-d6aa28bd6afa", + "pk": "4dc45c26-1836-40c3-af9c-b3e72e2294e1", "fields": { - "question": 333, - "contribution": 4205, + "question": 329, + "contribution": 3519, "answer": 1, - "count": 1 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6790037a-b4bc-4c23-9adf-0e7fcf7b4628", + "pk": "4dc492a6-19b3-4c87-b8bb-f8e311e007ca", "fields": { - "question": 316, - "contribution": 836, + "question": 336, + "contribution": 832, "answer": 1, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67a7f614-5a81-4363-b393-585494e91491", + "pk": "4dca8245-7430-44b1-a34a-b79dd4c4900e", "fields": { - "question": 351, - "contribution": 788, - "answer": 3, - "count": 1 + "question": 477, + "contribution": 4023, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67b0c648-dc5b-4d61-afc8-b9d3ae1b1aab", + "pk": "4dcf3b70-427a-4d42-a031-09a4a9486ee3", "fields": { - "question": 343, - "contribution": 1867, + "question": 356, + "contribution": 3516, "answer": 1, - "count": 8 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67b588d4-e190-4eeb-ba45-1d584007d0d8", + "pk": "4dd64bdb-d015-4950-9026-3a6e5d419eea", "fields": { - "question": 361, - "contribution": 3647, - "answer": 2, + "question": 337, + "contribution": 3372, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67b98a5a-7aa6-4d31-a4a8-b5db2e3213c1", + "pk": "4dd6d68b-caec-4bf8-9e71-460e7e17c5a7", "fields": { - "question": 316, - "contribution": 4046, + "question": 255, + "contribution": 3406, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67ba698b-e3b8-4fa3-aae0-8540c95cf7fa", + "pk": "4dd85c88-0ee8-4091-b552-b1dbdab45dbc", "fields": { - "question": 338, - "contribution": 1656, - "answer": 1, - "count": 6 + "question": 473, + "contribution": 3683, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67bb5151-1be9-4987-9c09-89462c08b030", + "pk": "4dda9eeb-4d96-4739-9d54-50434c84c190", "fields": { - "question": 259, - "contribution": 3462, - "answer": 5, - "count": 1 + "question": 258, + "contribution": 4028, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67bddfa6-2e8b-46f4-9754-a2d7d2fe244d", + "pk": "4ddf7a6b-0f76-40b2-940c-33242d824770", "fields": { - "question": 445, - "contribution": 4114, - "answer": 3, + "question": 341, + "contribution": 4002, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67c24d56-987b-44c5-a814-b341722b8a28", + "pk": "4dfdfb5e-3335-49a6-b5b9-964f9269e2e6", "fields": { - "question": 317, - "contribution": 3721, - "answer": 2, - "count": 5 + "question": 343, + "contribution": 4223, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67c312b8-29e5-4838-a536-5122155c3a30", + "pk": "4e1a413b-1e9d-45df-a747-22021a2e472c", "fields": { - "question": 360, - "contribution": 3917, - "answer": 2, - "count": 2 + "question": 367, + "contribution": 4116, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67d3d6e1-314b-4462-b132-75092c3367a8", + "pk": "4e2de597-720d-4010-856d-b6e37ba84b17", "fields": { - "question": 315, - "contribution": 3679, - "answer": 2, - "count": 5 + "question": 346, + "contribution": 4161, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67d93a98-84d0-4bb5-bfd4-4e4249a1cc35", + "pk": "4e342b16-2899-4b84-9a1f-1e6febdab9a3", "fields": { - "question": 322, - "contribution": 3462, + "question": 327, + "contribution": 3519, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67de45b4-3479-42b0-ab46-913e6833d74f", + "pk": "4e39d10c-81e7-4a01-9858-15d435c9d41d", "fields": { - "question": 329, - "contribution": 3463, - "answer": 3, + "question": 325, + "contribution": 1287, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67e96da6-8fff-4612-8e84-f9b34693fec2", + "pk": "4e39e4e0-0386-4aa9-a9d6-ab1a33b8a0cf", "fields": { - "question": 325, - "contribution": 3519, - "answer": 1, - "count": 12 + "question": 317, + "contribution": 1612, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "67ea0572-79aa-4a6b-8d0b-9c6ac33de4da", + "pk": "4e3c24ff-eb95-447c-b4f0-5e621226bbbf", "fields": { - "question": 338, - "contribution": 1200, - "answer": 1, - "count": 32 + "question": 262, + "contribution": 3739, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6805aaeb-f874-4f99-a003-c50de063d574", + "pk": "4e3d05b1-9685-4260-9506-efc3c0657812", "fields": { - "question": 346, - "contribution": 1828, - "answer": 1, + "question": 361, + "contribution": 1804, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "680a4c30-7b01-4a5a-b3f8-43eaacd0fb48", + "pk": "4e3ed411-8f37-463f-a9ee-9f2bee9042a8", "fields": { - "question": 343, - "contribution": 1203, + "question": 347, + "contribution": 3528, "answer": 1, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "680d1e9f-eabb-4b79-b495-d7e50f8974d5", - "fields": { - "question": 322, - "contribution": 1626, - "answer": 5, - "count": 10 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "680df790-ec90-4e8f-8339-ceab7d994177", + "pk": "4e4a22a3-6b43-4374-a754-2c627cdfa596", "fields": { - "question": 323, - "contribution": 4100, + "question": 333, + "contribution": 4155, "answer": 1, - "count": 22 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6824690c-83c0-4a6e-a0aa-a25bd5b8f06d", + "pk": "4e4caba0-4d56-48c3-9527-050c28c80527", "fields": { - "question": 367, - "contribution": 3406, - "answer": 1, - "count": 4 + "question": 328, + "contribution": 3519, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "682887a4-d9fa-487f-8b5b-a17b841e19f2", + "pk": "4e4fe1cd-8134-47dd-8baf-3a193da9714b", "fields": { - "question": 315, - "contribution": 3474, - "answer": 4, - "count": 1 + "question": 362, + "contribution": 3647, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "682d30b0-b0a0-4a68-985b-6aedecb22dae", + "pk": "4e53aff5-a394-45a6-ba87-f612e7130bca", "fields": { - "question": 329, - "contribution": 4152, - "answer": 5, - "count": 1 + "question": 461, + "contribution": 3862, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "683113dc-bd2f-48d1-aed0-5af649fbbb6e", + "pk": "4e55cdab-a219-4e04-b778-d40d1439d21e", "fields": { - "question": 257, - "contribution": 836, - "answer": 3, - "count": 1 + "question": 340, + "contribution": 3372, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6832970d-eb2f-495b-91eb-11443859e789", + "pk": "4e583733-ea19-491a-b6a7-2e696cf8c011", "fields": { - "question": 361, - "contribution": 1826, - "answer": 5, - "count": 1 + "question": 341, + "contribution": 4122, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "683356e4-8bfa-4943-a784-588deef2439b", + "pk": "4e5e784c-3c60-49a1-8785-4a6df38fc685", "fields": { - "question": 366, - "contribution": 4154, - "answer": 2, + "question": 326, + "contribution": 1186, + "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68592fec-7f48-43f1-ad0b-5974fb46c45f", + "pk": "4e6f9b6e-eaa7-4757-9b16-67e25a65d251", "fields": { - "question": 475, - "contribution": 840, + "question": 337, + "contribution": 1710, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "686525ee-1c4e-4d5d-bd25-7e80408ce161", + "pk": "4e76ec71-09c4-487d-8b8f-cdf41b36ae9e", "fields": { - "question": 317, - "contribution": 836, - "answer": 4, + "question": 319, + "contribution": 3354, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68687223-ef8c-40cd-96dd-0ea3d2d48058", + "pk": "4e7f92f6-db9a-4d2e-8125-fd644238fa29", "fields": { - "question": 343, - "contribution": 1749, - "answer": 1, + "question": 326, + "contribution": 1802, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "686cb31a-6956-4b73-8ff9-90ad04d1b808", + "pk": "4e81eb35-e33a-4bf4-84dc-fd31e009b454", "fields": { - "question": 336, - "contribution": 3440, - "answer": 4, - "count": 2 + "question": 344, + "contribution": 4003, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6873826d-c46c-45bb-8751-9760002d3728", + "pk": "4e8aef49-fbd7-42fc-9a77-6e5a17d858c1", "fields": { - "question": 333, - "contribution": 3598, - "answer": 2, - "count": 3 + "question": 315, + "contribution": 3390, + "answer": 4, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "687dc6d3-45d5-4bb6-9435-50b5cc3f4d77", + "pk": "4eb5f918-efff-4bd3-9830-9d0fb3556c69", "fields": { - "question": 344, - "contribution": 3515, - "answer": 2, - "count": 2 + "question": 316, + "contribution": 3434, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68892516-7224-4743-9119-0e1297c542c2", + "pk": "4ebeb0e0-e08c-4f38-a0d9-ad73968d6652", "fields": { - "question": 354, - "contribution": 3517, + "question": 367, + "contribution": 3354, "answer": 1, - "count": 3 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68968396-c375-463a-8391-9f7ff827af23", + "pk": "4ebf1802-9aca-4207-8e77-5b5fc88a53ae", "fields": { - "question": 255, - "contribution": 3434, - "answer": 4, + "question": 356, + "contribution": 1784, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "689d4387-6de5-44a0-a213-5cd546f6b0c3", + "pk": "4ec9b44e-6eaa-4ea8-b33d-50d85406f3b1", "fields": { - "question": 332, - "contribution": 3932, - "answer": 1, + "question": 260, + "contribution": 1612, + "answer": 3, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68a5339f-3929-4f4b-a624-3c8dd1d1e7a2", + "pk": "4ece909f-f2c7-4425-8927-08653f1810e7", "fields": { - "question": 344, - "contribution": 1851, - "answer": 2, + "question": 333, + "contribution": 3594, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68adf8ff-aa11-4b2b-ae10-3ef0c2288168", + "pk": "4ed52166-6f96-42a7-a927-2e3e20a7c760", "fields": { - "question": 475, - "contribution": 3785, - "answer": 0, + "question": 360, + "contribution": 1826, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68b2bba9-3747-440a-8379-0ea8e7b29a41", + "pk": "4edd965e-43ec-4c33-8eb2-8f0e41a31e38", "fields": { - "question": 477, - "contribution": 837, - "answer": 0, - "count": 18 + "question": 473, + "contribution": 4185, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68c47ca1-56a2-4cd2-b142-add7918b3323", + "pk": "4eea0b10-dabe-4a5e-b7b0-84a3a76b837f", "fields": { - "question": 356, - "contribution": 1258, - "answer": 1, - "count": 4 + "question": 349, + "contribution": 1880, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68c6c8d6-c667-49d8-b27e-d22465cc9158", + "pk": "4ef59afa-e45f-44af-9906-345bf626d1b4", "fields": { - "question": 368, - "contribution": 3740, - "answer": 2, + "question": 345, + "contribution": 1863, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68d036a6-1298-44f5-a43d-b9e850c86e29", + "pk": "4ef8cdc3-9ee5-4e09-990a-ed1aa5588a96", "fields": { - "question": 477, - "contribution": 4153, - "answer": -3, - "count": 2 + "question": 260, + "contribution": 1612, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68d73e41-5321-480d-a4e2-4f911493a7dd", + "pk": "4efcd123-e615-4cd4-9698-76bab5b9a659", "fields": { - "question": 370, - "contribution": 3546, - "answer": 1, - "count": 2 + "question": 329, + "contribution": 3666, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68f302ca-5288-4291-a454-850406d51b78", + "pk": "4efdf0b7-3605-4ddc-aad3-1d1cded82870", "fields": { - "question": 348, - "contribution": 3607, - "answer": 1, - "count": 4 + "question": 473, + "contribution": 836, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68f63bbc-50af-4461-9ae8-c440d1756a94", + "pk": "4f0c426a-c86e-481c-b31f-da42ba84d7e5", "fields": { - "question": 340, - "contribution": 4122, + "question": 333, + "contribution": 3631, "answer": 3, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68f6cefc-c091-4594-b382-4e7a0797575b", + "pk": "4f186d93-c0a5-45e9-90d6-92218dba9e5c", "fields": { - "question": 349, - "contribution": 1824, - "answer": 1, - "count": 5 + "question": 319, + "contribution": 4120, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "68fad76d-ff91-4b0d-940e-30d6c5582a51", + "pk": "4f1a9adb-3793-42e3-a13c-ee823e572373", "fields": { - "question": 359, - "contribution": 3893, - "answer": 5, - "count": 1 + "question": 473, + "contribution": 3645, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "690dc069-db93-45f3-aa2b-28b167b0d4de", + "pk": "4f24cfaf-0f59-4c77-bdf3-56a7aac5a876", "fields": { - "question": 357, - "contribution": 4037, - "answer": 1, - "count": 1 + "question": 326, + "contribution": 881, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "690ef5f7-0140-48e1-8752-136ce7a028bb", + "pk": "4f250c12-aa7b-448b-9e8c-8834d3c06714", "fields": { - "question": 321, - "contribution": 3422, - "answer": 4, + "question": 477, + "contribution": 1780, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6912dd8d-d6e6-45e4-8dc5-9133148f9975", + "pk": "4f31971d-b6d8-4528-9b16-80ad5f8cbd5f", "fields": { - "question": 315, - "contribution": 836, - "answer": 4, + "question": 257, + "contribution": 3462, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "691ba665-ea6b-4e9a-a388-1813ed86f4fe", + "pk": "4f3d0c7b-fa9a-4315-84cf-28ed6492fbef", "fields": { - "question": 336, - "contribution": 1660, - "answer": 1, - "count": 4 + "question": 359, + "contribution": 1812, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "691cb3ee-138e-44ef-a5d4-e40d76db63b8", + "pk": "4f4420b6-4448-4c69-b769-fb5d663a7f55", "fields": { - "question": 316, - "contribution": 3462, + "question": 477, + "contribution": 3859, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "692a5aed-aef9-4976-b768-b7e1f80318b0", + "pk": "4f5221b5-54fe-4d75-9dcc-4d51c09eec5a", "fields": { - "question": 327, - "contribution": 1613, + "question": 349, + "contribution": 3367, "answer": 1, - "count": 19 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "693ac58d-5e74-49f1-b801-74991dfd68b5", + "pk": "4f5b862a-9e25-4aa6-82c3-0ec0201d1fe9", "fields": { "question": 328, - "contribution": 1780, - "answer": 4, - "count": 1 + "contribution": 4117, + "answer": 5, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "694256c3-3626-436f-aec3-08eb1bde7ceb", + "pk": "4f6062a5-f234-44ce-a33b-5284c4667fd7", "fields": { - "question": 356, - "contribution": 4232, - "answer": 1, + "question": 255, + "contribution": 1668, + "answer": 2, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "4f6b11e8-f013-4a1d-ad4e-3d66a5cc1fa0", + "fields": { + "question": 355, + "contribution": 1776, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "694298f5-0b9d-4016-b87c-b0d70ac3b1e8", + "pk": "4f726c5a-137e-4d39-9cb0-11c2ab24fa18", "fields": { - "question": 323, - "contribution": 1626, - "answer": 1, - "count": 3 + "question": 315, + "contribution": 4128, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69466de4-79de-4056-9e8d-e23eae54b591", + "pk": "4f817c6e-b273-4f73-8a7d-2f95820c0ef5", "fields": { - "question": 428, - "contribution": 4205, - "answer": 4, + "question": 371, + "contribution": 3553, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69541aac-6d9a-42d8-8900-af52e0c4dce0", + "pk": "4f8aea4c-d396-4f24-bae1-032e3ed15de4", "fields": { - "question": 339, - "contribution": 840, - "answer": 0, + "question": 476, + "contribution": 3739, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69693e9f-9e70-4a7c-97ce-d10b4674e39d", + "pk": "4f8c27d7-1ed5-49b1-aa4f-b8a91e0e42c4", "fields": { - "question": 367, - "contribution": 3679, + "question": 317, + "contribution": 3472, "answer": 1, - "count": 14 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6971b906-1b63-460a-8542-5a1a1aa1003c", + "pk": "4f8fd7bb-ae3a-49fd-98e9-60bb0e1af3ae", "fields": { - "question": 326, - "contribution": 4152, + "question": 329, + "contribution": 3391, "answer": 4, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69722b15-4148-48e4-8934-e1919624a1f5", + "pk": "4f9829b0-532f-4581-9042-048db2f3843b", "fields": { - "question": 315, - "contribution": 1837, - "answer": 3, - "count": 3 + "question": 337, + "contribution": 3482, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6980915c-bd91-459b-bd06-7c96e267712a", + "pk": "4f99b5e4-afab-4194-9062-3032e013f59e", "fields": { - "question": 323, - "contribution": 4116, - "answer": 2, - "count": 5 + "question": 257, + "contribution": 4084, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69873d12-a0e0-4a03-992c-974e14d85bde", + "pk": "4f9d4f11-4bfd-49e2-954b-6b33789ab9d3", "fields": { - "question": 336, - "contribution": 858, - "answer": 1, - "count": 4 + "question": 315, + "contribution": 4100, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6994932c-816d-41ad-bb11-f81c13556b6e", + "pk": "4f9d834b-e76c-4dd6-ae17-ea758b342769", "fields": { - "question": 316, - "contribution": 908, - "answer": 3, - "count": 7 + "question": 323, + "contribution": 4046, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "699549f7-c840-46a0-941f-950e59584be3", + "pk": "4f9ff274-6d95-4d92-9482-4ee7494d10d3", "fields": { - "question": 322, - "contribution": 4040, - "answer": 5, - "count": 1 + "question": 345, + "contribution": 3405, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "699890f3-d1d9-41bc-9299-97594b14dfa6", + "pk": "4fa1f9be-9b51-4b10-a039-50a54bfc1459", "fields": { - "question": 371, - "contribution": 3594, + "question": 370, + "contribution": 3849, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69a0d900-7e65-40e6-85c9-2b73593e35a2", + "pk": "4fa4d48d-ef64-486e-8d44-912647a0df82", "fields": { - "question": 344, - "contribution": 1663, + "question": 356, + "contribution": 1189, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69ac3c61-5816-4ee1-a25a-41d19a941b52", + "pk": "4fa6e4ca-4cb6-4ed5-80c7-503752a43c2d", "fields": { - "question": 346, - "contribution": 3899, - "answer": 3, - "count": 1 + "question": 336, + "contribution": 4072, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69ae5885-ee9f-4062-9623-ee9bc9c6b855", + "pk": "4fb90e4e-f60d-4ed8-bf3a-7ac0ed2a5ae7", "fields": { - "question": 319, - "contribution": 4028, - "answer": 2, + "question": 344, + "contribution": 3610, + "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69b736dc-b348-4a58-9fef-bc2173320199", + "pk": "4fbb7a50-8351-49ea-b3e0-367e4cc1753f", "fields": { - "question": 328, - "contribution": 1613, - "answer": 3, - "count": 5 + "question": 349, + "contribution": 3516, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69c4c28f-3638-4738-a348-f04975bd8af7", + "pk": "4fc1a1f0-36ac-4650-a7c4-9b0fcb04e2ae", "fields": { - "question": 335, - "contribution": 4261, - "answer": 2, + "question": 333, + "contribution": 3595, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69c96d56-04b7-445e-a7e0-e6958ef39bc2", + "pk": "4fc1cd18-99fc-4af3-9949-d01b57b46e49", "fields": { - "question": 458, - "contribution": 4141, - "answer": 3, + "question": 360, + "contribution": 1804, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69d21ed4-a60d-4eb2-b5ce-005d70092116", + "pk": "4fd7e29f-b379-42c7-a82f-4b7feadf6011", "fields": { - "question": 356, - "contribution": 1258, + "question": 355, + "contribution": 3528, + "answer": 1, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "4fdd6488-4082-4e6b-88ec-5da9dfb73611", + "fields": { + "question": 319, + "contribution": 4116, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69e629a3-f78a-4be2-97cf-694b24866c6d", + "pk": "4fe4a351-5a87-4dc5-addb-50d8bf6135dc", "fields": { - "question": 349, - "contribution": 3516, + "question": 346, + "contribution": 1881, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69eb0c78-5f6c-4266-8422-9debbc456a5b", + "pk": "4ff00522-ed55-4994-987f-13066678a642", "fields": { - "question": 323, - "contribution": 3462, - "answer": 4, - "count": 5 + "question": 322, + "contribution": 3434, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69ed9e0b-c624-41b3-91eb-87c07a001270", + "pk": "5005e98d-01f9-4d6a-b0c2-25a2a1a45506", "fields": { - "question": 260, - "contribution": 3474, - "answer": 4, - "count": 2 + "question": 356, + "contribution": 4279, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "69f83c40-d0e0-451c-b79a-f66817296959", + "pk": "50110851-2893-4e2d-8d72-ccecb2a7c29e", "fields": { "question": 472, - "contribution": 4022, - "answer": 1, - "count": 2 + "contribution": 4120, + "answer": 5, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a0eee35-d106-46a9-aaae-1d62ad1ca4e8", + "pk": "5013a06f-bbe3-4e57-a484-316964a21c4b", "fields": { - "question": 262, - "contribution": 880, + "question": 317, + "contribution": 884, "answer": 1, - "count": 27 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a22982c-2646-491e-b7ce-ba9e91a5daee", + "pk": "501cd804-536e-4186-bdfe-1dc8bb424ed2", "fields": { - "question": 356, - "contribution": 4039, - "answer": 3, + "question": 322, + "contribution": 3394, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a2b049f-c520-4b32-b772-175154e39bdc", + "pk": "501d49be-7c2c-4250-8796-8a5cdde11225", "fields": { - "question": 347, - "contribution": 4129, - "answer": 5, - "count": 1 + "question": 257, + "contribution": 3462, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a2dcf4d-c5b6-45fa-8af6-b68f28bfa129", + "pk": "5022664f-6697-47db-be35-442fb7063850", "fields": { - "question": 366, - "contribution": 3886, - "answer": 1, - "count": 3 + "question": 344, + "contribution": 1809, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a2e9143-9f48-4bfa-95ab-834ec1534e50", + "pk": "5029e424-bd8c-4ebe-9fd9-3476548535d3", "fields": { - "question": 348, - "contribution": 3546, + "question": 340, + "contribution": 868, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a310a99-03af-490f-a07c-631dd3926ac8", + "pk": "502a64d5-9f7c-4f73-990f-c7a8ab29d3e2", "fields": { - "question": 361, - "contribution": 1836, + "question": 354, + "contribution": 3528, "answer": 2, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a347837-96ec-4b02-bc82-ddb8cd401536", + "pk": "5037653a-3fed-4cd1-9113-eff19be6b20c", "fields": { - "question": 346, - "contribution": 3855, + "question": 329, + "contribution": 3666, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a381229-553f-4937-86be-0dbd2e306aa3", + "pk": "503da5d2-ede3-44fe-8268-f2edeb7e09ed", "fields": { - "question": 359, - "contribution": 3649, - "answer": 1, - "count": 8 + "question": 346, + "contribution": 3606, + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a3f338c-c5c7-477c-9cdd-19abd6df570f", + "pk": "50450f94-e1fe-4e59-92e1-310aadd4c3dc", "fields": { - "question": 325, - "contribution": 1802, - "answer": 4, + "question": 347, + "contribution": 3896, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a4685f2-3fe2-46d7-bacd-aa4cc2718482", + "pk": "50615c98-ee79-434f-8a00-e888aa576d7c", "fields": { - "question": 346, - "contribution": 1235, + "question": 361, + "contribution": 1807, "answer": 1, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a49e896-15b7-4b95-8b4d-f7d797dd5188", + "pk": "5075b702-42a0-45d0-9456-c8d3ea7a2179", "fields": { - "question": 337, - "contribution": 840, + "question": 257, + "contribution": 4052, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a4ab221-5f60-426e-92c2-66f34c081857", + "pk": "50775d0d-6e3d-4208-9ba5-3f2710cb7b5c", "fields": { - "question": 404, - "contribution": 4024, - "answer": 2, - "count": 1 + "question": 369, + "contribution": 3916, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a4b1b2d-a24b-4b27-80dc-7044af2c0838", + "pk": "5087b44a-6c71-4e9a-9937-420db4426d15", "fields": { - "question": 472, - "contribution": 3645, - "answer": 5, - "count": 4 + "question": 328, + "contribution": 1617, + "answer": 1, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a4d359b-0018-49cd-8dc6-8cbe590bf07b", + "pk": "50987e5a-e19c-4370-9a25-00c25ac3f8af", "fields": { - "question": 325, - "contribution": 4023, + "question": 355, + "contribution": 1243, "answer": 1, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a4f7e61-edd9-413d-989a-dc981acef306", + "pk": "5099cf6e-2b76-4f78-9c47-dbd957b24887", "fields": { - "question": 346, - "contribution": 1151, + "question": 354, + "contribution": 1785, "answer": 1, - "count": 2 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a508a0e-9f1e-43a5-be4c-c57fdd0de443", + "pk": "50a4106e-f6aa-4ff7-a8db-ee3a16791778", "fields": { - "question": 473, - "contribution": 3440, + "question": 323, + "contribution": 880, + "answer": 4, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "50b07b89-2ffd-47de-97c5-df025622985e", + "fields": { + "question": 336, + "contribution": 3735, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a51697b-d3f6-474a-906f-acfe8a6a4ac8", + "pk": "50b179b1-8c34-4523-8d92-b6ea7a01f33a", "fields": { - "question": 362, - "contribution": 1827, + "question": 262, + "contribution": 1724, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a56bd4e-3ee0-4fef-8828-27ab38a4fca4", + "pk": "50b4a518-828b-4df6-a9f2-74fa72580145", "fields": { - "question": 315, + "question": 255, "contribution": 1612, - "answer": 4, - "count": 2 + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a57da6b-e163-4fe5-87bf-1c3a1ac16fdb", + "pk": "50c668f2-f076-44bf-af96-849fcc1cb026", "fields": { - "question": 343, - "contribution": 4189, - "answer": 1, - "count": 8 + "question": 322, + "contribution": 3725, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a5a1b9a-04f2-4b7b-a1e5-26b7b8417fff", + "pk": "50ccaa74-5737-4ae9-8fed-4d5db5fa54fa", "fields": { - "question": 316, - "contribution": 3739, - "answer": 2, + "question": 398, + "contribution": 3781, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a5af1f2-a321-4757-a08c-9a5f1c026b18", + "pk": "50e7c04a-927e-4d0e-beec-edf980dd006e", "fields": { - "question": 343, - "contribution": 3899, - "answer": 5, + "question": 355, + "contribution": 3847, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a67059c-2a00-47a1-b141-a2d6c5007e62", + "pk": "50e94a17-9607-4b22-a6ad-b7d2077b0e02", "fields": { - "question": 347, - "contribution": 1860, + "question": 315, + "contribution": 1634, + "answer": 1, + "count": 20 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "50e96581-dce9-447e-8cf4-76f23bcb8d6c", + "fields": { + "question": 472, + "contribution": 3440, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a6bfc5e-1c88-4da2-a2d2-d733e96f6143", + "pk": "50f2c8c3-c37c-49fb-ab04-e117a9a158bd", "fields": { - "question": 331, - "contribution": 3739, - "answer": 3, + "question": 461, + "contribution": 3453, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a740e77-2f5d-4c90-8c93-3fb3206744b9", + "pk": "50f50a32-5ab8-4cb3-bb2b-4cd6cc237c48", "fields": { - "question": 326, - "contribution": 1780, + "question": 346, + "contribution": 3487, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a7fafcb-cf0a-405e-b4da-09078e99f0db", + "pk": "51062745-852a-4442-91bb-aaa97867b9fb", "fields": { - "question": 321, - "contribution": 1668, - "answer": 2, - "count": 3 + "question": 329, + "contribution": 3519, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a80ff10-ba1f-4356-b39b-7f19eac7ffe5", + "pk": "510c8d2f-7705-4968-9f58-0c451073f047", "fields": { - "question": 327, - "contribution": 1635, - "answer": 5, - "count": 1 + "question": 401, + "contribution": 3646, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a8fc024-4cc6-417f-89b1-54f44370bdce", + "pk": "5112e505-e7e1-4641-a062-ff5872b54e7a", "fields": { - "question": 346, - "contribution": 1204, - "answer": 4, + "question": 367, + "contribution": 3683, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6a9c5772-da5b-4347-af7f-fd8a98642aeb", + "pk": "511c0496-345d-44cc-a00e-027a876bffb0", "fields": { - "question": 346, - "contribution": 1204, + "question": 328, + "contribution": 1635, "answer": 3, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6aa27fcc-2451-4150-bdb5-81f085bfdcf8", + "pk": "5124bd6d-6074-45bf-bf77-c30b8f3ecd0a", "fields": { - "question": 356, - "contribution": 4269, - "answer": 2, - "count": 1 + "question": 351, + "contribution": 804, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6aa5b465-5118-4a75-b128-36dbcc06631f", + "pk": "5125b3b4-6b85-4ab8-a281-f09b4ee26d96", "fields": { - "question": 327, - "contribution": 3519, - "answer": 2, + "question": 355, + "contribution": 1782, + "answer": 1, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6aac03f1-5582-4683-ade3-9448eff543dc", + "pk": "512a4406-c6ab-46d9-b8f9-7068bfa8a329", "fields": { - "question": 344, - "contribution": 1207, - "answer": 2, - "count": 1 + "question": 337, + "contribution": 4122, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6aad0000-cb24-460d-868f-f7b0a52a67f2", + "pk": "512b83bd-16c7-4e7b-ac61-bca9b9007f39", "fields": { - "question": 347, - "contribution": 3509, + "question": 367, + "contribution": 3390, + "answer": 5, + "count": 5 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "512fada3-2793-4b28-94ee-1d993a4ef9f2", + "fields": { + "question": 335, + "contribution": 1284, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ab6ae18-ce02-4061-8ba3-fcf705179371", + "pk": "5135af50-fb45-4645-a81c-176d9e09defd", "fields": { - "question": 328, - "contribution": 3722, - "answer": 4, - "count": 7 + "question": 323, + "contribution": 3679, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ac058a2-a7d7-44d7-a6c7-271b1b6a850e", + "pk": "513dc28f-cf28-4d13-a0b2-c2a8459e937f", "fields": { - "question": 340, - "contribution": 1638, - "answer": 4, + "question": 349, + "contribution": 1749, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ac77e3a-00be-461c-b319-3807afa138f0", + "pk": "5140fa27-251a-4408-9b0b-8a935fccbcee", "fields": { "question": 473, - "contribution": 3416, - "answer": 1, - "count": 1 + "contribution": 1734, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ad22b6b-5bbb-4b78-99f8-9181360f553d", + "pk": "514b52be-745d-4299-a07a-6e40311c0f90", "fields": { - "question": 360, - "contribution": 1836, + "question": 359, + "contribution": 1810, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ad6f61c-e34f-41ca-ba1b-09eaa94147cd", + "pk": "514e10c1-2bdd-4d76-abf8-50c805048eb5", "fields": { "question": 475, - "contribution": 3440, - "answer": -3, + "contribution": 3645, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ad82b8c-1689-4486-8da7-77503209bb1f", + "pk": "5153ecf7-5a13-442c-9c10-e43e19795cc9", "fields": { - "question": 372, - "contribution": 3466, + "question": 345, + "contribution": 3536, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6aeb0f44-3bb6-4b4b-8aa9-cd290d9d9786", + "pk": "5162747f-aa05-4242-9b39-b484c4d00002", "fields": { - "question": 257, - "contribution": 4046, - "answer": 2, - "count": 2 + "question": 326, + "contribution": 3740, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6aed5926-36dd-4f45-bc99-ce5797e0ac4b", + "pk": "51665116-cde6-4b07-ac53-af4e1a370b68", "fields": { - "question": 361, - "contribution": 3597, - "answer": 1, + "question": 326, + "contribution": 1186, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b008413-1a25-482a-8f14-87aee90fdece", + "pk": "5168583d-f9ae-4ffe-b250-6edc1bff29f1", "fields": { - "question": 326, - "contribution": 1776, - "answer": 1, - "count": 16 + "question": 258, + "contribution": 4128, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b06469e-351e-45e7-9d10-dbbed4bd4cec", + "pk": "516a7bb5-1c78-448b-badf-509255fa6661", "fields": { - "question": 349, - "contribution": 3405, - "answer": 1, - "count": 2 + "question": 325, + "contribution": 3726, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b0a0fcf-39d5-44d6-b426-287f0ee0f4bf", - "fields": { - "question": 322, - "contribution": 4116, - "answer": 5, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "6b0efb72-ee5b-4222-9e2b-bcfa2389f061", + "pk": "516f4874-a3c8-4b98-b825-7c9f097c8a8a", "fields": { "question": 346, - "contribution": 1202, + "contribution": 1663, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b167630-1a80-43a2-abf8-7bf1ffbf027e", + "pk": "51807f2a-54af-4d61-815a-2b2f805c7f50", "fields": { - "question": 257, - "contribution": 4138, + "question": 340, + "contribution": 1748, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b1c7408-111e-4c15-848b-a25d7a3c235e", + "pk": "51820521-9855-4b78-9f95-e553662ba38a", "fields": { - "question": 319, - "contribution": 3679, + "question": 370, + "contribution": 3831, "answer": 2, - "count": 6 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "6b1e8997-e6e4-49d7-85d6-e387f7669def", - "fields": { - "question": 356, - "contribution": 4244, - "answer": 1, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "6b2ae959-a778-46d9-b712-722c2bdc93d0", - "fields": { - "question": 317, - "contribution": 4028, - "answer": 1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b2bc617-230a-43c8-b2d4-0e74872d71f1", + "pk": "51874253-2294-4a34-b79a-d1999210b349", "fields": { - "question": 355, - "contribution": 3852, - "answer": 1, - "count": 6 + "question": 323, + "contribution": 908, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b37b8b4-7a5f-4b20-92e8-ac03917c5502", + "pk": "518a3b30-1976-4068-aaee-e6676dd8d62a", "fields": { - "question": 371, - "contribution": 3553, - "answer": 3, - "count": 2 + "question": 361, + "contribution": 3637, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b3de632-c0d3-4461-aae3-727ffad354dc", + "pk": "518b8d28-abb1-4732-b630-47caacba7aaa", "fields": { - "question": 262, - "contribution": 3390, + "question": 260, + "contribution": 3721, "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b4815cd-57f0-47c7-8673-bba0faf31e43", + "pk": "519fea00-27aa-41b7-9899-e83369d163eb", "fields": { - "question": 337, - "contribution": 4020, + "question": 325, + "contribution": 3530, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b4e95e4-e5db-4819-88ff-bf5507734e3f", + "pk": "51a0fc58-e5f7-4701-b641-8362614e4d7b", "fields": { - "question": 258, - "contribution": 880, - "answer": 5, - "count": 1 + "question": 317, + "contribution": 4118, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b508008-f39e-418a-a186-8c81b11e70a6", + "pk": "51a2fb72-a1b3-49ac-94eb-720ce3b46ba8", "fields": { - "question": 1, - "contribution": 4300, - "answer": 3, - "count": 4 + "question": 473, + "contribution": 4185, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b50ba37-5976-4f0d-bd49-749a045a2088", + "pk": "51a9836d-ff36-411b-bde9-f597a469665a", "fields": { - "question": 340, - "contribution": 3727, + "question": 395, + "contribution": 3781, "answer": 2, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b552ed3-f1db-4692-8e11-6dfe5955c12d", + "pk": "51b65112-5a04-403d-b4c0-40bbc063c85b", "fields": { - "question": 325, - "contribution": 4101, - "answer": 5, - "count": 2 + "question": 473, + "contribution": 1634, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b5c067e-eba2-42aa-b39f-7e7c7b72efab", + "pk": "51ba101a-252a-491d-822e-b0160dd3da10", "fields": { - "question": 339, - "contribution": 4122, - "answer": -1, + "question": 320, + "contribution": 1658, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b5cc9ee-7a2e-48be-b8b4-f62e33397b07", + "pk": "51bdc42f-e373-4e1c-9fc5-ab0b9f917ccc", "fields": { - "question": 347, - "contribution": 3896, + "question": 354, + "contribution": 1187, "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b60036a-eaf8-4c08-af47-224202093584", + "pk": "51bf5bb5-e974-49b5-83da-1e28c3f74588", "fields": { "question": 346, - "contribution": 3900, - "answer": 4, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "6b6840c2-045e-42a9-9e86-11a3e3d47f95", - "fields": { - "question": 351, - "contribution": 826, - "answer": 1, + "contribution": 4129, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b741fd1-3baf-45ea-aa42-d099f9a14b8a", + "pk": "51caa698-b64a-4f07-a274-5211d903f978", "fields": { - "question": 337, - "contribution": 4072, + "question": 317, + "contribution": 1680, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b91dfb5-ae69-4e53-8abe-b000027c1a1f", + "pk": "51ccf765-a5ea-4bcd-87c1-e7f7231ab3ed", "fields": { - "question": 258, - "contribution": 3394, - "answer": 1, + "question": 473, + "contribution": 3390, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b95ff64-6b1b-431b-9c4f-ae09cbe3dac6", + "pk": "51cf39a4-a45d-4921-ad65-7fd01928823f", "fields": { - "question": 323, - "contribution": 1612, + "question": 319, + "contribution": 3422, "answer": 5, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6b9bc96e-762d-45fc-9b1b-5f7f2a2e35fa", + "pk": "51d04385-0339-4f65-911f-3bc6c9cbbc41", "fields": { - "question": 329, - "contribution": 3556, - "answer": 5, + "question": 338, + "contribution": 1662, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6bab0c5d-ee4e-4267-ba1b-eefce509d392", + "pk": "51f2bd53-5af4-4bf5-90f2-0faa94f5ac59", "fields": { - "question": 339, - "contribution": 886, - "answer": 2, - "count": 3 + "question": 464, + "contribution": 3862, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6babd95c-2db3-486f-9954-78f49d208f73", + "pk": "51fbf844-c36d-4fe7-b6e3-afeca9589cfa", "fields": { - "question": 329, - "contribution": 1725, + "question": 336, + "contribution": 1710, "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6bac9d6f-3141-45f4-9240-b06ade47b66b", + "pk": "51fe3a77-6bba-4e27-92fc-50f2dfc2c9a5", "fields": { - "question": 343, - "contribution": 3912, + "question": 368, + "contribution": 3473, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6bb8365d-e03f-4e6c-8920-b30f8ed012f5", + "pk": "5200232e-9786-4828-a367-fdc9ae539aa5", "fields": { - "question": 464, - "contribution": 4141, - "answer": 1, + "question": 316, + "contribution": 3679, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6bbc018a-cb1b-4c7f-8297-5ea458a4f555", + "pk": "5200a060-8161-4a2a-9abd-f70aa370044f", "fields": { - "question": 362, - "contribution": 1812, - "answer": 3, + "question": 340, + "contribution": 1640, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6bc150af-04ec-4457-bc29-d8c2aa44c7a1", + "pk": "5205e99c-d99f-4636-b11d-ea904db52cc3", "fields": { - "question": 346, - "contribution": 1809, - "answer": 2, - "count": 3 + "question": 259, + "contribution": 1626, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6bc24805-a3e0-44e0-87d2-e3559f0fcd81", + "pk": "520d069b-bb4e-4e53-97af-97ee7409ae83", "fields": { - "question": 371, - "contribution": 4204, - "answer": 1, - "count": 17 + "question": 368, + "contribution": 1635, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6bd5f57b-6b0d-4e67-b4aa-b163cdb7e198", + "pk": "5214d542-e519-4514-9d7d-0cdb472c3b38", "fields": { - "question": 326, - "contribution": 3463, - "answer": 5, - "count": 2 + "question": 255, + "contribution": 3721, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6bd7e842-34f4-4a13-b50e-00ac43614072", + "pk": "5224a581-7aaf-4b2f-83cc-23d1e5086147", "fields": { - "question": 321, - "contribution": 3721, - "answer": 4, - "count": 5 + "question": 319, + "contribution": 4028, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6bd9dcc6-b1a2-4c45-ada3-08433b396599", + "pk": "5226ebe5-1bec-44b5-982e-732fbfc059d0", "fields": { - "question": 339, - "contribution": 3486, - "answer": -2, - "count": 1 + "question": 260, + "contribution": 1626, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6be9b618-9558-4157-a697-4e524ea5cd5e", + "pk": "5227dcad-04c4-4e57-8426-55e86002efb1", "fields": { - "question": 326, - "contribution": 885, - "answer": 4, - "count": 2 + "question": 346, + "contribution": 3728, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6bedca02-059f-419e-8b18-c1faee6db7d4", + "pk": "52294e99-f96b-427f-81c3-458b8e37a0d2", "fields": { - "question": 255, - "contribution": 3472, + "question": 329, + "contribution": 1617, "answer": 2, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c07aa5e-1bf5-4d64-82da-143e082b99ae", + "pk": "523ab36c-646c-4024-96c8-465340a429d8", "fields": { - "question": 346, - "contribution": 3796, - "answer": 4, + "question": 343, + "contribution": 1869, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c082958-a73b-461b-8ab8-6dfb7e1e1433", + "pk": "524d8dec-1f18-4d40-92bb-2c058db9f9dc", "fields": { - "question": 315, - "contribution": 880, - "answer": 5, + "question": 473, + "contribution": 3739, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c0f289d-3c71-4ceb-971c-bf614451c88d", + "pk": "52588062-72c2-4624-8e77-f42372cfab4c", "fields": { - "question": 337, - "contribution": 3452, - "answer": 2, + "question": 346, + "contribution": 1881, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c1055c8-19c1-4012-ab04-3c7ac6487d58", + "pk": "525c0f48-103f-4c2a-aea2-b6e4b1cc038c", "fields": { - "question": 473, - "contribution": 4120, - "answer": 0, - "count": 14 + "question": 345, + "contribution": 3526, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c1824eb-b9bb-4b9e-913f-d863aa688028", + "pk": "525eedc3-e2c6-430e-80bc-6f2d7af6c5d2", "fields": { - "question": 325, - "contribution": 4047, - "answer": 1, - "count": 10 + "question": 460, + "contribution": 4073, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c2a8f60-2dea-45be-bbe1-4b344f0d79ae", + "pk": "5261e9e5-4371-4051-bceb-72ffdffb9e69", "fields": { "question": 339, - "contribution": 3404, - "answer": -1, - "count": 3 + "contribution": 89, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c2d1da2-c8b0-4ccb-aa4c-8f2f67594511", + "pk": "528fe60a-3ac2-4db6-947c-965fc90519c8", "fields": { - "question": 370, - "contribution": 1860, + "question": 338, + "contribution": 1644, "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c31a41d-e621-40a1-ba2e-984f54558c9e", + "pk": "5292a751-1e35-4abf-8e9d-c21564dffaf4", "fields": { - "question": 370, - "contribution": 3610, - "answer": 3, + "question": 259, + "contribution": 3474, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c321bdf-5bd8-4094-86b5-7b1ebc08de14", + "pk": "529c6551-4aab-4c8f-bd3a-48236ce067b6", "fields": { - "question": 367, - "contribution": 3406, - "answer": 3, + "question": 349, + "contribution": 1203, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c4698b5-5a33-41f2-bc0d-d20c693d98f1", + "pk": "52a2ce8f-f1d7-4c59-9a3d-eda3aa74d5e1", "fields": { - "question": 343, - "contribution": 1922, + "question": 350, + "contribution": 864, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c49d834-33e6-4f92-8093-9f5af99d6fb5", + "pk": "52ad3589-474a-43b0-ba38-9a868627383c", "fields": { - "question": 343, - "contribution": 3451, - "answer": 4, + "question": 332, + "contribution": 1283, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c4a5a26-784c-41b9-8bad-4028473ffd89", + "pk": "52b01522-32fa-41cb-af21-79ecd17eae2e", "fields": { - "question": 392, - "contribution": 3775, - "answer": 2, - "count": 2 + "question": 354, + "contribution": 3608, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c4ea87f-9f8d-4033-8f14-f012fe18681b", + "pk": "52be4cab-ebb0-4d0b-b744-517f1a7e43c9", "fields": { - "question": 344, - "contribution": 4129, - "answer": 5, - "count": 1 + "question": 345, + "contribution": 1204, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c5f9770-1a8b-44f1-aca3-aa9947401ae0", + "pk": "52c28c2d-d3ff-470b-a067-de9e0ecf33bf", "fields": { - "question": 357, - "contribution": 4232, + "question": 472, + "contribution": 4116, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c62c5ed-d725-4512-8277-7bd8a166e9e8", + "pk": "52ce8bb5-c447-4b8c-adf6-665fdf872bd1", "fields": { - "question": 476, - "contribution": 1612, - "answer": 1, + "question": 409, + "contribution": 3984, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c653cc7-b5f6-4d2c-a5ea-e56ac5024fcf", + "pk": "52dcc061-48b0-47b3-9de5-94e662f73071", "fields": { - "question": 344, - "contribution": 1206, - "answer": 1, - "count": 4 + "question": 354, + "contribution": 4223, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c668b02-d66d-47b8-bebb-bedc2bde6126", + "pk": "52e06557-6337-4314-8da3-2e1722791d9e", "fields": { - "question": 331, - "contribution": 3434, - "answer": -1, + "question": 327, + "contribution": 1725, + "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c6da8f5-24b0-403e-9816-4c2ae1c47a7a", + "pk": "52e3d4f2-e8b4-4402-88de-d5943a909775", "fields": { - "question": 357, - "contribution": 3848, - "answer": 4, - "count": 1 + "question": 348, + "contribution": 1202, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c73605f-bd6b-41ca-aef9-bf3df3129895", + "pk": "52e47176-e056-4285-ba1b-bbeac14cbd51", "fields": { - "question": 326, - "contribution": 1154, - "answer": 2, - "count": 11 + "question": 323, + "contribution": 3721, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c792295-d5ea-47eb-b7c0-59b6bbe899b3", + "pk": "52e627a7-1be8-431c-9d9d-6386f8383252", "fields": { - "question": 341, - "contribution": 1644, + "question": 344, + "contribution": 3528, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c8f6e56-0be3-4a0a-b105-a711fd7362df", + "pk": "52f0f252-101e-4993-91e4-7093a04a891d", "fields": { - "question": 320, - "contribution": 908, - "answer": 1, - "count": 9 + "question": 331, + "contribution": 1634, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c91987d-94c5-4241-b037-cc9c8f9600e7", + "pk": "52fd183e-609a-4c13-be79-1c63cae34d66", "fields": { - "question": 355, - "contribution": 4269, - "answer": 1, - "count": 1 + "question": 477, + "contribution": 3740, + "answer": -1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6c9ddb7c-cfd7-4100-8d3b-297a4bb26712", + "pk": "52ffe635-210b-485e-b9e5-a84157c1a21d", "fields": { - "question": 438, - "contribution": 4140, - "answer": 2, - "count": 2 + "question": 349, + "contribution": 4003, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6cc13c74-abc2-4ea7-814f-aa87a3c3f8b7", + "pk": "53081296-69e7-4644-9242-1771254b4526", "fields": { - "question": 257, - "contribution": 3354, - "answer": 2, - "count": 5 + "question": 259, + "contribution": 3462, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6cddfeb9-69b0-45e3-b26a-1a9e6397728a", + "pk": "5309e5f2-5676-4b63-a570-3ee814967692", "fields": { - "question": 257, - "contribution": 880, - "answer": 5, + "question": 346, + "contribution": 3516, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ce66794-fa04-4d98-9729-0693520d3349", + "pk": "530c4e69-2476-4631-9258-0cbe9bbf15f4", "fields": { - "question": 357, - "contribution": 1784, - "answer": 1, - "count": 3 + "question": 340, + "contribution": 868, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6cea6467-9e62-40df-9782-6f59932fd916", + "pk": "5311bf31-4661-4f7e-a336-21acf753befd", "fields": { - "question": 323, - "contribution": 1724, - "answer": 1, - "count": 3 + "question": 339, + "contribution": 4002, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6cf1029d-badf-415b-9525-6be06bcd3630", + "pk": "5316e015-bea2-488d-9ca4-6a756fb8baad", "fields": { - "question": 357, - "contribution": 4266, + "question": 404, + "contribution": 4038, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6cf75fd1-4adf-4fa3-b701-c9d48de96553", + "pk": "53195c37-f551-4884-bced-fd1b637db35b", "fields": { - "question": 472, - "contribution": 858, - "answer": 5, + "question": 336, + "contribution": 1638, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6cf7dae5-d9a3-4525-a9b2-a4d6af5ab88e", + "pk": "531c1f5d-ba5d-44f1-87a7-9a650c6b8a7c", "fields": { - "question": 353, - "contribution": 3546, - "answer": 1, - "count": 6 + "question": 344, + "contribution": 1843, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6cf829c0-344e-47ed-b60d-917d2dabb1d4", + "pk": "5322da56-2e28-42a6-897b-c842de427a74", "fields": { - "question": 453, - "contribution": 4185, - "answer": 3, - "count": 3 + "question": 322, + "contribution": 1626, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d09d001-8dbb-4768-9235-9b40840a06eb", + "pk": "5328acb9-db32-4a05-b1ed-c998bb0625bd", "fields": { - "question": 476, - "contribution": 4138, - "answer": -1, - "count": 8 + "question": 339, + "contribution": 1656, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d13956d-0643-48b2-a893-10d28e2b0819", + "pk": "532c79c7-309f-4d55-85ee-7b99424deddc", "fields": { - "question": 477, - "contribution": 1635, - "answer": 2, - "count": 2 + "question": 319, + "contribution": 1658, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d14c79d-40d5-4c61-942f-843541fc7d8a", + "pk": "532eb48d-e287-48f3-8daa-951c779f9f10", "fields": { - "question": 361, - "contribution": 1825, + "question": 357, + "contribution": 4223, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d1bd9b1-1729-44fd-b091-78822a81cf2e", + "pk": "533412be-1fce-4bec-942e-465951190e28", "fields": { - "question": 475, - "contribution": 3727, - "answer": -1, - "count": 1 + "question": 322, + "contribution": 1658, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d2223e8-e972-4697-a1cd-090ec69ee78f", + "pk": "53558151-8a22-48a4-a409-4f08f09d5ca9", "fields": { - "question": 257, - "contribution": 3725, + "question": 353, + "contribution": 1189, "answer": 1, - "count": 23 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d24d037-abe7-429e-b33e-f22383e2d9eb", + "pk": "53719304-e539-48e7-ad84-b51fa351e9ab", "fields": { - "question": 320, - "contribution": 3474, - "answer": 4, - "count": 4 + "question": 326, + "contribution": 4152, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d30f563-1494-47f9-9bd0-49e2b759c39b", + "pk": "537233d9-828d-4bca-8d18-539c87cb2864", "fields": { - "question": 340, - "contribution": 3466, + "question": 346, + "contribution": 3609, "answer": 1, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d3401b7-7371-448e-badd-275b2aebe725", + "pk": "537987b9-5a1e-4eeb-8ec8-072614f4283d", "fields": { - "question": 345, - "contribution": 3890, - "answer": 1, - "count": 1 + "question": 262, + "contribution": 3462, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d3746cb-93e8-4065-b32b-33f468a52b16", + "pk": "537dcb0b-2849-4727-a5fe-9ceef1cbf711", "fields": { - "question": 328, - "contribution": 4152, - "answer": 5, - "count": 6 + "question": 339, + "contribution": 918, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d40a44a-3df5-4a99-b229-df0963eb56c9", + "pk": "5386e312-f082-4e30-b9fd-6f87ec2b2f65", "fields": { - "question": 473, - "contribution": 3679, - "answer": 0, - "count": 20 + "question": 262, + "contribution": 4084, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d477174-a6a1-4f9b-8c5e-f2af307b3a4a", + "pk": "53951156-62da-48a7-886a-5f53cd72002b", "fields": { - "question": 347, - "contribution": 4191, - "answer": 1, - "count": 2 + "question": 332, + "contribution": 3922, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d531779-7a20-4340-a032-dd7e46c7be95", + "pk": "53a2f1f3-4194-4c3f-8ecf-e3a5daa5d717", "fields": { - "question": 325, - "contribution": 3391, - "answer": 1, - "count": 7 + "question": 476, + "contribution": 3721, + "answer": 0, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d63f198-a989-4636-933a-b0e7cf2b6682", + "pk": "53cbed18-d309-4ba4-8b06-522e5f4e36e6", "fields": { "question": 368, - "contribution": 3722, - "answer": 2, - "count": 3 + "contribution": 3666, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d71639e-7735-4c4d-99ba-ef804a19efa6", + "pk": "53cc4e1a-df30-4802-8b63-d9c45a257a63", "fields": { - "question": 325, - "contribution": 3726, + "question": 371, + "contribution": 4152, "answer": 1, "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d73e4f6-93de-4e32-8680-8281a837f553", + "pk": "53dbd7c3-51d2-4fdf-9468-be0bf0b6164a", "fields": { - "question": 360, - "contribution": 1826, - "answer": 3, - "count": 4 + "question": 344, + "contribution": 1869, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d75e0ef-b05d-4f8f-ace8-f8674dbe13a2", + "pk": "53e30a38-bd2e-4b82-ac78-c54e7ee9c25b", "fields": { - "question": 323, - "contribution": 912, + "question": 322, + "contribution": 3679, "answer": 2, - "count": 8 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d78ef2f-1155-4a43-a193-124498661e0d", + "pk": "53fcf114-6c59-4230-91bc-2f6521b729af", "fields": { - "question": 260, - "contribution": 1837, - "answer": 2, - "count": 8 + "question": 322, + "contribution": 3434, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d88a10e-cf71-4a8c-8a83-f3342074cef2", + "pk": "54124ee7-71f9-403a-bff3-15ac39701b0f", "fields": { - "question": 258, - "contribution": 4118, - "answer": 3, + "question": 346, + "contribution": 3610, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d8a135e-af30-4630-a8a9-3fd2e0289405", + "pk": "5412acfd-e537-47bd-b4a3-ff34eee8aa63", "fields": { - "question": 257, - "contribution": 4128, + "question": 366, + "contribution": 4152, "answer": 2, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d9873a7-1250-42b5-aadf-30fb5b912b94", + "pk": "5413b2f4-036a-420b-83c9-437d5cc78944", "fields": { - "question": 375, - "contribution": 3711, - "answer": 2, - "count": 2 + "question": 316, + "contribution": 4120, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6d9e26a4-6fb6-439a-a601-886d67cf367f", + "pk": "541b0cbf-8c81-4f01-9bc6-920480d0e62b", "fields": { - "question": 346, - "contribution": 3373, + "question": 344, + "contribution": 1851, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6da0c045-2ab5-4474-a357-d362a8835978", + "pk": "542255e3-4cfa-4da0-8d5c-70bda4a83967", "fields": { - "question": 338, - "contribution": 3751, - "answer": 1, + "question": 328, + "contribution": 1778, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6db76982-6e52-444b-83c9-7a9d5369a9f0", + "pk": "542ff185-236d-4069-a5cc-f53f191fd599", "fields": { - "question": 370, - "contribution": 3607, + "question": 346, + "contribution": 1872, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6dc6b092-2c55-4c96-8e15-dcd85f3d82ee", - "fields": { - "question": 323, - "contribution": 1680, - "answer": 5, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "6dcf5948-3b31-4bd2-9ced-f570a8717c52", + "pk": "5433b6d5-fe92-46ba-ba60-c4a283e25574", "fields": { - "question": 255, - "contribution": 3721, - "answer": 3, - "count": 4 + "question": 326, + "contribution": 4117, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6dd4c3a9-514e-4b9f-8b86-04006180bdc0", + "pk": "543e9ae1-6b63-4bdf-975b-8c052b89921a", "fields": { - "question": 320, - "contribution": 3739, - "answer": 3, - "count": 5 + "question": 315, + "contribution": 1724, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6dec29ef-f4e9-41ab-a7ce-2d37859cd869", + "pk": "544788d9-110b-4a80-ac5e-9745a0ca2b9d", "fields": { "question": 477, - "contribution": 1287, - "answer": -1, - "count": 2 + "contribution": 1288, + "answer": 0, + "count": 30 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6dfc555d-056a-4368-94b9-d47073eb3c00", + "pk": "54498e6b-9edf-4320-8c6f-b4c9ace80771", "fields": { - "question": 260, - "contribution": 822, + "question": 322, + "contribution": 4084, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6dfd5b28-2b6f-4a2e-8a88-58ba80bbcf1a", + "pk": "5449c22e-ca5b-49c5-a6a9-fb9137fe03cc", "fields": { - "question": 476, - "contribution": 1658, + "question": 333, + "contribution": 3882, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6dff2bab-405c-4f3a-999d-7921c96eeb47", + "pk": "544f2740-7f51-4781-955b-2367ed4868d8", "fields": { - "question": 320, - "contribution": 3462, - "answer": 3, - "count": 2 + "question": 329, + "contribution": 1617, + "answer": 1, + "count": 26 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e0ca71c-f996-400d-a304-d850fb471ee3", + "pk": "54565f93-6df7-4879-9d2b-2225d53049d8", "fields": { - "question": 317, - "contribution": 3434, + "question": 255, + "contribution": 822, "answer": 1, - "count": 17 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e0f51e1-9c2e-43f2-9261-cdeb4bf15cc1", + "pk": "545f23f3-cac3-4ac0-85e2-a5cd529e14e9", "fields": { - "question": 344, - "contribution": 3487, + "question": 472, + "contribution": 3735, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e1334f4-6016-460d-ae4e-d37aaebe5452", - "fields": { - "question": 475, - "contribution": 3466, - "answer": 3, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "6e1504ef-4159-448b-b469-ae49503d54ef", + "pk": "5460aa2a-dc66-4474-844f-08230ed69e72", "fields": { - "question": 338, - "contribution": 4036, + "question": 322, + "contribution": 4138, "answer": 1, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e16eaca-e2ca-4eb0-ad1a-3f5742b7ac29", + "pk": "547254aa-998e-4d23-81bb-15da2eb8cbda", "fields": { - "question": 340, - "contribution": 3508, - "answer": 1, - "count": 8 + "question": 339, + "contribution": 1656, + "answer": 0, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e17d5bd-3e09-4c6c-8362-23286c97abd9", + "pk": "547ed933-edc0-4253-ac14-adf419f938c6", "fields": { - "question": 326, - "contribution": 1725, + "question": 323, + "contribution": 1634, "answer": 2, - "count": 1 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e1e411f-4c99-41c3-bbad-2041c043c22c", + "pk": "547ef6c4-cbf0-4cfc-b7a0-653122436b62", "fields": { - "question": 323, - "contribution": 1668, - "answer": 2, - "count": 3 + "question": 452, + "contribution": 4185, + "answer": 1, + "count": 29 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e1f2b77-bf3d-4bbb-8607-9a793f2ece40", + "pk": "547f3898-14c6-4cbd-bdfb-4285c9158900", "fields": { - "question": 316, - "contribution": 3390, - "answer": 4, - "count": 9 + "question": 257, + "contribution": 4028, + "answer": 1, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e24195a-1cc9-43d9-8024-59ee8b19a108", + "pk": "548220c7-ef9b-4063-97c0-b2f8748a85cb", "fields": { - "question": 345, - "contribution": 1202, + "question": 328, + "contribution": 4203, "answer": 1, - "count": 11 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e311725-f6c6-4a81-92f6-cc249f97aafe", + "pk": "54a3aa48-2994-4607-b12d-12c5f519ee1b", "fields": { - "question": 321, - "contribution": 880, - "answer": 5, - "count": 3 + "question": 353, + "contribution": 3518, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e37cd6c-eff1-4b94-b256-c46b29a5014c", + "pk": "54a6161f-ad9b-4085-bb29-bd2e3d3fa480", "fields": { - "question": 326, - "contribution": 823, - "answer": 3, - "count": 1 + "question": 368, + "contribution": 1778, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e3dccd1-1506-4e75-8d28-e2899972326f", + "pk": "54a7f572-9b88-447a-9c4e-841c52b539b1", "fields": { - "question": 473, - "contribution": 3404, - "answer": -1, + "question": 327, + "contribution": 3680, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e48431c-5f24-4a3f-a765-446c22772029", + "pk": "54abe3cb-c2c7-4eb9-a152-cef613d939c4", "fields": { - "question": 257, - "contribution": 3665, + "question": 320, + "contribution": 4028, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e4f0489-9182-48d7-a869-7dee3f8a43b7", + "pk": "54b3f040-c87f-4161-b639-8d7e645e7869", "fields": { - "question": 259, - "contribution": 3390, - "answer": 4, + "question": 475, + "contribution": 3645, + "answer": -1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e52cec2-1e24-4675-992d-2c0c1322d313", + "pk": "54b7322b-70d7-42b8-b138-6b8f41855ec2", "fields": { - "question": 347, - "contribution": 3373, - "answer": 5, - "count": 3 + "question": 329, + "contribution": 1681, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e572cd4-e09e-4c2c-b250-e948fcb872ea", + "pk": "54bced67-cd86-4374-83b7-2244ce26b910", "fields": { - "question": 345, - "contribution": 3546, - "answer": 3, - "count": 2 + "question": 372, + "contribution": 3394, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e586ad5-0279-419b-a6b6-ba1395308b37", + "pk": "54beb0bc-b59b-4d35-99b3-9b26e1b3baee", "fields": { - "question": 260, - "contribution": 4120, + "question": 316, + "contribution": 1634, "answer": 4, + "count": 5 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "54c5c153-09b6-413a-89de-086a65a296f5", + "fields": { + "question": 339, + "contribution": 89, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e5ec00f-968c-4783-a7b9-e51141061d44", + "pk": "54ca4f21-6314-4e95-a78e-ee041119ed16", "fields": { - "question": 473, - "contribution": 3486, - "answer": -1, + "question": 344, + "contribution": 3536, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e62c7da-7022-4c83-a68d-a3a62426f581", + "pk": "54cd03a6-b309-45ea-860a-d1d62ff37ddb", "fields": { - "question": 353, - "contribution": 4268, - "answer": 4, + "question": 363, + "contribution": 1827, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e6711d8-86c2-4a9a-b9b6-4e8f1e286d7e", + "pk": "54dfb3fd-4e71-486a-ba1c-f6ba5a5527f7", "fields": { - "question": 370, - "contribution": 3529, - "answer": 1, - "count": 3 + "question": 476, + "contribution": 3462, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e694b72-8dd1-401e-97ea-54fd5ca0993a", + "pk": "54e4625a-6387-4865-8a2c-918005a227b9", "fields": { - "question": 346, - "contribution": 3545, + "question": 337, + "contribution": 3404, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e70b34f-362d-4bf2-98b8-412e9080b164", + "pk": "54f1ee1f-2188-41d0-b936-0010b40e8821", "fields": { "question": 329, - "contribution": 3473, - "answer": 1, - "count": 5 + "contribution": 3885, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e922047-3955-410a-ab33-bd57f7559ff3", + "pk": "5500ffd3-7cb7-4999-a3d3-a2fa9893ce73", "fields": { - "question": 359, - "contribution": 1810, - "answer": 2, - "count": 3 + "question": 346, + "contribution": 869, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6e9f6c24-68fd-441f-a66a-122bffea0eb3", + "pk": "550316d5-23e3-45c6-8b0a-61f08410fe1a", "fields": { - "question": 339, - "contribution": 4094, - "answer": 0, - "count": 9 + "question": 344, + "contribution": 3373, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6eb499c6-603f-4120-8371-474aef91eb35", + "pk": "55135338-f693-47c0-a74a-71438d8ead32", "fields": { - "question": 257, - "contribution": 3354, - "answer": 3, + "question": 258, + "contribution": 1724, + "answer": 2, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "5513a5af-5958-44e5-a5c8-cb3321ff7abe", + "fields": { + "question": 348, + "contribution": 3728, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6eb626ef-e9ae-4fd9-9598-027b6ff2402d", + "pk": "55194690-edfd-4185-8fc5-342f2565b947", "fields": { - "question": 368, - "contribution": 3463, - "answer": 1, + "question": 320, + "contribution": 4046, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6eb9fa15-6c42-41c0-b6db-23ed2e9d748c", + "pk": "5526eb35-e8e7-4da7-9776-a86605078230", "fields": { - "question": 348, - "contribution": 4129, - "answer": 3, + "question": 356, + "contribution": 1776, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ebda4f4-35fd-457c-b11e-1adcb87293c0", + "pk": "552e9f85-0afa-4df5-9bfa-e6cc7f5e181c", "fields": { - "question": 356, - "contribution": 4268, - "answer": 1, - "count": 1 + "question": 320, + "contribution": 908, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ec888bb-d824-4cb8-b58c-3becd0a76b99", + "pk": "552edb47-f2dc-4329-99d5-fc416e67bc79", + "fields": { + "question": 473, + "contribution": 3472, + "answer": 0, + "count": 7 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "553140fd-0a7a-4ad3-9473-7e8178d712d5", "fields": { "question": 326, - "contribution": 3589, - "answer": 2, - "count": 3 + "contribution": 3556, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ed16c9d-db84-4681-aaf2-f61c0ea6c155", + "pk": "5531b5dc-560f-4a8e-8a36-cb1015b8f29a", "fields": { - "question": 262, - "contribution": 3739, - "answer": 3, - "count": 3 + "question": 258, + "contribution": 3721, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ed1fa48-79ff-4f39-8813-9e958c806584", + "pk": "553893ce-1047-4756-a554-9b5280bb23d7", "fields": { - "question": 328, - "contribution": 1778, - "answer": 2, - "count": 3 + "question": 317, + "contribution": 1626, + "answer": 4, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ed69a8b-6d89-42a2-b7f9-2b326c929934", + "pk": "553acadc-dd1c-4e92-9d55-0c66f8b96a3d", "fields": { - "question": 436, - "contribution": 4140, - "answer": 1, + "question": 343, + "contribution": 4189, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ede0145-7a1a-45f2-a9ba-092062cc5661", + "pk": "554b568b-30b6-4389-955b-00ea54fa3084", "fields": { - "question": 329, - "contribution": 1287, - "answer": 2, - "count": 5 + "question": 326, + "contribution": 909, + "answer": 3, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6edf51fd-b1c0-495d-91eb-849dd6cd43d7", + "pk": "554c22c7-9473-4fd3-a46a-db9061dc9a67", "fields": { - "question": 360, - "contribution": 3597, + "question": 325, + "contribution": 1776, "answer": 1, + "count": 15 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "555378f1-0d7f-49c3-8b08-2d9fda60863d", + "fields": { + "question": 345, + "contribution": 4123, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ee7e4c5-7fef-4a21-9cdb-90222f6da6c3", + "pk": "555984c3-67b1-4841-beb4-2090891163bd", "fields": { - "question": 437, - "contribution": 4140, + "question": 336, + "contribution": 4020, "answer": 1, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "555a8c7a-a4cb-4cb2-86a9-c92cded170f6", + "fields": { + "question": 331, + "contribution": 1612, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ef0ab4e-e5fe-49b5-9e49-abf271ea001d", + "pk": "555ddab5-1c77-4733-995d-f7516f85e785", "fields": { - "question": 368, - "contribution": 1669, + "question": 343, + "contribution": 4003, "answer": 1, - "count": 5 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ef4d958-348f-4c8c-ac81-ba9d0ba060e2", + "pk": "55666c99-6f45-4d07-9d18-44661063da25", "fields": { - "question": 325, - "contribution": 1779, + "question": 255, + "contribution": 3422, "answer": 2, - "count": 1 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ef607ff-df48-45ea-9c89-2dfce61e58f7", + "pk": "5568a380-0889-4691-a404-178396623f8a", "fields": { "question": 346, - "contribution": 3822, - "answer": 1, - "count": 3 + "contribution": 1228, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ef77408-4c46-4df4-bd15-1029a689229c", + "pk": "55782fea-5548-4aa6-949c-d718ed209db1", "fields": { - "question": 346, - "contribution": 919, - "answer": 2, + "question": 476, + "contribution": 1724, + "answer": -1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ef9ed10-e11c-44ae-97bf-ebb3d495ff63", + "pk": "55786350-e216-4a60-b1db-ff45fc6ab5dd", "fields": { - "question": 317, - "contribution": 1612, + "question": 346, + "contribution": 3405, "answer": 2, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6efb3e37-bf61-4723-824d-cb368670712e", + "pk": "55799add-74ee-487e-9011-54f9af4f907b", "fields": { - "question": 317, - "contribution": 912, - "answer": 3, - "count": 3 + "question": 325, + "contribution": 1797, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f04d268-937c-4aa2-a9ed-f730cb0ce5f4", + "pk": "55865755-7411-47c4-99ce-e3898a37bb46", "fields": { - "question": 357, - "contribution": 3923, - "answer": 1, + "question": 320, + "contribution": 3679, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f06e129-1a52-4f55-b48b-1ebddb314237", + "pk": "5597d52d-5048-436c-a42c-3844c7601bb8", "fields": { - "question": 325, - "contribution": 3726, - "answer": 4, - "count": 1 + "question": 326, + "contribution": 1288, + "answer": 1, + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f12a237-df5c-46d5-af80-668e1aa11cf0", + "pk": "55982b74-d528-4c67-a0e2-5e2b0458fe2e", "fields": { - "question": 356, - "contribution": 1783, + "question": 332, + "contribution": 3881, "answer": 1, - "count": 4 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f135488-54cb-4380-b6d6-64b274b7a6da", + "pk": "55be7a21-a978-4690-a833-b81e32783766", "fields": { - "question": 346, - "contribution": 4146, + "question": 340, + "contribution": 804, + "answer": 5, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "55c441b1-f6c5-4935-b86e-6bd1eb9e631c", + "fields": { + "question": 322, + "contribution": 3683, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f150344-a831-4df8-aab1-368ec7b039db", + "pk": "55c6c30c-1177-4311-9592-369b0eafee7b", "fields": { - "question": 347, - "contribution": 1204, + "question": 359, + "contribution": 1827, "answer": 2, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f192425-0599-4ab7-8e45-bf11b07ffc27", + "pk": "55c80acf-60df-410b-bb39-b16704b8d4e7", "fields": { - "question": 349, - "contribution": 1749, + "question": 338, + "contribution": 3727, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f1e67db-faf2-4766-ba4b-1fcb2decaecb", + "pk": "55ca0f96-e625-44fb-81f4-bc2bdb0a52ad", "fields": { - "question": 325, - "contribution": 3519, - "answer": 3, + "question": 435, + "contribution": 3976, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f217320-870a-47df-b008-1ad9fbaa05b9", + "pk": "55ca9249-823b-48c0-9669-f242267dbd3b", "fields": { - "question": 357, - "contribution": 3832, + "question": 391, + "contribution": 3775, + "answer": 1, + "count": 5 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "55cb082c-802b-4c95-86f5-868c3748f519", + "fields": { + "question": 323, + "contribution": 4138, + "answer": 1, + "count": 14 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "55cb09ce-4ddd-4bd6-9531-9c2240629c3d", + "fields": { + "question": 436, + "contribution": 4140, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f22937a-65d2-4553-a791-68eaee35b776", + "pk": "55d0ab6a-f637-4404-bfc0-952dd456a507", "fields": { - "question": 356, - "contribution": 4271, + "question": 348, + "contribution": 1874, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f429420-eacc-42d6-923b-2243f7b3d3cd", + "pk": "55d3c90c-3e88-4d8a-abf9-31426dc4b384", "fields": { - "question": 255, - "contribution": 1626, + "question": 345, + "contribution": 1645, "answer": 1, - "count": 7 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f44bf01-c313-4bc1-a462-a30ac965ef06", + "pk": "55d939b9-cbf8-48cc-8656-2d1b336ac925", "fields": { - "question": 325, - "contribution": 3435, + "question": 331, + "contribution": 3721, "answer": 1, - "count": 36 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f603915-77c2-4954-898a-2557a126df61", + "pk": "55e260f2-0ff1-4b7a-bd9c-dafb3acb36ca", "fields": { - "question": 369, - "contribution": 1806, + "question": 315, + "contribution": 3406, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f6356c8-211c-47a2-a7e6-afa7bee485bf", + "pk": "55ea3f71-d91d-48c8-b726-ba4bc77e5368", "fields": { - "question": 477, - "contribution": 1617, + "question": 472, + "contribution": 886, "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f642366-d3fd-4fd8-8c43-d3b46ad1a555", + "pk": "560e54d3-b0fe-4163-90ab-3b9dc7221be3", "fields": { - "question": 357, - "contribution": 3831, + "question": 322, + "contribution": 4022, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f6db93d-a358-4db2-8591-bee7cec9779f", + "pk": "560f87c5-d746-4ba4-bdf7-4b48f3267897", "fields": { - "question": 255, - "contribution": 1612, - "answer": 4, - "count": 2 + "question": 460, + "contribution": 3786, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f6ded58-3861-436d-a716-dee980591ab7", + "pk": "56188ef1-8c99-4b17-a6ad-55490986b8f4", "fields": { - "question": 329, - "contribution": 4117, - "answer": 5, - "count": 4 + "question": 316, + "contribution": 3422, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f7e32a1-1a81-4a02-b008-b097d279cc8d", + "pk": "561c9b30-80c4-4239-a10e-eb383b7068ec", "fields": { - "question": 369, - "contribution": 1836, + "question": 347, + "contribution": 3704, + "answer": 1, + "count": 5 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "56287437-8d6f-48b3-ad30-0cf1ef545117", + "fields": { + "question": 327, + "contribution": 3859, "answer": 2, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f7ea85b-801a-4f57-847c-a6f834cf54d7", + "pk": "5634202f-d638-43f1-936e-a36144628c2c", "fields": { - "question": 477, - "contribution": 3530, - "answer": 0, - "count": 2 + "question": 349, + "contribution": 4191, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f7fa6bb-71bc-4653-a2ad-c005fc207115", + "pk": "563c8f73-de87-40ab-a2e5-1a224d6b7e28", "fields": { - "question": 326, - "contribution": 4023, - "answer": 1, - "count": 2 + "question": 356, + "contribution": 4223, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f8c7a34-d08c-4ed5-b961-e44db5e56a26", + "pk": "564c7af5-968a-4991-b26a-2f4b7724c083", "fields": { - "question": 339, - "contribution": 3745, - "answer": 0, - "count": 3 + "question": 347, + "contribution": 1851, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6f972b7c-5197-498c-8e23-f83c37c41fb1", + "pk": "565874f9-3759-4abf-b4e0-2fc222b2aa78", "fields": { - "question": 338, - "contribution": 1702, - "answer": 1, - "count": 3 + "question": 317, + "contribution": 1724, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6fa7203b-6ce0-457c-a3b4-ffa769828a72", + "pk": "5669d78f-7065-48ff-94b7-8c5093f4efad", "fields": { - "question": 349, - "contribution": 4190, + "question": 360, + "contribution": 1835, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6faa2177-6a0a-46c9-8312-71e0fc29481e", + "pk": "56762884-149b-448f-b543-f4d23d25991f", "fields": { - "question": 344, - "contribution": 1205, + "question": 262, + "contribution": 4138, "answer": 1, - "count": 5 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6faab696-036a-4396-97d5-f978cc751589", + "pk": "567ddc72-58c3-426e-ab7c-0176b6bb992f", "fields": { - "question": 412, - "contribution": 4038, - "answer": 0, + "question": 320, + "contribution": 1668, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6fbbb3f6-0361-461e-8d1e-feef5bb2b644", + "pk": "56820223-a1c8-4b58-bb5e-b6db328e7e9a", "fields": { - "question": 346, - "contribution": 3935, + "question": 328, + "contribution": 3884, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6fc15263-376a-4206-b9f1-3a0cf1f655bd", + "pk": "56909483-11cd-4efd-ab28-88837dcd9862", "fields": { - "question": 477, - "contribution": 3885, + "question": 348, + "contribution": 4233, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6fc24d88-0519-4e7c-b999-1deb2a08890b", + "pk": "5695ad16-a2c9-464e-b039-2c2898829714", "fields": { - "question": 317, - "contribution": 3434, - "answer": 4, - "count": 1 + "question": 348, + "contribution": 3728, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6fc250e3-2d4f-48c5-b579-3b59015ec5f9", + "pk": "569a6787-6ff2-484d-94fb-e5d26398b007", "fields": { - "question": 349, - "contribution": 1874, + "question": 436, + "contribution": 4008, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6fc504a2-745c-46bf-98c2-d1ad7dafa672", + "pk": "56a2b38e-1c62-4f04-a651-af62e3d40df0", "fields": { - "question": 402, - "contribution": 4148, - "answer": 1, - "count": 25 + "question": 477, + "contribution": 885, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6fc6edc2-145d-4e90-8690-e7fece52ffa6", + "pk": "56a4a830-a989-4620-8f5c-727207111378", "fields": { - "question": 472, - "contribution": 832, - "answer": 1, - "count": 2 + "question": 321, + "contribution": 4116, + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6fd49ecf-c6eb-400d-ab11-6d8fdb190683", + "pk": "56a970c6-b309-49c5-a21c-666632e0ee8b", "fields": { - "question": 357, - "contribution": 4039, + "question": 258, + "contribution": 3354, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6fe1f17c-82d3-4175-ab2a-a30b8753b458", + "pk": "56ab2de3-a9da-4fda-844c-c6ea33b02dff", "fields": { - "question": 477, - "contribution": 3859, + "question": 339, + "contribution": 1640, "answer": 1, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6fe660bf-8bb7-4b33-aa02-1d0838c53b17", + "pk": "56aff938-9d76-4be4-a6ac-3ced5a2a9cb1", "fields": { - "question": 369, - "contribution": 3648, - "answer": 1, - "count": 4 + "question": 345, + "contribution": 3606, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ff32ef7-d352-440e-a2fb-c83a67de418b", + "pk": "56b96ecf-c0ce-40e4-a448-d8e8924fcde4", "fields": { - "question": 322, - "contribution": 3406, + "question": 349, + "contribution": 3545, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "6ffc52b9-a544-41da-b97c-06b5e720317e", + "pk": "56bb6ab2-d501-4aee-9fbe-481c826a1861", "fields": { - "question": 476, - "contribution": 1612, + "question": 348, + "contribution": 1207, "answer": 3, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "56c2f11a-73a3-494e-86e3-d956c4cf19cf", + "fields": { + "question": 349, + "contribution": 3912, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "700f9b82-d108-4160-aa38-c1ca220b93ef", + "pk": "56c3a3c6-a0ca-4807-bc3c-e5e3e5b2dbc4", "fields": { - "question": 356, - "contribution": 3609, - "answer": 3, + "question": 367, + "contribution": 3665, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70288bbb-9a1b-4d89-b420-6f7eaf1eab6e", + "pk": "56caf99d-50db-489e-8449-073f4405a67c", "fields": { - "question": 327, - "contribution": 3722, - "answer": 3, + "question": 352, + "contribution": 3440, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "702bda76-395d-472a-9731-f63a48b61318", + "pk": "56d77d24-304f-4c20-96a5-d970cde8bdb0", "fields": { - "question": 323, - "contribution": 862, + "question": 315, + "contribution": 4120, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "702e0197-11eb-4367-a1c1-df73ce0f74c4", + "pk": "56decd6e-10c5-429c-b32f-63b484b5e106", "fields": { - "question": 477, - "contribution": 3391, + "question": 458, + "contribution": 4283, "answer": 2, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "704d17cd-2f5d-41ee-aa0c-38c4fe474a96", + "pk": "56e06725-9362-4be4-9c5d-4aae9188250a", "fields": { - "question": 396, - "contribution": 3775, + "question": 369, + "contribution": 1799, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7057a6e6-14c5-4247-ad52-c4da5d85d58e", + "pk": "56e16e60-1362-487c-b8ad-fe0eb3fd3c7f", "fields": { - "question": 333, - "contribution": 3552, + "question": 369, + "contribution": 3653, "answer": 2, - "count": 15 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "707d2a5f-1567-494d-b0f0-48d54ec0cd05", + "pk": "56f2aadc-dee5-481d-9efe-a0fdd14ea5ff", "fields": { - "question": 368, - "contribution": 3666, + "question": 325, + "contribution": 3859, "answer": 1, - "count": 3 + "count": 25 } }, { "model": "evaluation.ratinganswercounter", - "pk": "707edc48-8090-49cd-8ded-407834550223", + "pk": "56f2bd94-69a7-466f-80f3-f249f5a65f8e", "fields": { - "question": 363, - "contribution": 1808, - "answer": 5, - "count": 1 + "question": 353, + "contribution": 3782, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "708f3e37-4067-40d3-90d4-1dd7de3c1ecd", + "pk": "56fad430-0ae7-48b1-b160-30e4196ed1c1", "fields": { - "question": 414, - "contribution": 4038, - "answer": 2, + "question": 368, + "contribution": 4152, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "709388a5-7300-4cb0-9ca1-3f835026cc57", + "pk": "56fd10a8-4161-4039-9f6b-57ab7179e415", "fields": { - "question": 459, - "contribution": 4283, - "answer": 4, + "question": 346, + "contribution": 3896, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "709bc1c3-9d98-46da-86f3-07c89d770f56", + "pk": "56fd2c3a-2ee0-484c-a91b-b9ce2061aed1", "fields": { - "question": 327, - "contribution": 4117, - "answer": 4, - "count": 2 + "question": 337, + "contribution": 918, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "709d1c59-cea7-4b4b-a537-7c26818f6310", + "pk": "570066bc-295c-4595-a20a-da02f05bb8fb", "fields": { - "question": 255, - "contribution": 4128, - "answer": 3, + "question": 355, + "contribution": 3848, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "709f0d02-7e3f-44d8-a432-f45226079c5b", + "pk": "5709a717-ab88-4914-99d5-f2766f57a460", "fields": { - "question": 343, - "contribution": 1207, - "answer": 2, + "question": 328, + "contribution": 3589, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70a83aa8-6996-43e3-b409-4c104702e48b", + "pk": "570a0f9d-eae1-4fe4-8038-e8d0a0144fb2", "fields": { - "question": 343, - "contribution": 1202, - "answer": 1, - "count": 11 + "question": 316, + "contribution": 884, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70bb0380-51d2-4f67-a4db-2076ddeca23d", + "pk": "570dfee5-5e03-468d-b257-288cb815ae1a", "fields": { - "question": 323, - "contribution": 912, - "answer": 1, - "count": 18 + "question": 346, + "contribution": 3941, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70ca994a-b086-447f-ad77-cc61c8523a37", + "pk": "571697a8-b7c1-4648-a471-8672d893b74e", "fields": { - "question": 343, - "contribution": 1228, + "question": 336, + "contribution": 3759, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70d62ad3-8c2d-48aa-a5b9-b9b9aedcfeb4", + "pk": "57193c5a-5456-45fd-9bbb-8677edc1443b", "fields": { - "question": 321, - "contribution": 862, - "answer": 1, - "count": 3 + "question": 344, + "contribution": 1206, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70e2dc8e-62ad-4742-9c03-4e43ec5e69e1", + "pk": "572142ef-8ab2-4597-821f-a8b59efec25c", "fields": { - "question": 255, - "contribution": 1680, - "answer": 1, - "count": 5 + "question": 321, + "contribution": 3725, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70e92714-2b57-47b2-9e57-6c408318ab19", + "pk": "57266eb3-b3c5-40c5-8c92-fe9f7fbce36c", "fields": { - "question": 473, - "contribution": 4038, - "answer": 2, + "question": 460, + "contribution": 3862, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70ec31f1-c56c-4413-9e49-acc0e653bc32", + "pk": "5727c154-8d2c-4b01-ac0d-3e5b17786eee", "fields": { - "question": 356, - "contribution": 3529, - "answer": 1, - "count": 3 + "question": 477, + "contribution": 3859, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70f04270-7faa-4197-b792-b1dba90bd922", + "pk": "572839b7-cdee-4656-b5ff-6ef1f78c64bf", "fields": { - "question": 331, - "contribution": 1634, + "question": 348, + "contribution": 4187, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70f3a015-2b40-4c2f-8497-e16314a8ef47", + "pk": "572b0210-5d4e-4538-85df-8fc2b0575306", "fields": { - "question": 350, - "contribution": 788, - "answer": 4, - "count": 2 + "question": 361, + "contribution": 3921, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70f633e7-7e1c-49f2-8d18-877e8c551fc3", + "pk": "5731f881-0033-49aa-b793-3162e5e0ba52", "fields": { - "question": 366, - "contribution": 3551, + "question": 354, + "contribution": 1784, "answer": 1, - "count": 14 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70f75102-580d-4221-8a71-265679620e46", + "pk": "573886fd-6df5-462e-8439-ed1e20c44bcc", "fields": { - "question": 331, - "contribution": 884, - "answer": -3, + "question": 475, + "contribution": 3440, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70f81c82-d70b-44e7-9487-20282425cf15", + "pk": "574ef062-7214-4fd9-b40e-f5bb6da9ecc7", "fields": { - "question": 367, - "contribution": 4120, + "question": 336, + "contribution": 3372, "answer": 1, - "count": 15 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70fe5081-1c08-4296-b1f5-78e6b8df1165", + "pk": "575358d3-dbab-460d-ad6f-7f844161f424", "fields": { - "question": 326, - "contribution": 1635, - "answer": 3, - "count": 5 + "question": 335, + "contribution": 4156, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "70fe9dc8-d92b-4e0b-a653-9e9feb6f230b", + "pk": "5762142f-bea5-4fef-b254-4fe6b20a1194", "fields": { - "question": 316, - "contribution": 3394, - "answer": 2, - "count": 2 + "question": 475, + "contribution": 3440, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7105416d-a2ab-4a4e-9d39-c65890671775", + "pk": "57752802-60a6-4536-a996-fbdb7545dab1", "fields": { - "question": 368, - "contribution": 1776, - "answer": 3, - "count": 2 + "question": 345, + "contribution": 1881, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "710e6bad-be12-4470-8e09-1d1dccdc1741", + "pk": "577bb71c-f34f-451b-a64e-0888401caeaf", "fields": { - "question": 257, - "contribution": 3739, - "answer": 4, + "question": 410, + "contribution": 3984, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "710ee401-59ab-47e6-80ab-5db9158cfe24", + "pk": "5780a423-1448-4beb-bb86-748495b12707", "fields": { - "question": 476, - "contribution": 1837, - "answer": -1, - "count": 5 + "question": 340, + "contribution": 3727, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71127c72-5457-4d84-8d31-e1580e48a1b1", + "pk": "57882059-ca34-46ff-b080-9258d69dff44", "fields": { - "question": 343, - "contribution": 3526, + "question": 259, + "contribution": 3354, "answer": 1, - "count": 1 + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71196587-6b6f-4d0a-aaf8-0d5f57a8c05e", + "pk": "578870bd-7ed4-4a17-b438-fa3d3ae21938", "fields": { - "question": 325, - "contribution": 1154, + "question": 329, + "contribution": 4203, "answer": 1, - "count": 21 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7128e4fc-61ed-411d-b54b-d82c71143b94", + "pk": "5792b6f0-c8a9-4260-9d62-f3198f1482d4", "fields": { - "question": 327, - "contribution": 1298, - "answer": 1, - "count": 8 + "question": 477, + "contribution": 3666, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "713782a9-9d06-4628-a706-5562a98f0218", + "pk": "579896a4-93ac-448d-840f-11253c7fe393", "fields": { - "question": 260, - "contribution": 4084, + "question": 315, + "contribution": 4040, "answer": 3, - "count": 14 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71397723-3697-41ad-a448-375f633b4177", + "pk": "57a07e77-64cf-4a8a-b91d-65307d2ed7d1", "fields": { - "question": 329, - "contribution": 1681, - "answer": 2, - "count": 2 + "question": 370, + "contribution": 3848, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "713f3a89-d1f6-4e3e-a2c3-58cc203c73ea", + "pk": "57aa6067-c4b4-47e8-bcca-c92f3b339361", "fields": { - "question": 317, - "contribution": 4028, + "question": 338, + "contribution": 832, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "714c0e1a-2053-49da-9d43-9cb8f7e04cc6", + "pk": "57b1034e-33b1-4d21-88fe-46ac017a6f05", "fields": { - "question": 462, - "contribution": 4073, + "question": 321, + "contribution": 4046, "answer": 1, - "count": 3 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "714d9018-7a6f-4fca-b34f-91a77378a6f7", + "pk": "57b8e4d9-c59f-40d8-bbaf-11d1fe05a593", "fields": { - "question": 338, - "contribution": 1702, - "answer": 3, - "count": 3 + "question": 262, + "contribution": 1658, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "715e0c7f-43e1-4acb-93f7-ddd2349a4d04", + "pk": "57c5a4f1-4b9e-48cb-9822-502931b8c24c", "fields": { - "question": 255, - "contribution": 836, + "question": 359, + "contribution": 1825, "answer": 1, - "count": 19 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "716f0a98-ef90-4d64-8da1-4f471b015982", + "pk": "57ca61f0-ea8e-479c-881a-c976d6ca5142", "fields": { - "question": 345, - "contribution": 1842, + "question": 366, + "contribution": 3593, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71781ff1-c23f-4b46-8325-0551f0e6c126", + "pk": "57d24829-ba93-49e8-9cdb-4e820d4f5489", "fields": { - "question": 316, - "contribution": 3679, + "question": 315, + "contribution": 4138, "answer": 2, - "count": 9 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "718b8bf5-6003-42bc-8a1b-3c7c0dbc6e14", + "pk": "57d2d167-00ac-4dcc-aade-860dc3a164c6", "fields": { - "question": 372, - "contribution": 3394, - "answer": 1, + "question": 344, + "contribution": 3912, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "718ce50b-eafb-453d-8e90-e86167db44cc", + "pk": "57d730a0-9ec4-46d9-969c-d9c2eb58879d", "fields": { - "question": 346, - "contribution": 3610, - "answer": 1, - "count": 4 + "question": 459, + "contribution": 4141, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71969e52-6b0b-429c-82ae-f17865ca82d8", + "pk": "57f2bded-ff6a-4043-b294-911f6002dc3d", "fields": { - "question": 368, - "contribution": 3519, + "question": 472, + "contribution": 4140, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71a235be-4ecc-445d-9470-f7a5f288f332", + "pk": "57f2d496-7af4-42ac-98f8-2aff5f1520a6", "fields": { - "question": 343, - "contribution": 4223, + "question": 345, + "contribution": 1151, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71b1a1bc-d484-4dbf-bbec-cc6f1ca7b4eb", + "pk": "57f53000-58ef-4e6d-98d0-441660aedc2f", "fields": { - "question": 337, - "contribution": 3727, - "answer": 1, - "count": 2 + "question": 363, + "contribution": 3919, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71b7624a-d0c4-4bb9-8ac4-e25044037dfb", + "pk": "57f78070-8a40-4e10-a7b9-3b7b0c526461", "fields": { - "question": 339, - "contribution": 1662, + "question": 477, + "contribution": 1776, "answer": 0, - "count": 6 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71c21ed5-1693-4c96-b56a-c9f0c79d94b1", + "pk": "57fb21b0-6388-42b0-9040-449ba5c2a633", "fields": { - "question": 361, - "contribution": 3921, - "answer": 2, - "count": 1 + "question": 319, + "contribution": 1612, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71c58be4-7c0b-46d3-92b1-07c0d3db7387", + "pk": "5810cf8e-ccb7-4f05-8e77-31c2bed5daad", "fields": { - "question": 332, - "contribution": 3592, - "answer": 2, + "question": 338, + "contribution": 1710, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71cccf2a-3d2f-423c-bead-487857c7a424", - "fields": { - "question": 326, - "contribution": 885, - "answer": 2, - "count": 10 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "71d7f358-c2b5-4a0f-853c-07e8294bce7c", + "pk": "5811b7dc-7d9c-4a07-9fcd-061099e776e6", "fields": { - "question": 343, - "contribution": 3545, + "question": 322, + "contribution": 1658, "answer": 1, - "count": 4 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71e527ec-867f-479f-abd6-d64f454ad446", + "pk": "5818cf9c-613a-40dd-bcbe-2221eb8937e9", "fields": { "question": 347, - "contribution": 3405, - "answer": 5, + "contribution": 1860, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71e820ee-5e76-4a8d-bfcf-9dc4518f2b4f", + "pk": "5818e3a6-0025-4ff9-bbab-f73f7b50e716", "fields": { - "question": 351, - "contribution": 894, + "question": 370, + "contribution": 3518, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71eb3ed4-14fd-433e-933e-fe75b04088bb", + "pk": "581cdf2a-540a-4af6-9631-e9b2c4ca83b5", "fields": { - "question": 329, - "contribution": 909, - "answer": 4, - "count": 2 + "question": 258, + "contribution": 3390, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71f7840d-8d4c-41d0-a5ae-aab27f9e071e", + "pk": "582f7c97-454c-42d1-a42a-4de0910ef940", "fields": { - "question": 477, - "contribution": 3435, - "answer": 1, - "count": 6 + "question": 463, + "contribution": 4283, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71f85f75-bb6a-42aa-9fb3-c6c6ecacde9d", + "pk": "5832fd6c-2f4b-4029-9d11-0c00ad58ecb2", "fields": { - "question": 348, - "contribution": 3855, - "answer": 3, - "count": 2 + "question": 320, + "contribution": 3725, + "answer": 2, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "71ffa913-137a-42f8-918b-942aca7695c0", + "pk": "5841dfcf-dba1-4558-be0c-4f84d0183dbb", "fields": { - "question": 349, - "contribution": 4187, - "answer": 1, - "count": 5 + "question": 337, + "contribution": 862, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "721ed529-1a35-4ff6-9a7d-1ecaba31aafd", + "pk": "58422e0e-39d2-488a-a07c-3719793f91d6", "fields": { - "question": 348, - "contribution": 1228, - "answer": 1, - "count": 6 + "question": 257, + "contribution": 4084, + "answer": 3, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7224eb0e-2059-4795-a2a2-191b54b835d3", + "pk": "584705a7-4398-4004-8adf-5988dbcde8d8", "fields": { - "question": 472, - "contribution": 3440, - "answer": 5, - "count": 3 + "question": 335, + "contribution": 4156, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "72330f28-c468-4404-9924-690ffcf4d89b", + "pk": "5848f0c6-05e7-49cf-8458-d83e0b6b1de9", "fields": { - "question": 331, - "contribution": 4084, - "answer": -3, + "question": 346, + "contribution": 4189, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "72353089-c169-41c6-9f9d-2c1d19a3eddc", + "pk": "584d4657-ca6b-4a63-827c-b706df216331", "fields": { - "question": 333, - "contribution": 3922, - "answer": 2, - "count": 2 + "question": 356, + "contribution": 4228, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "72407091-bd1f-4c47-917a-168f9715a6b3", + "pk": "5853cb88-67e2-4193-b68a-d91709c3ebc9", "fields": { - "question": 472, - "contribution": 3645, - "answer": 1, - "count": 2 + "question": 323, + "contribution": 3472, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "724f5374-2d64-4a4b-9df7-ac25dd0dba12", + "pk": "5856469e-748d-4f30-8396-d707cf749dfc", "fields": { "question": 347, - "contribution": 3728, - "answer": 3, - "count": 5 + "contribution": 3934, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "72501847-b6d4-4e6f-bbeb-845433707246", + "pk": "585a7fe1-d8b1-4c17-9668-b8956072586f", "fields": { - "question": 351, - "contribution": 832, + "question": 328, + "contribution": 1780, "answer": 1, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7251f577-b032-4580-b056-5e743ae149af", + "pk": "58617260-5d72-4af2-a410-8ed32b39c723", "fields": { - "question": 362, - "contribution": 1808, + "question": 320, + "contribution": 4084, "answer": 1, - "count": 2 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "725f0cfb-7809-42b2-ae86-21d0237d9550", + "pk": "5862efef-e8ca-41c7-a130-6b9642b96fbe", "fields": { - "question": 336, - "contribution": 886, - "answer": 5, - "count": 2 + "question": 341, + "contribution": 1656, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "72761f45-9bd2-48a6-9611-b8258990b5dd", + "pk": "58630885-b465-4238-8455-c24cecc41b80", "fields": { - "question": 262, - "contribution": 1626, - "answer": 5, - "count": 6 + "question": 402, + "contribution": 4148, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7276ba9f-630b-4232-a95b-81835ffcff11", + "pk": "5865c083-457f-4e55-b098-be9687e72483", "fields": { - "question": 476, - "contribution": 1612, - "answer": -3, - "count": 2 + "question": 361, + "contribution": 1827, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "72793b2e-d1ca-429d-8ffa-613dcb309ab3", + "pk": "58686ff2-51d1-4187-8909-ad2998b487e6", "fields": { - "question": 340, - "contribution": 3759, - "answer": 2, - "count": 1 + "question": 258, + "contribution": 1612, + "answer": 1, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "727f8c34-554b-4372-8ef6-1e524f196f52", + "pk": "58798557-c521-4d18-b6f1-90bf84426e6f", "fields": { - "question": 477, - "contribution": 4085, - "answer": -2, - "count": 4 + "question": 323, + "contribution": 4028, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "729229b2-ece2-4f37-a0e4-4c70dff252fe", + "pk": "587e608e-23ab-4230-97b2-17a92a674832", "fields": { - "question": 344, - "contribution": 4123, + "question": 347, + "contribution": 3610, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "72954196-1267-4b44-ab84-ccae6a86ca71", + "pk": "587e8948-9ac7-46c3-889e-e114fcca0ab8", "fields": { - "question": 316, - "contribution": 3721, - "answer": 4, + "question": 477, + "contribution": 1779, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "729660c7-485a-45a6-aee8-6880fff5f83c", + "pk": "5881e372-db67-4b7b-9493-fd7c9d8d5ccb", "fields": { - "question": 258, - "contribution": 1626, + "question": 255, + "contribution": 3434, "answer": 3, - "count": 9 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "729d2d7a-f72d-44ff-92d7-0ceab3a2de0b", + "pk": "588312e0-f712-4538-8433-9d07ad2dc580", "fields": { - "question": 321, - "contribution": 3683, + "question": 323, + "contribution": 3739, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "72bdd415-58b4-4298-847b-22c5c13ec28d", + "pk": "58831a58-1eb9-40c3-882d-16eedda7a6ac", "fields": { - "question": 322, - "contribution": 3472, - "answer": 1, + "question": 352, + "contribution": 894, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "72bead2e-8776-4700-ac72-3b94b82a16b8", + "pk": "588f3991-4914-4c0d-b5ab-e56e65afad6d", "fields": { - "question": 316, - "contribution": 3725, - "answer": 1, - "count": 14 + "question": 343, + "contribution": 3728, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "72c43d71-af81-4fce-af70-1f9bad61db73", + "pk": "58902c6d-55f8-41ee-89cd-13da49af51ba", "fields": { - "question": 367, - "contribution": 3721, - "answer": 4, - "count": 2 + "question": 345, + "contribution": 3935, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "72ce93f7-a5f8-4d15-a2fc-060f24a0f4c7", + "pk": "58941946-9d49-4397-9c17-bd6eb2a579c9", "fields": { - "question": 327, - "contribution": 1777, + "question": 340, + "contribution": 1734, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73023ebc-01b7-4f94-b0e3-46e30a311ad9", + "pk": "589bb660-18b8-403b-a4d7-c44102d3996e", "fields": { - "question": 336, - "contribution": 1726, + "question": 340, + "contribution": 3486, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "730458c5-caec-46ec-8f5b-eb1a3d909200", + "pk": "589dc318-fdf0-425e-b1f3-edd357da83d3", "fields": { - "question": 335, - "contribution": 3598, - "answer": 2, - "count": 4 + "question": 320, + "contribution": 4128, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73131a07-3aa2-4f98-93ed-1d083818b9ca", + "pk": "58a75579-da2d-4d6b-97de-572cc8a9d226", "fields": { - "question": 257, - "contribution": 4022, + "question": 457, + "contribution": 4073, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7320299b-2363-483e-8b24-787af2828d2b", + "pk": "58ae0732-f7e3-4bd0-ae00-15bb25beb0dc", "fields": { - "question": 317, - "contribution": 4100, + "question": 356, + "contribution": 1782, "answer": 2, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "732cdcd1-8090-48db-9e30-e7366864aa66", - "fields": { - "question": 341, - "contribution": 3508, - "answer": 3, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "732f127d-bfde-4962-b69c-35e6ed5901ad", + "pk": "58b8c801-f908-4805-9074-19c660e0ae8f", "fields": { - "question": 374, - "contribution": 3775, + "question": 402, + "contribution": 3646, "answer": 1, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7330fbff-e368-4b63-ad2e-f11ca16b3ae3", + "pk": "58c5afd0-9122-4ce4-ba4e-3ac3af9b17af", "fields": { - "question": 340, - "contribution": 1921, - "answer": 1, - "count": 2 + "question": 477, + "contribution": 881, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7333ab8b-6052-4f5b-8baa-9b3b84a2e91a", + "pk": "58d62ff8-5f88-4583-8a3d-f9077f894fa3", "fields": { - "question": 338, - "contribution": 4072, + "question": 260, + "contribution": 1724, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73341530-8e1f-4f21-a07e-6a3772ca2c30", - "fields": { - "question": 336, - "contribution": 1200, - "answer": 3, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "7334e788-185d-4917-a0f0-dbe864e446d7", + "pk": "58e1051d-32f5-42c0-950e-b0ca35ec1e45", "fields": { - "question": 340, - "contribution": 1644, - "answer": 1, + "question": 321, + "contribution": 4138, + "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7342a914-3189-4ff9-9515-a7e02ecd7b46", + "pk": "58e78ffa-39a4-4c16-a577-19bc8b987474", "fields": { - "question": 336, - "contribution": 4052, - "answer": 2, - "count": 2 + "question": 477, + "contribution": 3589, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73564c96-760e-4cd5-a255-0164161ff295", + "pk": "58ff992e-df1e-4761-ae3b-d4d96492d947", "fields": { "question": 370, - "contribution": 1849, + "contribution": 3528, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73574b1a-0dc8-41dc-91e3-f9996b0986a1", + "pk": "591db44f-9a51-41be-897e-ace24963d237", "fields": { - "question": 353, - "contribution": 3782, + "question": 325, + "contribution": 885, "answer": 1, - "count": 1 + "count": 35 } }, { "model": "evaluation.ratinganswercounter", - "pk": "736d6136-f4c7-4389-9412-a6fe6536b12b", + "pk": "591f4781-d5dc-4e8d-97dc-5bc0796526d0", "fields": { - "question": 326, - "contribution": 3519, - "answer": 5, + "question": 322, + "contribution": 4116, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73727412-2d1a-4667-bc77-486926993bbf", + "pk": "592bcc5a-a51d-4929-bfe7-fcb278cb76cc", "fields": { - "question": 355, - "contribution": 3609, + "question": 477, + "contribution": 4085, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73747a89-6d41-47fc-943f-1f22f56dbe38", + "pk": "592dcd39-35b3-4091-abda-146e65d7f857", "fields": { - "question": 257, - "contribution": 880, + "question": 338, + "contribution": 3416, "answer": 4, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7378a99f-4654-479b-b246-bbdd77bf0a2d", + "pk": "5933fc8f-dd51-42dd-81ed-b62c077953e4", "fields": { - "question": 259, - "contribution": 3474, - "answer": 4, - "count": 6 + "question": 363, + "contribution": 1806, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "738ca59e-def6-4271-b554-27e5b76cbfc8", + "pk": "5938ebb5-27f4-4b08-bbb9-731a3bee216b", "fields": { - "question": 320, - "contribution": 4084, - "answer": 3, - "count": 9 + "question": 344, + "contribution": 1843, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "738f5f55-1aaf-4eef-8a00-dc6ca308e53e", + "pk": "593f7905-97b5-4497-9ee4-d91ceded9520", "fields": { - "question": 338, - "contribution": 1640, - "answer": 3, - "count": 3 + "question": 255, + "contribution": 3739, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "738fa8e6-ea19-4c84-9c3d-5f837f30fbd4", + "pk": "5944fda2-35b9-47f8-b669-b48fcb7aa19d", "fields": { - "question": 323, - "contribution": 3683, + "question": 366, + "contribution": 4261, "answer": 1, - "count": 3 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7395eb1d-2dbc-4759-b2c8-5fe942521ac5", + "pk": "59666c1d-8998-4b0b-a42b-b3db7484535c", "fields": { - "question": 344, - "contribution": 4190, - "answer": 2, - "count": 2 + "question": 340, + "contribution": 3486, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73976155-c773-4a6c-bf99-47ed09c3a7fe", + "pk": "596936c1-f44f-43c7-9c49-bfc78801fe9b", "fields": { - "question": 349, - "contribution": 1246, - "answer": 4, + "question": 348, + "contribution": 1863, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "739b5ac0-c141-45d5-af63-315398a4d300", + "pk": "5979d80d-079d-4bc4-81d7-b380a917c716", "fields": { - "question": 355, - "contribution": 1253, + "question": 343, + "contribution": 3760, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "739c83dd-7a24-4830-b2a7-d386dda0248d", + "pk": "597c3399-a403-4213-9c0a-019fc90b8233", "fields": { - "question": 370, - "contribution": 1782, - "answer": 4, + "question": 356, + "contribution": 4039, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "739dfdb7-07ff-4922-9d6b-a4a913443662", + "pk": "597eeb64-33a6-4997-bd01-3b724308df7f", "fields": { - "question": 347, - "contribution": 1250, + "question": 356, + "contribution": 3545, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "739e88ef-7c64-4e2a-9e36-13ace7643f72", + "pk": "5982c089-bf78-453c-ad56-5ac2cf6930a3", "fields": { - "question": 357, - "contribution": 3528, - "answer": 4, - "count": 1 + "question": 335, + "contribution": 3922, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "739fed42-5789-465e-8590-2468cf128441", + "pk": "598d177f-bf27-470b-a05f-3177be6cddd6", "fields": { - "question": 340, - "contribution": 4052, - "answer": 4, + "question": 464, + "contribution": 4141, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73a56872-9606-44a9-9868-317a42e1226b", + "pk": "599480bf-1ed7-4239-968b-51f099742941", "fields": { "question": 325, - "contribution": 3666, - "answer": 3, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "73aa7375-9ee3-466e-9999-5a27e8aee978", - "fields": { - "question": 258, - "contribution": 822, - "answer": 2, + "contribution": 1798, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73ac2ff7-3f5c-4c3f-81e8-08e000dad89b", + "pk": "599d4848-c86e-4a89-a9cd-03757f6fd318", "fields": { - "question": 473, - "contribution": 1726, - "answer": -2, - "count": 1 + "question": 258, + "contribution": 3721, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73b167f2-93f2-4610-897a-458e52b562b8", + "pk": "599f2aa9-1387-40f0-a22b-a8a905c2208f", "fields": { - "question": 262, - "contribution": 1658, - "answer": 3, + "question": 347, + "contribution": 1203, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73b7a290-30a0-45a8-a923-56501ee005dd", + "pk": "599ffa51-dcaa-40de-adae-31ba6c0d9ba8", "fields": { - "question": 319, - "contribution": 3474, + "question": 320, + "contribution": 912, "answer": 4, - "count": 7 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "73cd0b8b-778f-445c-a998-586481319411", - "fields": { - "question": 475, - "contribution": 3821, - "answer": 0, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73d8a529-ceca-4f3c-a646-094b508cda2a", + "pk": "59a4cc23-b395-4777-8a0d-026bb334e2d3", "fields": { - "question": 477, - "contribution": 837, - "answer": -3, + "question": 363, + "contribution": 3917, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73e86c78-f0ac-48c1-99d5-84964dea5ae6", + "pk": "59b3d113-799d-44c7-b6a9-7dcc7c44f69c", "fields": { - "question": 331, - "contribution": 1668, - "answer": -3, - "count": 1 + "question": 320, + "contribution": 4116, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73ec6dc9-d315-42b7-a23c-a24a21d48db0", + "pk": "59c6f7c0-179f-4469-b801-fe112fc75848", "fields": { - "question": 340, - "contribution": 4122, - "answer": 1, - "count": 2 + "question": 325, + "contribution": 3556, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73ed5fda-cecb-4425-bfcb-751c377ae294", + "pk": "59cdfe0c-5678-4af2-8b9a-e3ff0e9c761f", "fields": { - "question": 341, - "contribution": 3454, - "answer": 1, - "count": 3 + "question": 338, + "contribution": 3372, + "answer": 4, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "73ef61d7-99ef-49f2-9c85-ecc8531c75af", + "pk": "59d47397-5198-4993-96c2-46c1102a279c", "fields": { - "question": 343, - "contribution": 3536, - "answer": 1, - "count": 2 + "question": 259, + "contribution": 3679, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "740a197e-ed9f-4fe3-b055-ae36c8170f67", + "pk": "59d4d1c3-5caa-4f76-bc43-16eeb3e076b7", "fields": { - "question": 367, - "contribution": 3739, + "question": 413, + "contribution": 4038, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "741119a7-e09a-455f-8d1a-13022753804a", + "pk": "59db61e7-d190-4aac-b262-093823d1101f", "fields": { - "question": 326, - "contribution": 4153, + "question": 354, + "contribution": 1776, "answer": 3, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "7414dfe4-6194-42c6-98ca-d166df88c4ef", - "fields": { - "question": 331, - "contribution": 3679, - "answer": -1, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "741aa274-0021-4a33-bab7-4094c53b16ce", + "pk": "59dca961-7f76-4cb8-80d0-2071e2d56807", "fields": { "question": 319, - "contribution": 884, - "answer": 5, + "contribution": 1724, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "741ae1b3-ff1a-4f94-80ef-bb1a4a3cf1bd", + "pk": "59dd459f-a288-4d3b-8aa6-3c96ee93c327", "fields": { - "question": 327, - "contribution": 1659, + "question": 361, + "contribution": 1826, "answer": 1, - "count": 12 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "741b26ec-1371-4422-bd2e-ae9fb694a2e4", + "pk": "59de9293-bb70-4847-b094-aa0a1870ea24", "fields": { - "question": 335, - "contribution": 3592, + "question": 348, + "contribution": 1639, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "741bb453-d8b4-406d-a8c0-7d675b7beb1c", + "pk": "59df33f5-9073-4d48-8be3-9f1ef838f084", "fields": { - "question": 355, - "contribution": 1187, - "answer": 1, - "count": 5 + "question": 262, + "contribution": 3434, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "741c83d8-fe19-41ff-b93a-b5c99046764f", + "pk": "59e45d67-1015-42e6-b2ed-7b4424b65942", "fields": { - "question": 336, - "contribution": 1656, - "answer": 3, + "question": 462, + "contribution": 3862, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74379839-4c92-41a8-b912-b5ea8819242a", + "pk": "59fd896b-0180-467f-bb91-c4ff4b50aef4", "fields": { - "question": 343, - "contribution": 3606, - "answer": 5, - "count": 1 + "question": 333, + "contribution": 3886, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7438d19f-4d45-4578-bd97-dc613410ec8d", + "pk": "59fe9f28-86d2-4d33-94d3-4638b43c04cb", "fields": { - "question": 369, - "contribution": 3648, - "answer": 2, + "question": 339, + "contribution": 1644, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "743a4453-4d61-40e0-8360-f80a6c6dc3e4", + "pk": "5a118d94-18b6-4136-98be-1874f95ef5b9", "fields": { - "question": 338, - "contribution": 1660, + "question": 347, + "contribution": 1842, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "743c1f23-5c8e-46a7-bee5-08dd8db9a6d3", + "pk": "5a156bdc-fa96-4be3-a33f-e0831bb38ad5", "fields": { - "question": 360, - "contribution": 1811, + "question": 255, + "contribution": 4052, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74404eff-db42-437c-ba0b-7077d1725e0d", + "pk": "5a25020f-6f7c-4f6c-b2fd-2c63fda82e81", "fields": { - "question": 322, - "contribution": 3434, - "answer": 2, - "count": 10 + "question": 325, + "contribution": 1154, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74417ec5-ca48-4f80-83de-ffee0906e517", + "pk": "5a264899-dfb6-436e-9480-3e82868cadbf", "fields": { - "question": 458, - "contribution": 3862, - "answer": 1, - "count": 2 + "question": 473, + "contribution": 1724, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "744429f7-3f0b-4820-b98e-8797f7a445ec", + "pk": "5a2b9431-e6ca-444e-806f-b0fe3cf13337", "fields": { - "question": 321, - "contribution": 3679, - "answer": 3, - "count": 1 + "question": 370, + "contribution": 1781, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74463714-8476-4454-b725-ae26927e7873", + "pk": "5a367c7a-c188-4cde-a684-036f71f41381", "fields": { - "question": 345, - "contribution": 1749, + "question": 326, + "contribution": 1287, "answer": 1, - "count": 1 + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7450efa4-ca87-422a-9865-7af04e740d01", + "pk": "5a4ed8e0-bf20-4ac9-835a-ef796ef3916f", "fields": { - "question": 322, - "contribution": 4100, + "question": 321, + "contribution": 3434, "answer": 2, - "count": 8 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7452cc03-a35b-4b6f-b880-6fde9ed6068e", + "pk": "5a4fe1ad-9c0e-4998-8fdf-9320eb4c6f57", "fields": { - "question": 369, - "contribution": 3920, - "answer": 2, - "count": 1 + "question": 322, + "contribution": 912, + "answer": 4, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7452d854-70b6-403d-b65e-b88ab22297eb", + "pk": "5a538be1-52a3-455e-b827-6ec42be443c3", "fields": { - "question": 368, - "contribution": 1725, - "answer": 2, - "count": 2 + "question": 339, + "contribution": 3372, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7457bac4-01d5-4ce7-a5b2-9621c99b7408", + "pk": "5a58f61c-6d08-45b5-9ae1-7df5816f21b1", "fields": { - "question": 362, - "contribution": 1807, + "question": 356, + "contribution": 1189, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74625060-054e-4c11-a3ee-5895c3278019", + "pk": "5a61d550-8994-4160-9af6-0251d7a39f83", "fields": { - "question": 372, - "contribution": 4022, + "question": 477, + "contribution": 4203, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74627f8c-84b9-4daf-bef2-ff5c7e974b32", + "pk": "5a6281bb-ee61-408f-846f-f3a7727ecff2", "fields": { - "question": 359, - "contribution": 3919, - "answer": 3, - "count": 3 + "question": 341, + "contribution": 3452, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "747238af-5b7f-49c5-977a-bdd07add5cfc", + "pk": "5a6bad83-443b-40ae-a9da-c415547eb73b", "fields": { - "question": 328, - "contribution": 3883, - "answer": 2, - "count": 3 + "question": 319, + "contribution": 3739, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7476717d-a7fd-4727-a14b-90baa46a7636", + "pk": "5a6de101-7feb-46fc-a70b-3c6c4edd73b4", "fields": { - "question": 348, - "contribution": 1157, + "question": 477, + "contribution": 1287, "answer": 1, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74936886-5741-4b98-bce4-d5a97ee0c799", + "pk": "5a74b97d-65df-4107-b8f6-33b54aed7cec", "fields": { - "question": 343, - "contribution": 3890, - "answer": 1, + "question": 354, + "contribution": 3832, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74a68f2b-80ae-4533-b27d-5b5332e82c09", + "pk": "5a826fea-367e-4ba2-934d-33bce723c3c4", "fields": { - "question": 356, - "contribution": 3607, - "answer": 3, - "count": 1 + "question": 340, + "contribution": 3685, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74ae3a0d-4050-4435-93d4-f7acab29e683", + "pk": "5a862d5b-08e2-421c-8b1a-474e2e18764d", "fields": { - "question": 348, - "contribution": 3610, + "question": 323, + "contribution": 864, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74aff203-9787-4972-a9df-9f895c1b96f8", + "pk": "5a8aa13d-e1ab-4424-9d7e-a1f1243225c8", "fields": { - "question": 355, - "contribution": 4039, + "question": 354, + "contribution": 1782, "answer": 1, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74b86ba2-5698-48d1-94f3-ca407b0abb72", + "pk": "5a8da60d-da0e-40ca-9dd8-5a10e479573d", "fields": { - "question": 339, - "contribution": 3785, + "question": 473, + "contribution": 3454, "answer": 0, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74c31dd3-54ca-451d-8d45-e034bde51566", + "pk": "5a8de20c-11aa-47df-9849-467b8389aff8", "fields": { - "question": 475, - "contribution": 894, + "question": 347, + "contribution": 1842, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74c6eb80-191f-4ec1-a9d6-b90b8d1d574f", + "pk": "5a9337ff-d23e-4d5e-8297-e5332512d076", "fields": { - "question": 317, - "contribution": 3725, + "question": 370, + "contribution": 4266, "answer": 1, - "count": 15 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74e3cdb4-b488-4aa2-9736-4e297c557710", + "pk": "5a9eca75-3ab0-4a41-935f-beab9a61d566", "fields": { - "question": 475, - "contribution": 1640, - "answer": -1, - "count": 1 + "question": 259, + "contribution": 1837, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "74e92a8f-1c0a-4aeb-b222-9fe4707b581a", + "pk": "5aa39db7-3d0d-4a56-af89-63cc2a4a9531", "fields": { - "question": 317, - "contribution": 908, - "answer": 3, + "question": 473, + "contribution": 4046, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "750439cd-5098-4d0a-85b5-b3df9ebaa545", + "pk": "5aa5a971-f4df-45fb-a71d-5297ad268095", "fields": { - "question": 473, - "contribution": 3739, - "answer": 3, - "count": 1 + "question": 472, + "contribution": 1656, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "750a4378-04f6-4d14-9a75-82e09df69bb1", + "pk": "5ab6ca99-3fd5-4281-9399-ed755bd54c06", "fields": { - "question": 357, - "contribution": 4243, - "answer": 1, + "question": 356, + "contribution": 1860, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "750e7a22-a3af-4c4f-97ae-a1436d727133", + "pk": "5ac11b6a-b21e-4d18-84e5-fa22843b9d26", "fields": { - "question": 348, - "contribution": 3545, - "answer": 5, - "count": 1 + "question": 260, + "contribution": 4120, + "answer": 1, + "count": 23 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7517c220-0bfb-47e3-a08e-194dd54429a3", + "pk": "5ad2154f-4e0a-4ca1-8161-a2d8ca53e59f", "fields": { - "question": 316, - "contribution": 4100, - "answer": 5, + "question": 347, + "contribution": 4161, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "751a2f4a-66d4-47d0-80df-d1d56d225055", + "pk": "5ad7becf-fa38-4dfd-8682-99b95c2b14dd", "fields": { - "question": 341, - "contribution": 1702, - "answer": 1, - "count": 3 + "question": 357, + "contribution": 1845, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "753875ef-c166-41a1-85eb-f0593e737323", + "pk": "5ad8a3a8-0292-4b73-906e-5fe11007e2d6", "fields": { - "question": 363, - "contribution": 1808, + "question": 255, + "contribution": 4052, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "753a8163-dfda-46d5-8531-04c1415ab10d", + "pk": "5ad95a43-d390-457b-bf3f-e15f73f38266", "fields": { - "question": 335, - "contribution": 1282, + "question": 327, + "contribution": 3463, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "753e58e9-47bc-4846-aab3-feb226530257", + "pk": "5adcc6dd-8f82-4450-926d-0420ad0e0bcd", "fields": { - "question": 355, - "contribution": 3529, + "question": 323, + "contribution": 3665, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "75538771-276b-458b-89e3-113c3f7b2e0f", + "pk": "5ae7cba1-7652-41dc-8633-c6a4b3aed2ba", "fields": { - "question": 338, - "contribution": 3727, - "answer": 2, - "count": 2 + "question": 348, + "contribution": 3607, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7569bc77-a05a-4156-8fa0-6402606523a2", + "pk": "5af3107a-08fa-4d21-b333-8e6408bf4ed0", "fields": { - "question": 348, - "contribution": 887, - "answer": 1, - "count": 3 + "question": 326, + "contribution": 4085, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "756d94f5-259b-4d94-8276-5d3d5e18f751", + "pk": "5afe7d74-4635-4104-a008-bbfa35b2af5a", "fields": { - "question": 473, - "contribution": 1634, - "answer": -2, - "count": 7 + "question": 320, + "contribution": 880, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7571e00a-9f09-4ec4-b7f4-8298cc899fa1", + "pk": "5b022f1f-ec41-4229-bd3e-b3bbf146fd79", "fields": { - "question": 472, - "contribution": 3462, - "answer": 1, - "count": 4 + "question": 336, + "contribution": 1694, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7572ebe4-3b62-4d08-8dd1-5a3e78e459a3", + "pk": "5b068c93-e312-4e3a-90ce-c0f96263d0be", "fields": { - "question": 346, - "contribution": 3796, - "answer": 1, + "question": 338, + "contribution": 1660, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7573ff81-2a57-41a2-910b-eeae29bb23b7", + "pk": "5b07f4a8-60f6-43f8-868a-714b017a1a36", "fields": { - "question": 355, - "contribution": 1782, - "answer": 4, - "count": 1 + "question": 257, + "contribution": 4120, + "answer": 1, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "757c27fe-ad06-455a-ae7f-81ff6dd0b055", + "pk": "5b127168-105e-4d4c-a60c-02a5d7a45c3d", "fields": { "question": 473, - "contribution": 4020, - "answer": -3, - "count": 1 + "contribution": 1694, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "757e829d-6da4-4109-a7fe-0123c41e627a", + "pk": "5b14c75a-f6c3-4097-a812-3ef08ea3ff9a", "fields": { - "question": 325, - "contribution": 1613, - "answer": 2, - "count": 1 + "question": 343, + "contribution": 841, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7580242f-18f3-4754-98dc-3644a2c69aaa", + "pk": "5b19cf24-7902-4720-855f-7e2cbd7abc50", "fields": { - "question": 315, - "contribution": 3721, + "question": 369, + "contribution": 3918, "answer": 1, - "count": 10 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "758aba1b-f9fa-47b6-a6f5-097deb05d039", + "pk": "5b1d0366-cae7-446d-bd60-dd407a3969f1", "fields": { - "question": 437, - "contribution": 4090, - "answer": 3, - "count": 1 + "question": 472, + "contribution": 868, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "759465db-47ac-46cb-8380-0dec928414f9", + "pk": "5b248b47-26e8-463c-bb88-5c521b272190", "fields": { - "question": 315, - "contribution": 3422, + "question": 347, + "contribution": 1202, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7599aab7-7ba6-4f99-8ab9-825ce8afcaf7", + "pk": "5b262741-9ad9-4725-a828-d8beb7d20268", "fields": { - "question": 331, - "contribution": 3434, - "answer": 3, + "question": 472, + "contribution": 3404, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "759a2ff0-d1d2-4d27-a080-a796ddf3b046", + "pk": "5b311f1b-059e-4828-bf2c-a8838a97df57", "fields": { - "question": 320, - "contribution": 880, - "answer": 5, - "count": 1 + "question": 317, + "contribution": 836, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "75b19e1f-85d5-4c40-96ef-c036cb694f8a", + "pk": "5b32d81d-044e-472f-b200-4c80ba7c8cdd", "fields": { - "question": 368, - "contribution": 4085, + "question": 367, + "contribution": 1658, "answer": 1, - "count": 18 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "75bdbeee-1adb-4804-b277-74f5dc8e18b7", + "pk": "5b3d3f79-4967-4c50-bd0c-0df244fc6e89", "fields": { - "question": 321, - "contribution": 884, - "answer": 5, - "count": 4 + "question": 320, + "contribution": 4116, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "75c2e274-099d-47df-aaa2-ebc16854f201", + "pk": "5b42434c-36c9-48b4-bd1b-e397cc0e55fa", "fields": { - "question": 472, - "contribution": 3462, - "answer": 5, - "count": 2 + "question": 258, + "contribution": 3739, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "75cff876-ed46-42e2-9d78-c71132eb8abf", + "pk": "5b45e714-b2b2-4fb9-9431-35e62a93eddb", "fields": { - "question": 325, - "contribution": 3556, + "question": 339, + "contribution": 886, "answer": 1, - "count": 13 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "75d2ce2c-f1cc-4cb3-9586-f789c9a31bbd", + "pk": "5b49c811-cafc-4a4a-8bf3-5d935ff1c67f", "fields": { - "question": 325, - "contribution": 1617, + "question": 369, + "contribution": 1806, "answer": 1, - "count": 29 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "75df3403-77fe-414a-afce-2b42647f3cc1", + "pk": "5b4e3901-99ed-4b38-9512-5de4af52d11c", "fields": { - "question": 321, - "contribution": 1612, + "question": 335, + "contribution": 4154, "answer": 2, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "75e5f3ae-0b75-494c-a030-0b6802a9aba7", + "pk": "5b58410f-ab81-4a6c-a42d-083b1403385a", "fields": { - "question": 352, - "contribution": 3406, + "question": 346, + "contribution": 3879, "answer": 1, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "76252937-ff1f-43a0-9528-a9d4621e5b14", - "fields": { - "question": 339, - "contribution": 4052, - "answer": -2, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "762f53bf-6065-433f-837e-3a1b747e3562", + "pk": "5b65c387-da67-4659-9248-e2a8470c56cf", "fields": { - "question": 346, - "contribution": 1809, - "answer": 3, - "count": 1 + "question": 340, + "contribution": 1638, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "763f7388-e574-4d41-a80c-856e5f8de2ac", + "pk": "5b6d309d-d9f6-45ec-83ec-48e68a7d0c50", "fields": { - "question": 348, - "contribution": 3939, + "question": 347, + "contribution": 1870, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "766bcc6d-c057-4bb2-92e9-cca9c466224f", - "fields": { - "question": 327, - "contribution": 1635, - "answer": 3, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "766ebc47-2c66-47c9-8855-4b89cfe3862a", - "fields": { - "question": 463, - "contribution": 4141, - "answer": 5, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "76721644-2907-4961-aefc-9afe319f923f", + "pk": "5b6f81b0-4ce0-4d64-b796-6396a97170c9", "fields": { - "question": 327, - "contribution": 1779, + "question": 325, + "contribution": 3883, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7678e9af-b041-4037-b513-941668169b7e", + "pk": "5b7830ca-d8d6-43d6-8e05-05884a2f959a", "fields": { - "question": 477, - "contribution": 1798, + "question": 473, + "contribution": 3462, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "767b548c-0234-4c2b-9542-d0c6223b1d1c", + "pk": "5b7d35ce-99db-4547-9d7c-f0182e481f23", "fields": { - "question": 339, - "contribution": 4002, - "answer": 0, - "count": 5 + "question": 368, + "contribution": 3726, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7681791a-7356-41d5-8e71-39a66084c9d5", + "pk": "5b861f08-d100-4717-92fa-65f2300989aa", "fields": { - "question": 329, - "contribution": 4203, + "question": 315, + "contribution": 3422, "answer": 2, - "count": 9 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7686d618-a33d-429a-89d0-77d557eec43f", + "pk": "5b973400-5f46-4326-b6e0-5800399b0863", "fields": { - "question": 336, - "contribution": 3727, + "question": 341, + "contribution": 3508, "answer": 2, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "768d4fb2-7523-4d9d-bdc0-e2826af65e16", + "pk": "5bb94c20-060f-4bc1-b72a-84f6bb42ad08", "fields": { - "question": 255, - "contribution": 1626, - "answer": 5, - "count": 9 + "question": 475, + "contribution": 3440, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7697919f-9c56-450f-99dc-6a5082f68b62", + "pk": "5bd36e1a-6bf4-4c52-832a-15c36ffe12ba", "fields": { - "question": 322, - "contribution": 4100, - "answer": 4, - "count": 4 + "question": 327, + "contribution": 1780, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "76a2f9d7-cfdd-4df2-8fd5-757004797729", + "pk": "5be82eb7-6e5c-4004-9be2-fbe7fe8c11b9", "fields": { - "question": 317, - "contribution": 1634, - "answer": 2, - "count": 10 + "question": 476, + "contribution": 3462, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "76a580a8-a171-4686-b23a-578e85a1de68", + "pk": "5bead6b1-e2a7-4947-9edf-ef47ac6f7f9b", "fields": { - "question": 321, - "contribution": 3739, + "question": 323, + "contribution": 3390, "answer": 5, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "76b2e55f-fd8c-4f89-a0b8-b913d659805f", + "pk": "5bf3235e-e230-47a7-bbb4-2860f825c7ee", "fields": { - "question": 329, - "contribution": 1802, + "question": 355, + "contribution": 3985, "answer": 2, - "count": 11 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "76b42b39-b18b-49f3-bdf4-d7bc439137fa", + "pk": "5c0ccc51-437e-403b-91b7-bcddec7d1479", "fields": { - "question": 262, - "contribution": 4120, - "answer": 3, + "question": 392, + "contribution": 3775, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "76c0208f-4e6b-411a-9cae-925a1851aef9", + "pk": "5c144c4b-3594-4c55-876a-ed45e3c6b5b5", "fields": { - "question": 459, - "contribution": 4073, - "answer": 2, + "question": 326, + "contribution": 3740, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "76e0a5aa-8cef-4c9f-94ce-57c6d6567f6f", + "pk": "5c1667e4-db6c-4026-9a1e-d298aba74483", "fields": { - "question": 349, - "contribution": 919, + "question": 329, + "contribution": 1776, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "76e39b6b-624e-41b9-af2f-134b0b48f1dd", + "pk": "5c1df35a-ce34-40e8-8182-5209beac9283", "fields": { "question": 332, - "contribution": 4155, - "answer": 4, - "count": 2 + "contribution": 4156, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "76e69f6c-9bc6-4fda-bb2d-c6cf9ba9a10b", + "pk": "5c234b08-b13e-4257-8493-4eabbd55deef", "fields": { - "question": 463, - "contribution": 4141, - "answer": 3, - "count": 2 + "question": 335, + "contribution": 1282, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "76f1b1a9-1ef5-4d8c-8278-845c830cdd9f", + "pk": "5c2b3095-c4ff-487c-af09-adc4b6b847a2", "fields": { - "question": 475, - "contribution": 1200, - "answer": -3, + "question": 336, + "contribution": 4052, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "76fc5d19-dc4c-4d30-ad82-9718d088af05", + "pk": "5c39b2b6-4339-42cc-aa94-ad147b3a690f", "fields": { - "question": 259, - "contribution": 3422, - "answer": 1, - "count": 18 + "question": 255, + "contribution": 3721, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "76fd77ab-5817-424a-a535-6fbf5ff8dbb5", + "pk": "5c3d22ad-ffd0-4413-a3db-668bc04ecf2a", "fields": { - "question": 341, - "contribution": 1644, + "question": 362, + "contribution": 1810, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77117870-eaeb-45ea-b1bf-9e5a5f7c78bb", + "pk": "5c3f2879-68ce-49fb-87b8-ef4b46657ae9", "fields": { - "question": 477, - "contribution": 3684, - "answer": 0, - "count": 7 + "question": 255, + "contribution": 4138, + "answer": 3, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "771317cb-00a1-4c98-aae1-83c8c4d16c84", + "pk": "5c543ee9-8a1a-4118-a4e2-63754ed66197", "fields": { - "question": 371, - "contribution": 3631, + "question": 473, + "contribution": 884, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "772e4790-7e96-43ab-9e76-8bdc9e9e711c", + "pk": "5c5807d7-2736-4192-8acd-b7a27eeca1c9", "fields": { - "question": 323, - "contribution": 4100, - "answer": 2, - "count": 6 + "question": 345, + "contribution": 3487, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "772e7b68-9cba-469c-b573-f4266cfa9112", + "pk": "5c6928f1-fc11-4a41-a4bd-62386978c5cf", "fields": { - "question": 341, - "contribution": 3785, - "answer": 1, - "count": 2 + "question": 327, + "contribution": 3684, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77326a57-13e1-4235-b143-25615eb5937c", + "pk": "5c6af6f1-188a-410d-acb6-824bd18e7bdb", "fields": { - "question": 329, - "contribution": 1154, - "answer": 4, + "question": 319, + "contribution": 4118, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "773a2fda-3e59-41cd-8043-b7d561687e45", + "pk": "5c75eb20-d08b-49e7-a900-73a2fb824377", "fields": { - "question": 328, - "contribution": 885, - "answer": 1, - "count": 29 + "question": 351, + "contribution": 4046, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "773bb367-c0af-46cd-b4f0-190a232c3f01", + "pk": "5c7f779c-9283-4614-bdd4-0654875e715c", "fields": { - "question": 344, - "contribution": 1874, + "question": 319, + "contribution": 3434, "answer": 2, - "count": 1 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "773f4175-0ced-4bfd-a5a4-2575ad48b04c", + "pk": "5c80ec4f-28ca-43e3-b96b-15fa07836e5a", "fields": { - "question": 450, - "contribution": 4185, - "answer": 4, - "count": 1 + "question": 345, + "contribution": 3939, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7748f358-4737-427a-9fb8-047b80d3f6a6", + "pk": "5c859da6-5e31-4f63-b0e6-7eef81959329", "fields": { - "question": 356, - "contribution": 1783, - "answer": 2, - "count": 1 + "question": 321, + "contribution": 3390, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "774e426a-436f-446e-93b7-c917fec1d1e4", + "pk": "5ca25f5b-8ac1-45db-9850-483226c2faef", "fields": { - "question": 325, - "contribution": 823, - "answer": 5, - "count": 1 + "question": 475, + "contribution": 3745, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7756b0aa-e634-4ff0-aa53-18e26a66ae1b", + "pk": "5ca2a094-7e7f-4f7c-815d-eabf716d4ea4", "fields": { - "question": 348, - "contribution": 1246, - "answer": 1, - "count": 1 + "question": 323, + "contribution": 1626, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "775a4dea-5be2-4891-a9d6-1c019a125a2f", + "pk": "5ca56fd5-e624-4a64-a5c5-78c23527b074", "fields": { - "question": 255, - "contribution": 4028, - "answer": 1, - "count": 13 + "question": 341, + "contribution": 1694, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "776022d5-3586-4112-8fe6-119d8b253f21", + "pk": "5cab7453-224f-453e-8e29-66571ca788e6", "fields": { - "question": 319, - "contribution": 3721, + "question": 367, + "contribution": 3474, "answer": 4, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7766838a-173e-42fa-a6b4-41ea94f3fb84", + "pk": "5cb3a759-4f77-4e67-94cf-d51c6e96c4e3", "fields": { - "question": 321, - "contribution": 3725, - "answer": 2, - "count": 8 + "question": 337, + "contribution": 868, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "776c9ad0-c39d-4da6-ad16-4dd26d02c3e2", + "pk": "5cb8c8a8-1a98-4719-8fc3-f2b91c5c95ad", "fields": { - "question": 349, - "contribution": 4129, + "question": 343, + "contribution": 3546, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "776cca10-51e8-4aef-bac5-f805542bd025", + "pk": "5cb975fb-c368-44a1-b9c6-51e2b1d9d3ca", "fields": { - "question": 473, - "contribution": 3354, + "question": 463, + "contribution": 4141, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "776dd4ae-09c5-4334-b4f3-18172159c2a5", + "pk": "5cc6de97-e644-4808-9c45-80a672fcd91d", "fields": { - "question": 317, - "contribution": 3679, - "answer": 3, - "count": 6 + "question": 353, + "contribution": 1266, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7772e7d5-6311-428e-a363-1fcafe1031e7", + "pk": "5cd1d890-838d-405e-9652-86e24dd588bb", "fields": { - "question": 337, - "contribution": 1702, - "answer": 3, - "count": 2 + "question": 416, + "contribution": 4038, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "777b369b-4b12-4d49-996a-7e75ade3f599", + "pk": "5cd288fb-1e3a-4c3b-87c8-dadde0bbfc1a", "fields": { - "question": 328, - "contribution": 4023, + "question": 316, + "contribution": 4128, "answer": 5, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "777b7324-7129-40bf-9362-d8e670bf9d67", + "pk": "5cdad687-f110-41da-b4fc-f0ea49c7e23f", "fields": { - "question": 477, - "contribution": 3722, - "answer": -2, - "count": 3 + "question": 367, + "contribution": 1837, + "answer": 1, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "778297e7-fb83-47b2-82bd-ed38e8861191", + "pk": "5cdfe90b-7901-4625-af3e-75bbc02fe07e", "fields": { - "question": 363, - "contribution": 1812, + "question": 368, + "contribution": 3519, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "778c3959-5568-4517-8491-a7f916e1a6e6", + "pk": "5ceb205a-cee8-4452-96dd-13387918e7f5", "fields": { - "question": 325, - "contribution": 3423, + "question": 338, + "contribution": 3785, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77926488-33fc-44ef-b3b5-4d997e617ac0", + "pk": "5cf0c6aa-6951-4f4b-8220-7eee8720e0b0", "fields": { - "question": 473, - "contribution": 4120, + "question": 316, + "contribution": 1626, "answer": 3, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77974f49-e7e4-4ab0-8ec9-c3fe5527e4cc", + "pk": "5cf0d69c-ca44-4bfb-b7e0-ac0088e800d6", "fields": { - "question": 367, - "contribution": 3472, - "answer": 1, - "count": 4 + "question": 332, + "contribution": 3553, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77a4d7e3-e6b5-4bfd-b979-fa6ca3138fe0", + "pk": "5d0b3c3e-fe94-4f77-8b8a-216e6a73ce58", "fields": { - "question": 362, - "contribution": 1807, - "answer": 5, - "count": 2 + "question": 349, + "contribution": 1228, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77a8802f-5042-49cb-a3db-4c4fb33a31c3", + "pk": "5d0de47f-ad2f-40c3-877f-3bc9b8285ed1", "fields": { - "question": 323, - "contribution": 3474, + "question": 347, + "contribution": 4233, "answer": 1, - "count": 7 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77ae0653-ba39-414b-9321-b6b7ac133c8e", + "pk": "5d1355ec-cbd6-4135-9063-a38d6e761cbf", "fields": { - "question": 347, - "contribution": 1828, - "answer": 2, - "count": 2 + "question": 410, + "contribution": 4024, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77b17a38-2409-4457-95ae-471bb29294f0", + "pk": "5d15a917-93a5-469e-973b-bdb35b40c6fd", "fields": { - "question": 348, - "contribution": 3546, - "answer": 3, - "count": 1 + "question": 357, + "contribution": 3607, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77cd4902-37b4-4a8e-959c-4b3b33e791e2", + "pk": "5d352797-0a94-4446-9a0b-27c3512212dd", "fields": { - "question": 472, - "contribution": 1668, + "question": 336, + "contribution": 1200, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77d6c9d7-1e18-46f8-80ca-1c15a9ca56f0", + "pk": "5d355d81-2a3c-4a98-b71e-12decdaaf6ae", "fields": { - "question": 325, - "contribution": 4203, - "answer": 2, + "question": 319, + "contribution": 3725, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77e3354b-3b62-471d-99df-325f684269a2", + "pk": "5d3ef292-81bf-49e1-852d-47aaa3d56ddb", "fields": { - "question": 370, - "contribution": 4228, + "question": 316, + "contribution": 3472, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77e3d261-63e8-4a38-a274-c9bf2cb529ef", + "pk": "5d4406e4-eef5-4518-b690-2b30f9d8c1f7", "fields": { - "question": 476, - "contribution": 1634, - "answer": 2, + "question": 353, + "contribution": 3960, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77e665ec-9a94-4e1d-bd3b-723556a8160f", + "pk": "5d5453f3-c657-4365-aadd-185bcbf99303", "fields": { - "question": 258, - "contribution": 4028, - "answer": 3, + "question": 328, + "contribution": 3726, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "77eee5c1-d96b-4d2e-bbd1-3d5e0ce5612b", - "fields": { - "question": 315, - "contribution": 912, - "answer": 2, - "count": 13 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "7805ab3b-3fd0-44ce-afd4-56d11ff3c56c", + "pk": "5d599ebd-f73d-476e-8fad-171d3dccc6f3", "fields": { - "question": 340, - "contribution": 840, + "question": 360, + "contribution": 1803, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78071da0-96fc-4cf5-907e-a55a6e8ff968", + "pk": "5d5dbe23-13b4-4788-aadc-e21c9dda3c72", "fields": { - "question": 343, - "contribution": 1250, - "answer": 1, - "count": 6 + "question": 363, + "contribution": 1811, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7808a641-ff6b-4550-ac42-7a2c1b73fb48", + "pk": "5d637a25-24bb-4384-9ee0-c59a9bb497be", "fields": { - "question": 323, - "contribution": 3679, - "answer": 1, - "count": 7 + "question": 347, + "contribution": 3516, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "780de765-283e-482d-b0ff-cec5f3d49f68", + "pk": "5d6ba495-f7d1-47ab-b95a-b0fbde9cfd6a", "fields": { - "question": 258, - "contribution": 3474, - "answer": 1, + "question": 473, + "contribution": 3711, + "answer": 0, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7811f07c-d253-48cb-ba65-8b22634db393", + "pk": "5d6d22bd-240a-4795-b1c7-e2dd71bacdcd", "fields": { - "question": 341, - "contribution": 1694, + "question": 354, + "contribution": 4039, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7813e695-f7a4-471d-83c8-f03e0f31a775", + "pk": "5d6fc2dc-d754-400f-9ae4-e1c28bcbc07d", "fields": { - "question": 363, - "contribution": 1810, + "question": 472, + "contribution": 3739, "answer": 1, - "count": 14 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78274923-e0eb-420d-806d-89011a695562", + "pk": "5d72c6d6-18b4-47c3-b362-e5d8e77117f2", "fields": { - "question": 340, - "contribution": 788, - "answer": 3, + "question": 320, + "contribution": 4022, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7835cb8c-3729-4d79-acda-78de78c00358", + "pk": "5d7c3eee-d3c7-4bdc-a640-4722e3c63b65", "fields": { - "question": 333, - "contribution": 4261, - "answer": 3, - "count": 1 + "question": 400, + "contribution": 4119, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78426441-8619-4798-8d93-d67cada45e7c", + "pk": "5d8505e5-d426-42bf-9b92-5920d408acc8", "fields": { - "question": 333, - "contribution": 3936, - "answer": 3, - "count": 2 + "question": 347, + "contribution": 3606, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "784ab4ab-5c72-425d-97aa-7e5424dc1d5d", + "pk": "5d851df7-d5c9-4b47-b6ae-8b0fa0a76116", "fields": { - "question": 316, - "contribution": 1680, + "question": 332, + "contribution": 3551, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "784f0768-894b-4042-9449-1329982b6de5", + "pk": "5d85bedc-08b4-4e13-8673-3f5c42a4377f", "fields": { - "question": 340, - "contribution": 3372, - "answer": 3, - "count": 2 + "question": 472, + "contribution": 1694, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7853e939-8499-4dd1-afec-ecc1330bb3f9", + "pk": "5d8acdfd-7e15-4afc-b173-ffb791a9d381", "fields": { - "question": 349, - "contribution": 3373, - "answer": 2, + "question": 476, + "contribution": 1612, + "answer": -2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7862abd2-f81e-4caa-811f-e2bf56b769a2", + "pk": "5d8acf63-26c8-4934-b9b3-f3cb920f68d1", "fields": { - "question": 348, - "contribution": 1842, + "question": 259, + "contribution": 3434, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78631345-06f1-4d41-aef7-5ef329d1dc50", + "pk": "5d8f5cba-c9de-4160-a9d9-f6210275e515", "fields": { - "question": 477, - "contribution": 3407, - "answer": 0, - "count": 4 + "question": 319, + "contribution": 3422, + "answer": 4, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7865acc3-1d44-4da3-b3b0-352e401d1594", + "pk": "5d9eeb0b-fbe1-4b84-abd1-6e58b6ce11fd", "fields": { - "question": 367, - "contribution": 3462, - "answer": 1, - "count": 5 + "question": 258, + "contribution": 3434, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78779c16-6591-4046-8216-a80695053c83", + "pk": "5da4eafd-000a-4e9b-b919-3cad2e341709", "fields": { - "question": 338, - "contribution": 3454, + "question": 255, + "contribution": 3474, + "answer": 5, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "5da8ee03-01ac-4f43-9a5a-08bdba1cc0d8", + "fields": { + "question": 344, + "contribution": 3545, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78788faa-4f1d-4f15-8429-bc19080bb2b7", + "pk": "5db72638-ea18-404e-893c-52ad931c45e0", "fields": { - "question": 363, - "contribution": 3921, - "answer": 4, - "count": 1 + "question": 354, + "contribution": 1256, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7880d331-20d6-4125-844d-608e28b0aff6", + "pk": "5db8b247-7744-4f56-bada-3e4efb12aa72", "fields": { - "question": 335, - "contribution": 1283, - "answer": 5, + "question": 477, + "contribution": 3435, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "789adff7-8383-4e53-901b-7b554863ccec", + "pk": "5dc3e2fc-a9d7-48ae-8b46-8ca85bf4c433", "fields": { - "question": 349, - "contribution": 3608, - "answer": 1, - "count": 3 + "question": 336, + "contribution": 804, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "789c0b54-1f74-457c-ba9f-2e53198f5d61", + "pk": "5dd99125-56ac-4921-9c5f-7c75cd7fc270", "fields": { - "question": 359, - "contribution": 3921, + "question": 348, + "contribution": 4188, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "789d2b66-ffaf-4f46-9186-c8eb41ed50b1", + "pk": "5ddab872-9363-48c0-9f02-a29dd22a2401", "fields": { - "question": 363, - "contribution": 1807, + "question": 317, + "contribution": 3739, "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78a1b95d-083e-4ea1-ba68-eaebb597850b", + "pk": "5ddc174b-8baf-454c-8edc-38c74ea63132", "fields": { - "question": 326, - "contribution": 1613, - "answer": 4, - "count": 2 + "question": 255, + "contribution": 862, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78ab61d8-9e84-4701-83b1-3659d9ee973f", + "pk": "5ddceed9-8699-4b19-8e84-9a2c31d02437", "fields": { - "question": 355, - "contribution": 3609, - "answer": 3, + "question": 332, + "contribution": 4155, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78b7c091-4d0e-45d8-9cfb-ff0f545be871", + "pk": "5de6dea8-8093-4f8a-9807-22f7884df055", "fields": { - "question": 418, - "contribution": 4024, - "answer": 1, + "question": 374, + "contribution": 3755, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78bf19f0-3c05-465e-a504-ca06d7cf6651", + "pk": "5e044cf9-4824-47da-bdc9-bd329ff0e3f8", "fields": { - "question": 315, - "contribution": 1626, - "answer": 4, + "question": 355, + "contribution": 4266, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78cb86a4-2db6-4af4-a968-5d227bfbcd19", + "pk": "5e1e0102-8b8d-4f97-a6e8-132a04ea4a1e", "fields": { - "question": 413, - "contribution": 4038, - "answer": 2, - "count": 1 + "question": 332, + "contribution": 3882, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78cc79cb-20b5-4cdd-b89f-da442ea17be4", + "pk": "5e1e17f0-4372-4cf3-b8ff-dbf20d47bb02", "fields": { - "question": 357, - "contribution": 1784, - "answer": 3, - "count": 2 + "question": 341, + "contribution": 3372, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78cd8af0-51a0-4224-b0bc-31ee7f088ce1", + "pk": "5e21b1a9-4e0f-460c-a72c-87b936fc0e97", "fields": { - "question": 463, - "contribution": 4284, - "answer": 2, - "count": 2 + "question": 344, + "contribution": 4161, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78d457d0-1d1d-4b95-9433-e4fe16c1fed2", + "pk": "5e24455d-a5af-4b21-a4d4-3329a8934fba", "fields": { - "question": 316, - "contribution": 3434, + "question": 349, + "contribution": 4129, "answer": 3, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78ddb880-8be5-4798-a45b-fb980af7839c", + "pk": "5e2bf5ba-8225-4192-8d17-07001a988c8e", "fields": { - "question": 346, - "contribution": 4234, - "answer": 1, - "count": 1 + "question": 337, + "contribution": 3785, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "78f352ee-cac7-47a4-9f75-2d1c7714fcbd", + "pk": "5e2c44b8-629e-4cc0-90f9-b33044c0e27e", "fields": { - "question": 328, - "contribution": 3883, - "answer": 3, - "count": 2 + "question": 476, + "contribution": 1724, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "790c5768-2eb8-4ed9-b7a5-2a4efb4c12b2", + "pk": "5e3491ef-9c0b-446a-b0c0-34e8efacc055", "fields": { - "question": 472, - "contribution": 826, - "answer": 5, + "question": 339, + "contribution": 3372, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7911eff2-30a8-4451-9ce0-868339eb3de2", + "pk": "5e4ad4f7-b10f-4d47-8805-953dc45e7402", "fields": { - "question": 475, - "contribution": 3416, - "answer": -1, - "count": 1 + "question": 317, + "contribution": 880, + "answer": 5, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "79169b1c-5f78-4b33-ae42-884e1e7aa3bd", + "pk": "5e68eb06-ba5b-47be-84eb-3512c6def826", "fields": { - "question": 370, - "contribution": 3609, - "answer": 1, - "count": 4 + "question": 259, + "contribution": 884, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "79182e26-4677-4972-a979-7dd01793e2e8", + "pk": "5e6bb124-cd06-43ee-b2f1-e35ada9c94c6", "fields": { - "question": 331, + "question": 259, "contribution": 836, - "answer": 0, + "answer": 1, "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7918f069-4b77-4456-90a2-f3975bcb82d5", + "pk": "5e6ec0ee-a994-4028-bcc3-ce26e0710529", "fields": { - "question": 347, - "contribution": 3912, + "question": 357, + "contribution": 4227, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "791dc69a-9320-4d6b-a0a7-fd2474227ebe", + "pk": "5e877050-92d2-4c5c-8852-71fe1d03f62c", "fields": { - "question": 372, - "contribution": 3759, + "question": 414, + "contribution": 3974, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7928888f-8039-4a68-b559-b961c3d31947", + "pk": "5e8e31fc-b6ad-47cc-8687-6639ed3f0bf3", "fields": { - "question": 319, - "contribution": 3462, - "answer": 3, - "count": 3 + "question": 327, + "contribution": 3726, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "792df29b-53af-4360-8f49-bc5e288d6a0b", + "pk": "5e9993a7-d9e0-4f63-b1f1-c65432ae1ee8", "fields": { - "question": 348, - "contribution": 919, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 1779, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "793e5a41-2e1d-46d0-8309-8a2a49733d66", + "pk": "5ea9308c-fc7a-436a-8dad-348a2ef89699", "fields": { - "question": 338, - "contribution": 3745, - "answer": 2, - "count": 2 + "question": 477, + "contribution": 1154, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "794c7aba-bdfd-49bf-b89a-ed7f1aed23d4", + "pk": "5eb0b3aa-56a0-42e0-89bf-d977d6d12669", "fields": { - "question": 335, - "contribution": 1812, - "answer": 5, - "count": 1 + "question": 328, + "contribution": 3519, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7970bf91-34a8-40aa-9c46-1761f73119f1", + "pk": "5eb115af-498c-4883-ab6d-d4e683e6b83b", "fields": { - "question": 355, - "contribution": 3607, - "answer": 1, + "question": 341, + "contribution": 3466, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7980a539-e0bb-41e0-975b-fb605514a30a", + "pk": "5ebfacd1-6661-4597-a98b-c135616dd089", "fields": { - "question": 477, - "contribution": 3473, - "answer": -1, - "count": 3 + "question": 360, + "contribution": 1810, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7981830e-7fb2-4936-90c2-d7f7c93658ca", + "pk": "5ed02f07-5a81-4b65-987e-7cdb2f6bf56a", "fields": { - "question": 472, - "contribution": 3727, - "answer": 5, - "count": 6 + "question": 337, + "contribution": 3482, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "798fddd8-1f99-4326-87a2-06c8102d9e29", + "pk": "5edeb486-6e75-43ba-8874-a868466f41d6", "fields": { - "question": 353, - "contribution": 4279, - "answer": 2, + "question": 258, + "contribution": 4022, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "799cf2bd-0dfd-4b99-85b2-557d8e930011", + "pk": "5f066acd-8a37-4592-b513-a2f844aefa8a", "fields": { - "question": 317, - "contribution": 3354, - "answer": 1, - "count": 8 + "question": 320, + "contribution": 3683, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "79b29647-a050-451b-883d-f9739e28d347", + "pk": "5f104caa-fbb7-4dc3-83de-d5811002a6c1", "fields": { - "question": 322, - "contribution": 884, - "answer": 4, + "question": 336, + "contribution": 4002, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "79bfb2dd-2ee3-4b98-a634-ca151e43157e", + "pk": "5f1cbfe0-04c5-4a8e-8d52-8744a38929da", "fields": { - "question": 340, - "contribution": 1640, + "question": 346, + "contribution": 1203, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "79c7267d-e8d6-4812-aff3-9b2f4703d3bc", + "pk": "5f1eb5e2-65cc-4222-af24-45d24f767b10", "fields": { - "question": 341, - "contribution": 3508, + "question": 257, + "contribution": 1634, "answer": 1, - "count": 3 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "79dffb5a-ab5b-4ff1-877c-32efd57891a1", + "pk": "5f28808d-31be-4d35-a031-d8af1ce27032", "fields": { - "question": 341, - "contribution": 3727, - "answer": 3, - "count": 6 + "question": 361, + "contribution": 1825, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "79e1c354-55b0-475a-a2e7-4ecd14cdcfd0", + "pk": "5f2c93a4-3aac-46f3-bae3-591f738cce92", "fields": { - "question": 326, - "contribution": 1186, - "answer": 1, - "count": 3 + "question": 335, + "contribution": 3598, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "79e48977-a544-46db-b531-a17021331fc3", + "pk": "5f31c2e1-e5a8-47c5-b050-3f37d45c732c", "fields": { - "question": 368, - "contribution": 3435, - "answer": 3, - "count": 4 + "question": 257, + "contribution": 4116, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "79f071c7-cc77-44b6-851c-003c1589835d", + "pk": "5f3fcb07-ae50-4661-8b70-49489b3cb136", "fields": { - "question": 460, - "contribution": 4091, - "answer": 4, + "question": 336, + "contribution": 3466, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "79f33506-7d7d-4093-bd1a-6889db57b5fe", + "pk": "5f44ab34-d5fa-41d7-ae8f-98ab8e1454aa", "fields": { - "question": 355, - "contribution": 1776, + "question": 346, + "contribution": 1249, "answer": 1, - "count": 8 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "79ffb4b3-f8e4-4b36-bb0d-6c4c6b582536", + "pk": "5f46b89b-df9d-4814-bdb5-cc91ef2a89fa", "fields": { - "question": 341, - "contribution": 3693, - "answer": 2, + "question": 349, + "contribution": 3373, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7a0c7685-b8af-46e5-9863-7c9fb6f99e2d", + "pk": "5f4b1ba9-a5eb-43b0-a8af-4ad17231c378", "fields": { - "question": 339, - "contribution": 3751, + "question": 336, + "contribution": 4002, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7a0eb1be-5eb2-43ea-aea8-11e1a22354e5", + "pk": "5f4c092b-42a1-4084-b1a8-7ac91b3211d2", "fields": { - "question": 370, - "contribution": 1783, - "answer": 1, - "count": 5 + "question": 329, + "contribution": 1681, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7a1085a2-f8b5-4a1a-9a26-10677b67dacc", + "pk": "5f55b7b5-a9bd-49b9-9783-d235f15bae26", "fields": { - "question": 459, - "contribution": 4284, - "answer": 4, - "count": 1 + "question": 343, + "contribution": 3518, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7a176929-7a8a-4a4c-9e21-9ffe8d89e039", + "pk": "5f58aea5-4940-4265-8bc6-99267ceef02d", "fields": { - "question": 477, - "contribution": 909, - "answer": 2, - "count": 1 + "question": 475, + "contribution": 3454, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7a26e534-3dc1-49da-b2b3-a3ffcf070c29", + "pk": "5f5b1a20-a22c-4b49-80e0-71a173380bf6", "fields": { - "question": 315, - "contribution": 836, - "answer": 2, - "count": 5 + "question": 329, + "contribution": 4152, + "answer": 3, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7a2db8bb-3acc-4f1b-bacb-44941a7db9c4", + "pk": "5f62ef43-d520-4d3d-a538-bd95472b5ada", "fields": { - "question": 255, - "contribution": 1658, - "answer": 1, - "count": 12 + "question": 319, + "contribution": 1612, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7a2f547d-8725-4c72-aadf-9e64fa53aad9", + "pk": "5f6cc6f2-0b17-4e79-8aea-5737c6b37ce9", "fields": { - "question": 355, - "contribution": 3831, + "question": 257, + "contribution": 1612, "answer": 1, - "count": 1 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7a33ba86-0bb9-4a5f-8c36-f3adef25ad58", + "pk": "5f71ab8d-31cb-434e-b0ad-72a7516cfb2e", "fields": { - "question": 255, - "contribution": 912, - "answer": 4, - "count": 2 + "question": 326, + "contribution": 3519, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7a3a17e3-f812-4da6-a670-15c7f5d9916e", + "pk": "5f7cc076-9f2e-4fd9-a405-eb4a439b288e", "fields": { - "question": 367, - "contribution": 1668, - "answer": 2, - "count": 3 + "question": 401, + "contribution": 4177, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7a4de6e2-626a-4aa4-8f87-385a4863e59c", + "pk": "5f813c68-574d-48ba-b2c5-883ddf57df7a", "fields": { - "question": 258, - "contribution": 912, - "answer": 3, - "count": 3 + "question": 333, + "contribution": 1884, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7a6cc963-1a7f-445c-b6d3-8907f9594102", + "pk": "5fa584c3-a55b-41c5-af73-1a9ef6cc9f23", "fields": { - "question": 329, - "contribution": 4085, - "answer": 4, - "count": 5 + "question": 259, + "contribution": 4084, + "answer": 2, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7a8d87d7-ff27-4eb2-85a0-1f42a135db22", + "pk": "5fadde17-0587-465a-beae-ddf63bc3b085", "fields": { - "question": 348, - "contribution": 1246, - "answer": 3, - "count": 2 + "question": 344, + "contribution": 3899, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7aa93ea8-dcb3-4a11-8759-6b60a0198f30", + "pk": "5faf3efc-873c-4974-b1e6-581718dcd0da", "fields": { - "question": 473, - "contribution": 3462, - "answer": 0, - "count": 5 + "question": 321, + "contribution": 4084, + "answer": 2, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ab3a09f-cdaa-4188-a2ba-34495ea68e56", + "pk": "5fb405e4-12f7-4560-b15e-80be788ad7c9", "fields": { - "question": 321, - "contribution": 880, - "answer": 4, + "question": 344, + "contribution": 1228, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ac161e7-7e9d-417b-8d90-c9865ed24f62", + "pk": "5fb4c499-bd4d-4539-b79c-1c65f49de0cb", "fields": { - "question": 362, - "contribution": 3919, - "answer": 3, + "question": 339, + "contribution": 1656, + "answer": -1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ac60bc3-7ee6-4705-8e10-647ef014dc50", + "pk": "5fb73617-188a-4499-86f8-d1186323fbc4", "fields": { - "question": 345, - "contribution": 3545, - "answer": 3, + "question": 352, + "contribution": 788, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ac8dc39-3c36-4430-8390-2141ecf2c82b", + "pk": "5fbd757e-a208-48c3-99c8-a3a9c0ed9dd7", "fields": { - "question": 345, - "contribution": 3912, - "answer": 2, - "count": 1 + "question": 333, + "contribution": 3552, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7acb7197-9d67-453d-928a-aa7046aeacd5", + "pk": "5fbe8973-7d77-41ae-85da-8d7406007c9b", "fields": { - "question": 345, - "contribution": 1207, + "question": 406, + "contribution": 4024, "answer": 1, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7acdc7df-5980-4aa9-a5ec-cd25e1f21b5d", + "pk": "5fc73d9a-627a-4d87-91b3-a7d7367d0770", "fields": { - "question": 367, - "contribution": 1724, + "question": 341, + "contribution": 3482, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ad4bd35-3169-48c6-8957-17aabf2fba6e", + "pk": "5fcf3f7b-5b45-4fda-90f5-7737f4193443", "fields": { - "question": 327, - "contribution": 3722, - "answer": 1, - "count": 8 + "question": 262, + "contribution": 3390, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ad68264-75fd-4c40-b7da-67620f856b64", + "pk": "5fd2d636-4660-42b4-a169-6e6e7a74ed79", "fields": { - "question": 349, - "contribution": 3515, - "answer": 2, - "count": 2 + "question": 438, + "contribution": 4090, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ad830c0-b6fe-4718-ac43-bf2d55dec61b", + "pk": "5fe856eb-6cab-473d-9dda-21ae60a01cd8", "fields": { - "question": 317, - "contribution": 1680, - "answer": 3, - "count": 2 + "question": 258, + "contribution": 4116, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ad86260-94ec-45ac-ac8f-40720b2c8ea3", + "pk": "5febfd8b-06e8-4342-a5b2-be4f528c1ca8", "fields": { - "question": 317, - "contribution": 3390, - "answer": 2, - "count": 4 + "question": 348, + "contribution": 1860, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ae3b7c7-006f-4822-9157-9d07ddd486cf", + "pk": "5ff0c46a-4030-4d87-95f8-05fa5eecd9f3", "fields": { - "question": 349, - "contribution": 3900, - "answer": 4, + "question": 369, + "contribution": 1835, + "answer": 1, + "count": 5 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "5ff77953-013e-47b4-b0dd-02454b38ef5d", + "fields": { + "question": 317, + "contribution": 4118, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ae52867-382f-434b-a148-114f5180092c", + "pk": "60070015-7b00-4c9d-8df6-fa2ad0617dee", "fields": { - "question": 326, - "contribution": 4203, - "answer": 1, - "count": 6 + "question": 317, + "contribution": 3390, + "answer": 4, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ae75e96-caa8-4e16-a150-df35977fbafd", + "pk": "600780d5-f6e6-4783-97e7-37f9b2316753", "fields": { - "question": 343, - "contribution": 4129, - "answer": 3, + "question": 338, + "contribution": 3404, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7af03afe-842b-4506-954e-2b4fcee0507c", + "pk": "60111f1f-9c5e-42a4-b048-44fe4323660a", "fields": { - "question": 344, - "contribution": 3545, - "answer": 2, - "count": 2 + "question": 316, + "contribution": 3390, + "answer": 3, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b00daf9-83eb-4791-9b26-86af2f554037", + "pk": "60177eb3-a870-4d5d-9956-db7a945dc87c", "fields": { - "question": 347, - "contribution": 3895, + "question": 259, + "contribution": 3721, "answer": 1, - "count": 4 + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b04eaef-77cb-489b-b67e-ee164780b477", + "pk": "601a45fe-08e3-4102-8502-10cd0a58f31e", "fields": { - "question": 477, - "contribution": 1778, - "answer": 0, - "count": 20 + "question": 322, + "contribution": 4100, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b059d06-1f98-47ba-95e1-e6a57c9aef57", + "pk": "6022195f-c6b9-42b2-afb2-e717d17135e1", "fields": { - "question": 360, - "contribution": 1826, + "question": 352, + "contribution": 832, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b069a13-bff3-4d02-a1bb-fcca9f1a9952", + "pk": "6026b31a-fc7a-4e86-bed4-86963b8a3ff8", "fields": { - "question": 259, - "contribution": 4084, - "answer": 1, - "count": 25 + "question": 329, + "contribution": 3680, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b195631-1d6d-49d8-bce5-2650b0cd9ac4", + "pk": "60278681-7d56-4c92-9393-e25a2c1701fc", "fields": { - "question": 366, - "contribution": 3932, - "answer": 2, - "count": 2 + "question": 345, + "contribution": 1867, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b2196f9-7a1d-4c1c-8bf0-e7168212f6f6", + "pk": "602c0ac0-4e0c-457e-8faf-bee83a46a6f7", "fields": { - "question": 355, - "contribution": 4025, - "answer": 1, + "question": 317, + "contribution": 912, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b23392d-01af-4d4c-b41c-c956d60cce34", + "pk": "602f91ce-a599-45b4-a249-ec47422d4c0d", "fields": { - "question": 257, - "contribution": 836, - "answer": 2, - "count": 4 + "question": 322, + "contribution": 4028, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b249e7f-5f3b-4aa3-b739-8bf85a4aa925", + "pk": "60386ce3-5b2c-4a63-b7a6-5ef527777e1a", "fields": { - "question": 355, - "contribution": 1154, - "answer": 2, - "count": 7 + "question": 350, + "contribution": 3440, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b2b2e14-5000-428a-8bd1-c23f5cf8ef70", + "pk": "6038da23-cfbb-4d66-8065-ab0858753fe9", "fields": { - "question": 370, - "contribution": 3835, + "question": 338, + "contribution": 4052, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b331fe6-8119-4253-9992-29b110eb27f5", + "pk": "603c0a3d-db5e-45c2-9c4e-e36457aa6058", "fields": { - "question": 341, - "contribution": 3440, - "answer": 2, - "count": 4 + "question": 473, + "contribution": 4020, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b367bd7-f6a4-49ba-bd3b-207cdfc523b8", + "pk": "603ed937-15ae-4dbf-99ab-61e5404b6b2e", "fields": { - "question": 367, - "contribution": 1668, + "question": 316, + "contribution": 1612, "answer": 1, - "count": 6 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b4cc7e7-5672-46e4-ab58-6286d9f9e942", + "pk": "60403a8a-3538-4702-a1fe-98cdda006b48", "fields": { - "question": 338, - "contribution": 3703, - "answer": 3, - "count": 3 + "question": 336, + "contribution": 1644, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b4fa432-fa7b-42c1-ad40-cff9e20b7fa3", + "pk": "6048d7dd-39ee-4535-a3ba-02b42533a414", "fields": { - "question": 321, - "contribution": 3422, + "question": 473, + "contribution": 4052, "answer": 1, - "count": 10 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b59eb50-c103-4b09-8eab-e7a67a890b83", + "pk": "604c614f-024b-43cf-bdc5-9ffadcbb2cc7", "fields": { - "question": 317, - "contribution": 3422, - "answer": 2, - "count": 7 + "question": 397, + "contribution": 3781, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b7e52c0-173b-4d65-ba31-c8435923cf3f", + "pk": "6057e2b0-82b0-4c7d-9f34-bd4bf4d5ca7d", "fields": { - "question": 328, - "contribution": 1777, + "question": 333, + "contribution": 1217, "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b8a50c3-5cfb-420b-b785-5901336cb17e", + "pk": "60586c0a-ce7f-42c9-aaf1-8d37e3df6183", "fields": { - "question": 258, - "contribution": 3679, + "question": 328, + "contribution": 3684, "answer": 1, - "count": 20 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "7b8b0c23-67cd-4194-a105-2bba65fcb2e4", - "fields": { - "question": 262, - "contribution": 3434, - "answer": 2, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b944f54-c293-42a4-9acb-ee02c85207ac", + "pk": "605fea86-b017-4ccc-a67a-a39f2ddc45cd", "fields": { - "question": 346, - "contribution": 1246, + "question": 328, + "contribution": 1613, "answer": 4, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7b9eab3f-0eae-4420-b68e-51c6c06c66be", + "pk": "606caa8d-63e7-42cb-87df-4ce41c1d731a", "fields": { - "question": 344, - "contribution": 4188, - "answer": 1, - "count": 3 + "question": 367, + "contribution": 3739, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7bad8757-54b5-440b-babd-812abea5fc6c", + "pk": "60745a27-7cc7-4947-8c39-1f366e8adbc8", "fields": { - "question": 462, - "contribution": 4141, + "question": 343, + "contribution": 3546, "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7baf6ec4-65ec-4b33-890b-8fdffda04005", + "pk": "609199ac-4e6b-447b-8369-3f00bdf9470b", "fields": { - "question": 323, - "contribution": 3721, - "answer": 3, - "count": 5 + "question": 327, + "contribution": 3423, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7bb23931-0f59-441c-94e9-d09d1fd079aa", + "pk": "6094a4c0-24c2-4bbf-83a2-ef4311367d56", "fields": { - "question": 344, - "contribution": 1156, - "answer": 2, - "count": 1 + "question": 322, + "contribution": 4118, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7bb3bfce-8b43-4152-9eba-5b26fcaa906a", + "pk": "60d003a2-0567-4176-91a4-e7ca7714a212", "fields": { - "question": 477, - "contribution": 1778, + "question": 316, + "contribution": 836, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7bd6636d-965a-4088-a2fa-4994ee0bc431", + "pk": "60d39152-3fc8-4640-89c5-aba5896ee767", "fields": { - "question": 431, - "contribution": 4119, + "question": 350, + "contribution": 4022, "answer": 1, - "count": 8 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7bda612c-4d08-46f6-abd2-5180c09c94ed", + "pk": "60d6d694-6138-4f70-9eee-1806e52ccdf9", "fields": { - "question": 366, - "contribution": 3932, - "answer": 4, - "count": 1 + "question": 345, + "contribution": 1235, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7be12aa8-ce2f-4baf-b751-a89418da521b", + "pk": "60dd27b6-9618-4685-9710-99f58ea42a45", "fields": { - "question": 367, - "contribution": 3422, - "answer": 5, - "count": 1 + "question": 262, + "contribution": 1634, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7be9d635-da02-4ade-8a55-708e04f95167", + "pk": "60e1a269-ac0f-442f-a3fa-d2b75dcc5bcb", "fields": { - "question": 259, - "contribution": 3354, + "question": 359, + "contribution": 3918, "answer": 2, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7bed6a87-c29b-4b8f-8679-6c0eb5e791ac", + "pk": "60e1decc-1d9b-4374-b36b-3118620cebf2", "fields": { - "question": 331, - "contribution": 3422, - "answer": -3, - "count": 1 + "question": 322, + "contribution": 880, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7bf64014-1fd7-40d3-b61f-7a29512f23a0", + "pk": "60e2c9b9-a516-4e5e-81b1-94b664cda590", "fields": { - "question": 366, - "contribution": 3592, - "answer": 5, - "count": 1 + "question": 259, + "contribution": 3434, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7bf9a241-8e6c-4916-b6ac-d66e88c50602", + "pk": "60e5c407-51c3-43b9-95d8-17140aacab70", "fields": { "question": 473, - "contribution": 1634, - "answer": 0, - "count": 12 + "contribution": 3390, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c0dcbff-43cb-4a87-a2b9-f362a5721dbc", + "pk": "60f01ade-1652-4a30-80f7-15fd8ebe4459", "fields": { - "question": 257, - "contribution": 1658, - "answer": 5, + "question": 338, + "contribution": 4122, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c0e9d99-3cae-4ed0-9b8e-ad7389eea7f2", + "pk": "60f96f9b-f55c-41cd-83c9-f90deac52eff", "fields": { - "question": 327, - "contribution": 1778, + "question": 329, + "contribution": 1635, "answer": 3, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "7c140d10-fd08-479a-ba1b-942b7bc56a1b", - "fields": { - "question": 477, - "contribution": 3463, - "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c22ba37-b9b9-443c-85f2-b276c8424cc3", + "pk": "610dbd2a-8a09-4d78-a72f-bfc617535385", "fields": { - "question": 356, - "contribution": 4244, - "answer": 2, + "question": 352, + "contribution": 3759, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c3012a4-f5a3-4add-b333-126c5486daca", + "pk": "610e400c-7ef5-4c27-a3d4-08c226277da5", "fields": { - "question": 354, - "contribution": 3776, + "question": 370, + "contribution": 4039, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c3c6917-fdb9-42c1-af0e-22a453045b1e", + "pk": "61120cbf-de80-4a77-a9a5-8f45dc0fd4e8", "fields": { - "question": 328, - "contribution": 3680, - "answer": 1, - "count": 12 + "question": 325, + "contribution": 913, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c45f902-9efe-4032-bf99-26c8e75a6416", + "pk": "6113ab6c-47bc-4e02-959c-57c9432d6d90", "fields": { - "question": 260, - "contribution": 4138, - "answer": 3, - "count": 2 + "question": 362, + "contribution": 3919, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c4913d1-1b30-40fa-91c5-aa5582b85212", + "pk": "6121cf36-3f90-469f-b375-9677386fe435", "fields": { - "question": 328, - "contribution": 4085, - "answer": 3, - "count": 12 + "question": 361, + "contribution": 1804, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c627e7a-edc1-4c72-b223-b2fc725252f1", + "pk": "612abd14-eaad-4707-92e0-5d32a94577b6", "fields": { - "question": 328, - "contribution": 913, - "answer": 3, - "count": 3 + "question": 367, + "contribution": 4138, + "answer": 4, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c781c49-8cb4-4e29-a4f4-32badbd181a6", + "pk": "612c748c-4a78-47b8-9928-2ff34e605ba8", "fields": { - "question": 260, - "contribution": 3390, - "answer": 2, - "count": 3 + "question": 367, + "contribution": 4084, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c785c39-48bb-4946-9e38-19ffec2e0148", + "pk": "612de9ab-4c86-4379-930b-aeae42dfb4e0", "fields": { - "question": 362, - "contribution": 3929, - "answer": 2, + "question": 477, + "contribution": 3740, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c7a3b3c-9e6c-4f44-afd8-27dd08943f8d", + "pk": "6133795d-9302-42ed-92d8-6091b5e66bde", "fields": { - "question": 323, - "contribution": 4084, - "answer": 4, - "count": 3 + "question": 335, + "contribution": 4155, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c7ae664-f1ca-4c58-a797-7af003159862", + "pk": "613afbb6-a61a-4440-8fa7-e50f6fcf53d8", "fields": { - "question": 341, - "contribution": 3486, - "answer": 4, + "question": 346, + "contribution": 1863, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c8fcbf2-9ce8-4101-b9f8-55f30b0ff96c", + "pk": "613ccd92-aa11-46ea-a9d3-ac8f506283b8", "fields": { - "question": 343, - "contribution": 1872, + "question": 473, + "contribution": 804, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c8ff310-8139-4ca9-8796-e0dcb71f712a", + "pk": "61444237-cc52-4c5f-acf9-f48cad607c1a", "fields": { - "question": 315, - "contribution": 3462, - "answer": 2, - "count": 2 + "question": 329, + "contribution": 837, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c906168-09b0-48e0-8257-d4b3bbfaafae", + "pk": "61503514-535c-4940-b996-0420f4493b8a", "fields": { - "question": 316, - "contribution": 4100, - "answer": 3, - "count": 6 + "question": 361, + "contribution": 3648, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7c9b5f61-269e-4924-ab0c-87a3069d3c4a", + "pk": "6153b3c2-8d1a-4c3d-9ac7-e586ca4526bc", "fields": { - "question": 368, - "contribution": 3726, - "answer": 4, + "question": 366, + "contribution": 3936, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ca69fde-1000-471d-99ab-5b4e19e3dd03", + "pk": "616077d6-f820-41d2-bb45-ce07c6f44cab", "fields": { - "question": 325, - "contribution": 823, - "answer": 2, + "question": 326, + "contribution": 1635, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7caa76ee-2fea-420c-9bd6-9dc5cdf61063", + "pk": "616a77c1-1f5a-41ac-9963-724637933c09", "fields": { - "question": 356, - "contribution": 4037, - "answer": 1, - "count": 1 + "question": 326, + "contribution": 4152, + "answer": 2, + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cb38343-000c-4ee1-adc7-c5499875f7f8", + "pk": "61738f1d-397b-4183-81b4-a83de5ae9633", "fields": { - "question": 349, - "contribution": 3555, - "answer": 1, - "count": 4 + "question": 257, + "contribution": 1626, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cb4e2e7-4fea-4a0f-bea7-9c195dc7054e", + "pk": "6176b973-4397-43fc-bedb-3d8179db13f0", "fields": { - "question": 325, - "contribution": 3726, - "answer": 5, - "count": 2 + "question": 327, + "contribution": 3435, + "answer": 1, + "count": 32 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cb9b815-de2a-4f05-be64-f86513787de5", + "pk": "617d5859-22ea-4f5a-aed8-796b7c12da53", "fields": { "question": 328, - "contribution": 4085, - "answer": 1, - "count": 14 + "contribution": 1776, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cbc5784-73e6-4df5-aa6b-4460cf01ef76", + "pk": "617edd56-37e6-477d-b864-9810c325a205", "fields": { - "question": 343, - "contribution": 3899, - "answer": 2, - "count": 1 + "question": 329, + "contribution": 3885, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cbd0813-81f9-423a-824b-7d1c86e8cf00", + "pk": "61a1e710-9edc-495d-a001-c48b02124001", "fields": { - "question": 329, - "contribution": 3395, + "question": 322, + "contribution": 4100, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cc48423-a2ed-4962-9002-12663f84db54", + "pk": "61a328ce-8e0e-43a5-b98e-4b4e7f1c55fe", "fields": { - "question": 355, - "contribution": 3834, + "question": 346, + "contribution": 3383, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ccbf86a-bcff-497c-9c70-ca6274040835", + "pk": "61b31df6-ba53-456e-96c5-03a8d4d0b8c7", "fields": { - "question": 349, - "contribution": 1822, - "answer": 1, - "count": 3 + "question": 326, + "contribution": 4023, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ccc23bb-0cc2-45db-b8b3-7784f7ca8669", + "pk": "61bbe3c6-cf87-4924-be23-e223a106a335", "fields": { - "question": 255, - "contribution": 1626, - "answer": 4, + "question": 473, + "contribution": 3394, + "answer": 0, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cce914f-723a-47cf-965e-7cdbcca569df", + "pk": "61be5fa0-cf58-4cc5-9112-0fd05cac5b1b", "fields": { "question": 321, - "contribution": 3390, - "answer": 4, - "count": 3 + "contribution": 4138, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cd6f3d1-294b-43d5-ab0c-0891429400ea", + "pk": "61c565af-ace0-4b1e-91c8-4010e4bf5be6", "fields": { - "question": 366, - "contribution": 3593, - "answer": 1, + "question": 320, + "contribution": 4116, + "answer": 3, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cdac9f6-83d8-4fa3-b009-d7d0f026c28c", + "pk": "61e2d2ba-5115-4fdd-a908-9fab8f6217a1", "fields": { - "question": 352, - "contribution": 788, - "answer": 3, + "question": 355, + "contribution": 1860, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cdfac9e-6db9-4d47-a35b-41404d5603e4", + "pk": "61e49b7c-64d5-4a69-8332-288fccf0dda0", "fields": { - "question": 346, - "contribution": 3939, + "question": 348, + "contribution": 3518, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ce3fcea-9da1-479c-ad62-5e008a4b333d", + "pk": "61f31629-8238-4f27-9e58-93c9aa6f56bc", "fields": { - "question": 353, - "contribution": 4228, - "answer": 1, + "question": 345, + "contribution": 3515, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ce5fba6-a0f2-4e11-bdc9-ac969abb485a", + "pk": "61f5503f-a5ae-4fbb-9dba-424df48e4688", "fields": { - "question": 356, - "contribution": 1188, + "question": 363, + "contribution": 3917, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cea0362-6d13-402f-9126-d14106d59aba", + "pk": "61f7301a-aaf2-4de8-a6ba-b8dbb94594c8", "fields": { - "question": 349, - "contribution": 3517, - "answer": 2, - "count": 3 + "question": 315, + "contribution": 4028, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cee7f5a-48a6-454f-be63-856b43d5e51a", + "pk": "620bc94c-8f05-4b3d-89f8-93d33e01ce7a", "fields": { - "question": 347, - "contribution": 1207, + "question": 461, + "contribution": 3786, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cf18d81-f341-4d17-a8cd-7e851eaf53bf", + "pk": "6217b63d-5fda-44cb-962a-b033600f46d7", "fields": { - "question": 345, - "contribution": 887, - "answer": 3, - "count": 1 + "question": 356, + "contribution": 1786, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cfad83c-874e-4718-a33b-7e46951a1fa9", + "pk": "62196188-d574-451f-9995-68731b9b1010", "fields": { - "question": 345, - "contribution": 841, + "question": 327, + "contribution": 881, + "answer": 4, + "count": 9 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "621f8fae-6a2f-4d32-8733-5484dd731531", + "fields": { + "question": 477, + "contribution": 1778, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cfdd6e3-f33d-4f44-bdab-07d2a60e7e23", + "pk": "6224a942-cdbf-4305-ae1a-950d234d118d", "fields": { - "question": 350, - "contribution": 3735, + "question": 258, + "contribution": 4128, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7cfdfb76-de1e-4ac4-a497-d4216fe0fb4b", + "pk": "623039aa-df13-43da-95cb-b0dd3f22ba78", "fields": { - "question": 317, - "contribution": 822, + "question": 477, + "contribution": 3391, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d06d467-494c-42b5-bebf-e7595316fb81", + "pk": "623945cc-e2b4-42aa-b497-59948368c39a", "fields": { - "question": 345, - "contribution": 3608, - "answer": 1, - "count": 3 + "question": 258, + "contribution": 3739, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d165421-6ff9-490d-8fa1-1f5349bb13f0", + "pk": "623c8692-4552-4fd0-b5a9-8ba34304f642", "fields": { - "question": 475, - "contribution": 894, - "answer": 2, - "count": 1 + "question": 367, + "contribution": 4084, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d1ab717-b8e1-4192-863b-92c411d9b8fb", + "pk": "6246f186-0c79-4670-94e0-a5803e3bf7ef", "fields": { - "question": 349, - "contribution": 1860, - "answer": 2, + "question": 338, + "contribution": 832, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d250cbd-e60d-43a3-bfe3-316bda051729", + "pk": "624f0772-30a1-4872-8a8c-6d6ccb7ff5de", "fields": { - "question": 457, - "contribution": 4073, - "answer": 1, + "question": 476, + "contribution": 4046, + "answer": -1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d2740c1-d8c8-4063-ba87-14b2feead3c3", + "pk": "62558b9f-ae32-4c01-bb13-54c9205b89e9", "fields": { - "question": 321, - "contribution": 3683, - "answer": 1, - "count": 4 + "question": 369, + "contribution": 3917, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d343489-d66a-461c-b57b-5f169185276a", + "pk": "62803875-21d3-40c8-b046-eef7ccd22bde", "fields": { - "question": 259, - "contribution": 1612, - "answer": 1, - "count": 12 + "question": 316, + "contribution": 3725, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d3561a5-eccb-4878-81ed-2b18d5cb72a0", + "pk": "62881e59-23f1-4039-b08c-0f43c2a56099", "fields": { - "question": 473, - "contribution": 3645, - "answer": -1, - "count": 2 + "question": 328, + "contribution": 1635, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d3fe6da-b8b5-4780-8786-1d8a1174810e", + "pk": "62922954-28f2-4baa-83ed-5604a73315ef", "fields": { - "question": 361, - "contribution": 3893, - "answer": 1, - "count": 19 + "question": 363, + "contribution": 1799, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d44f0d1-574f-4251-84a6-8f204446ba39", + "pk": "62938faf-df7a-475d-bec9-59119f60ff0d", "fields": { - "question": 255, - "contribution": 908, - "answer": 5, - "count": 2 + "question": 357, + "contribution": 1849, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d492981-babe-4b38-8527-a47cf25a35f4", + "pk": "62989069-d9b1-4c91-a327-4aa02a29194c", "fields": { - "question": 258, - "contribution": 884, - "answer": 2, - "count": 14 + "question": 348, + "contribution": 4191, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d50ef4b-9552-4dfc-8e29-34913042bcad", + "pk": "6298a4f3-1adb-43c6-bc82-4d1d72e7b885", "fields": { - "question": 357, - "contribution": 1189, + "question": 328, + "contribution": 3395, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d56664a-2c6e-4df4-b71d-0e54efcabefa", + "pk": "62a9646b-cf01-4837-b48e-a55ba44b5e15", "fields": { - "question": 368, - "contribution": 3684, + "question": 323, + "contribution": 1634, "answer": 1, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d56994b-81aa-4236-8672-e0f435912fcd", + "pk": "62bb61d4-3753-4656-a2a4-cf96531f123b", "fields": { - "question": 339, - "contribution": 3795, - "answer": -1, - "count": 1 + "question": 257, + "contribution": 1837, + "answer": 1, + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d5c7205-f683-45fe-9332-7c2a757c42b8", + "pk": "62ce4dd9-dd83-4d6b-a0bb-d590f4d26b19", "fields": { - "question": 257, - "contribution": 3739, + "question": 1, + "contribution": 4302, "answer": 2, - "count": 3 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d61bb45-b96e-4698-b4c1-ffa5d414a095", + "pk": "62d77834-2d1a-449c-8341-9bcae8f54969", "fields": { "question": 346, - "contribution": 3879, + "contribution": 1156, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d63fd31-5d0f-4e93-b34a-09a2d27ad1d0", + "pk": "62df8984-19f4-438c-87e1-8bffba3700ee", "fields": { - "question": 328, - "contribution": 4153, - "answer": 4, - "count": 1 + "question": 357, + "contribution": 1154, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d672ccb-4405-45a4-b54b-5fec3d1c90b6", + "pk": "62e97187-1459-473c-8eed-ca9a380bab30", "fields": { - "question": 257, - "contribution": 1680, - "answer": 1, - "count": 5 + "question": 341, + "contribution": 3795, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d70e9f2-f55e-435c-90c3-8c6f3093fac9", + "pk": "62f1e8a8-9c3e-421c-9f52-ced73130ff55", "fields": { - "question": 475, - "contribution": 3785, - "answer": -2, + "question": 260, + "contribution": 1724, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d71880c-c2e6-43eb-8e68-0a068b0492ad", + "pk": "62f71f70-e87a-474c-841a-e42525f22213", "fields": { - "question": 346, - "contribution": 1645, - "answer": 1, - "count": 3 + "question": 344, + "contribution": 4129, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d718d22-35a2-4af4-8fc5-a7359c462de7", + "pk": "62fae1e1-4d7c-425a-b7f8-6af450e9ff6f", "fields": { "question": 472, - "contribution": 918, - "answer": 1, - "count": 7 + "contribution": 3725, + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d76f5a3-c14f-4613-bb57-9b9c54d9ee51", + "pk": "62fb63a5-449e-414c-91fc-9500c95858ac", "fields": { - "question": 328, - "contribution": 1635, - "answer": 4, - "count": 4 + "question": 332, + "contribution": 1217, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d770e1a-ff51-456c-9a58-99d1ae7d3e2e", + "pk": "62fd61df-7924-404b-9141-c70741a678f3", "fields": { - "question": 475, - "contribution": 788, - "answer": 2, - "count": 1 + "question": 255, + "contribution": 4118, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d7dec32-344b-42a9-b3a3-9095ebd95529", + "pk": "63118421-ed9e-4c8b-a470-d5bd56df415f", "fields": { - "question": 328, - "contribution": 3884, - "answer": 1, - "count": 8 + "question": 347, + "contribution": 1645, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d854885-1a09-4fc7-9d95-f48f2ab9f914", + "pk": "6317547f-20a4-401e-89d6-e1a8a8144b85", "fields": { "question": 328, - "contribution": 3556, - "answer": 3, - "count": 8 + "contribution": 4152, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d8807a2-76c1-403f-9614-4be1f926afa2", + "pk": "631cc5b2-1438-4005-bc3b-6496a2c14ced", "fields": { - "question": 355, - "contribution": 3518, - "answer": 2, - "count": 1 + "question": 320, + "contribution": 884, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d910047-d9fd-4579-81e5-6c39cb413e74", + "pk": "631d68f4-f0ca-4660-be02-7051d48fdd0d", "fields": { - "question": 341, - "contribution": 4020, + "question": 326, + "contribution": 1776, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d9253f8-fe74-4070-aa85-0820fc176604", + "pk": "6329f6a8-1365-40b5-b93b-598daaeb24d0", "fields": { - "question": 341, - "contribution": 4036, - "answer": 1, + "question": 344, + "contribution": 1204, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d96ec52-3d17-4a54-86d9-8aaad5a85846", + "pk": "632cc748-efca-46cd-a321-9adde27d9726", "fields": { - "question": 346, - "contribution": 3451, - "answer": 2, - "count": 1 + "question": 317, + "contribution": 3474, + "answer": 1, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d9c70e1-9f76-43cb-9efe-4df48a8d6f33", + "pk": "632cea37-7b12-4b61-b930-9c935c2251a8", "fields": { - "question": 346, - "contribution": 1863, - "answer": 2, - "count": 2 + "question": 472, + "contribution": 1638, + "answer": 5, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7d9d66c6-93cd-4939-9a93-e00a40d2c3d4", + "pk": "632e7a0c-89f0-4d59-aa9e-218b7066d572", "fields": { - "question": 332, - "contribution": 1284, - "answer": 1, + "question": 339, + "contribution": 826, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7da4413c-2972-4b11-a8eb-159695db67f8", + "pk": "632fbded-2894-43bf-b4ed-ca8bf002e4c4", "fields": { "question": 347, - "contribution": 1880, + "contribution": 1207, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7da86876-7daf-46c3-935d-dbe2125f5ab1", + "pk": "633109c8-03d6-47ee-882c-a14f74b9d86c", "fields": { - "question": 367, - "contribution": 1680, + "question": 369, + "contribution": 3921, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7dc1218a-030e-4d99-b57e-52419d2256fc", + "pk": "63332797-fe12-4bc0-8ee6-57abe42876e2", "fields": { - "question": 320, - "contribution": 3422, - "answer": 2, - "count": 10 + "question": 361, + "contribution": 1836, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7dd23710-1c73-4f74-a01b-ebc1897ba8f7", + "pk": "633ea141-54b4-448d-bd5a-f13c4d5df58e", "fields": { - "question": 333, - "contribution": 3631, - "answer": 2, - "count": 8 + "question": 371, + "contribution": 4155, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7dd258e4-e20f-4851-bb5d-9b24d8f4dab5", + "pk": "63439f7a-26ef-4032-bd7f-9482085c27c7", "fields": { - "question": 321, - "contribution": 864, + "question": 472, + "contribution": 1668, + "answer": 1, + "count": 6 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "6350c54f-ebb9-4666-9e47-20a044a02896", + "fields": { + "question": 322, + "contribution": 3462, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7dda4b50-908f-4382-a528-195727e6d420", + "pk": "635d4fa7-4a3c-4bbf-a669-0fe9bd682f0c", "fields": { - "question": 349, - "contribution": 4095, - "answer": 1, - "count": 5 + "question": 371, + "contribution": 3593, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7de471d6-fb79-4c13-a2b6-78cdde1c60fe", + "pk": "635e15e6-1031-41ee-bc27-3a516695288a", "fields": { - "question": 335, - "contribution": 4261, - "answer": 1, - "count": 10 + "question": 354, + "contribution": 3516, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7df32c66-94dc-49d7-9550-db2a85d2129f", + "pk": "635fb4e6-7b8b-4e3c-ac11-6b1dab9fa4f9", "fields": { - "question": 352, - "contribution": 790, - "answer": 1, - "count": 2 + "question": 258, + "contribution": 880, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7dfa7590-2d07-4d03-9a85-af9721f0a5dd", + "pk": "6364516e-3ac0-4211-8872-52b7914e7e36", "fields": { - "question": 477, - "contribution": 913, - "answer": 0, - "count": 30 + "question": 328, + "contribution": 881, + "answer": 5, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7dfe205d-2a78-4984-b57c-007989fa0e59", + "pk": "636eb0dc-0772-45c5-9037-f204dbf9ebc9", "fields": { - "question": 320, - "contribution": 3665, + "question": 354, + "contribution": 3849, "answer": 1, - "count": 6 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7e081288-58c1-435c-bdba-05649c425cdc", + "pk": "636f9de5-cfc1-4124-a23f-5810df10e2a1", "fields": { - "question": 369, - "contribution": 3651, + "question": 343, + "contribution": 1663, "answer": 1, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7e0c675d-10b0-4a4e-a80b-8af235228b29", + "pk": "63790f9c-d024-4714-a39d-7b880e5a68f7", "fields": { - "question": 361, - "contribution": 3944, + "question": 322, + "contribution": 912, "answer": 1, - "count": 2 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7e3f76f1-b44b-4327-bba9-40277cb11f3c", + "pk": "637b8671-5e8a-43d4-8fc0-7e0397f63d9e", "fields": { - "question": 335, - "contribution": 3566, - "answer": 3, - "count": 2 + "question": 356, + "contribution": 3528, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7e3fd0f7-23de-4f60-913c-ec1528129ea9", + "pk": "637e2ae5-d019-46d4-a9be-caf53c384052", "fields": { - "question": 259, - "contribution": 836, - "answer": 2, - "count": 2 + "question": 321, + "contribution": 3354, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7e45a0c8-26da-4db9-aea3-2baa0dc6ece9", + "pk": "638ac78c-f1db-4f45-b624-05276966a770", "fields": { - "question": 316, - "contribution": 908, + "question": 357, + "contribution": 1188, "answer": 1, - "count": 15 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7e51a5b9-2b5f-449b-af48-f81669dd7647", + "pk": "638c6e6f-3810-4749-a6e5-d1c5b200adf6", "fields": { - "question": 328, - "contribution": 3885, - "answer": 2, - "count": 3 + "question": 337, + "contribution": 1702, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7e54be74-bab5-4243-bab5-dc7a6735cab0", + "pk": "638ffa3c-348d-4d40-9a09-29fa7f0bab21", "fields": { - "question": 461, - "contribution": 4091, - "answer": 3, + "question": 371, + "contribution": 1812, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7e714936-673a-4017-9a5a-cde37cd72609", + "pk": "63a18db5-c259-47f4-a34a-65971fef81ba", "fields": { - "question": 344, - "contribution": 1872, - "answer": 1, - "count": 2 + "question": 348, + "contribution": 1663, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7e73cc21-d30a-43c5-ace2-ff71223baf31", + "pk": "63ac1b6d-5b42-4d86-8797-1caa7ae17ebe", "fields": { - "question": 357, - "contribution": 1785, + "question": 347, + "contribution": 4003, "answer": 1, - "count": 7 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7e8ff3ac-2560-44b2-8daf-4a1cebfd03fc", + "pk": "63ac2df4-6f5d-48d2-bc68-4ecba3c64ef8", "fields": { - "question": 317, - "contribution": 4118, + "question": 319, + "contribution": 4120, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7e941079-c1f5-44bd-96ac-51f5450de26d", + "pk": "63b065ed-8f79-4d04-8007-1deeee7fc16c", "fields": { "question": 329, - "contribution": 3435, - "answer": 2, - "count": 3 + "contribution": 3463, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7e97a697-613c-4c04-b6ce-cf49dc8641e1", + "pk": "63b303d6-5134-4167-97cb-c4e6494daa3e", "fields": { - "question": 362, - "contribution": 3943, - "answer": 4, + "question": 371, + "contribution": 3566, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ea4ba69-a266-4e96-91be-8b85d36dbed3", + "pk": "63b30724-4c71-4f64-bddf-1637304e993b", "fields": { - "question": 257, - "contribution": 4128, - "answer": 1, - "count": 6 + "question": 473, + "contribution": 4038, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ea56238-72ab-4a8f-a7b3-0b522525c00f", + "pk": "63ca3fcf-5013-42b3-8899-5eff7d9c339e", "fields": { - "question": 347, - "contribution": 1156, - "answer": 2, - "count": 1 + "question": 319, + "contribution": 836, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ea7333f-99ef-4956-a383-f8d98e3a4f88", + "pk": "63d32a86-8c25-483d-8360-b8fc551c4a32", "fields": { - "question": 366, - "contribution": 3598, - "answer": 4, - "count": 3 + "question": 255, + "contribution": 1837, + "answer": 1, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7eab5895-ccc3-4a1a-bb9b-f468fc6b108c", + "pk": "63d99b45-09e9-498f-a37b-3fc6fd060e84", "fields": { - "question": 356, - "contribution": 3835, - "answer": 5, - "count": 1 + "question": 321, + "contribution": 3422, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7eae6889-5890-4d1c-b48a-13880e31fac3", + "pk": "63dd0324-c442-419f-9a36-793e7f5b06db", "fields": { - "question": 340, - "contribution": 3482, - "answer": 3, - "count": 1 + "question": 326, + "contribution": 4117, + "answer": 5, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7eb19426-4087-4a22-b3ee-688c0ca35393", + "pk": "64006282-6c6e-43f1-bd0e-0c21bb7d625c", "fields": { - "question": 255, - "contribution": 908, - "answer": 2, - "count": 11 + "question": 337, + "contribution": 3645, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7eb19649-280f-4ac1-a6b8-6ae51f62e973", + "pk": "64036115-aff1-4413-b0c7-ea0bf3141cc3", "fields": { - "question": 315, - "contribution": 3725, + "question": 320, + "contribution": 3390, "answer": 2, - "count": 11 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ebcdd8c-4f85-456f-a634-f00bec8b38cb", + "pk": "640cc3a3-af59-408b-a9b8-2008f7a64888", "fields": { - "question": 347, - "contribution": 3518, - "answer": 2, + "question": 337, + "contribution": 886, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ec20f4a-82bd-4461-84d2-0fdf8759cc03", + "pk": "64149dd3-e73c-414e-b7a9-dabc8245b89e", "fields": { - "question": 333, - "contribution": 3932, + "question": 329, + "contribution": 1778, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ec37dc8-ae2d-4eaa-8edb-2c27f2450ce6", + "pk": "641b0978-dc3f-451a-a928-a047bd9f7066", "fields": { - "question": 349, - "contribution": 3517, - "answer": 1, - "count": 4 + "question": 321, + "contribution": 3665, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7eca9432-5171-46d5-9dda-24a0e4e6a381", + "pk": "641f8e08-8b6d-4b2f-88cf-f7a2949aa9bc", "fields": { - "question": 371, - "contribution": 4205, - "answer": 1, + "question": 357, + "contribution": 1783, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7eccbe7d-3414-44b9-b7ab-fa4c1a86b623", + "pk": "64259dd7-92fe-4edf-a3c5-ee9ac81d5b14", "fields": { - "question": 354, - "contribution": 3516, - "answer": 2, + "question": 338, + "contribution": 3745, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ece3bc5-c66b-4800-9dba-8215d8799474", + "pk": "64265b3d-9e5b-453d-87b2-99c3fae0a888", "fields": { - "question": 347, - "contribution": 3373, - "answer": 2, - "count": 3 + "question": 333, + "contribution": 3886, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ed0efc6-f727-49ce-90ae-9fcab4811689", + "pk": "64303c37-3368-49de-8f90-bcca38917963", "fields": { - "question": 325, - "contribution": 4152, - "answer": 2, - "count": 10 + "question": 367, + "contribution": 3725, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7eddb436-d675-46ae-b218-06510f84007d", + "pk": "6438326f-18db-4a19-ac7e-442bb33b6c6c", "fields": { - "question": 327, - "contribution": 1288, - "answer": 2, - "count": 3 + "question": 362, + "contribution": 3597, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ee39eda-4dd5-4f52-85bf-8e81677f9f22", + "pk": "64416b8f-e2ad-4e7e-8d05-22dc92bcd32b", "fields": { - "question": 337, - "contribution": 840, + "question": 344, + "contribution": 3704, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ee494dc-61c4-4657-b31b-8dd868d4c89f", + "pk": "6445cabd-810c-4461-8ce1-555f534f0f39", "fields": { - "question": 369, - "contribution": 1810, - "answer": 2, + "question": 472, + "contribution": 840, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7eeb8654-f148-462c-a1e3-20579eccb8b5", + "pk": "64492b2a-9a9c-4c59-8eb6-e6884e3afd1f", "fields": { - "question": 336, - "contribution": 1200, - "answer": 1, - "count": 25 + "question": 323, + "contribution": 3739, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ef8a3d0-0d36-4399-a0d8-b96dd3c34b18", + "pk": "645a931b-6684-480a-bf61-a85e97fc97c2", "fields": { - "question": 347, - "contribution": 3796, - "answer": 2, - "count": 2 + "question": 344, + "contribution": 869, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f03b8b4-bf56-478d-99ba-0f598d0b27a7", + "pk": "6464d627-1896-406c-82a7-36b183a7c4c5", "fields": { - "question": 336, - "contribution": 862, - "answer": 2, - "count": 2 + "question": 255, + "contribution": 4084, + "answer": 1, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f0a4831-473a-4836-b8fa-80a13d1d1f77", + "pk": "6469e1e4-8f77-4129-aba6-1ef14e415b8a", "fields": { - "question": 255, - "contribution": 4040, + "question": 320, + "contribution": 3422, "answer": 5, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f145939-5eb7-4c67-becd-1cacb571cd4d", + "pk": "648ba4c4-1c80-461e-aa53-69f475b99adb", "fields": { - "question": 327, - "contribution": 3726, + "question": 326, + "contribution": 1777, "answer": 3, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f1b5b76-be89-4c9a-a3a9-9c1a2e8367bc", + "pk": "648d1412-b350-411c-b29b-1ab811c85793", "fields": { - "question": 331, - "contribution": 822, - "answer": -1, - "count": 1 + "question": 341, + "contribution": 3645, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f1b7a1f-f153-4e21-af67-21d13a405c31", + "pk": "6498f2fc-f477-439d-91f8-73826777ab29", "fields": { - "question": 459, - "contribution": 3862, - "answer": 1, + "question": 338, + "contribution": 886, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f2d87ec-418c-4a7e-b9a0-067026b484ae", + "pk": "649c764f-5a4f-47b3-b75c-856eb1d04a44", "fields": { - "question": 333, - "contribution": 3631, - "answer": 4, + "question": 346, + "contribution": 3509, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f33d181-9591-4b52-a249-2c63925434a1", + "pk": "649fb593-3e61-4d2e-8e7f-cbb2c4b9bdef", "fields": { - "question": 257, - "contribution": 1668, - "answer": 2, - "count": 5 + "question": 348, + "contribution": 1250, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f349d16-ba86-44ce-a140-72f1771d8bce", + "pk": "64ab86a3-4a27-42c7-ae68-acb130b83eb2", "fields": { "question": 327, - "contribution": 3355, - "answer": 1, - "count": 23 + "contribution": 1802, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f34a8f6-8c36-4449-806e-263e1c7e8932", + "pk": "64b0de63-3c78-44a6-8e9b-e56d99ac062b", "fields": { - "question": 428, - "contribution": 4244, - "answer": 2, - "count": 1 + "question": 326, + "contribution": 909, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f45e558-1674-49f1-bb4f-a2ec9a5c6bd5", + "pk": "64b9cc01-ca57-41ab-8f47-7316850c3810", "fields": { - "question": 325, - "contribution": 3589, + "question": 315, + "contribution": 1837, "answer": 2, - "count": 2 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f690334-7a6c-408d-bdbc-56414b77362f", + "pk": "64bb5b3b-6739-4f64-a623-8fff7a399bb5", "fields": { - "question": 320, - "contribution": 3725, + "question": 344, + "contribution": 3935, "answer": 1, - "count": 13 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "7f6c5837-41d7-468e-897f-2132fc5ffa9e", - "fields": { - "question": 317, - "contribution": 1837, - "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f9324a3-6ec0-4a45-b143-8da3e75ed125", + "pk": "64c6ec20-cf8f-4857-9677-55e7bc6464d5", "fields": { - "question": 354, - "contribution": 4278, - "answer": 2, + "question": 337, + "contribution": 1921, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f9a26af-8500-44c4-82ba-30f397b46693", + "pk": "64cf6d38-7110-4137-af0a-a47a5de5c12c", "fields": { - "question": 340, - "contribution": 3821, - "answer": 1, + "question": 262, + "contribution": 1612, + "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7f9b3f37-d2a2-4251-823f-7200fd4981d3", + "pk": "64d47a9d-e2dc-437c-bb37-f4ec78602027", "fields": { - "question": 258, - "contribution": 884, - "answer": 1, - "count": 18 + "question": 362, + "contribution": 1826, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7faec0b8-4a68-4900-8521-baa6c2ac702d", + "pk": "64dae821-f759-4501-9ece-d168c7ac578e", "fields": { - "question": 353, - "contribution": 3756, - "answer": 1, - "count": 1 + "question": 333, + "contribution": 3566, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7fb55d06-4f5c-44ee-b91f-180b0a2c14e3", + "pk": "64e2ba54-9c8e-4cbd-bea9-e41a29e56eab", "fields": { - "question": 346, - "contribution": 4129, - "answer": 1, + "question": 345, + "contribution": 3608, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7fc7da6b-869f-4319-ba3c-986a1ecb6a49", + "pk": "64ed124d-1be5-4810-96ee-8a1a9568e020", "fields": { - "question": 325, - "contribution": 4085, + "question": 323, + "contribution": 4028, "answer": 1, - "count": 38 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7fe06492-bdd1-40dd-b4a0-e92141deedbb", + "pk": "64ed49b1-15b5-4875-93cc-24294705dfb2", "fields": { - "question": 315, - "contribution": 822, - "answer": 2, - "count": 2 + "question": 341, + "contribution": 3466, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7fe87d52-c517-4b48-94a9-eb0c77f3cb1c", + "pk": "64f2c68a-786c-42bd-9364-7ba86d80201f", "fields": { - "question": 262, + "question": 257, "contribution": 884, - "answer": 1, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "7fea27e0-bdc6-4218-9692-1a733e8b9498", - "fields": { - "question": 338, - "contribution": 840, - "answer": 2, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7fef91f2-15ae-40a5-8cc1-b4974e9fd02b", + "pk": "64fe9d6d-c412-41c6-87fb-8fda0b9c4174", "fields": { - "question": 400, - "contribution": 4148, + "question": 357, + "contribution": 1844, "answer": 1, - "count": 26 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "7ff36ba9-7973-455b-b8c4-922a4901645d", + "pk": "64ff1ea1-5225-44c9-a0e8-bfd97b8bd944", "fields": { - "question": 354, - "contribution": 1786, - "answer": 1, - "count": 4 + "question": 346, + "contribution": 3607, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8007ad17-bf7b-429b-8565-66bbac10a09c", + "pk": "64ffd1b5-40e6-44f0-aa24-509430ae5a5f", "fields": { - "question": 349, - "contribution": 3610, + "question": 354, + "contribution": 1782, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "800bef96-28bf-4f8d-b776-88ae1ec59973", + "pk": "6503b7f1-a8f9-486a-8330-e80f956b8a99", "fields": { - "question": 338, - "contribution": 3466, - "answer": 5, + "question": 349, + "contribution": 1872, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "800ee42b-3596-46d3-9b62-d3313631852b", + "pk": "6503f041-977b-425b-b576-7a0004196cef", "fields": { - "question": 329, - "contribution": 1186, - "answer": 4, + "question": 366, + "contribution": 1812, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "801251aa-a309-496c-b5a3-f7c6829fdbea", + "pk": "65093dd4-ac92-4fad-b36c-f49a3cfd7983", "fields": { - "question": 322, - "contribution": 1634, - "answer": 2, - "count": 13 + "question": 473, + "contribution": 4072, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80126d04-4c47-478e-8eff-165fb85788e2", + "pk": "650c91e2-bbb5-4608-a71e-bc1256e8046f", "fields": { - "question": 384, - "contribution": 3775, + "question": 344, + "contribution": 3526, "answer": 1, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "801a877f-7ee7-45b6-a571-c630791b095c", - "fields": { - "question": 473, - "contribution": 4002, - "answer": -1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "801bb7b1-3441-4ccf-ad59-94ae19a8cbcf", + "pk": "651774d5-8f4a-47f3-93fa-e634c2fc46c3", "fields": { "question": 473, - "contribution": 3404, - "answer": 0, + "contribution": 3727, + "answer": -2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80256c3d-16a5-4823-90fe-8d4369130e8f", + "pk": "6525a82f-2601-450b-b53f-e2051c85dd05", "fields": { - "question": 460, - "contribution": 4091, - "answer": 3, - "count": 1 + "question": 325, + "contribution": 3473, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "802ce3b4-5b9f-42cf-bf40-9c0d25a86182", + "pk": "65364942-4577-4fc2-ab69-01b65a81e577", "fields": { - "question": 328, - "contribution": 4047, + "question": 325, + "contribution": 913, "answer": 2, - "count": 6 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "802d7b64-c141-4a43-8ca2-9f8268954b2d", + "pk": "6536ff27-c14e-48e2-b078-a745471ef0ef", "fields": { "question": 347, - "contribution": 4191, - "answer": 3, - "count": 1 + "contribution": 3451, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8041f065-e2e5-4215-aa06-a00ab7b9cd21", + "pk": "653ae956-8dfd-4408-8957-57aed8921459", "fields": { - "question": 359, - "contribution": 1835, - "answer": 4, - "count": 1 + "question": 477, + "contribution": 3391, + "answer": 0, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "804fb92c-00d1-4114-8c55-a8c3cf75e5db", + "pk": "65524db9-d46f-4148-8adb-380465fbb0b9", "fields": { - "question": 369, - "contribution": 3893, - "answer": 2, - "count": 1 + "question": 367, + "contribution": 1634, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8057d24c-1352-4f36-aba2-24bfd1895395", + "pk": "655ab590-4819-4cd6-a964-f019ae89df14", "fields": { - "question": 316, - "contribution": 3474, + "question": 344, + "contribution": 1868, "answer": 1, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80607ea8-9721-4785-b244-eb905e496a0b", + "pk": "65625f3b-a303-4f88-9ead-3a7629630bbc", "fields": { - "question": 323, - "contribution": 4022, - "answer": 1, - "count": 4 + "question": 328, + "contribution": 909, + "answer": 3, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8060c305-b776-4f2a-9445-15fcf720cddd", + "pk": "65651017-31bb-4a61-8c00-86762f47f0e4", "fields": { - "question": 355, - "contribution": 1784, + "question": 315, + "contribution": 908, "answer": 1, - "count": 6 + "count": 25 } }, { "model": "evaluation.ratinganswercounter", - "pk": "806226cf-41be-4807-a369-e196b338d2a1", + "pk": "6567fa33-570b-42e9-899e-069496bc46d3", "fields": { - "question": 319, - "contribution": 884, + "question": 473, + "contribution": 1200, "answer": 3, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "806c84ca-5a4e-4ca4-956e-4de6d5780d16", + "pk": "65691e2d-8306-4dc0-85df-1fcd960635ef", "fields": { - "question": 329, - "contribution": 1669, - "answer": 2, - "count": 1 + "question": 472, + "contribution": 884, + "answer": 5, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "808b30d9-9d75-40b1-bf1a-8eb97cd61ac8", + "pk": "6569b73b-9f40-4f14-b3a2-242fb199dad6", "fields": { - "question": 346, - "contribution": 1645, + "question": 476, + "contribution": 880, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "808e690b-9119-44ee-a5da-2146b1aa0328", + "pk": "656f78fc-b037-47a8-9c67-abaef06a4c87", "fields": { - "question": 362, - "contribution": 1827, - "answer": 5, - "count": 1 + "question": 328, + "contribution": 1613, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8091a0cb-85ce-4625-b061-cf781780ecc0", + "pk": "65807ce2-33fd-48eb-9f11-9146843ff4ae", "fields": { - "question": 354, - "contribution": 4270, - "answer": 2, - "count": 1 + "question": 346, + "contribution": 1824, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "809e67e2-822b-4671-9836-bdfcde9db082", + "pk": "6584a864-0fda-4e6b-bc19-6de5c697e61d", "fields": { "question": 336, - "contribution": 894, + "contribution": 3821, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80a3e291-5066-404e-8f5d-fda543e649aa", + "pk": "6589cfc3-ae2a-43dc-8e38-646668388bef", "fields": { - "question": 367, - "contribution": 1626, - "answer": 1, - "count": 10 + "question": 321, + "contribution": 3434, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80aab627-715e-4188-baf2-a52d4cf53e06", + "pk": "659ad1a0-85aa-4ed8-8fed-a83d353e9c52", "fields": { - "question": 338, - "contribution": 3508, - "answer": 3, - "count": 1 + "question": 477, + "contribution": 1778, + "answer": -1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80c7d4b9-3219-4d88-bf6a-e30b72084ed8", + "pk": "65a0ecef-3566-460c-b8ac-7018abd3523f", "fields": { - "question": 462, - "contribution": 4141, - "answer": 4, + "question": 377, + "contribution": 3781, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80cff7b8-890e-4c8d-8a0b-693c70b95d91", + "pk": "65a51dae-603f-425c-8db0-19494b8bbf6b", "fields": { - "question": 476, - "contribution": 3422, - "answer": -3, + "question": 255, + "contribution": 3462, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80d14844-64d4-4588-8889-5df6f6df33a5", + "pk": "65b115ee-bab1-4edd-bd6a-685c18056b1f", "fields": { "question": 322, - "contribution": 1634, - "answer": 3, - "count": 2 + "contribution": 3665, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80d6eb85-3d00-42ec-a38b-eec0cd829ad9", + "pk": "65b4e0b0-d223-4d76-acbd-26d2fdeea07e", "fields": { - "question": 315, - "contribution": 4084, - "answer": 5, - "count": 1 + "question": 259, + "contribution": 4138, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80dcb91b-66e1-4fd0-b674-454d027c9898", + "pk": "65bd1514-beea-4483-a3cb-fd8c6a3e0985", "fields": { - "question": 328, - "contribution": 3355, - "answer": 1, - "count": 23 + "question": 369, + "contribution": 3650, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80e5d6af-89d2-4907-995c-91973ac7e4fd", + "pk": "65c0ef19-fddd-47d7-8316-9131fc9a3781", "fields": { - "question": 327, - "contribution": 1777, + "question": 321, + "contribution": 3474, "answer": 2, - "count": 5 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80e7776c-4174-4432-a45c-0fcf2b7ed8cf", + "pk": "65cb0a45-bd4f-4479-b7e5-6d30a18ada55", "fields": { - "question": 259, + "question": 473, "contribution": 3422, - "answer": 2, - "count": 6 + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80e8459a-fd35-42f5-ab74-1be390080acd", + "pk": "65d5a00d-57bf-48d5-885a-04cc069933c4", "fields": { - "question": 357, - "contribution": 3835, - "answer": 4, + "question": 346, + "contribution": 3822, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80ed6d7a-e413-4576-8b1a-c30b1cce05d5", + "pk": "65e263c4-bfe0-46b6-b6ac-6b8a953d27f1", "fields": { - "question": 336, - "contribution": 3466, + "question": 338, + "contribution": 3735, "answer": 4, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80f5425f-367f-40a7-9d06-7edd05d761fb", + "pk": "65f35954-000d-4256-b203-dec32fd8b250", "fields": { - "question": 336, - "contribution": 1656, + "question": 260, + "contribution": 3739, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "80fbcfdd-823e-4272-bfb3-4008d05a3aa4", + "pk": "65fee2fb-4f0f-4601-9189-e14748574370", "fields": { - "question": 355, - "contribution": 4267, + "question": 317, + "contribution": 3390, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "810176b5-d387-46ae-ba61-15d4db21ebd6", + "pk": "65ff3275-07a0-46c9-8990-413eda5cc24b", "fields": { - "question": 363, - "contribution": 3917, + "question": 347, + "contribution": 1873, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8102670e-c703-4025-9a65-c8c076d7c8a3", + "pk": "660629c7-ab0d-48f5-be22-a4534e8c9187", "fields": { - "question": 255, - "contribution": 1634, + "question": 355, + "contribution": 4227, "answer": 1, - "count": 9 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "810d0215-7757-438e-b6e0-c823055953e4", + "pk": "66074b19-d813-49dc-916d-43b4e816a7c9", "fields": { - "question": 363, - "contribution": 3653, - "answer": 2, - "count": 2 + "question": 356, + "contribution": 1187, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "810e57c6-ebb4-4a52-b990-ba37d3bf1286", + "pk": "660a79f9-2aa1-4fd5-aeae-b64e41f4530c", "fields": { "question": 341, - "contribution": 4072, - "answer": 3, - "count": 1 + "contribution": 4094, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8118be24-2307-49de-933b-3adf3994eded", + "pk": "660ddbe8-dbf9-43b0-9f87-226b569c3a1e", "fields": { - "question": 369, - "contribution": 1808, - "answer": 1, - "count": 2 + "question": 396, + "contribution": 3711, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8128d7f3-f3c7-4899-8e69-6a050f068794", + "pk": "660fd1e5-eca8-453c-9035-50a45d2cfa40", "fields": { - "question": 320, - "contribution": 912, - "answer": 3, - "count": 8 + "question": 473, + "contribution": 3482, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "812ded07-ccb4-4643-a8e2-75fbcc876883", + "pk": "6610e5fd-bab3-49c8-8b3c-70c118c31d81", "fields": { - "question": 338, - "contribution": 3508, - "answer": 1, + "question": 366, + "contribution": 1884, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8134ff93-2d7d-4eab-bdc9-59533548971d", + "pk": "6616d9d5-64c3-47ae-ac72-b149314be684", "fields": { - "question": 346, - "contribution": 1873, - "answer": 3, - "count": 1 + "question": 428, + "contribution": 4152, + "answer": 2, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "813e64b8-0d6e-4e6a-a031-00b7b38b5099", + "pk": "661c17bc-6297-4d22-8cfc-c1d626dc301f", "fields": { - "question": 320, - "contribution": 4116, - "answer": 5, - "count": 5 + "question": 316, + "contribution": 908, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "814e712a-4c7c-4577-a13e-41af68b7dc27", + "pk": "66267ce3-1da0-4e57-87ce-ed2c38e652f5", "fields": { - "question": 343, - "contribution": 1843, + "question": 349, + "contribution": 3555, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "815c2fef-21c9-4d76-9251-7188543fafaa", + "pk": "662a35b6-117f-44c3-82be-879312324f37", "fields": { - "question": 322, - "contribution": 3679, - "answer": 3, - "count": 5 + "question": 370, + "contribution": 3516, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "81625803-962c-4e52-a36a-43ad6e890c55", + "pk": "663427a2-bbd7-4b4d-b14e-0bf218891786", "fields": { - "question": 357, - "contribution": 3782, - "answer": 2, - "count": 2 + "question": 477, + "contribution": 1186, + "answer": -1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "816627de-0179-43d8-8338-aa3227391199", + "pk": "66386dee-535c-4d30-9b40-e5306a53fcae", "fields": { - "question": 473, - "contribution": 4094, - "answer": 0, - "count": 7 + "question": 362, + "contribution": 3942, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8170f581-0792-4564-b035-5fcbb5805a59", + "pk": "663a4008-883e-4007-b6bd-a1503b07dd8b", "fields": { - "question": 345, - "contribution": 4188, + "question": 357, + "contribution": 1782, "answer": 1, - "count": 6 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "8180337d-0f56-4aba-a70a-8f0e43a45fda", - "fields": { - "question": 367, - "contribution": 4028, - "answer": 2, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "81887dd1-bda2-4b63-b649-e8d12b6d3b9c", + "pk": "66408de7-ded4-4209-a446-f601ab59e731", "fields": { - "question": 321, - "contribution": 3434, + "question": 347, + "contribution": 1246, "answer": 1, - "count": 14 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "818ca2e1-8aa0-44c9-9aba-2162909ab12d", + "pk": "664cc418-d0da-47fb-9272-f8c988c7b9fa", "fields": { - "question": 372, - "contribution": 3735, - "answer": 1, - "count": 1 + "question": 315, + "contribution": 880, + "answer": 3, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8197b4c0-7ef6-485c-a68a-3f7dcfa4f70e", + "pk": "665144d2-be4e-4c55-898b-b68592dabae5", "fields": { - "question": 349, - "contribution": 1645, - "answer": 1, + "question": 315, + "contribution": 4046, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "819fe044-2a09-4a7d-9f91-0b7656ffd472", + "pk": "66552290-127f-496c-8dd8-7d2b2cdbebd0", "fields": { - "question": 369, - "contribution": 1810, - "answer": 1, - "count": 6 + "question": 327, + "contribution": 3680, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "81a0a410-ceb9-4fe1-b90b-dd593761cf45", + "pk": "66729092-157b-4125-96a3-0337902a71c1", "fields": { - "question": 344, - "contribution": 3555, - "answer": 2, + "question": 346, + "contribution": 3609, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "81a0ed02-f508-47ee-ac4b-e8643a563968", + "pk": "6677517b-efe4-450c-ace5-204b23125a84", "fields": { - "question": 340, - "contribution": 1702, - "answer": 1, - "count": 6 + "question": 321, + "contribution": 4100, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "81a51f28-86c8-43b6-9fab-94f58cab55f9", + "pk": "667edb74-8678-46aa-b9e3-e71f469d17e3", "fields": { - "question": 347, - "contribution": 1868, - "answer": 1, + "question": 352, + "contribution": 3466, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "81a79290-14eb-4a74-806c-772e1270d473", + "pk": "667fd8be-ceb8-4048-8aba-2818c3c7ced8", "fields": { - "question": 316, - "contribution": 4120, - "answer": 1, - "count": 16 + "question": 319, + "contribution": 1612, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "81abeaea-1685-41aa-86d7-dde4d6e54dae", + "pk": "6696caea-7259-4311-b531-b0e129661b0a", "fields": { - "question": 259, - "contribution": 1837, - "answer": 1, - "count": 27 + "question": 360, + "contribution": 1812, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "81c6e1b4-a79b-4537-afd2-ef979e1035e8", + "pk": "669984cc-aece-4fd8-ac4b-078715d935cb", "fields": { - "question": 257, - "contribution": 3462, + "question": 477, + "contribution": 881, "answer": 1, - "count": 3 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "81cc79cc-3879-4170-921a-2bb6e92b583c", + "pk": "66a7a3bd-2fe3-4ad0-ba10-170f0beffef6", "fields": { - "question": 356, - "contribution": 3847, - "answer": 2, + "question": 315, + "contribution": 4138, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "81ce8c93-4522-4b52-9298-0b56afb335d5", + "pk": "66b6b413-d636-446e-ab26-0b7be3e6fe31", "fields": { - "question": 346, - "contribution": 3728, - "answer": 3, - "count": 3 + "question": 327, + "contribution": 3435, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "81f3fdbf-0698-4c1f-b1d2-86b9d52fb09f", + "pk": "66bd5deb-8a8c-4417-bbd1-1ff9f6f4e22d", "fields": { - "question": 348, - "contribution": 3941, - "answer": 2, + "question": 362, + "contribution": 1799, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "81fb52e5-5ec6-47b2-b6d0-a54bb8a2160d", + "pk": "66c4872a-ed3c-4fcc-bbea-07a96c64350c", "fields": { - "question": 326, - "contribution": 4101, - "answer": 3, - "count": 4 + "question": 345, + "contribution": 1843, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8206e73b-2ed5-4743-9b1d-492cc0b1d8e0", + "pk": "66de1b26-3912-46ba-b4e4-aad3eecfd51a", "fields": { - "question": 320, - "contribution": 4028, - "answer": 4, - "count": 1 + "question": 315, + "contribution": 3474, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "82154b45-673a-48da-a90b-05456c1b3a58", + "pk": "66e4204a-bbef-4e7f-88e9-0492f200d489", "fields": { - "question": 339, - "contribution": 4052, - "answer": -1, - "count": 1 + "question": 331, + "contribution": 4138, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8223b32f-03c7-4d93-9ebf-8f47b3319791", + "pk": "66e48ced-7eab-4432-93d1-aed8b1f11f5c", "fields": { - "question": 366, - "contribution": 3922, - "answer": 2, + "question": 473, + "contribution": 918, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "822ffa13-7001-4d70-b732-5084cc04d9f5", + "pk": "66e58a11-728b-4316-9388-234cffa29b8d", "fields": { - "question": 315, - "contribution": 4120, - "answer": 4, + "question": 331, + "contribution": 1626, + "answer": -2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8236841f-a63f-430d-a3d6-66aa2e1bba16", + "pk": "66f164e1-a973-4d6e-ad6c-472a716417cf", "fields": { "question": 317, - "contribution": 4116, - "answer": 2, - "count": 1 + "contribution": 4120, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "823c82b4-d7fc-40a6-be79-870ad9f5eb79", + "pk": "67034b96-3ff1-47e9-9407-d2e6b31ef869", "fields": { - "question": 320, - "contribution": 4128, - "answer": 5, - "count": 2 + "question": 333, + "contribution": 3922, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8244cd85-3efd-4183-87e6-468b050a80a2", + "pk": "67040fe9-99a8-4085-95ca-53da2c6a32e8", "fields": { - "question": 348, - "contribution": 3939, - "answer": 1, + "question": 360, + "contribution": 3917, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "824b9950-1621-497f-9281-147c4d7f44d3", + "pk": "670d8832-9343-4db5-85e8-2e4ffaf26100", "fields": { - "question": 326, - "contribution": 4153, + "question": 345, + "contribution": 1843, "answer": 2, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "824f679b-a7b3-499b-b5ef-9064821b38b5", + "pk": "67107ee6-a29a-4ef7-be67-014f654b1b9e", "fields": { - "question": 476, - "contribution": 822, - "answer": 0, - "count": 5 + "question": 347, + "contribution": 3934, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8251daa5-378c-4899-a4cd-5debf82ca1ee", + "pk": "67134d13-198e-4871-94aa-ea66ac302d6f", "fields": { - "question": 476, - "contribution": 4084, - "answer": 2, - "count": 3 + "question": 351, + "contribution": 3735, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8256c914-c294-4754-beb2-4d352f4652d8", + "pk": "67181682-1140-4d14-9cb3-89828c1ba361", "fields": { - "question": 369, - "contribution": 3929, - "answer": 2, - "count": 2 + "question": 360, + "contribution": 3944, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "825ece0b-222d-49e5-8e58-e19d9ca561d4", + "pk": "67325870-4403-4f0a-988b-462b68ea7856", "fields": { - "question": 327, - "contribution": 1776, - "answer": 4, + "question": 357, + "contribution": 3608, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8271e394-2794-4f50-8605-af48c52b5265", + "pk": "673f8cf1-4ac8-4e61-ac9c-5cb577b5b8a6", "fields": { - "question": 477, - "contribution": 3684, - "answer": 2, - "count": 1 + "question": 331, + "contribution": 3462, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "827273db-54c3-46ea-9c4b-c1a2a2298a5d", + "pk": "674d2e06-e070-4205-a0d4-9e13cb088750", "fields": { - "question": 326, - "contribution": 4117, - "answer": 4, + "question": 372, + "contribution": 4022, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "82736dad-2f9f-43b8-b344-0319db1b74f6", + "pk": "6754d4c7-f584-472f-976a-f33db220d591", "fields": { - "question": 255, - "contribution": 3725, - "answer": 3, + "question": 354, + "contribution": 3607, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "827f4218-9a1c-48e4-95f9-f523ac558ef1", + "pk": "67641482-ecf5-4286-ac0e-646026f9b521", "fields": { - "question": 473, - "contribution": 1656, + "question": 335, + "contribution": 3552, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "828d425c-40a3-446a-b3fa-f2fe0fb688a6", + "pk": "676891d6-c4aa-44ae-bf2f-5d141dda1ce6", "fields": { - "question": 336, - "contribution": 1638, + "question": 371, + "contribution": 4155, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "829a1b1e-9695-4586-8f08-5f422f645f63", + "pk": "677faa6d-21cd-4197-82ee-9b4bbf48935f", "fields": { - "question": 321, + "question": 260, "contribution": 1634, - "answer": 1, - "count": 16 + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "82aa88c0-9054-4778-b47a-ab51189bcb5f", + "pk": "678d73ca-5e25-4a03-8b87-d6aa28bd6afa", "fields": { - "question": 344, - "contribution": 4234, + "question": 333, + "contribution": 4205, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "82addedf-a127-499e-a14b-e87fc33d57df", + "pk": "6790037a-b4bc-4c23-9adf-0e7fcf7b4628", "fields": { - "question": 476, - "contribution": 3474, - "answer": -1, - "count": 7 + "question": 316, + "contribution": 836, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "82bc9beb-1ae9-42b8-82c1-1c9976cd39d5", + "pk": "67a7f614-5a81-4363-b393-585494e91491", "fields": { - "question": 362, - "contribution": 1799, - "answer": 1, - "count": 2 + "question": 351, + "contribution": 788, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "82c03790-12de-4245-bad3-0781b73f5cfe", + "pk": "67b0c648-dc5b-4d61-afc8-b9d3ae1b1aab", "fields": { - "question": 321, - "contribution": 1612, + "question": 343, + "contribution": 1867, "answer": 1, - "count": 13 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "82c12086-414b-4dec-901f-d9077aeed330", + "pk": "67b588d4-e190-4eeb-ba45-1d584007d0d8", "fields": { - "question": 335, - "contribution": 1284, + "question": 361, + "contribution": 3647, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "82c2b12b-612f-4bbc-b492-f70f2abdb1cd", + "pk": "67b98a5a-7aa6-4d31-a4a8-b5db2e3213c1", "fields": { - "question": 320, - "contribution": 1626, - "answer": 4, - "count": 5 + "question": 316, + "contribution": 4046, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "82c8fd5f-a4df-4cb6-a47c-bf33c68a6868", + "pk": "67ba698b-e3b8-4fa3-aae0-8540c95cf7fa", "fields": { - "question": 353, - "contribution": 3529, + "question": 338, + "contribution": 1656, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "82d17899-da35-4a97-8697-1d9f8f6c6987", + "pk": "67bb5151-1be9-4987-9c09-89462c08b030", "fields": { - "question": 345, - "contribution": 1828, - "answer": 1, - "count": 2 + "question": 259, + "contribution": 3462, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "82d8f1be-b312-4c16-a9b9-fee194b3cd53", + "pk": "67bddfa6-2e8b-46f4-9754-a2d7d2fe244d", "fields": { - "question": 320, - "contribution": 880, - "answer": 1, - "count": 14 + "question": 445, + "contribution": 4114, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "82da0eca-996d-476e-80bf-94bc4cab88f6", + "pk": "67c24d56-987b-44c5-a814-b341722b8a28", "fields": { - "question": 437, - "contribution": 4140, + "question": 317, + "contribution": 3721, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8300fb0b-acb8-4ab1-b38f-daf82a59a43e", + "pk": "67c312b8-29e5-4838-a536-5122155c3a30", "fields": { - "question": 321, - "contribution": 1634, - "answer": 3, - "count": 6 + "question": 360, + "contribution": 3917, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "830bec72-f736-481d-b9e0-1eaef4e81d7b", + "pk": "67d3d6e1-314b-4462-b132-75092c3367a8", "fields": { - "question": 258, - "contribution": 3721, - "answer": 1, - "count": 9 + "question": 315, + "contribution": 3679, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8314d1e1-066c-4411-bbbe-6d9ea4694b31", + "pk": "67d93a98-84d0-4bb5-bfd4-4e4249a1cc35", "fields": { - "question": 346, - "contribution": 3704, - "answer": 1, + "question": 322, + "contribution": 3462, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8317d2eb-d6cf-44fb-bddc-56e5c2443b7e", + "pk": "67de45b4-3479-42b0-ab46-913e6833d74f", "fields": { - "question": 397, - "contribution": 3755, - "answer": 1, + "question": 329, + "contribution": 3463, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "831875df-b710-406d-9fd8-7a451aec3942", - "fields": { - "question": 475, - "contribution": 804, - "answer": -2, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "831de6f0-65ca-4cfd-bfe1-a27a95a43e27", + "pk": "67e96da6-8fff-4612-8e84-f9b34693fec2", "fields": { - "question": 323, - "contribution": 912, - "answer": 4, - "count": 1 + "question": 325, + "contribution": 3519, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "831f71a8-e842-4c53-8559-792f09f94b1c", + "pk": "67ea0572-79aa-4a6b-8d0b-9c6ac33de4da", "fields": { - "question": 332, - "contribution": 3553, - "answer": 2, - "count": 9 + "question": 338, + "contribution": 1200, + "answer": 1, + "count": 32 } }, { "model": "evaluation.ratinganswercounter", - "pk": "832da30b-672f-48ae-b65f-14defd04fde9", + "pk": "6805aaeb-f874-4f99-a003-c50de063d574", "fields": { - "question": 341, - "contribution": 3685, - "answer": 2, + "question": 346, + "contribution": 1828, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "83322588-beeb-41fc-bc39-c487823a14bb", + "pk": "680a4c30-7b01-4a5a-b3f8-43eaacd0fb48", "fields": { - "question": 475, - "contribution": 886, - "answer": 0, - "count": 7 + "question": 343, + "contribution": 1203, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "83353133-cd52-496a-ae0e-2b16e10a0bd3", + "pk": "680d1e9f-eabb-4b79-b495-d7e50f8974d5", "fields": { - "question": 320, - "contribution": 822, - "answer": 3, - "count": 3 + "question": 322, + "contribution": 1626, + "answer": 5, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "833bb163-b20e-49d7-a96d-02f5bb6c6b27", + "pk": "680df790-ec90-4e8f-8339-ceab7d994177", "fields": { - "question": 331, - "contribution": 3390, - "answer": -1, - "count": 11 + "question": 323, + "contribution": 4100, + "answer": 1, + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "83479052-356f-4e5a-aba0-37434b29e0ee", + "pk": "6824690c-83c0-4a6e-a0aa-a25bd5b8f06d", "fields": { - "question": 349, - "contribution": 1228, - "answer": 3, - "count": 3 + "question": 367, + "contribution": 3406, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "834a8dba-f4ca-4deb-a893-a526644de62c", + "pk": "682887a4-d9fa-487f-8b5b-a17b841e19f2", "fields": { - "question": 347, - "contribution": 1202, - "answer": 2, + "question": 315, + "contribution": 3474, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8362befe-3263-49ab-9d0e-068608c8f156", + "pk": "682d30b0-b0a0-4a68-985b-6aedecb22dae", "fields": { - "question": 326, - "contribution": 1186, + "question": 329, + "contribution": 4152, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "837bc48d-90d4-4b8b-b329-e6b477ba154f", + "pk": "683113dc-bd2f-48d1-aed0-5af649fbbb6e", "fields": { - "question": 338, - "contribution": 3486, - "answer": 2, - "count": 6 + "question": 257, + "contribution": 836, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8387b10f-9717-4a3b-ac36-3d5ff4e05ceb", + "pk": "6832970d-eb2f-495b-91eb-11443859e789", "fields": { - "question": 369, - "contribution": 1805, + "question": 361, + "contribution": 1826, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "838e78c9-f3ca-4c8b-a0b3-9c5a2cd60852", + "pk": "683356e4-8bfa-4943-a784-588deef2439b", "fields": { - "question": 317, - "contribution": 4100, - "answer": 4, - "count": 2 + "question": 366, + "contribution": 4154, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "83924091-1500-4653-beb8-7362569cdbca", + "pk": "68592fec-7f48-43f1-ad0b-5974fb46c45f", "fields": { - "question": 329, - "contribution": 3666, + "question": 475, + "contribution": 840, "answer": 1, - "count": 6 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "839733f5-7ec7-4fb0-a204-573f178c1946", - "fields": { - "question": 260, - "contribution": 1626, - "answer": 2, - "count": 13 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "839fef58-2287-4330-ba0a-44d26ec4db53", + "pk": "686525ee-1c4e-4d5d-bd25-7e80408ce161", "fields": { - "question": 344, - "contribution": 887, - "answer": 2, - "count": 5 + "question": 317, + "contribution": 836, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "83b35912-ea80-4cd4-ae1d-6e1a615680cb", + "pk": "68687223-ef8c-40cd-96dd-0ea3d2d48058", "fields": { - "question": 339, - "contribution": 1702, - "answer": -1, + "question": 343, + "contribution": 1749, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "83bb241c-57c9-4494-89f1-524a373da95e", + "pk": "686cb31a-6956-4b73-8ff9-90ad04d1b808", "fields": { - "question": 371, - "contribution": 4156, + "question": 336, + "contribution": 3440, "answer": 4, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "83c07f9d-1fea-4663-b913-a2e3562ebda6", + "pk": "6873826d-c46c-45bb-8751-9760002d3728", "fields": { - "question": 258, - "contribution": 3390, + "question": 333, + "contribution": 3598, "answer": 2, - "count": 9 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "83cecb8f-eeb6-4ada-b35c-bcd6af7ad0f9", + "pk": "687dc6d3-45d5-4bb6-9435-50b5cc3f4d77", "fields": { "question": 344, - "contribution": 3896, + "contribution": 3515, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "83d87253-faaa-4740-baa6-865044de2606", + "pk": "68892516-7224-4743-9119-0e1297c542c2", "fields": { - "question": 262, - "contribution": 4120, - "answer": 2, - "count": 10 + "question": 354, + "contribution": 3517, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "83ec0537-04a5-41de-ac52-5f685947af68", + "pk": "68968396-c375-463a-8391-9f7ff827af23", "fields": { - "question": 323, - "contribution": 836, - "answer": 2, - "count": 6 + "question": 255, + "contribution": 3434, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8400f6c1-08b6-456e-80b3-90ded692bb0e", + "pk": "689d4387-6de5-44a0-a213-5cd546f6b0c3", "fields": { - "question": 355, - "contribution": 1188, + "question": 332, + "contribution": 3932, "answer": 1, - "count": 6 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "84031281-4358-4193-876c-2856f33cec69", - "fields": { - "question": 346, - "contribution": 3900, - "answer": 3, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8407b63c-0b00-4dd6-9ced-0ecfb52406f9", + "pk": "68a5339f-3929-4f4b-a624-3c8dd1d1e7a2", "fields": { - "question": 260, - "contribution": 1612, + "question": 344, + "contribution": 1851, "answer": 2, - "count": 8 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "840c020b-f81f-47e8-b269-fafe231102ea", + "pk": "68adf8ff-aa11-4b2b-ae10-3ef0c2288168", "fields": { - "question": 380, - "contribution": 3755, - "answer": 2, + "question": 475, + "contribution": 3785, + "answer": 0, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "840c7987-feed-4fb1-8942-2f49b9285c1e", + "pk": "68b2bba9-3747-440a-8379-0ea8e7b29a41", "fields": { - "question": 357, - "contribution": 4279, - "answer": 3, - "count": 1 + "question": 477, + "contribution": 837, + "answer": 0, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "840dc948-11bb-4223-b3f1-412297ad2b65", + "pk": "68c47ca1-56a2-4cd2-b142-add7918b3323", "fields": { - "question": 259, - "contribution": 4046, + "question": 356, + "contribution": 1258, "answer": 1, - "count": 9 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84249e29-c91b-40c8-83a3-a3e29b61dbbd", + "pk": "68c6c8d6-c667-49d8-b27e-d22465cc9158", "fields": { - "question": 323, - "contribution": 4120, + "question": 368, + "contribution": 3740, "answer": 2, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8425ef25-bd7e-41be-a731-5d44d1520133", + "pk": "68d036a6-1298-44f5-a43d-b9e850c86e29", "fields": { - "question": 475, - "contribution": 1748, - "answer": 0, - "count": 3 + "question": 477, + "contribution": 4153, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84264ca8-31b7-4014-918f-e984708eb937", + "pk": "68d73e41-5321-480d-a4e2-4f911493a7dd", "fields": { - "question": 327, - "contribution": 4085, - "answer": 2, - "count": 17 + "question": 370, + "contribution": 3546, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8429412d-e9b7-45c3-b571-f3171de6ff81", + "pk": "68f302ca-5288-4291-a454-850406d51b78", "fields": { - "question": 337, - "contribution": 4052, - "answer": 3, - "count": 3 + "question": 348, + "contribution": 3607, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8433c3a7-d55b-4aa8-b509-c62698db90b7", + "pk": "68f63bbc-50af-4461-9ae8-c440d1756a94", "fields": { - "question": 315, - "contribution": 4046, + "question": 340, + "contribution": 4122, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8445b8ab-09e3-4ec2-b10b-57dc618c581f", + "pk": "68f6cefc-c091-4594-b382-4e7a0797575b", "fields": { - "question": 336, - "contribution": 3454, + "question": 349, + "contribution": 1824, "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8469f4b3-07fa-4329-893f-b4356d269247", - "fields": { - "question": 371, - "contribution": 3922, - "answer": 2, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "8469f6fd-e1f5-46a3-8507-c23695828f17", + "pk": "68fad76d-ff91-4b0d-940e-30d6c5582a51", "fields": { - "question": 363, - "contribution": 3597, + "question": 359, + "contribution": 3893, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84766670-5c15-4619-b91f-41e00323b754", + "pk": "690dc069-db93-45f3-aa2b-28b167b0d4de", "fields": { - "question": 475, - "contribution": 1640, + "question": 357, + "contribution": 4037, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "847aa677-8bb1-48a9-ad44-d94da0e8f350", + "pk": "690ef5f7-0140-48e1-8752-136ce7a028bb", "fields": { - "question": 338, - "contribution": 918, + "question": 321, + "contribution": 3422, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84822ca7-fc3b-46ca-96bc-ad8f39df5bae", + "pk": "6912dd8d-d6e6-45e4-8dc5-9133148f9975", "fields": { - "question": 327, - "contribution": 3740, - "answer": 1, + "question": 315, + "contribution": 836, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8492f7bb-df63-46fc-9ffd-11c0e38c6e2c", + "pk": "691ba665-ea6b-4e9a-a388-1813ed86f4fe", "fields": { - "question": 319, - "contribution": 884, - "answer": 2, - "count": 13 + "question": 336, + "contribution": 1660, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "849cb233-3d47-4695-aed3-7ed7539f3842", + "pk": "691cb3ee-138e-44ef-a5d4-e40d76db63b8", "fields": { - "question": 350, - "contribution": 3394, - "answer": 1, - "count": 3 + "question": 316, + "contribution": 3462, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84a2cbc9-ffa1-4418-933a-0ec3d1e73f6b", + "pk": "692a5aed-aef9-4976-b768-b7e1f80318b0", "fields": { - "question": 367, - "contribution": 3739, - "answer": 5, - "count": 2 + "question": 327, + "contribution": 1613, + "answer": 1, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84aa0bde-e95c-4906-a361-0fe1922360f7", + "pk": "693ac58d-5e74-49f1-b801-74991dfd68b5", "fields": { - "question": 337, - "contribution": 886, + "question": 328, + "contribution": 1780, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84b9c0ec-96ea-4cfd-bddb-3b3c48bc61e1", + "pk": "694256c3-3626-436f-aec3-08eb1bde7ceb", "fields": { - "question": 354, - "contribution": 3609, - "answer": 2, - "count": 1 + "question": 356, + "contribution": 4232, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84c2e1bb-44e4-4d4f-a0b2-997f480aa4bc", + "pk": "694298f5-0b9d-4016-b87c-b0d70ac3b1e8", "fields": { - "question": 343, - "contribution": 1860, - "answer": 2, - "count": 1 + "question": 323, + "contribution": 1626, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84c6addf-f89f-478b-b476-9b36fe5f610d", + "pk": "69466de4-79de-4056-9e8d-e23eae54b591", "fields": { - "question": 356, - "contribution": 3756, - "answer": 5, + "question": 428, + "contribution": 4205, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84cd0b96-d21f-43cc-a0c5-0cd46c6b590f", + "pk": "69541aac-6d9a-42d8-8900-af52e0c4dce0", "fields": { - "question": 371, - "contribution": 3932, - "answer": 1, + "question": 339, + "contribution": 840, + "answer": 0, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84cd99a4-98e1-423a-9d22-77eb35f86489", + "pk": "69693e9f-9e70-4a7c-97ce-d10b4674e39d", "fields": { - "question": 472, - "contribution": 3685, + "question": 367, + "contribution": 3679, "answer": 1, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "84d263ae-c906-4b6e-b661-05618f6f72e0", - "fields": { - "question": 347, - "contribution": 3899, - "answer": 5, - "count": 1 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84d54d81-2401-470f-9c3e-e0b72b6292a8", + "pk": "6971b906-1b63-460a-8542-5a1a1aa1003c", "fields": { - "question": 322, - "contribution": 3422, + "question": 326, + "contribution": 4152, "answer": 4, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84d96d50-4070-49fa-a51c-1c2cf6c4a9ce", + "pk": "69722b15-4148-48e4-8934-e1919624a1f5", "fields": { - "question": 343, - "contribution": 3879, - "answer": 2, + "question": 315, + "contribution": 1837, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84dca842-27b2-45fd-8648-eee0bd845148", + "pk": "6980915c-bd91-459b-bd06-7c96e267712a", "fields": { - "question": 361, - "contribution": 1812, - "answer": 3, - "count": 1 + "question": 323, + "contribution": 4116, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84deaca4-ea18-426b-a7f8-177e174ce9f8", + "pk": "69873d12-a0e0-4a03-992c-974e14d85bde", "fields": { - "question": 328, - "contribution": 4117, + "question": 336, + "contribution": 858, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84e38e95-7f82-4bd6-b79d-11632d84c415", + "pk": "6994932c-816d-41ad-bb11-f81c13556b6e", "fields": { - "question": 262, - "contribution": 1634, - "answer": 1, - "count": 12 + "question": 316, + "contribution": 908, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84e65028-c476-411b-abe5-debc5f43e4df", + "pk": "699549f7-c840-46a0-941f-950e59584be3", "fields": { - "question": 319, - "contribution": 4138, - "answer": 3, - "count": 11 + "question": 322, + "contribution": 4040, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84e7adc7-3456-4a26-bbea-bc0032fb2ff9", + "pk": "699890f3-d1d9-41bc-9299-97594b14dfa6", "fields": { - "question": 347, - "contribution": 1639, - "answer": 5, + "question": 371, + "contribution": 3594, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "84ff3785-5bc0-4bc6-af5a-8d76e254011a", + "pk": "69a0d900-7e65-40e6-85c9-2b73593e35a2", "fields": { - "question": 340, - "contribution": 918, + "question": 344, + "contribution": 1663, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8501136d-9bc5-4a80-ab77-9f756b908015", + "pk": "69ac3c61-5816-4ee1-a25a-41d19a941b52", "fields": { - "question": 353, - "contribution": 3847, - "answer": 2, + "question": 346, + "contribution": 3899, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8502697f-21a1-4261-950e-15e488494b79", + "pk": "69ae5885-ee9f-4062-9623-ee9bc9c6b855", "fields": { - "question": 326, - "contribution": 1613, - "answer": 1, - "count": 20 + "question": 319, + "contribution": 4028, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8502ac46-b3e6-4629-b771-27690a5688ac", + "pk": "69b736dc-b348-4a58-9fef-bc2173320199", "fields": { - "question": 367, - "contribution": 4138, + "question": 328, + "contribution": 1613, "answer": 3, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8506f145-3d69-4ff7-a174-37b825ea510b", + "pk": "69c4c28f-3638-4738-a348-f04975bd8af7", "fields": { - "question": 339, - "contribution": 3745, - "answer": 1, + "question": 335, + "contribution": 4261, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "85150f7f-3c62-4dd1-8231-1a3f6296974d", + "pk": "69c96d56-04b7-445e-a7e0-e6958ef39bc2", "fields": { - "question": 408, - "contribution": 4038, - "answer": 2, + "question": 458, + "contribution": 4141, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "851b2786-8e56-4c99-b3f3-fb7aa740202e", + "pk": "69d21ed4-a60d-4eb2-b5ce-005d70092116", "fields": { - "question": 320, - "contribution": 1626, + "question": 356, + "contribution": 1258, "answer": 2, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "851b8991-664d-479f-95d4-169b2219a449", + "pk": "69e629a3-f78a-4be2-97cf-694b24866c6d", "fields": { - "question": 259, - "contribution": 1668, + "question": 349, + "contribution": 3516, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8523d2b2-c229-4036-a0bf-59880bbecb32", - "fields": { - "question": 477, - "contribution": 885, - "answer": 0, - "count": 23 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "852b18ca-c36b-4807-955b-23da62c97d54", - "fields": { - "question": 316, - "contribution": 4116, - "answer": 5, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "852fbd60-1b3f-4229-8615-44a07ea3a116", + "pk": "69eb0c78-5f6c-4266-8422-9debbc456a5b", "fields": { - "question": 325, - "contribution": 1659, - "answer": 1, - "count": 15 + "question": 323, + "contribution": 3462, + "answer": 4, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8533497b-3bb6-4759-a7cd-a7cdcf451b0f", + "pk": "69ed9e0b-c624-41b3-91eb-87c07a001270", "fields": { - "question": 329, - "contribution": 1186, - "answer": 3, + "question": 260, + "contribution": 3474, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "853cfe6b-395b-41d3-bed5-56f3b7d92b25", + "pk": "69f83c40-d0e0-451c-b79a-f66817296959", "fields": { - "question": 406, - "contribution": 4038, + "question": 472, + "contribution": 4022, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "85490c35-0db2-4b6a-9700-1fec742a36c6", + "pk": "6a0eee35-d106-46a9-aaae-1d62ad1ca4e8", "fields": { - "question": 336, - "contribution": 826, + "question": 262, + "contribution": 880, "answer": 1, - "count": 2 + "count": 27 } }, { "model": "evaluation.ratinganswercounter", - "pk": "85572543-b5f0-4fb3-b3af-87a7b685cfb2", + "pk": "6a22982c-2646-491e-b7ce-ba9e91a5daee", "fields": { - "question": 475, - "contribution": 826, - "answer": 0, - "count": 2 + "question": 356, + "contribution": 4039, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "855aefc4-0770-432b-bcd8-cd98b1bdbcad", + "pk": "6a2b049f-c520-4b32-b772-175154e39bdc", "fields": { - "question": 367, - "contribution": 3394, - "answer": 2, - "count": 2 + "question": 347, + "contribution": 4129, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "855b901b-7f71-40e5-a2e5-3677613986a1", + "pk": "6a2dcf4d-c5b6-45fa-8af6-b68f28bfa129", "fields": { - "question": 343, - "contribution": 3879, + "question": 366, + "contribution": 3886, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "855e5a31-3887-45fd-bbf1-a55ec9d96ea8", + "pk": "6a2e9143-9f48-4bfa-95ab-834ec1534e50", "fields": { - "question": 472, - "contribution": 3390, - "answer": 5, - "count": 11 + "question": 348, + "contribution": 3546, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "855f0be5-139f-492a-99f4-098951202f97", + "pk": "6a310a99-03af-490f-a07c-631dd3926ac8", "fields": { - "question": 326, - "contribution": 823, + "question": 361, + "contribution": 1836, "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "855f4d4b-2656-43e2-8389-99f1d4ea481d", + "pk": "6a347837-96ec-4b02-bc82-ddb8cd401536", "fields": { - "question": 333, - "contribution": 4261, + "question": 346, + "contribution": 3855, "answer": 2, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "85633281-e824-4e93-b1b5-21e431769936", + "pk": "6a381229-553f-4937-86be-0dbd2e306aa3", "fields": { - "question": 354, - "contribution": 1154, - "answer": 5, - "count": 1 + "question": 359, + "contribution": 3649, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "856e4b04-8f10-4bd2-9409-b405b1dc6713", + "pk": "6a3f338c-c5c7-477c-9cdd-19abd6df570f", "fields": { - "question": 369, - "contribution": 1812, - "answer": 1, - "count": 2 + "question": 325, + "contribution": 1802, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8572f563-55ff-450c-9ba3-b5bb4380db9c", + "pk": "6a4685f2-3fe2-46d7-bacd-aa4cc2718482", "fields": { - "question": 370, - "contribution": 3834, + "question": 346, + "contribution": 1235, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "857a774f-18f3-4ab3-90c6-c6e690210cde", + "pk": "6a49e896-15b7-4b95-8b4d-f7d797dd5188", "fields": { - "question": 347, - "contribution": 3939, - "answer": 1, - "count": 2 + "question": 337, + "contribution": 840, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "858200e3-36f1-4598-b05e-1560b7937f0b", + "pk": "6a4ab221-5f60-426e-92c2-66f34c081857", "fields": { - "question": 349, - "contribution": 3912, + "question": 404, + "contribution": 4024, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "858a97f3-52fd-48ef-991d-6a5d2995f8d5", + "pk": "6a4b1b2d-a24b-4b27-80dc-7044af2c0838", "fields": { - "question": 463, - "contribution": 3786, - "answer": 1, - "count": 2 + "question": 472, + "contribution": 3645, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "858ef826-ed75-40ce-ab48-b4e009f0d2af", + "pk": "6a4d359b-0018-49cd-8dc6-8cbe590bf07b", "fields": { - "question": 347, - "contribution": 3526, + "question": 325, + "contribution": 4023, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "859c0079-4b70-4f67-869b-2d39cf7019f9", + "pk": "6a4f7e61-edd9-413d-989a-dc981acef306", "fields": { - "question": 327, - "contribution": 1681, - "answer": 2, + "question": 346, + "contribution": 1151, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "85a3600d-daa2-4f4d-909f-7debe191dbfb", + "pk": "6a508a0e-9f1e-43a5-be4c-c57fdd0de443", "fields": { - "question": 316, - "contribution": 3390, - "answer": 2, - "count": 2 + "question": 473, + "contribution": 3440, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "85a5211b-05d8-4b20-b6d6-be75b128130d", + "pk": "6a51697b-d3f6-474a-906f-acfe8a6a4ac8", "fields": { - "question": 255, - "contribution": 880, - "answer": 4, - "count": 5 + "question": 362, + "contribution": 1827, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "85acb418-18a6-41e4-b5b1-28a3e5a4bafb", + "pk": "6a56bd4e-3ee0-4fef-8828-27ab38a4fca4", "fields": { - "question": 338, - "contribution": 1662, - "answer": 3, + "question": 315, + "contribution": 1612, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "85cd78e3-0615-45b4-804c-00d19ee1e157", - "fields": { - "question": 357, - "contribution": 4039, - "answer": 1, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "85d905b0-1bfc-4d4a-8b33-8d64c76002a8", + "pk": "6a57da6b-e163-4fe5-87bf-1c3a1ac16fdb", "fields": { "question": 343, - "contribution": 1881, - "answer": 3, - "count": 1 + "contribution": 4189, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "85eb10ba-b2cc-4c5c-b975-ac2ed6949a70", + "pk": "6a5a1b9a-04f2-4b7b-a1e5-26b7b8417fff", "fields": { - "question": 337, - "contribution": 3466, - "answer": 4, - "count": 1 + "question": 316, + "contribution": 3739, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "85edeadf-129b-4216-be15-557d8de47184", + "pk": "6a5af1f2-a321-4757-a08c-9a5f1c026b18", "fields": { - "question": 341, - "contribution": 4020, - "answer": 1, + "question": 343, + "contribution": 3899, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "85f1703a-061f-401d-b8ce-0900e2cdcabf", + "pk": "6a67059c-2a00-47a1-b141-a2d6c5007e62", "fields": { "question": 347, - "contribution": 3555, + "contribution": 1860, "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86151282-aaf1-4f6d-b0d0-920794b1173a", + "pk": "6a6bfc5e-1c88-4da2-a2d2-d733e96f6143", "fields": { - "question": 472, - "contribution": 1694, - "answer": 5, + "question": 331, + "contribution": 3739, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8619f541-6f19-4b97-9240-07805f72036a", + "pk": "6a740e77-2f5d-4c90-8c93-3fb3206744b9", "fields": { - "question": 362, - "contribution": 1835, - "answer": 2, - "count": 6 + "question": 326, + "contribution": 1780, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "861b0814-baf8-40c7-86bd-c1e56675c421", + "pk": "6a7fafcb-cf0a-405e-b4da-09078e99f0db", "fields": { "question": 321, - "contribution": 3725, - "answer": 1, - "count": 13 + "contribution": 1668, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "861daaec-e91e-478b-9143-83a46d12b8c0", + "pk": "6a80ff10-ba1f-4356-b39b-7f19eac7ffe5", "fields": { - "question": 477, - "contribution": 3726, - "answer": 1, + "question": 327, + "contribution": 1635, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "862b6696-9454-4d81-8691-eda2fb700459", + "pk": "6a8fc024-4cc6-417f-89b1-54f44370bdce", "fields": { - "question": 255, - "contribution": 4120, - "answer": 3, - "count": 4 + "question": 346, + "contribution": 1204, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86302343-664e-416a-a367-143938b1570e", + "pk": "6a9c5772-da5b-4347-af7f-fd8a98642aeb", "fields": { - "question": 336, - "contribution": 4036, - "answer": 1, + "question": 346, + "contribution": 1204, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86310615-7fa4-4854-9708-851c8db440f5", + "pk": "6aa27fcc-2451-4150-bdb5-81f085bfdcf8", "fields": { - "question": 258, - "contribution": 908, - "answer": 5, + "question": 356, + "contribution": 4269, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "863850d1-4fd4-43c9-9054-4d8e363ab46e", + "pk": "6aa5b465-5118-4a75-b128-36dbcc06631f", "fields": { - "question": 418, - "contribution": 3984, - "answer": 3, - "count": 1 + "question": 327, + "contribution": 3519, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "863e2939-9fb7-4e49-8d67-6e5f82cdc86a", + "pk": "6aac03f1-5582-4683-ade3-9448eff543dc", "fields": { - "question": 337, - "contribution": 1726, - "answer": 1, + "question": 344, + "contribution": 1207, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86404aac-82b6-4402-8de8-72e981684ea8", + "pk": "6aad0000-cb24-460d-868f-f7b0a52a67f2", "fields": { - "question": 319, - "contribution": 862, + "question": 347, + "contribution": 3509, "answer": 1, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8649c3a7-12bd-4c78-bcd5-1c731b867f65", + "pk": "6ab6ae18-ce02-4061-8ba3-fcf705179371", "fields": { - "question": 259, - "contribution": 1724, - "answer": 1, - "count": 2 + "question": 328, + "contribution": 3722, + "answer": 4, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "864bd802-50aa-4755-9a09-55c5ece089be", + "pk": "6ac058a2-a7d7-44d7-a6c7-271b1b6a850e", "fields": { - "question": 327, - "contribution": 4117, - "answer": 1, - "count": 6 + "question": 340, + "contribution": 1638, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "864ebf43-ee0c-4af0-9ab5-ab3bfa06e2ec", + "pk": "6ac77e3a-00be-461c-b319-3807afa138f0", "fields": { - "question": 335, - "contribution": 3932, - "answer": 3, - "count": 2 + "question": 473, + "contribution": 3416, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "864f7728-a5f5-4225-96c3-8b402392705f", + "pk": "6ad22b6b-5bbb-4b78-99f8-9181360f553d", "fields": { - "question": 325, - "contribution": 1725, - "answer": 1, - "count": 4 + "question": 360, + "contribution": 1836, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8654b5f3-9d0e-4415-8dd6-86ea9c3207ce", + "pk": "6ad6f61c-e34f-41ca-ba1b-09eaa94147cd", "fields": { "question": 475, - "contribution": 1644, - "answer": 2, + "contribution": 3440, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86575f01-f572-4718-826a-ba5c7f937a40", + "pk": "6ad82b8c-1689-4486-8da7-77503209bb1f", "fields": { - "question": 368, - "contribution": 4117, - "answer": 5, - "count": 1 + "question": 372, + "contribution": 3466, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86604fc5-55b7-44f4-86cc-a20734269d07", + "pk": "6aeb0f44-3bb6-4b4b-8aa9-cd290d9d9786", "fields": { - "question": 357, - "contribution": 4270, + "question": 257, + "contribution": 4046, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8663685d-6be0-46fb-8b74-83455c7b085a", + "pk": "6aed5926-36dd-4f45-bc99-ce5797e0ac4b", "fields": { - "question": 336, - "contribution": 3751, + "question": 361, + "contribution": 3597, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "866bad1b-10a1-4f62-b890-7eb0f601e8d6", + "pk": "6b008413-1a25-482a-8f14-87aee90fdece", "fields": { - "question": 331, - "contribution": 4120, + "question": 326, + "contribution": 1776, "answer": 1, - "count": 5 + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "866f42df-ecff-40ab-8380-739e0593b67b", + "pk": "6b06469e-351e-45e7-9d10-dbbed4bd4cec", "fields": { - "question": 337, - "contribution": 3450, - "answer": 2, - "count": 1 + "question": 349, + "contribution": 3405, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86709078-af61-4972-af34-b50f549bfe1a", + "pk": "6b0a0fcf-39d5-44d6-b426-287f0ee0f4bf", "fields": { - "question": 477, - "contribution": 909, - "answer": 1, + "question": 322, + "contribution": 4116, + "answer": 5, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8677d2e7-fe28-4e88-95ef-4584a517386b", + "pk": "6b0efb72-ee5b-4222-9e2b-bcfa2389f061", "fields": { - "question": 322, - "contribution": 3721, - "answer": 3, - "count": 3 + "question": 346, + "contribution": 1202, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "867cf989-46a1-40f0-9cac-1bfeeba147a4", + "pk": "6b167630-1a80-43a2-abf8-7bf1ffbf027e", "fields": { - "question": 338, - "contribution": 4002, - "answer": 1, - "count": 4 + "question": 257, + "contribution": 4138, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "868d3ba3-2955-45bf-88e5-7f1bd199add0", + "pk": "6b1c7408-111e-4c15-848b-a25d7a3c235e", "fields": { - "question": 366, - "contribution": 3551, - "answer": 3, - "count": 2 + "question": 319, + "contribution": 3679, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "868ff2c9-2afe-4370-9c74-21749d774c1b", + "pk": "6b1e8997-e6e4-49d7-85d6-e387f7669def", "fields": { - "question": 349, - "contribution": 887, - "answer": 4, - "count": 1 + "question": 356, + "contribution": 4244, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86902923-b231-4da2-a667-4375e799352b", + "pk": "6b2ae959-a778-46d9-b712-722c2bdc93d0", "fields": { - "question": 359, - "contribution": 3597, - "answer": 2, - "count": 1 + "question": 317, + "contribution": 4028, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86920feb-b856-408e-8ea4-c72fb724fe81", + "pk": "6b2bc617-230a-43c8-b2d4-0e74872d71f1", "fields": { - "question": 347, - "contribution": 1206, + "question": 355, + "contribution": 3852, "answer": 1, - "count": 4 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "869797fc-9096-4563-8804-14376ec7df85", + "pk": "6b37b8b4-7a5f-4b20-92e8-ac03917c5502", "fields": { - "question": 457, - "contribution": 4284, - "answer": 1, + "question": 371, + "contribution": 3553, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "869a739b-6cb1-4fcd-a001-cb26f5ce0e98", + "pk": "6b3de632-c0d3-4461-aae3-727ffad354dc", "fields": { - "question": 371, - "contribution": 3551, - "answer": 2, - "count": 5 + "question": 262, + "contribution": 3390, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "869eb77e-e5ed-4b90-ad46-acbc156de3e0", + "pk": "6b4815cd-57f0-47c7-8673-bba0faf31e43", "fields": { - "question": 259, - "contribution": 3739, - "answer": 2, - "count": 4 + "question": 337, + "contribution": 4020, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "869f6dd4-f103-4dfe-b28b-63b3c9f1564c", + "pk": "6b4e95e4-e5db-4819-88ff-bf5507734e3f", "fields": { - "question": 354, - "contribution": 1154, - "answer": 3, - "count": 8 + "question": 258, + "contribution": 880, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86a1c76e-67d2-43e7-89c0-a7cd139bf803", + "pk": "6b508008-f39e-418a-a186-8c81b11e70a6", "fields": { - "question": 320, - "contribution": 3434, - "answer": 2, - "count": 13 + "question": 1, + "contribution": 4300, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86aeb68f-7c00-4e91-8ace-a19ae5154e63", + "pk": "6b50ba37-5976-4f0d-bd49-749a045a2088", "fields": { - "question": 354, - "contribution": 4232, - "answer": 1, - "count": 2 + "question": 340, + "contribution": 3727, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86b988d7-8858-4153-9310-d0eb1932b2ea", + "pk": "6b552ed3-f1db-4692-8e11-6dfe5955c12d", "fields": { "question": 325, - "contribution": 1681, - "answer": 2, + "contribution": 4101, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86bf22ed-5f12-48d2-8f17-34bc2c3ff909", + "pk": "6b5c067e-eba2-42aa-b39f-7e7c7b72efab", "fields": { - "question": 368, - "contribution": 1613, - "answer": 2, - "count": 4 + "question": 339, + "contribution": 4122, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86c5c91d-0313-42ea-949a-1d34aa29b787", + "pk": "6b5cc9ee-7a2e-48be-b8b4-f62e33397b07", "fields": { - "question": 431, - "contribution": 4177, - "answer": 2, - "count": 2 + "question": 347, + "contribution": 3896, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86c6aabe-7a53-4373-8636-6e3f0c6eca3d", + "pk": "6b60036a-eaf8-4c08-af47-224202093584", "fields": { - "question": 359, - "contribution": 1836, - "answer": 5, - "count": 2 + "question": 346, + "contribution": 3900, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86c8ac84-59a0-4e99-b494-23108a9fec40", + "pk": "6b6840c2-045e-42a9-9e86-11a3e3d47f95", "fields": { - "question": 346, - "contribution": 3518, + "question": 351, + "contribution": 826, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86cb6808-d60f-4cbc-bb24-7af8ef9f0403", + "pk": "6b741fd1-3baf-45ea-aa42-d099f9a14b8a", "fields": { - "question": 476, - "contribution": 1634, - "answer": -1, - "count": 4 + "question": 337, + "contribution": 4072, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86d162cd-caeb-4b32-a4ae-eba913e4b5e7", + "pk": "6b91dfb5-ae69-4e53-8abe-b000027c1a1f", "fields": { - "question": 354, - "contribution": 3848, + "question": 258, + "contribution": 3394, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86d4df34-e747-49bf-9a23-75d3791748bd", + "pk": "6b95ff64-6b1b-431b-9c4f-ae09cbe3dac6", "fields": { - "question": 328, - "contribution": 1776, + "question": 323, + "contribution": 1612, "answer": 5, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86d93d74-87b9-44a0-836f-4280f819b7a8", + "pk": "6b9bc96e-762d-45fc-9b1b-5f7f2a2e35fa", "fields": { - "question": 345, - "contribution": 1860, - "answer": 2, + "question": 329, + "contribution": 3556, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86dadc20-36bf-431d-8dad-36025cc49993", + "pk": "6bab0c5d-ee4e-4267-ba1b-eefce509d392", "fields": { - "question": 319, - "contribution": 4116, - "answer": 4, + "question": 339, + "contribution": 886, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86ddc9ae-d9cd-413d-bc46-816ca1ed90b0", + "pk": "6babd95c-2db3-486f-9954-78f49d208f73", "fields": { - "question": 367, - "contribution": 1658, - "answer": 2, + "question": 329, + "contribution": 1725, + "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86de3ea7-798d-4fe6-8e19-88ed0b6d3326", + "pk": "6bac9d6f-3141-45f4-9240-b06ade47b66b", "fields": { - "question": 344, - "contribution": 3608, - "answer": 1, - "count": 3 + "question": 343, + "contribution": 3912, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86e4765a-a2f4-42e1-9d40-17076de2110a", + "pk": "6bb8365d-e03f-4e6c-8920-b30f8ed012f5", "fields": { - "question": 340, - "contribution": 3508, - "answer": 2, + "question": 464, + "contribution": 4141, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86e8b681-243e-44c4-8e30-0b176b6cdd97", + "pk": "6bbc018a-cb1b-4c7f-8297-5ea458a4f555", "fields": { - "question": 325, - "contribution": 909, - "answer": 2, - "count": 6 + "question": 362, + "contribution": 1812, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86ed9def-c378-4e51-b302-37df630e72de", + "pk": "6bc150af-04ec-4457-bc29-d8c2aa44c7a1", "fields": { - "question": 361, - "contribution": 1825, - "answer": 1, + "question": 346, + "contribution": 1809, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86eda815-c4ee-4dc6-82df-3ecae0b057fe", + "pk": "6bc24805-a3e0-44e0-87d2-e3559f0fcd81", "fields": { - "question": 348, - "contribution": 3896, + "question": 371, + "contribution": 4204, "answer": 1, - "count": 6 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "86f1b7c5-f087-45de-b03f-c1c9b0fad7b9", + "pk": "6bd5f57b-6b0d-4e67-b4aa-b163cdb7e198", "fields": { - "question": 346, - "contribution": 3517, - "answer": 2, - "count": 3 + "question": 326, + "contribution": 3463, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8723ea6d-2b1a-4302-ad35-41171369e46b", + "pk": "6bd7e842-34f4-4a13-b50e-00ac43614072", "fields": { - "question": 328, - "contribution": 913, - "answer": 2, - "count": 9 + "question": 321, + "contribution": 3721, + "answer": 4, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8734d252-8a0d-4cbc-a24c-74bcc4436ba9", + "pk": "6bd9dcc6-b1a2-4c45-ada3-08433b396599", "fields": { - "question": 353, - "contribution": 1154, - "answer": 4, - "count": 5 + "question": 339, + "contribution": 3486, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "873a662c-e59f-4d33-945d-c8d149eef72a", + "pk": "6be9b618-9558-4157-a697-4e524ea5cd5e", "fields": { - "question": 351, - "contribution": 3440, - "answer": 2, - "count": 3 + "question": 326, + "contribution": 885, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "87445d12-a154-4b73-86d3-315fd9e67ebe", + "pk": "6bedca02-059f-419e-8b18-c1faee6db7d4", "fields": { - "question": 477, - "contribution": 1779, + "question": 255, + "contribution": 3472, "answer": 2, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8747de90-6080-491e-9403-056298f59cfc", + "pk": "6c07aa5e-1bf5-4d64-82da-143e082b99ae", "fields": { - "question": 352, - "contribution": 804, - "answer": 2, + "question": 346, + "contribution": 3796, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "874de2f5-2ebd-4f3b-84b1-04ea4c0110e0", + "pk": "6c082958-a73b-461b-8ab8-6dfb7e1e1433", "fields": { - "question": 316, - "contribution": 3390, + "question": 315, + "contribution": 880, "answer": 5, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "87543c18-120c-4acd-8d1f-088d54798681", + "pk": "6c0f289d-3c71-4ceb-971c-bf614451c88d", "fields": { - "question": 349, - "contribution": 1207, + "question": 337, + "contribution": 3452, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8757b283-11fa-43c7-a647-9194db7ad817", + "pk": "6c1055c8-19c1-4012-ab04-3c7ac6487d58", "fields": { - "question": 345, - "contribution": 4095, - "answer": 1, - "count": 10 + "question": 473, + "contribution": 4120, + "answer": 0, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8758c09b-7ec4-4413-a422-4bc2e70d83da", + "pk": "6c1824eb-b9bb-4b9e-913f-d863aa688028", "fields": { - "question": 347, - "contribution": 4191, - "answer": 4, - "count": 1 + "question": 325, + "contribution": 4047, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "876644d9-a197-4774-9615-690f1280b3a0", + "pk": "6c2a8f60-2dea-45be-bbe1-4b344f0d79ae", "fields": { - "question": 322, - "contribution": 862, - "answer": 1, - "count": 5 + "question": 339, + "contribution": 3404, + "answer": -1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "876cf2a8-f1be-4369-9d4e-723b92131b3c", + "pk": "6c2d1da2-c8b0-4ccb-aa4c-8f2f67594511", "fields": { - "question": 328, - "contribution": 3885, + "question": 370, + "contribution": 1860, "answer": 1, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "877dc1d4-fc95-46a1-9c4f-ef66cb196efe", + "pk": "6c31a41d-e621-40a1-ba2e-984f54558c9e", "fields": { - "question": 346, - "contribution": 1873, - "answer": 1, + "question": 370, + "contribution": 3610, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "87802c04-d998-463f-b6f9-faff9a1c753e", + "pk": "6c321bdf-5bd8-4094-86b5-7b1ebc08de14", "fields": { - "question": 360, - "contribution": 3650, - "answer": 5, + "question": 367, + "contribution": 3406, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8781a43b-17f6-48c1-abd9-c16941e557d0", + "pk": "6c4698b5-5a33-41f2-bc0d-d20c693d98f1", "fields": { - "question": 353, - "contribution": 3545, - "answer": 2, + "question": 343, + "contribution": 1922, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "878fd96f-7532-4c53-ba7e-9a9a7b74adf9", + "pk": "6c49d834-33e6-4f92-8093-9f5af99d6fb5", "fields": { - "question": 335, - "contribution": 1884, - "answer": 1, - "count": 3 + "question": 343, + "contribution": 3451, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8796a3fc-6dc0-4cd2-b8c0-6288bac87fc5", + "pk": "6c4a5a26-784c-41b9-8bad-4028473ffd89", "fields": { - "question": 457, - "contribution": 4283, + "question": 392, + "contribution": 3775, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "879cd4cf-75da-48e1-8599-991a22676bcd", + "pk": "6c4ea87f-9f8d-4033-8f14-f012fe18681b", "fields": { - "question": 362, - "contribution": 1836, - "answer": 4, + "question": 344, + "contribution": 4129, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "87a5db87-33e3-46ce-95dd-d0dea71a4728", + "pk": "6c5f9770-1a8b-44f1-aca3-aa9947401ae0", "fields": { - "question": 361, - "contribution": 1812, - "answer": 5, + "question": 357, + "contribution": 4232, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "87ba471c-a588-4f05-8971-4e130af09578", + "pk": "6c62c5ed-d725-4512-8277-7bd8a166e9e8", "fields": { - "question": 369, - "contribution": 1825, + "question": 476, + "contribution": 1612, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "87be82d9-7b23-4f86-ade7-19eb94473918", + "pk": "6c653cc7-b5f6-4d2c-a5ea-e56ac5024fcf", "fields": { - "question": 368, - "contribution": 1613, - "answer": 5, - "count": 1 + "question": 344, + "contribution": 1206, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "87c571d7-7888-4af7-99d4-0d497492abbb", + "pk": "6c668b02-d66d-47b8-bebb-bedc2bde6126", "fields": { - "question": 475, - "contribution": 4122, - "answer": 0, - "count": 4 + "question": 331, + "contribution": 3434, + "answer": -1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "87cf6cd4-8725-4959-ac8f-d686e5490876", + "pk": "6c6da8f5-24b0-403e-9816-4c2ae1c47a7a", "fields": { - "question": 320, - "contribution": 3665, - "answer": 2, - "count": 5 + "question": 357, + "contribution": 3848, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "87d4defd-3e50-4e29-bfe5-80760d3b7009", + "pk": "6c73605f-bd6b-41ca-aef9-bf3df3129895", "fields": { - "question": 356, - "contribution": 1782, - "answer": 1, - "count": 4 + "question": 326, + "contribution": 1154, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "87eb9c42-25da-4b08-bbda-8402b850c026", + "pk": "6c792295-d5ea-47eb-b7c0-59b6bbe899b3", "fields": { - "question": 338, - "contribution": 1638, - "answer": 5, + "question": 341, + "contribution": 1644, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "87f66c5e-533f-4368-8a02-19d22550567a", + "pk": "6c8f6e56-0be3-4a0a-b105-a711fd7362df", "fields": { - "question": 319, - "contribution": 4022, + "question": 320, + "contribution": 908, "answer": 1, - "count": 1 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "87f78e83-514f-4933-ae94-12286a9f2df4", + "pk": "6c91987d-94c5-4241-b037-cc9c8f9600e7", "fields": { - "question": 315, - "contribution": 880, - "answer": 2, - "count": 12 + "question": 355, + "contribution": 4269, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8800535b-d02b-4a80-80df-c8f54389dc8e", + "pk": "6c9ddb7c-cfd7-4100-8d3b-297a4bb26712", "fields": { - "question": 327, - "contribution": 1778, + "question": 438, + "contribution": 4140, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "880d903d-5ba4-45f0-86e5-d3146e7f11f0", + "pk": "6cc13c74-abc2-4ea7-814f-aa87a3c3f8b7", "fields": { - "question": 476, - "contribution": 880, - "answer": -3, - "count": 2 + "question": 257, + "contribution": 3354, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88112281-d36f-4904-823a-36c010c5c1f2", + "pk": "6cddfeb9-69b0-45e3-b26a-1a9e6397728a", "fields": { - "question": 337, - "contribution": 3727, + "question": 257, + "contribution": 880, "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8815edaf-6b6b-4c19-995e-8f1c840d1252", + "pk": "6ce66794-fa04-4d98-9729-0693520d3349", "fields": { - "question": 446, - "contribution": 4114, + "question": 357, + "contribution": 1784, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8817b23c-20a9-4e5c-84de-a0c425db78fb", + "pk": "6cea6467-9e62-40df-9782-6f59932fd916", "fields": { - "question": 349, - "contribution": 1204, - "answer": 2, + "question": 323, + "contribution": 1724, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "881f4e13-8dc3-411d-8e2a-5467ca90ef36", + "pk": "6cf1029d-badf-415b-9525-6be06bcd3630", "fields": { - "question": 346, - "contribution": 4123, + "question": 357, + "contribution": 4266, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8822228b-6631-484b-86cc-ae3e57b78a31", + "pk": "6cf75fd1-4adf-4fa3-b701-c9d48de96553", "fields": { - "question": 315, - "contribution": 4138, - "answer": 1, - "count": 21 + "question": 472, + "contribution": 858, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "882cb517-0030-492d-8998-f1adcb6870b2", + "pk": "6cf7dae5-d9a3-4525-a9b2-a4d6af5ab88e", "fields": { - "question": 472, - "contribution": 1724, + "question": 353, + "contribution": 3546, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8835ca69-be10-494d-addd-c0e0063ab802", + "pk": "6cf829c0-344e-47ed-b60d-917d2dabb1d4", "fields": { - "question": 320, - "contribution": 3739, - "answer": 1, - "count": 1 + "question": 453, + "contribution": 4185, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8837bd17-0e22-4796-8a7a-cf44fe97b725", + "pk": "6d09d001-8dbb-4768-9235-9b40840a06eb", "fields": { - "question": 473, - "contribution": 4120, + "question": 476, + "contribution": 4138, "answer": -1, - "count": 4 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8839ac2b-add7-4565-a40d-5e1c7bc84fe6", + "pk": "6d13956d-0643-48b2-a893-10d28e2b0819", "fields": { - "question": 475, - "contribution": 3735, - "answer": -2, - "count": 1 + "question": 477, + "contribution": 1635, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8862f77e-2338-42fe-a5b7-de16f19e0b7f", + "pk": "6d14c79d-40d5-4c61-942f-843541fc7d8a", "fields": { - "question": 315, - "contribution": 1658, - "answer": 2, - "count": 3 + "question": 361, + "contribution": 1825, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8863e21f-037e-49a7-bfb5-e5b670083c22", + "pk": "6d1bd9b1-1729-44fd-b091-78822a81cf2e", "fields": { - "question": 346, - "contribution": 1843, - "answer": 1, - "count": 2 + "question": 475, + "contribution": 3727, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "886c9c92-924a-40f6-b3e7-d8ea5552a64b", + "pk": "6d2223e8-e972-4697-a1cd-090ec69ee78f", "fields": { - "question": 472, - "contribution": 3745, - "answer": 5, - "count": 2 + "question": 257, + "contribution": 3725, + "answer": 1, + "count": 23 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88731677-5cb7-460f-98d2-4e33af4f3302", + "pk": "6d24d037-abe7-429e-b33e-f22383e2d9eb", "fields": { - "question": 349, - "contribution": 3822, - "answer": 2, - "count": 3 + "question": 320, + "contribution": 3474, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "887dff43-7dec-4da9-8093-cbd7a3336a1c", + "pk": "6d30f563-1494-47f9-9bd0-49e2b759c39b", "fields": { - "question": 348, - "contribution": 3487, + "question": 340, + "contribution": 3466, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8884387d-697d-49cd-8ddc-a86bc920d7c1", + "pk": "6d3401b7-7371-448e-badd-275b2aebe725", "fields": { - "question": 343, - "contribution": 3704, + "question": 345, + "contribution": 3890, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8889e943-d8eb-4413-8ddd-d49f26b989e8", + "pk": "6d3746cb-93e8-4065-b32b-33f468a52b16", "fields": { - "question": 326, - "contribution": 4047, - "answer": 1, - "count": 9 + "question": 328, + "contribution": 4152, + "answer": 5, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88950d95-4553-428c-b6eb-c6619ddfb982", + "pk": "6d40a44a-3df5-4a99-b229-df0963eb56c9", "fields": { - "question": 317, - "contribution": 4128, - "answer": 2, - "count": 4 + "question": 473, + "contribution": 3679, + "answer": 0, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8896fb1a-b048-445b-8fa1-f621b86af7d4", + "pk": "6d477174-a6a1-4f9b-8c5e-f2af307b3a4a", "fields": { - "question": 463, - "contribution": 4091, - "answer": 4, - "count": 1 + "question": 347, + "contribution": 4191, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88978825-3c7f-4f54-8944-c8cf160ef58c", + "pk": "6d531779-7a20-4340-a032-dd7e46c7be95", "fields": { - "question": 326, - "contribution": 1154, - "answer": 4, - "count": 4 + "question": 325, + "contribution": 3391, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88a47068-557a-4dab-9426-09f14a93790a", + "pk": "6d63f198-a989-4636-933a-b0e7cf2b6682", "fields": { - "question": 344, - "contribution": 3935, - "answer": 3, - "count": 1 + "question": 368, + "contribution": 3722, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88a629eb-2153-4c3b-b921-122507a63411", + "pk": "6d71639e-7735-4c4d-99ba-ef804a19efa6", "fields": { - "question": 335, - "contribution": 3552, - "answer": 2, - "count": 11 + "question": 325, + "contribution": 3726, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88a96d54-326a-494f-9f4a-bdcf0b68a981", + "pk": "6d73e4f6-93de-4e32-8680-8281a837f553", "fields": { - "question": 322, - "contribution": 4100, + "question": 360, + "contribution": 1826, "answer": 3, - "count": 9 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88af7583-42c2-49c9-a51e-4d92bafba71d", + "pk": "6d75e0ef-b05d-4f8f-ace8-f8674dbe13a2", "fields": { - "question": 258, - "contribution": 3406, - "answer": 1, - "count": 4 + "question": 323, + "contribution": 912, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88b70fae-2caf-48f1-acde-e76868c597e5", + "pk": "6d78ef2f-1155-4a43-a193-124498661e0d", "fields": { - "question": 336, - "contribution": 826, + "question": 260, + "contribution": 1837, "answer": 2, + "count": 8 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "6d88a10e-cf71-4a8c-8a83-f3342074cef2", + "fields": { + "question": 258, + "contribution": 4118, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88b78fe2-c184-41ef-ba39-b09d2ed2472b", + "pk": "6d8a135e-af30-4630-a8a9-3fd2e0289405", "fields": { - "question": 368, - "contribution": 3740, - "answer": 5, - "count": 2 + "question": 257, + "contribution": 4128, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88c104bd-e834-409e-83f4-8432ab6b15f7", + "pk": "6d9873a7-1250-42b5-aadf-30fb5b912b94", "fields": { - "question": 356, - "contribution": 1244, - "answer": 1, + "question": 375, + "contribution": 3711, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88c4d93d-bb99-438b-a9b5-1830e4595c76", + "pk": "6d9e26a4-6fb6-439a-a601-886d67cf367f", "fields": { - "question": 323, - "contribution": 3394, + "question": 346, + "contribution": 3373, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88c97719-cae9-450f-a0fe-8de01cd32de8", + "pk": "6da0c045-2ab5-4474-a357-d362a8835978", "fields": { - "question": 335, - "contribution": 837, + "question": 338, + "contribution": 3751, "answer": 1, - "count": 14 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88c98de9-456f-471c-8330-4d5cc2bed841", + "pk": "6db76982-6e52-444b-83c9-7a9d5369a9f0", "fields": { - "question": 347, - "contribution": 3610, + "question": 370, + "contribution": 3607, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88d2676d-4800-4b23-96f9-b2a281537c47", + "pk": "6dc6b092-2c55-4c96-8e15-dcd85f3d82ee", "fields": { - "question": 337, - "contribution": 4094, - "answer": 2, + "question": 323, + "contribution": 1680, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88da6822-4cca-4d3d-9632-cd150a555542", + "pk": "6dcf5948-3b31-4bd2-9ced-f570a8717c52", "fields": { - "question": 329, - "contribution": 3391, - "answer": 5, - "count": 3 + "question": 255, + "contribution": 3721, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88dc01ca-1ace-49a8-880a-03381b59e6cb", + "pk": "6dd4c3a9-514e-4b9f-8b86-04006180bdc0", "fields": { - "question": 354, - "contribution": 3529, - "answer": 1, - "count": 3 + "question": 320, + "contribution": 3739, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88dffd57-0863-45ae-8889-75bf55b336dc", + "pk": "6dec29ef-f4e9-41ab-a7ce-2d37859cd869", "fields": { - "question": 340, - "contribution": 3508, - "answer": 3, - "count": 1 + "question": 477, + "contribution": 1287, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88e34a9f-9107-4f41-80b6-721a457402fb", + "pk": "6dfc555d-056a-4368-94b9-d47073eb3c00", "fields": { - "question": 315, - "contribution": 1680, - "answer": 2, + "question": 260, + "contribution": 822, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88ea44b7-6e79-4cb8-824a-7b0ac608d7e4", + "pk": "6dfd5b28-2b6f-4a2e-8a88-58ba80bbcf1a", "fields": { - "question": 395, - "contribution": 3711, - "answer": 2, + "question": 476, + "contribution": 1658, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88f043a0-f1ed-4770-960a-5cc70c47214b", + "pk": "6dff2bab-405c-4f3a-999d-7921c96eeb47", "fields": { - "question": 328, - "contribution": 1779, - "answer": 5, - "count": 1 + "question": 320, + "contribution": 3462, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "88f5d910-e511-4116-9eb6-818073b93ff4", + "pk": "6e0ca71c-f996-400d-a304-d850fb471ee3", "fields": { - "question": 436, - "contribution": 4052, - "answer": 2, - "count": 1 + "question": 317, + "contribution": 3434, + "answer": 1, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8900348d-4693-47a2-88b8-c57ae1d707be", + "pk": "6e0f51e1-9c2e-43f2-9261-cdeb4bf15cc1", "fields": { - "question": 345, - "contribution": 1880, + "question": 344, + "contribution": 3487, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89031328-6d00-40e4-90dc-a6392b9ddcaf", + "pk": "6e1334f4-6016-460d-ae4e-d37aaebe5452", "fields": { "question": 475, - "contribution": 3693, - "answer": 0, + "contribution": 3466, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8905efde-fc5c-4d72-934d-94d060fc8291", + "pk": "6e1504ef-4159-448b-b469-ae49503d54ef", "fields": { - "question": 343, - "contribution": 1204, - "answer": 2, - "count": 2 + "question": 338, + "contribution": 4036, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "890b789c-9c16-45be-a6e9-e48c598ce4cb", + "pk": "6e16eaca-e2ca-4eb0-ad1a-3f5742b7ac29", "fields": { - "question": 473, - "contribution": 3723, + "question": 340, + "contribution": 3508, "answer": 1, - "count": 2 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "891341a5-9322-48c0-b8e9-986ddfea126e", + "pk": "6e17d5bd-3e09-4c6c-8362-23286c97abd9", "fields": { - "question": 262, - "contribution": 3406, + "question": 326, + "contribution": 1725, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8919c5f2-34fa-4955-8388-f23a6e686063", + "pk": "6e1e411f-4c99-41c3-bbad-2041c043c22c", "fields": { - "question": 351, - "contribution": 3454, - "answer": 5, - "count": 1 + "question": 323, + "contribution": 1668, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "892d10a8-2d5f-4fb5-911c-cb95efa67679", + "pk": "6e1f2b77-bf3d-4bbb-8607-9a793f2ece40", "fields": { - "question": 340, - "contribution": 3486, - "answer": 2, - "count": 7 + "question": 316, + "contribution": 3390, + "answer": 4, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "893d03bd-170d-4648-999a-1570b80d2cfa", + "pk": "6e24195a-1cc9-43d9-8024-59ee8b19a108", "fields": { - "question": 258, - "contribution": 1680, - "answer": 4, - "count": 1 + "question": 345, + "contribution": 1202, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "894b5703-67b9-4f6e-adf5-6a1a47342f03", + "pk": "6e311725-f6c6-4a81-92f6-cc249f97aafe", "fields": { - "question": 339, - "contribution": 1694, - "answer": -2, + "question": 321, + "contribution": 880, + "answer": 5, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "6e37cd6c-eff1-4b94-b256-c46b29a5014c", + "fields": { + "question": 326, + "contribution": 823, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8956e401-ac8e-4cce-a37c-7fb6951c5c4a", + "pk": "6e3dccd1-1506-4e75-8d28-e2899972326f", "fields": { - "question": 362, - "contribution": 3653, - "answer": 2, + "question": 473, + "contribution": 3404, + "answer": -1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "895d4b99-ff9c-4b09-b64f-347372e44ba4", + "pk": "6e48431c-5f24-4a3f-a765-446c22772029", "fields": { - "question": 475, - "contribution": 1694, + "question": 257, + "contribution": 3665, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89682a09-a480-4c3c-9ebe-1a9b2d076007", + "pk": "6e4f0489-9182-48d7-a869-7dee3f8a43b7", "fields": { - "question": 475, - "contribution": 3727, - "answer": 0, - "count": 5 + "question": 259, + "contribution": 3390, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89749339-5462-4450-b79e-cdb1ddc127c9", + "pk": "6e52cec2-1e24-4675-992d-2c0c1322d313", "fields": { - "question": 336, - "contribution": 1660, - "answer": 3, - "count": 1 + "question": 347, + "contribution": 3373, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "897b70d0-07d8-422e-89cd-3f1b4bfe422f", + "pk": "6e572cd4-e09e-4c2c-b250-e948fcb872ea", "fields": { - "question": 477, - "contribution": 1776, - "answer": 2, - "count": 8 + "question": 345, + "contribution": 3546, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "897ddc58-dc53-47e2-9b08-bf57c1202427", + "pk": "6e586ad5-0279-419b-a6b6-ba1395308b37", "fields": { - "question": 327, - "contribution": 3859, - "answer": 3, + "question": 260, + "contribution": 4120, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89834a17-7293-49fd-9146-0e7f45554ff1", + "pk": "6e5ec00f-968c-4783-a7b9-e51141061d44", "fields": { - "question": 388, - "contribution": 3775, - "answer": 1, - "count": 5 + "question": 473, + "contribution": 3486, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8986b097-f0dc-45d2-b32f-53e08d106dfb", + "pk": "6e62c7da-7022-4c83-a68d-a3a62426f581", "fields": { - "question": 347, - "contribution": 1249, - "answer": 2, + "question": 353, + "contribution": 4268, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "898f092f-e893-4a6b-9384-c3e0312fb066", + "pk": "6e6711d8-86c2-4a9a-b9b6-4e8f1e286d7e", "fields": { - "question": 259, - "contribution": 3390, - "answer": 2, - "count": 7 + "question": 370, + "contribution": 3529, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89918a89-ba62-4a6f-872f-6122a98c0186", + "pk": "6e694b72-8dd1-401e-97ea-54fd5ca0993a", "fields": { - "question": 332, - "contribution": 3592, + "question": 346, + "contribution": 3545, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89921109-d994-494d-9e33-5668fdf4bc9f", + "pk": "6e70b34f-362d-4bf2-98b8-412e9080b164", "fields": { - "question": 338, - "contribution": 1660, - "answer": 4, - "count": 1 + "question": 329, + "contribution": 3473, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89966ad2-f54f-4390-810f-f7f376bcc912", + "pk": "6e922047-3955-410a-ab33-bd57f7559ff3", "fields": { - "question": 333, - "contribution": 4155, + "question": 359, + "contribution": 1810, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8998cbc0-1a37-4757-972d-c0efec6455d2", + "pk": "6e9f6c24-68fd-441f-a66a-122bffea0eb3", "fields": { - "question": 362, - "contribution": 3648, - "answer": 3, - "count": 1 + "question": 339, + "contribution": 4094, + "answer": 0, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8999ff7b-38c9-4fe0-b235-4fcb1a222a6c", + "pk": "6eb499c6-603f-4120-8371-474aef91eb35", "fields": { - "question": 392, - "contribution": 3755, - "answer": 1, + "question": 257, + "contribution": 3354, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89a41fe3-9da6-40c2-abcc-2de3d026022d", + "pk": "6eb626ef-e9ae-4fd9-9598-027b6ff2402d", "fields": { - "question": 476, - "contribution": 4022, - "answer": -3, - "count": 1 + "question": 368, + "contribution": 3463, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89a4fe03-2778-45c9-a744-3faabe383b41", + "pk": "6eb9fa15-6c42-41c0-b6db-23ed2e9d748c", "fields": { - "question": 436, - "contribution": 4090, - "answer": 4, + "question": 348, + "contribution": 4129, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89c722f9-a8e9-4424-9d1e-eb36949c1571", + "pk": "6ebda4f4-35fd-457c-b11e-1adcb87293c0", "fields": { - "question": 477, - "contribution": 1802, - "answer": -1, - "count": 2 + "question": 356, + "contribution": 4268, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89c8139f-b4e1-4cca-a2aa-8644ff586b03", + "pk": "6ec888bb-d824-4cb8-b58c-3becd0a76b99", "fields": { - "question": 360, - "contribution": 3919, + "question": 326, + "contribution": 3589, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89ced0c1-1d49-4930-a950-36e558bd2bcc", + "pk": "6ed16c9d-db84-4681-aaf2-f61c0ea6c155", "fields": { - "question": 362, - "contribution": 3597, + "question": 262, + "contribution": 3739, "answer": 3, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "89debe2b-704f-4d7e-9975-a856aa39f19c", - "fields": { - "question": 316, - "contribution": 880, - "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89e45141-0e5c-4443-a334-1f649419e10d", + "pk": "6ed1fa48-79ff-4f39-8813-9e958c806584", "fields": { - "question": 260, - "contribution": 3679, + "question": 328, + "contribution": 1778, "answer": 2, - "count": 10 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89e6967e-4e13-4cda-8f12-5e9bfdec54f9", + "pk": "6ed69a8b-6d89-42a2-b7f9-2b326c929934", "fields": { - "question": 337, - "contribution": 4052, + "question": 436, + "contribution": 4140, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89e72a19-4ddc-4c30-b61e-ae69c0973864", + "pk": "6ede0145-7a1a-45f2-a9ba-092062cc5661", "fields": { - "question": 394, - "contribution": 3775, + "question": 329, + "contribution": 1287, "answer": 2, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89f060fa-1db6-4cdb-9b57-53dbbc5b93d8", + "pk": "6edf51fd-b1c0-495d-91eb-849dd6cd43d7", "fields": { - "question": 255, - "contribution": 3390, + "question": 360, + "contribution": 3597, "answer": 1, - "count": 8 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89f19433-3a2b-43c6-9958-6d4952fa3eb1", + "pk": "6ee7e4c5-7fef-4a21-9cdb-90222f6da6c3", "fields": { - "question": 321, - "contribution": 3739, - "answer": 2, - "count": 3 + "question": 437, + "contribution": 4140, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "89fb2ceb-3ddf-4b51-bf00-73c699a5e399", + "pk": "6ef0ab4e-e5fe-49b5-9e49-abf271ea001d", "fields": { - "question": 340, - "contribution": 1200, + "question": 368, + "contribution": 1669, "answer": 1, - "count": 27 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a029370-bb8b-4371-8cc7-9cce0e841aa9", + "pk": "6ef4d958-348f-4c8c-ac81-ba9d0ba060e2", "fields": { - "question": 320, - "contribution": 884, - "answer": 4, + "question": 325, + "contribution": 1779, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a0861a1-7ea3-4920-addb-44cf27b7d513", + "pk": "6ef607ff-df48-45ea-9c89-2dfce61e58f7", "fields": { - "question": 327, - "contribution": 3722, - "answer": 2, - "count": 4 + "question": 346, + "contribution": 3822, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a092140-ee73-420a-a561-4c2c48cdbe32", + "pk": "6ef77408-4c46-4df4-bd15-1029a689229c", "fields": { - "question": 475, - "contribution": 1660, + "question": 346, + "contribution": 919, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a0d7f46-72bf-431c-9875-505007d2a142", + "pk": "6ef9ed10-e11c-44ae-97bf-ebb3d495ff63", "fields": { - "question": 255, - "contribution": 884, + "question": 317, + "contribution": 1612, "answer": 2, - "count": 11 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a10e70b-397a-4192-907a-03382f105a51", + "pk": "6efb3e37-bf61-4723-824d-cb368670712e", "fields": { - "question": 356, - "contribution": 1243, - "answer": 1, - "count": 5 + "question": 317, + "contribution": 912, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a1461e9-3e5f-4ad0-b95d-0a493ae8ed0f", + "pk": "6f04d268-937c-4aa2-a9ed-f730cb0ce5f4", "fields": { - "question": 349, - "contribution": 1663, + "question": 357, + "contribution": 3923, "answer": 1, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a1ce3c6-c993-48d0-a2cf-b97900e7f0c2", + "pk": "6f06e129-1a52-4f55-b48b-1ebddb314237", "fields": { - "question": 341, - "contribution": 3454, - "answer": 2, + "question": 325, + "contribution": 3726, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a207531-761d-49db-aced-6d2b089762fb", + "pk": "6f12a237-df5c-46d5-af80-668e1aa11cf0", "fields": { - "question": 353, - "contribution": 4268, - "answer": 3, - "count": 1 + "question": 356, + "contribution": 1783, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a269bd8-e81e-49cf-a7ab-f8bc42b3879e", + "pk": "6f135488-54cb-4380-b6d6-64b274b7a6da", "fields": { - "question": 366, - "contribution": 3882, + "question": 346, + "contribution": 4146, "answer": 1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a2a7563-1335-415c-9c06-9fca25c79923", + "pk": "6f150344-a831-4df8-aab1-368ec7b039db", "fields": { - "question": 343, - "contribution": 3934, - "answer": 1, - "count": 2 + "question": 347, + "contribution": 1204, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a2b5989-bd58-4483-b566-5e9c9339528f", + "pk": "6f192425-0599-4ab7-8e45-bf11b07ffc27", "fields": { - "question": 337, - "contribution": 858, + "question": 349, + "contribution": 1749, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a3329a9-8ab6-4da9-af21-9f47625e69f5", + "pk": "6f1e67db-faf2-4766-ba4b-1fcb2decaecb", "fields": { - "question": 320, - "contribution": 4084, - "answer": 4, - "count": 5 + "question": 325, + "contribution": 3519, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a3bedba-c30a-41dc-9d07-59701b060b0e", + "pk": "6f217320-870a-47df-b008-1ad9fbaa05b9", "fields": { - "question": 348, - "contribution": 4129, + "question": 357, + "contribution": 3832, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a412b08-b49e-4448-a5d3-d8b1ab44770e", + "pk": "6f22937a-65d2-4553-a791-68eaee35b776", "fields": { - "question": 331, - "contribution": 3462, - "answer": 2, + "question": 356, + "contribution": 4271, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a427913-6808-4d64-9543-59a1a2092dbc", + "pk": "6f429420-eacc-42d6-923b-2243f7b3d3cd", "fields": { - "question": 432, - "contribution": 4140, - "answer": 3, - "count": 3 + "question": 255, + "contribution": 1626, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a4f9c51-36a9-430a-9eb5-7382965df371", + "pk": "6f44bf01-c313-4bc1-a462-a30ac965ef06", "fields": { - "question": 472, - "contribution": 3745, + "question": 325, + "contribution": 3435, "answer": 1, - "count": 1 + "count": 36 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a55e399-7bb7-4b57-bf03-b63537943efb", + "pk": "6f603915-77c2-4954-898a-2557a126df61", "fields": { - "question": 332, - "contribution": 3631, + "question": 369, + "contribution": 1806, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a571bf7-3ef2-4801-92db-2ea2245cd9f5", + "pk": "6f6356c8-211c-47a2-a7e6-afa7bee485bf", "fields": { - "question": 319, - "contribution": 4116, - "answer": 5, - "count": 7 + "question": 477, + "contribution": 1617, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a575aa5-82cc-4a14-9118-c965d1f7872a", + "pk": "6f642366-d3fd-4fd8-8c43-d3b46ad1a555", "fields": { - "question": 337, - "contribution": 4002, - "answer": 2, - "count": 2 + "question": 357, + "contribution": 3831, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a5f84c0-db2f-47ef-8060-d6515c01b080", + "pk": "6f6db93d-a358-4db2-8591-bee7cec9779f", "fields": { - "question": 323, - "contribution": 3739, - "answer": 1, + "question": 255, + "contribution": 1612, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a61250c-a09f-4a65-95c8-e5412455cc4d", + "pk": "6f6ded58-3861-436d-a716-dee980591ab7", "fields": { - "question": 475, - "contribution": 804, - "answer": 1, - "count": 1 + "question": 329, + "contribution": 4117, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a6dcb96-63f9-43cb-b59a-817990edd339", + "pk": "6f7e32a1-1a81-4a02-b008-b097d279cc8d", "fields": { - "question": 326, - "contribution": 3423, - "answer": 1, - "count": 9 + "question": 369, + "contribution": 1836, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a73fae1-382c-407b-bdc4-b0a799386ccc", + "pk": "6f7ea85b-801a-4f57-847c-a6f834cf54d7", "fields": { - "question": 354, - "contribution": 4279, - "answer": 5, - "count": 1 + "question": 477, + "contribution": 3530, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a864da0-9b06-4c71-9937-6c1a63e7b593", + "pk": "6f7fa6bb-71bc-4653-a2ad-c005fc207115", "fields": { - "question": 347, - "contribution": 4123, - "answer": 2, + "question": 326, + "contribution": 4023, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a8761ee-0302-44ad-8545-546ad1f5b460", + "pk": "6f8c7a34-d08c-4ed5-b961-e44db5e56a26", "fields": { - "question": 368, - "contribution": 1776, - "answer": 1, - "count": 19 + "question": 339, + "contribution": 3745, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a8a9636-c5f8-42c8-9d24-c566fb73f2f8", + "pk": "6f972b7c-5197-498c-8e23-f83c37c41fb1", "fields": { - "question": 402, - "contribution": 4177, + "question": 338, + "contribution": 1702, "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8a961e9a-d943-44c9-930a-1469d993f0fd", + "pk": "6fa7203b-6ce0-457c-a3b4-ffa769828a72", "fields": { - "question": 328, - "contribution": 4117, - "answer": 4, + "question": 349, + "contribution": 4190, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8aab9418-a765-448c-9880-4c5d4ef83dd0", + "pk": "6faa2177-6a0a-46c9-8312-71e0fc29481e", "fields": { - "question": 361, - "contribution": 3653, - "answer": 2, - "count": 2 + "question": 344, + "contribution": 1205, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ab387c8-c41d-433c-a0cc-d2cf59c6ea28", + "pk": "6faab696-036a-4396-97d5-f978cc751589", "fields": { - "question": 348, - "contribution": 4223, - "answer": 1, + "question": 412, + "contribution": 4038, + "answer": 0, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "6fbbb3f6-0361-461e-8d1e-feef5bb2b644", + "fields": { + "question": 346, + "contribution": 3935, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ab59441-4741-4a9f-9fde-3efd7348afc4", + "pk": "6fc15263-376a-4206-b9f1-3a0cf1f655bd", "fields": { - "question": 328, - "contribution": 913, - "answer": 4, - "count": 1 + "question": 477, + "contribution": 3885, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8abb474f-7be4-4a77-b66b-46d007a8627a", + "pk": "6fc24d88-0519-4e7c-b999-1deb2a08890b", "fields": { - "question": 257, + "question": 317, "contribution": 3434, "answer": 4, "count": 1 @@ -47596,21559 +58113,21609 @@ }, { "model": "evaluation.ratinganswercounter", - "pk": "8abebe72-e05c-4651-8ce0-ec6167c34bf6", + "pk": "6fc250e3-2d4f-48c5-b579-3b59015ec5f9", "fields": { - "question": 345, - "contribution": 4003, - "answer": 2, - "count": 2 + "question": 349, + "contribution": 1874, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8acd2c40-0d73-4e72-a8e6-7dcc2763bb68", + "pk": "6fc504a2-745c-46bf-98c2-d1ad7dafa672", "fields": { - "question": 338, - "contribution": 862, - "answer": 2, - "count": 2 + "question": 402, + "contribution": 4148, + "answer": 1, + "count": 25 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ae1d6aa-435b-424f-a1a6-bd4d231be751", + "pk": "6fc6edc2-145d-4e90-8690-e7fece52ffa6", "fields": { - "question": 328, - "contribution": 1186, + "question": 472, + "contribution": 832, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ae33ade-6c44-4d67-9327-2229ae74cbe2", + "pk": "6fd49ecf-c6eb-400d-ab11-6d8fdb190683", "fields": { - "question": 356, - "contribution": 1849, - "answer": 4, + "question": 357, + "contribution": 4039, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ae459bb-2878-4a8c-b3a3-e877a5f87d81", + "pk": "6fe1f17c-82d3-4175-ab2a-a30b8753b458", "fields": { - "question": 331, - "contribution": 880, - "answer": -2, - "count": 1 + "question": 477, + "contribution": 3859, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8af8a286-7769-4bfe-9d43-bdcd197729a1", + "pk": "6fe660bf-8bb7-4b33-aa02-1d0838c53b17", "fields": { - "question": 333, - "contribution": 3553, - "answer": 2, - "count": 11 + "question": 369, + "contribution": 3648, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b066336-d4cf-4caf-96b3-aace4ffa58e7", + "pk": "6ff32ef7-d352-440e-a2fb-c83a67de418b", "fields": { - "question": 338, - "contribution": 3450, - "answer": 5, - "count": 1 + "question": 322, + "contribution": 3406, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b1b48da-3c6f-4ad3-add4-3d23242b038d", + "pk": "6ffc52b9-a544-41da-b97c-06b5e720317e", "fields": { - "question": 336, - "contribution": 3404, - "answer": 2, + "question": 476, + "contribution": 1612, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b1e9332-31eb-44b0-a145-65c242c3b67d", + "pk": "700f9b82-d108-4160-aa38-c1ca220b93ef", "fields": { - "question": 360, - "contribution": 3917, - "answer": 1, - "count": 2 + "question": 356, + "contribution": 3609, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b1ecd18-bd24-4039-88f0-5b81fec4012b", + "pk": "70288bbb-9a1b-4d89-b420-6f7eaf1eab6e", "fields": { - "question": 323, - "contribution": 880, + "question": 327, + "contribution": 3722, "answer": 3, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b1ecf6e-a5c9-4c1f-b08c-2ee0d622c434", + "pk": "702bda76-395d-472a-9731-f63a48b61318", "fields": { - "question": 327, - "contribution": 3740, + "question": 323, + "contribution": 862, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b273f2a-cedc-4cb3-8344-fd6fb9d40eba", + "pk": "702e0197-11eb-4367-a1c1-df73ce0f74c4", "fields": { - "question": 335, - "contribution": 1217, + "question": 477, + "contribution": 3391, "answer": 2, - "count": 4 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b29141a-cee5-4238-843a-bf199c170182", + "pk": "704d17cd-2f5d-41ee-aa0c-38c4fe474a96", "fields": { - "question": 319, - "contribution": 3679, - "answer": 3, - "count": 2 + "question": 396, + "contribution": 3775, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b319715-7694-436d-a0b5-872b12e77ef8", + "pk": "7057a6e6-14c5-4247-ad52-c4da5d85d58e", "fields": { - "question": 345, - "contribution": 3373, + "question": 333, + "contribution": 3552, "answer": 2, - "count": 4 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b32e43c-80f0-4472-b3f6-04a2a3e8f6ae", + "pk": "707d2a5f-1567-494d-b0f0-48d54ec0cd05", "fields": { - "question": 315, - "contribution": 1658, + "question": 368, + "contribution": 3666, "answer": 1, - "count": 12 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b447af6-71ca-4761-bb9e-83ce94e170bb", + "pk": "707edc48-8090-49cd-8ded-407834550223", "fields": { - "question": 323, - "contribution": 3354, - "answer": 3, - "count": 2 + "question": 363, + "contribution": 1808, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b4c87ea-c69b-471d-87ab-82da5dfd2b5c", + "pk": "708f3e37-4067-40d3-90d4-1dd7de3c1ecd", "fields": { - "question": 260, - "contribution": 880, + "question": 414, + "contribution": 4038, "answer": 2, - "count": 8 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b56a413-bc6f-4620-bae6-4adaabb8ddb9", + "pk": "709388a5-7300-4cb0-9ca1-3f835026cc57", "fields": { - "question": 258, - "contribution": 3474, + "question": 459, + "contribution": 4283, "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b5fd32b-78c8-4ec5-9c32-f83e55608a49", + "pk": "709bc1c3-9d98-46da-86f3-07c89d770f56", "fields": { - "question": 319, - "contribution": 912, - "answer": 3, - "count": 5 + "question": 327, + "contribution": 4117, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b615502-7382-4743-8351-6df2e63d2094", + "pk": "709d1c59-cea7-4b4b-a537-7c26818f6310", "fields": { - "question": 336, - "contribution": 3745, - "answer": 1, + "question": 255, + "contribution": 4128, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b671cf7-fb2e-4960-aa8b-fbf5c5bc2eaf", + "pk": "709f0d02-7e3f-44d8-a432-f45226079c5b", "fields": { - "question": 257, - "contribution": 3434, - "answer": 1, - "count": 30 + "question": 343, + "contribution": 1207, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b738946-3e71-4dd7-a0c2-4d3606f938f2", + "pk": "70a83aa8-6996-43e3-b409-4c104702e48b", "fields": { - "question": 333, - "contribution": 3593, - "answer": 2, - "count": 3 + "question": 343, + "contribution": 1202, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b7397fc-28c7-4b42-846b-3d1bf2550b81", + "pk": "70bb0380-51d2-4f67-a4db-2076ddeca23d", "fields": { - "question": 347, - "contribution": 1663, - "answer": 2, - "count": 1 + "question": 323, + "contribution": 912, + "answer": 1, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b77f247-19b3-4dd0-8fbd-55f5d414f6e2", + "pk": "70ca994a-b086-447f-ad77-cc61c8523a37", "fields": { - "question": 323, - "contribution": 3474, - "answer": 4, - "count": 2 + "question": 343, + "contribution": 1228, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b81030c-2536-4213-9f0b-d13d4364a12a", + "pk": "70d62ad3-8c2d-48aa-a5b9-b9b9aedcfeb4", "fields": { - "question": 322, - "contribution": 4138, - "answer": 5, + "question": 321, + "contribution": 862, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b8dd010-96d5-4eed-8514-465069bee30e", + "pk": "70e2dc8e-62ad-4742-9c03-4e43ec5e69e1", "fields": { - "question": 323, - "contribution": 3683, - "answer": 2, - "count": 3 + "question": 255, + "contribution": 1680, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b8e9f34-7eeb-4aec-8e5f-a8ce6b1f215b", + "pk": "70e92714-2b57-47b2-9e57-6c408318ab19", "fields": { - "question": 359, - "contribution": 3921, + "question": 473, + "contribution": 4038, "answer": 2, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8b91353a-2b8c-4124-8bf2-23c0681ef7c2", + "pk": "70ec31f1-c56c-4413-9e49-acc0e653bc32", "fields": { - "question": 329, - "contribution": 3391, - "answer": 2, + "question": 356, + "contribution": 3529, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8bb37dc1-f368-4493-95bd-ab8ce808edd2", + "pk": "70f04270-7faa-4197-b792-b1dba90bd922", "fields": { - "question": 348, - "contribution": 3939, - "answer": 3, - "count": 1 + "question": 331, + "contribution": 1634, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8bbb4fc5-821c-464a-8cd8-cb8923dfe372", + "pk": "70f3a015-2b40-4c2f-8497-e16314a8ef47", "fields": { - "question": 472, - "contribution": 1644, + "question": 350, + "contribution": 788, + "answer": 4, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "70f633e7-7e1c-49f2-8d18-877e8c551fc3", + "fields": { + "question": 366, + "contribution": 3551, "answer": 1, - "count": 1 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8bbf103d-2c64-4d85-8e1f-a685d79a9754", + "pk": "70f75102-580d-4221-8a71-265679620e46", "fields": { - "question": 255, - "contribution": 3739, - "answer": 3, + "question": 331, + "contribution": 884, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8bc1fbe5-b425-4864-aafe-0e9e983d11c8", + "pk": "70f81c82-d70b-44e7-9487-20282425cf15", "fields": { - "question": 339, - "contribution": 3486, - "answer": 2, - "count": 2 + "question": 367, + "contribution": 4120, + "answer": 1, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8bcdbea1-42e7-445f-8eb5-cc0c51dee543", + "pk": "70fe5081-1c08-4296-b1f5-78e6b8df1165", "fields": { - "question": 325, - "contribution": 1779, - "answer": 5, + "question": 326, + "contribution": 1635, + "answer": 3, + "count": 5 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "70fe9dc8-d92b-4e0b-a653-9e9feb6f230b", + "fields": { + "question": 316, + "contribution": 3394, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8bcf6ee9-8293-4724-bcfe-a396aa3f77bd", + "pk": "7105416d-a2ab-4a4e-9d39-c65890671775", "fields": { - "question": 475, - "contribution": 3466, - "answer": 1, + "question": 368, + "contribution": 1776, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8bd9e727-f1f6-406d-8894-fff08a236d3d", + "pk": "710e6bad-be12-4470-8e09-1d1dccdc1741", "fields": { - "question": 432, - "contribution": 4052, - "answer": 1, + "question": 257, + "contribution": 3739, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8bda47a8-267f-438c-95d4-23e0d3229ae3", + "pk": "710ee401-59ab-47e6-80ab-5db9158cfe24", "fields": { - "question": 370, - "contribution": 3607, - "answer": 3, - "count": 1 + "question": 476, + "contribution": 1837, + "answer": -1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8bdb79fb-8f32-4254-9302-0a9fb5de61c3", + "pk": "71127c72-5457-4d84-8d31-e1580e48a1b1", "fields": { - "question": 319, - "contribution": 4046, + "question": 343, + "contribution": 3526, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8be10540-d295-404d-850b-9cd75f777b9f", + "pk": "71196587-6b6f-4d0a-aaf8-0d5f57a8c05e", "fields": { - "question": 332, - "contribution": 4156, - "answer": 4, - "count": 1 + "question": 325, + "contribution": 1154, + "answer": 1, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8bef46b4-17eb-4f6c-b376-ee45f44f9406", + "pk": "7128e4fc-61ed-411d-b54b-d82c71143b94", "fields": { - "question": 329, - "contribution": 3684, + "question": 327, + "contribution": 1298, "answer": 1, - "count": 2 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8bf0e3dd-3642-4e22-a2fe-6927da2df670", + "pk": "713782a9-9d06-4628-a706-5562a98f0218", "fields": { - "question": 333, - "contribution": 1284, - "answer": 2, - "count": 1 + "question": 260, + "contribution": 4084, + "answer": 3, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8bf1f3b8-0712-4c19-9f1e-16272ef017c8", + "pk": "71397723-3697-41ad-a448-375f633b4177", "fields": { - "question": 258, - "contribution": 3354, - "answer": 1, - "count": 20 + "question": 329, + "contribution": 1681, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8bf79f9a-d80a-4287-826f-f252655f44b1", + "pk": "713f3a89-d1f6-4e3e-a2c3-58cc203c73ea", "fields": { - "question": 258, + "question": 317, "contribution": 4028, - "answer": 4, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c067649-6f72-4395-8a9a-3108a77d9c85", + "pk": "714c0e1a-2053-49da-9d43-9cb8f7e04cc6", "fields": { - "question": 337, - "contribution": 886, + "question": 462, + "contribution": 4073, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c0ee1b5-3c9a-4ed2-9e8d-44841c5bdd95", + "pk": "714d9018-7a6f-4fca-b34f-91a77378a6f7", "fields": { - "question": 477, - "contribution": 3680, + "question": 338, + "contribution": 1702, "answer": 3, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c15d6f4-f596-4e7c-bd67-477db06760b9", + "pk": "715e0c7f-43e1-4acb-93f7-ddd2349a4d04", "fields": { - "question": 328, - "contribution": 1802, - "answer": 2, - "count": 10 + "question": 255, + "contribution": 836, + "answer": 1, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c19f746-7c67-4604-a1bc-7c57dd84578f", + "pk": "716f0a98-ef90-4d64-8da1-4f471b015982", "fields": { - "question": 346, - "contribution": 3606, - "answer": 4, + "question": 345, + "contribution": 1842, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c233826-5654-4318-b3a7-64e5a9b81aaa", + "pk": "71781ff1-c23f-4b46-8325-0551f0e6c126", "fields": { - "question": 1, - "contribution": 4303, - "answer": 4, - "count": 3 + "question": 316, + "contribution": 3679, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c2e1c08-48f9-4d41-a802-959a85c62f8c", + "pk": "718b8bf5-6003-42bc-8a1b-3c7c0dbc6e14", "fields": { - "question": 361, - "contribution": 3650, - "answer": 5, + "question": 372, + "contribution": 3394, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c33be39-a002-42f7-9c0b-86b41e79707b", + "pk": "718ce50b-eafb-453d-8e90-e86167db44cc", "fields": { - "question": 345, - "contribution": 3912, + "question": 346, + "contribution": 3610, "answer": 1, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "8c349160-3616-4efc-8e2a-721ab899a93d", - "fields": { - "question": 257, - "contribution": 3474, - "answer": 4, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c36045f-ee46-40d6-9c99-0634c1e3a041", + "pk": "71969e52-6b0b-429c-82ae-f17865ca82d8", "fields": { - "question": 475, - "contribution": 1640, - "answer": 0, + "question": 368, + "contribution": 3519, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c3823e2-32da-4584-b373-b3ce7ac81e98", + "pk": "71a235be-4ecc-445d-9470-f7a5f288f332", "fields": { - "question": 328, - "contribution": 1798, + "question": 343, + "contribution": 4223, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c3a028f-e40b-4527-b45d-eeac83a5ff53", + "pk": "71b1a1bc-d484-4dbf-bbec-cc6f1ca7b4eb", "fields": { - "question": 319, - "contribution": 4084, + "question": 337, + "contribution": 3727, "answer": 1, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c51b00f-6054-4abf-b075-5471d58c7ddb", + "pk": "71b7624a-d0c4-4bb9-8ac4-e25044037dfb", "fields": { - "question": 347, - "contribution": 3518, - "answer": 1, - "count": 3 + "question": 339, + "contribution": 1662, + "answer": 0, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c52b4ed-1b99-480d-8830-eaedd2c10c59", + "pk": "71c21ed5-1693-4c96-b56a-c9f0c79d94b1", "fields": { - "question": 356, - "contribution": 1849, - "answer": 1, + "question": 361, + "contribution": 3921, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c531b53-63ac-4849-b4fe-7fa6eeb6af1f", + "pk": "71c58be4-7c0b-46d3-92b1-07c0d3db7387", "fields": { - "question": 327, - "contribution": 3740, + "question": 332, + "contribution": 3592, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c5aeb24-0f79-4b67-9510-926d919f8254", + "pk": "71cccf2a-3d2f-423c-bead-487857c7a424", "fields": { - "question": 473, - "contribution": 1694, - "answer": -3, - "count": 1 + "question": 326, + "contribution": 885, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c6e2f3a-1871-49a6-a539-ffacf03abe07", + "pk": "71d7f358-c2b5-4a0f-853c-07e8294bce7c", "fields": { - "question": 341, - "contribution": 3703, - "answer": 2, - "count": 3 + "question": 343, + "contribution": 3545, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c7630e7-173c-4164-8f0d-b08bac1fe112", + "pk": "71e527ec-867f-479f-abd6-d64f454ad446", "fields": { - "question": 337, - "contribution": 1660, - "answer": 3, + "question": 347, + "contribution": 3405, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c847d38-8b6a-47a0-8383-ab887f20ae0c", + "pk": "71e820ee-5e76-4a8d-bfcf-9dc4518f2b4f", "fields": { - "question": 361, - "contribution": 1835, - "answer": 4, - "count": 1 + "question": 351, + "contribution": 894, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c8698ca-e916-41c8-a5ba-97ab4c3eaef4", + "pk": "71eb3ed4-14fd-433e-933e-fe75b04088bb", "fields": { - "question": 472, - "contribution": 788, - "answer": 1, + "question": 329, + "contribution": 909, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c876c5b-538b-4d41-a31f-cc11c7489f5b", + "pk": "71f7840d-8d4c-41d0-a5ae-aab27f9e071e", "fields": { - "question": 396, - "contribution": 3781, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 3435, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c9a8ab7-b0d3-4fc7-be00-2e5dfc626094", + "pk": "71f85f75-bb6a-42aa-9fb3-c6c6ecacde9d", "fields": { "question": 348, - "contribution": 3704, - "answer": 2, - "count": 1 + "contribution": 3855, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c9aadef-6539-422a-8017-2c44861cd810", + "pk": "71ffa913-137a-42f8-918b-942aca7695c0", "fields": { - "question": 409, - "contribution": 4024, - "answer": 3, - "count": 1 + "question": 349, + "contribution": 4187, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8c9edaaf-353e-491c-85fe-12234083f756", + "pk": "721ed529-1a35-4ff6-9a7d-1ecaba31aafd", "fields": { - "question": 477, - "contribution": 1725, - "answer": -1, - "count": 1 + "question": 348, + "contribution": 1228, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8cb3444a-88cf-46dd-8674-722fd0f869ea", + "pk": "7224eb0e-2059-4795-a2a2-191b54b835d3", "fields": { - "question": 473, - "contribution": 3725, - "answer": 0, - "count": 20 + "question": 472, + "contribution": 3440, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8cbe5d46-f413-4e6b-8c12-36b090710efe", + "pk": "72330f28-c468-4404-9924-690ffcf4d89b", "fields": { "question": 331, - "contribution": 3390, - "answer": -2, - "count": 3 + "contribution": 4084, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8cc7e509-4146-4daa-bbd3-3ce8b3f106af", + "pk": "72353089-c169-41c6-9f9d-2c1d19a3eddc", "fields": { - "question": 257, - "contribution": 3472, + "question": 333, + "contribution": 3922, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ccf39b3-66c2-4eff-aae0-1580942066f6", + "pk": "72407091-bd1f-4c47-917a-168f9715a6b3", "fields": { - "question": 319, - "contribution": 4120, - "answer": 2, - "count": 7 + "question": 472, + "contribution": 3645, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ce03213-0713-4f15-99e2-80724d05b5f3", + "pk": "724f5374-2d64-4a4b-9df7-ac25dd0dba12", "fields": { - "question": 321, - "contribution": 4100, - "answer": 1, - "count": 11 + "question": 347, + "contribution": 3728, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ce29d1c-125d-4eab-a621-bff8e9366e14", + "pk": "72501847-b6d4-4e6f-bbeb-845433707246", "fields": { - "question": 346, - "contribution": 1851, + "question": 351, + "contribution": 832, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8cfef629-9b70-4f8c-a15b-5082dc434c8b", + "pk": "7251f577-b032-4580-b056-5e743ae149af", "fields": { - "question": 325, - "contribution": 3722, - "answer": 5, - "count": 1 + "question": 362, + "contribution": 1808, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d011d9d-80ae-4310-9a7b-f7e92fc6b411", + "pk": "725f0cfb-7809-42b2-ae86-21d0237d9550", "fields": { - "question": 344, - "contribution": 3383, - "answer": 1, - "count": 1 + "question": 336, + "contribution": 886, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d03fbb7-ce03-4c52-a1bc-bf60bbf81f47", + "pk": "72761f45-9bd2-48a6-9611-b8258990b5dd", "fields": { - "question": 316, + "question": 262, "contribution": 1626, - "answer": 1, - "count": 8 + "answer": 5, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d0bc982-553e-4f72-b2f1-865af58360c9", + "pk": "7276ba9f-630b-4232-a95b-81835ffcff11", "fields": { - "question": 350, - "contribution": 894, - "answer": 1, - "count": 1 + "question": 476, + "contribution": 1612, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d0f8a12-7ab4-447a-ae20-10e0cd5b5e68", + "pk": "72793b2e-d1ca-429d-8ffa-613dcb309ab3", "fields": { - "question": 344, - "contribution": 3879, + "question": 340, + "contribution": 3759, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d13a648-85cf-4e69-bdd0-5c9095b72a02", + "pk": "727f8c34-554b-4372-8ef6-1e524f196f52", "fields": { - "question": 315, - "contribution": 4100, - "answer": 1, - "count": 9 + "question": 477, + "contribution": 4085, + "answer": -2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d1deb72-8501-41d6-a7b0-94dd2e772c80", + "pk": "729229b2-ece2-4f37-a0e4-4c70dff252fe", "fields": { - "question": 459, - "contribution": 4141, + "question": 344, + "contribution": 4123, "answer": 2, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d1ebf08-637b-4024-b7b9-97dbe45d601c", + "pk": "72954196-1267-4b44-ab84-ccae6a86ca71", "fields": { - "question": 346, - "contribution": 4191, - "answer": 3, - "count": 1 + "question": 316, + "contribution": 3721, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d22bb23-cabe-4030-99ec-e7442119d5b9", + "pk": "729660c7-485a-45a6-aee8-6880fff5f83c", "fields": { - "question": 361, - "contribution": 3916, - "answer": 1, - "count": 6 + "question": 258, + "contribution": 1626, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d23783b-d151-4bb4-b34f-6bb8fc4a2976", + "pk": "729d2d7a-f72d-44ff-92d7-0ceab3a2de0b", "fields": { - "question": 344, - "contribution": 1246, - "answer": 2, - "count": 3 + "question": 321, + "contribution": 3683, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d2bd3f6-c658-4c1c-9b0b-d0a7cc42952f", + "pk": "72bdd415-58b4-4298-847b-22c5c13ec28d", "fields": { - "question": 335, - "contribution": 3551, + "question": 322, + "contribution": 3472, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d467b85-3a51-4c94-9fe3-1f017440fb93", + "pk": "72bead2e-8776-4700-ac72-3b94b82a16b8", "fields": { - "question": 346, - "contribution": 4188, + "question": 316, + "contribution": 3725, "answer": 1, - "count": 5 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d4896f0-5eca-496e-9222-2f16aa4263ce", + "pk": "72c43d71-af81-4fce-af70-1f9bad61db73", "fields": { - "question": 259, - "contribution": 1626, - "answer": 2, - "count": 5 + "question": 367, + "contribution": 3721, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d52de25-33cb-46db-9e9e-4113d6caf216", + "pk": "72ce93f7-a5f8-4d15-a2fc-060f24a0f4c7", "fields": { - "question": 339, - "contribution": 1694, + "question": 327, + "contribution": 1777, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d595e46-8dbc-4cf2-a9f1-ac2ac4b4bd6b", + "pk": "73023ebc-01b7-4f94-b0e3-46e30a311ad9", "fields": { - "question": 317, - "contribution": 4138, + "question": 336, + "contribution": 1726, "answer": 1, - "count": 21 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d601d8a-953c-4df1-8862-9d06db111802", + "pk": "730458c5-caec-46ec-8f5b-eb1a3d909200", "fields": { - "question": 477, - "contribution": 1681, - "answer": 0, + "question": 335, + "contribution": 3598, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d604b48-faee-4364-8496-748d97630f02", + "pk": "73131a07-3aa2-4f98-93ed-1d083818b9ca", "fields": { - "question": 475, - "contribution": 3727, + "question": 257, + "contribution": 4022, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d65d47b-e51f-4fed-80e5-7ad7d25c0b1d", + "pk": "7320299b-2363-483e-8b24-787af2828d2b", "fields": { - "question": 428, - "contribution": 4204, - "answer": 1, - "count": 16 + "question": 317, + "contribution": 4100, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d89a3b5-ec77-4bd5-9cbc-939831a41ea2", + "pk": "732cdcd1-8090-48db-9e30-e7366864aa66", "fields": { - "question": 472, - "contribution": 1748, - "answer": 5, - "count": 1 + "question": 341, + "contribution": 3508, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d8ceefa-ab24-4cb1-8c72-1e4558256472", + "pk": "732f127d-bfde-4962-b69c-35e6ed5901ad", "fields": { - "question": 355, - "contribution": 4278, + "question": 374, + "contribution": 3775, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d9174d2-297e-4973-b475-00b110fc8a98", + "pk": "7330fbff-e368-4b63-ad2e-f11ca16b3ae3", "fields": { - "question": 345, - "contribution": 4192, + "question": 340, + "contribution": 1921, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8d9d0571-0de3-4ee7-9417-df5d44879db5", + "pk": "7333ab8b-6052-4f5b-8baa-9b3b84a2e91a", "fields": { - "question": 360, - "contribution": 3653, - "answer": 5, - "count": 1 + "question": 338, + "contribution": 4072, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8da570e2-5249-416d-8830-217bf14ee269", + "pk": "73341530-8e1f-4f21-a07e-6a3772ca2c30", "fields": { - "question": 344, - "contribution": 1809, - "answer": 1, - "count": 6 + "question": 336, + "contribution": 1200, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8db58e8b-0ea0-4448-8e87-befc3bd7ebee", + "pk": "7334e788-185d-4917-a0f0-dbe864e446d7", "fields": { - "question": 343, - "contribution": 1880, + "question": 340, + "contribution": 1644, "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8db9a02e-2e94-4676-82f5-45777194b933", + "pk": "7342a914-3189-4ff9-9515-a7e02ecd7b46", "fields": { - "question": 347, - "contribution": 3516, - "answer": 1, - "count": 11 + "question": 336, + "contribution": 4052, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8dbbb51f-6d0c-4175-8aef-7f1c2478a266", + "pk": "73564c96-760e-4cd5-a255-0164161ff295", "fields": { - "question": 477, - "contribution": 909, - "answer": 0, - "count": 22 + "question": 370, + "contribution": 1849, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8dbfb346-e93d-433d-bcd2-6a43b0022604", + "pk": "73574b1a-0dc8-41dc-91e3-f9996b0986a1", "fields": { - "question": 329, - "contribution": 4203, - "answer": 3, - "count": 5 + "question": 353, + "contribution": 3782, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8dbfe4b8-f69e-4aa0-b4e0-8388c56326e1", + "pk": "736d6136-f4c7-4389-9412-a6fe6536b12b", "fields": { - "question": 338, - "contribution": 1694, + "question": 326, + "contribution": 3519, "answer": 5, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8dc45922-be94-4251-99ac-bca34727be8b", + "pk": "73727412-2d1a-4667-bc77-486926993bbf", "fields": { - "question": 350, - "contribution": 3406, - "answer": 3, - "count": 1 + "question": 355, + "contribution": 3609, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8dc88a81-a252-4086-8491-78781a704b55", + "pk": "73747a89-6d41-47fc-943f-1f22f56dbe38", "fields": { - "question": 356, - "contribution": 4279, + "question": 257, + "contribution": 880, "answer": 4, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8dd02fad-ba0e-4382-be67-2dc1d3026b53", + "pk": "7378a99f-4654-479b-b246-bbdd77bf0a2d", "fields": { - "question": 339, - "contribution": 3508, - "answer": 0, - "count": 8 + "question": 259, + "contribution": 3474, + "answer": 4, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8dd13256-9978-4d61-b444-af1075d5b7a4", + "pk": "738ca59e-def6-4271-b554-27e5b76cbfc8", "fields": { - "question": 262, - "contribution": 1626, - "answer": 4, - "count": 2 + "question": 320, + "contribution": 4084, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ddb0621-a5b5-4bf5-aa7e-c8ab79592d56", + "pk": "738f5f55-1aaf-4eef-8a00-dc6ca308e53e", "fields": { - "question": 345, - "contribution": 4191, - "answer": 1, - "count": 2 + "question": 338, + "contribution": 1640, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8de2f44e-e450-47a4-90d2-2d4a5b83a110", + "pk": "738fa8e6-ea19-4c84-9c3d-5f837f30fbd4", "fields": { - "question": 368, - "contribution": 3435, + "question": 323, + "contribution": 3683, "answer": 1, - "count": 15 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8defaa5b-5800-40f3-831d-fd0f49e4e01b", + "pk": "7395eb1d-2dbc-4759-b2c8-5fe942521ac5", "fields": { - "question": 325, - "contribution": 3680, + "question": 344, + "contribution": 4190, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8df6796c-0baa-42cc-8fe3-7d88a13f9430", + "pk": "73976155-c773-4a6c-bf99-47ed09c3a7fe", "fields": { - "question": 356, - "contribution": 4223, - "answer": 3, + "question": 349, + "contribution": 1246, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8dfad89e-7719-41ee-9432-01ff755e054c", + "pk": "739b5ac0-c141-45d5-af63-315398a4d300", "fields": { - "question": 326, - "contribution": 1288, - "answer": 3, - "count": 2 + "question": 355, + "contribution": 1253, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8dfd2a56-b0ca-42c7-84ce-62b9083220ff", + "pk": "739c83dd-7a24-4830-b2a7-d386dda0248d", "fields": { - "question": 255, - "contribution": 3422, - "answer": 5, - "count": 3 + "question": 370, + "contribution": 1782, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8dff092d-48e2-40da-b815-7a441378310d", + "pk": "739dfdb7-07ff-4922-9d6b-a4a913443662", "fields": { - "question": 477, - "contribution": 3423, + "question": 347, + "contribution": 1250, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e017392-c5d9-4316-ac35-ed435b544a51", + "pk": "739e88ef-7c64-4e2a-9e36-13ace7643f72", "fields": { - "question": 340, - "contribution": 3450, - "answer": 3, + "question": 357, + "contribution": 3528, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e09fe3d-be78-403a-9eb3-009155caeb83", + "pk": "739fed42-5789-465e-8590-2468cf128441", "fields": { - "question": 328, - "contribution": 1776, + "question": 340, + "contribution": 4052, "answer": 4, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e0ad045-d85c-4eb2-b6a0-b7179244e562", + "pk": "73a56872-9606-44a9-9868-317a42e1226b", "fields": { - "question": 477, - "contribution": 1613, - "answer": 0, - "count": 22 + "question": 325, + "contribution": 3666, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e17f2c6-cd64-43ec-b062-cd1057d57de2", + "pk": "73aa7375-9ee3-466e-9999-5a27e8aee978", "fields": { - "question": 367, - "contribution": 4084, + "question": 258, + "contribution": 822, "answer": 2, - "count": 13 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e1b1940-fb85-4c31-b190-60bb5b135d78", + "pk": "73ac2ff7-3f5c-4c3f-81e8-08e000dad89b", "fields": { - "question": 346, - "contribution": 1246, - "answer": 3, - "count": 3 + "question": 473, + "contribution": 1726, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e27ab93-4c24-4268-b217-abe5077d66a2", + "pk": "73b167f2-93f2-4610-897a-458e52b562b8", "fields": { - "question": 360, - "contribution": 1805, - "answer": 5, + "question": 262, + "contribution": 1658, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e3358cf-a644-4e2f-8964-c87c30667435", + "pk": "73b7a290-30a0-45a8-a923-56501ee005dd", "fields": { - "question": 435, - "contribution": 4090, + "question": 319, + "contribution": 3474, "answer": 4, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e34a58c-cd66-41f0-984e-ef87194b4814", + "pk": "73cd0b8b-778f-445c-a998-586481319411", "fields": { - "question": 367, - "contribution": 1626, - "answer": 5, - "count": 4 + "question": 475, + "contribution": 3821, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e408cc0-24dc-4ec7-99cc-f0cc27fb9340", + "pk": "73d8a529-ceca-4f3c-a646-094b508cda2a", "fields": { - "question": 359, - "contribution": 1804, - "answer": 5, + "question": 477, + "contribution": 837, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e4782d3-e8be-4716-9569-3e0b65b60270", + "pk": "73e86c78-f0ac-48c1-99d5-84964dea5ae6", "fields": { - "question": 473, - "contribution": 3508, - "answer": 3, + "question": 331, + "contribution": 1668, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e56722b-ddb7-42b6-911d-d91e21904d9b", + "pk": "73ec6dc9-d315-42b7-a23c-a24a21d48db0", "fields": { - "question": 321, - "contribution": 884, - "answer": 4, - "count": 1 + "question": 340, + "contribution": 4122, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e648cff-d3c6-4674-8201-a80f88d498c4", + "pk": "73ed5fda-cecb-4425-bfcb-751c377ae294", "fields": { - "question": 349, - "contribution": 3900, - "answer": 2, - "count": 1 + "question": 341, + "contribution": 3454, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e68c3dc-04fa-4f4b-985c-c0de03832f72", + "pk": "73ef61d7-99ef-49f2-9c85-ecc8531c75af", "fields": { - "question": 258, - "contribution": 4022, - "answer": 3, + "question": 343, + "contribution": 3536, + "answer": 1, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "740a197e-ed9f-4fe3-b055-ae36c8170f67", + "fields": { + "question": 367, + "contribution": 3739, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e727997-6b6c-4e7d-8563-422fb36be4ee", + "pk": "741119a7-e09a-455f-8d1a-13022753804a", "fields": { - "question": 341, - "contribution": 1662, + "question": 326, + "contribution": 4153, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e73761a-2675-4e41-8612-40fd8ffe56fe", + "pk": "7414dfe4-6194-42c6-98ca-d166df88c4ef", "fields": { - "question": 360, - "contribution": 1836, - "answer": 2, - "count": 4 + "question": 331, + "contribution": 3679, + "answer": -1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e7670c0-0f5c-4fbb-bcf2-cb0219d768be", + "pk": "741aa274-0021-4a33-bab7-4094c53b16ce", "fields": { - "question": 341, - "contribution": 1638, + "question": 319, + "contribution": 884, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e7ec6cd-e2c3-43cf-ad1f-973c7f86b4f6", + "pk": "741ae1b3-ff1a-4f94-80ef-bb1a4a3cf1bd", "fields": { - "question": 321, - "contribution": 4040, - "answer": 3, - "count": 1 + "question": 327, + "contribution": 1659, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e813ca9-69f7-4b2b-9c12-5784740288d1", + "pk": "741b26ec-1371-4422-bd2e-ae9fb694a2e4", "fields": { - "question": 345, - "contribution": 3606, - "answer": 3, - "count": 4 + "question": 335, + "contribution": 3592, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e88ba23-e73b-4ed3-aa1d-8ff5179d23dc", + "pk": "741bb453-d8b4-406d-a8c0-7d675b7beb1c", "fields": { - "question": 337, - "contribution": 3727, - "answer": 3, - "count": 2 + "question": 355, + "contribution": 1187, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e8978ec-fc58-482e-a4ec-10322428d5c0", + "pk": "741c83d8-fe19-41ff-b93a-b5c99046764f", "fields": { "question": 336, - "contribution": 840, - "answer": 2, + "contribution": 1656, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e99e263-d7e0-4795-b515-417eaacb52bb", + "pk": "74379839-4c92-41a8-b912-b5ea8819242a", "fields": { - "question": 473, - "contribution": 3725, - "answer": -1, - "count": 2 + "question": 343, + "contribution": 3606, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8e9e4da8-9309-436b-9771-9824344d4767", + "pk": "7438d19f-4d45-4578-bd97-dc613410ec8d", "fields": { - "question": 406, - "contribution": 3984, - "answer": 4, + "question": 369, + "contribution": 3648, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ea038f4-27b4-4556-80e7-3d004dad5610", + "pk": "743a4453-4d61-40e0-8360-f80a6c6dc3e4", "fields": { - "question": 349, - "contribution": 3608, - "answer": 4, + "question": 338, + "contribution": 1660, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ea39c8b-7bbc-45b4-a845-867fefc2e688", + "pk": "743c1f23-5c8e-46a7-bee5-08dd8db9a6d3", "fields": { - "question": 339, - "contribution": 3486, - "answer": 1, - "count": 3 + "question": 360, + "contribution": 1811, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8eb26826-4c6d-49ac-857d-c80a5df42594", + "pk": "74404eff-db42-437c-ba0b-7077d1725e0d", "fields": { - "question": 345, - "contribution": 4223, + "question": 322, + "contribution": 3434, "answer": 2, - "count": 2 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ec3681a-e7b1-4a63-b4be-32cd7e755d95", + "pk": "74417ec5-ca48-4f80-83de-ffee0906e517", "fields": { - "question": 329, - "contribution": 837, - "answer": 3, + "question": 458, + "contribution": 3862, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ec765fa-34af-42fd-9822-7b9049c1a611", + "pk": "744429f7-3f0b-4820-b98e-8797f7a445ec", "fields": { - "question": 369, - "contribution": 3944, + "question": 321, + "contribution": 3679, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ed5ffe6-8147-4ec3-9b21-585b5e246529", + "pk": "74463714-8476-4454-b725-ae26927e7873", "fields": { - "question": 472, - "contribution": 3416, - "answer": 5, + "question": 345, + "contribution": 1749, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ed6500b-8d56-44cd-b8e8-da94cfa88951", + "pk": "7450efa4-ca87-422a-9865-7af04e740d01", "fields": { - "question": 346, - "contribution": 3896, + "question": 322, + "contribution": 4100, "answer": 2, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ed688fe-7a1d-42b1-9361-2de93b3da42a", + "pk": "7452cc03-a35b-4b6f-b880-6fde9ed6068e", "fields": { - "question": 320, - "contribution": 4046, - "answer": 3, + "question": 369, + "contribution": 3920, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8edb6a32-a825-47b4-a635-2d99cbc5e25a", + "pk": "7452d854-70b6-403d-b65e-b88ab22297eb", "fields": { - "question": 475, - "contribution": 4002, - "answer": 0, + "question": 368, + "contribution": 1725, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8edd5b9f-274b-4dba-9869-bd894e5c06b8", + "pk": "7457bac4-01d5-4ce7-a5b2-9621c99b7408", "fields": { - "question": 331, - "contribution": 880, - "answer": 0, - "count": 20 + "question": 362, + "contribution": 1807, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ee1bc3f-079c-45cf-bf61-38b07b9e05f3", + "pk": "74625060-054e-4c11-a3ee-5895c3278019", "fields": { - "question": 356, - "contribution": 1860, + "question": 372, + "contribution": 4022, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ee9c136-4f3b-431b-ba29-c8eaff6dff9f", + "pk": "74627f8c-84b9-4daf-bef2-ff5c7e974b32", "fields": { - "question": 476, - "contribution": 3406, - "answer": 0, - "count": 7 + "question": 359, + "contribution": 3919, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8eecec83-5003-47f2-9d68-66c6d6dcab53", + "pk": "747238af-5b7f-49c5-977a-bdd07add5cfc", "fields": { - "question": 462, - "contribution": 4283, - "answer": 1, + "question": 328, + "contribution": 3883, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ef102b1-52e1-4fad-811c-ff8d6f050646", + "pk": "7476717d-a7fd-4727-a14b-90baa46a7636", "fields": { - "question": 336, - "contribution": 1694, - "answer": 2, + "question": 348, + "contribution": 1157, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f040223-9aef-4cec-85a5-5ad9182f6b2e", + "pk": "74936886-5741-4b98-bce4-d5a97ee0c799", "fields": { - "question": 336, - "contribution": 1694, - "answer": 5, + "question": 343, + "contribution": 3890, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f05753a-1473-44ae-8f11-778a71c3eea7", + "pk": "74a68f2b-80ae-4533-b27d-5b5332e82c09", "fields": { - "question": 453, - "contribution": 4185, - "answer": 4, - "count": 2 + "question": 356, + "contribution": 3607, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f07e9d2-7c9b-42b0-a1ac-50610344012e", + "pk": "74ae3a0d-4050-4435-93d4-f7acab29e683", "fields": { - "question": 316, - "contribution": 3725, + "question": 348, + "contribution": 3610, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f145751-1ff0-4e92-a5f0-89b8e3b751b5", + "pk": "74aff203-9787-4972-a9df-9f895c1b96f8", "fields": { - "question": 473, - "contribution": 3416, - "answer": 0, - "count": 4 + "question": 355, + "contribution": 4039, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f19d544-4b8c-4d59-bfe5-796a08e1b3bb", + "pk": "74b86ba2-5698-48d1-94f3-ca407b0abb72", "fields": { - "question": 475, - "contribution": 3795, - "answer": 1, - "count": 1 + "question": 339, + "contribution": 3785, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f1f58ec-565c-4361-b022-4c20e07b0a81", + "pk": "74c31dd3-54ca-451d-8d45-e034bde51566", "fields": { - "question": 338, - "contribution": 3735, + "question": 475, + "contribution": 894, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f2bfa1f-9008-46c2-8bb4-33b68fc5a989", + "pk": "74c6eb80-191f-4ec1-a9d6-b90b8d1d574f", "fields": { - "question": 323, - "contribution": 1837, + "question": 317, + "contribution": 3725, "answer": 1, - "count": 22 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f311e1d-2795-4190-8859-9f84de8a2ada", + "pk": "74e3cdb4-b488-4aa2-9736-4e297c557710", "fields": { - "question": 367, - "contribution": 1837, - "answer": 5, + "question": 475, + "contribution": 1640, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f3d3940-4d9a-4923-b589-a3ccd70d6b09", + "pk": "74e92a8f-1c0a-4aeb-b222-9fe4707b581a", "fields": { - "question": 475, - "contribution": 3727, - "answer": 1, - "count": 3 + "question": 317, + "contribution": 908, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f3d9559-fe38-42c4-876e-bbb36ff1b981", + "pk": "750439cd-5098-4d0a-85b5-b3df9ebaa545", "fields": { - "question": 349, - "contribution": 3899, - "answer": 5, + "question": 473, + "contribution": 3739, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f3e43dd-7161-4640-a0dc-06bf84df963d", + "pk": "750a4378-04f6-4d14-9a75-82e09df69bb1", "fields": { - "question": 345, - "contribution": 3518, - "answer": 2, + "question": 357, + "contribution": 4243, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f41808d-7f1c-4176-8cef-09df60cb2ab0", + "pk": "750e7a22-a3af-4c4f-97ae-a1436d727133", "fields": { - "question": 337, - "contribution": 862, - "answer": 3, - "count": 2 + "question": 348, + "contribution": 3545, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f4c2879-0f5d-4ef0-bc8c-0d72749015cc", + "pk": "7517c220-0bfb-47e3-a08e-194dd54429a3", "fields": { - "question": 371, - "contribution": 4155, - "answer": 2, - "count": 8 + "question": 316, + "contribution": 4100, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f5a2bbb-78eb-4dd0-b450-1bca7db25087", + "pk": "751a2f4a-66d4-47d0-80df-d1d56d225055", "fields": { - "question": 352, - "contribution": 864, - "answer": 3, - "count": 1 + "question": 341, + "contribution": 1702, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f5ffb84-fa5a-495b-882d-df1a4d08ff83", + "pk": "753875ef-c166-41a1-85eb-f0593e737323", "fields": { - "question": 477, - "contribution": 3355, + "question": 363, + "contribution": 1808, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f6083f4-27e2-402d-b2ba-d1929f181d74", + "pk": "753a8163-dfda-46d5-8531-04c1415ab10d", "fields": { - "question": 317, - "contribution": 4100, - "answer": 5, - "count": 1 + "question": 335, + "contribution": 1282, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f7c7014-79bb-4763-8971-22d67d9e46e9", + "pk": "753e58e9-47bc-4846-aab3-feb226530257", "fields": { - "question": 338, - "contribution": 1921, + "question": 355, + "contribution": 3529, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f7f6540-12df-47d8-a5aa-54a8206bc450", + "pk": "75538771-276b-458b-89e3-113c3f7b2e0f", "fields": { - "question": 341, - "contribution": 4072, - "answer": 1, + "question": 338, + "contribution": 3727, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f9605e7-129e-4a9d-bbcc-025d99357f4b", + "pk": "7569bc77-a05a-4156-8fa0-6402606523a2", "fields": { - "question": 352, - "contribution": 4046, + "question": 348, + "contribution": 887, "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8f994edc-6d84-40b8-a591-3368fcb24100", + "pk": "756d94f5-259b-4d94-8276-5d3d5e18f751", "fields": { - "question": 401, - "contribution": 3646, - "answer": 4, - "count": 1 + "question": 473, + "contribution": 1634, + "answer": -2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8faf3683-1e17-4f9a-b989-dcebf81ac7fd", + "pk": "7571e00a-9f09-4ec4-b7f4-8298cc899fa1", "fields": { - "question": 260, - "contribution": 3422, - "answer": 2, - "count": 7 + "question": 472, + "contribution": 3462, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8fafadc7-010d-473c-9df3-8743e924bd93", + "pk": "7572ebe4-3b62-4d08-8dd1-5a3e78e459a3", "fields": { - "question": 442, - "contribution": 4114, - "answer": 3, + "question": 346, + "contribution": 3796, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8fb7f6d8-1633-4b49-9404-1707ddbc3e3c", + "pk": "7573ff81-2a57-41a2-910b-eeae29bb23b7", "fields": { - "question": 345, - "contribution": 3728, - "answer": 3, + "question": 355, + "contribution": 1782, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8fbf1045-4c00-4bc1-838f-a3b5cbf879d5", + "pk": "757c27fe-ad06-455a-ae7f-81ff6dd0b055", "fields": { - "question": 262, - "contribution": 4084, - "answer": 2, - "count": 21 + "question": 473, + "contribution": 4020, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8fc19752-3597-406b-80bb-70bd0466dd53", + "pk": "757e829d-6da4-4109-a7fe-0123c41e627a", "fields": { - "question": 329, - "contribution": 823, - "answer": 1, - "count": 6 + "question": 325, + "contribution": 1613, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8fca5a61-e50d-4d10-b44f-ed77e7569387", + "pk": "7580242f-18f3-4754-98dc-3644a2c69aaa", "fields": { - "question": 329, - "contribution": 3884, + "question": 315, + "contribution": 3721, "answer": 1, - "count": 6 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8fd1f787-44f5-4c73-b002-63a7234a9fc6", + "pk": "758aba1b-f9fa-47b6-a6f5-097deb05d039", "fields": { - "question": 337, - "contribution": 826, - "answer": 1, - "count": 2 + "question": 437, + "contribution": 4090, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8fd75284-a250-4ece-9423-ead80d058a13", + "pk": "759465db-47ac-46cb-8380-0dec928414f9", "fields": { - "question": 260, - "contribution": 4046, - "answer": 2, + "question": 315, + "contribution": 3422, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8fda4ed0-2f7a-48d7-a70b-68a4146804de", + "pk": "7599aab7-7ba6-4f99-8ab9-825ce8afcaf7", "fields": { - "question": 361, - "contribution": 3921, - "answer": 4, + "question": 331, + "contribution": 3434, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8fde48ac-c74b-4264-92bf-e116ea8c3bb0", + "pk": "759a2ff0-d1d2-4d27-a080-a796ddf3b046", "fields": { - "question": 344, - "contribution": 1645, - "answer": 1, - "count": 4 + "question": 320, + "contribution": 880, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8fe15f84-fa66-4b4f-80b6-3c26b93601a6", + "pk": "75b19e1f-85d5-4c40-96ef-c036cb694f8a", "fields": { - "question": 357, - "contribution": 4271, + "question": 368, + "contribution": 4085, "answer": 1, - "count": 1 + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ff9bd2e-ca90-4ff2-bcc9-521b15277b85", + "pk": "75bdbeee-1adb-4804-b277-74f5dc8e18b7", "fields": { - "question": 340, - "contribution": 918, - "answer": 3, - "count": 1 + "question": 321, + "contribution": 884, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "8ffe3bab-729d-4925-9248-22eb02f3e4a5", + "pk": "75c2e274-099d-47df-aaa2-ebc16854f201", "fields": { - "question": 322, - "contribution": 4120, - "answer": 4, - "count": 3 + "question": 472, + "contribution": 3462, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9000e520-321c-4400-9a1c-1441ff251bbc", + "pk": "75cff876-ed46-42e2-9d78-c71132eb8abf", "fields": { - "question": 327, - "contribution": 1635, - "answer": 2, - "count": 8 + "question": 325, + "contribution": 3556, + "answer": 1, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9009f3a3-a235-4c73-9641-02a440c81a46", + "pk": "75d2ce2c-f1cc-4cb3-9586-f789c9a31bbd", "fields": { - "question": 475, - "contribution": 1710, + "question": 325, + "contribution": 1617, "answer": 1, - "count": 2 + "count": 29 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9030f69a-7758-4f5d-bff7-0d6a5270c435", + "pk": "75df3403-77fe-414a-afce-2b42647f3cc1", "fields": { - "question": 337, - "contribution": 3482, - "answer": 3, - "count": 1 + "question": 321, + "contribution": 1612, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9041b452-6899-44ac-8c2a-dd2d2a46246b", + "pk": "75e5f3ae-0b75-494c-a030-0b6802a9aba7", "fields": { - "question": 341, - "contribution": 3366, + "question": 352, + "contribution": 3406, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "904469f5-dfed-449e-9a30-af3c05685ea7", + "pk": "76252937-ff1f-43a0-9528-a9d4621e5b14", "fields": { - "question": 336, - "contribution": 3482, - "answer": 2, + "question": 339, + "contribution": 4052, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "904c3333-9c0d-4afc-864a-31a841b15d9f", + "pk": "762f53bf-6065-433f-837e-3a1b747e3562", "fields": { - "question": 473, - "contribution": 4022, - "answer": 0, - "count": 4 + "question": 346, + "contribution": 1809, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "904e9c94-c6a4-4516-9e22-4b515b28a01d", + "pk": "763f7388-e574-4d41-a80c-856e5f8de2ac", "fields": { - "question": 349, - "contribution": 1880, + "question": 348, + "contribution": 3939, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "905e5554-0d9c-40b7-9710-cb814e37b120", + "pk": "766bcc6d-c057-4bb2-92e9-cca9c466224f", "fields": { - "question": 347, - "contribution": 3405, - "answer": 1, - "count": 5 + "question": 327, + "contribution": 1635, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90611581-94fe-45f0-af4b-55cca4d21c74", + "pk": "766ebc47-2c66-47c9-8855-4b89cfe3862a", "fields": { - "question": 341, - "contribution": 3454, - "answer": 3, - "count": 2 + "question": 463, + "contribution": 4141, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9065e246-24dd-498b-a3cc-a491e8a2b6f1", + "pk": "76721644-2907-4961-aefc-9afe319f923f", "fields": { - "question": 315, - "contribution": 1724, - "answer": 1, - "count": 2 + "question": 327, + "contribution": 1779, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "906681d2-4b34-4545-9d88-af9d9b4b7834", + "pk": "7678e9af-b041-4037-b513-941668169b7e", "fields": { - "question": 353, - "contribution": 4266, + "question": 477, + "contribution": 1798, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9068f9b4-3e58-40e3-82c3-91f475b6d8af", + "pk": "767b548c-0234-4c2b-9542-d0c6223b1d1c", "fields": { - "question": 349, - "contribution": 1809, - "answer": 1, + "question": 339, + "contribution": 4002, + "answer": 0, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9076bfa3-01a5-4e71-9bcd-ae8e97d84d7f", + "pk": "7681791a-7356-41d5-8e71-39a66084c9d5", "fields": { - "question": 317, - "contribution": 3474, - "answer": 4, - "count": 1 + "question": 329, + "contribution": 4203, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9094b6df-176f-4ae4-aa9c-15010f4d0d8f", + "pk": "7686d618-a33d-429a-89d0-77d557eec43f", "fields": { - "question": 326, - "contribution": 3666, - "answer": 1, - "count": 10 + "question": 336, + "contribution": 3727, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90998183-2aec-4cf9-af2d-46dfcb8f30de", + "pk": "768d4fb2-7523-4d9d-bdc0-e2826af65e16", "fields": { - "question": 350, - "contribution": 3440, - "answer": 2, - "count": 2 + "question": 255, + "contribution": 1626, + "answer": 5, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90aa6042-8bf8-479d-88c6-3b4c70581bc3", + "pk": "7697919f-9c56-450f-99dc-6a5082f68b62", "fields": { - "question": 260, - "contribution": 4084, - "answer": 5, - "count": 5 + "question": 322, + "contribution": 4100, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90aa9488-e9ce-4f88-8545-976756d9cf63", + "pk": "76a2f9d7-cfdd-4df2-8fd5-757004797729", "fields": { - "question": 340, - "contribution": 832, + "question": 317, + "contribution": 1634, "answer": 2, - "count": 2 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90aaf4f0-fc4e-4038-a2d5-bc552a0825ea", + "pk": "76a580a8-a171-4686-b23a-578e85a1de68", "fields": { - "question": 317, - "contribution": 4084, + "question": 321, + "contribution": 3739, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90af2346-bfe6-4962-a4ca-089badf71bf9", + "pk": "76b2e55f-fd8c-4f89-a0b8-b913d659805f", "fields": { "question": 329, - "contribution": 4101, - "answer": 1, - "count": 14 + "contribution": 1802, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90b486f0-b3db-45f9-ab27-1a7ae4d9e419", + "pk": "76b42b39-b18b-49f3-bdf4-d7bc439137fa", "fields": { - "question": 325, - "contribution": 881, - "answer": 2, - "count": 8 + "question": 262, + "contribution": 4120, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90bec3a5-e6c0-4f32-8089-e7b14e2e6625", + "pk": "76c0208f-4e6b-411a-9cae-925a1851aef9", "fields": { - "question": 336, - "contribution": 1662, - "answer": 1, - "count": 5 + "question": 459, + "contribution": 4073, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90cd034f-2cbd-4363-9c19-2df8f0250f73", + "pk": "76e0a5aa-8cef-4c9f-94ce-57c6d6567f6f", "fields": { - "question": 344, - "contribution": 1247, + "question": 349, + "contribution": 919, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90df1fbc-8fab-4276-bf9e-94066a8563b7", + "pk": "76e39b6b-624e-41b9-af2f-134b0b48f1dd", "fields": { - "question": 315, - "contribution": 3462, - "answer": 1, - "count": 1 + "question": 332, + "contribution": 4155, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90e9ef8f-5ba4-4c7c-8d4f-5f384c1e4c22", + "pk": "76e69f6c-9bc6-4fda-bb2d-c6cf9ba9a10b", "fields": { - "question": 331, - "contribution": 3474, - "answer": 1, - "count": 3 + "question": 463, + "contribution": 4141, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90eb3d1f-afbe-400d-8fb4-cef364cfc013", + "pk": "76f1b1a9-1ef5-4d8c-8278-845c830cdd9f", "fields": { - "question": 368, - "contribution": 1797, - "answer": 1, - "count": 3 + "question": 475, + "contribution": 1200, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90f078e5-975b-45c8-89a2-ba58fedc50a7", + "pk": "76fc5d19-dc4c-4d30-ad82-9718d088af05", "fields": { - "question": 444, - "contribution": 4114, - "answer": 5, - "count": 1 + "question": 259, + "contribution": 3422, + "answer": 1, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90f5a7cb-160f-4f9e-942c-c9bef2da0ed2", + "pk": "76fd77ab-5817-424a-a535-6fbf5ff8dbb5", "fields": { - "question": 356, - "contribution": 1154, - "answer": 2, - "count": 11 + "question": 341, + "contribution": 1644, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90fbd49c-af34-49e2-88eb-ae8f458bbd16", + "pk": "77117870-eaeb-45ea-b1bf-9e5a5f7c78bb", "fields": { - "question": 327, - "contribution": 3407, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 3684, + "answer": 0, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "90fce576-7c2f-4660-a2c3-98209303eff3", + "pk": "771317cb-00a1-4c98-aae1-83c8c4d16c84", "fields": { - "question": 406, - "contribution": 3974, + "question": 371, + "contribution": 3631, "answer": 1, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "910751ec-7496-48ce-a146-638f29cda101", + "pk": "772e4790-7e96-43ab-9e76-8bdc9e9e711c", "fields": { - "question": 477, - "contribution": 4101, - "answer": -3, - "count": 1 + "question": 323, + "contribution": 4100, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "910e718e-3b9e-4f6a-a9fd-e8e6c762a35b", + "pk": "772e7b68-9cba-469c-b573-f4266cfa9112", "fields": { - "question": 327, - "contribution": 3423, - "answer": 2, - "count": 8 + "question": 341, + "contribution": 3785, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "910effe0-4755-4962-8382-7442f1200ba3", + "pk": "77326a57-13e1-4235-b143-25615eb5937c", "fields": { - "question": 374, - "contribution": 3781, - "answer": 2, + "question": 329, + "contribution": 1154, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9115a086-9a33-43af-bfa5-3f176fc30cd8", + "pk": "773a2fda-3e59-41cd-8043-b7d561687e45", "fields": { - "question": 331, - "contribution": 880, - "answer": 2, - "count": 5 + "question": 328, + "contribution": 885, + "answer": 1, + "count": 29 } }, { "model": "evaluation.ratinganswercounter", - "pk": "911e5d0c-b97e-4f99-8a8f-95c59184cc0d", + "pk": "773bb367-c0af-46cd-b4f0-190a232c3f01", "fields": { - "question": 339, - "contribution": 1638, + "question": 344, + "contribution": 1874, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "912418be-a8f2-407d-ad2d-1e4ac14f4e02", + "pk": "773f4175-0ced-4bfd-a5a4-2575ad48b04c", "fields": { - "question": 395, - "contribution": 3775, - "answer": 3, + "question": 450, + "contribution": 4185, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "912e2b16-33e8-4fb7-9f28-fabc603949a4", + "pk": "7748f358-4737-427a-9fb8-047b80d3f6a6", "fields": { - "question": 257, - "contribution": 908, - "answer": 5, - "count": 2 + "question": 356, + "contribution": 1783, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9135aa42-c31d-420f-b718-69dfdca3669a", + "pk": "774e426a-436f-446e-93b7-c917fec1d1e4", "fields": { - "question": 257, - "contribution": 3390, + "question": 325, + "contribution": 823, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "913f5bda-bac1-4c28-a3c4-cca118cdd70b", + "pk": "7756b0aa-e634-4ff0-aa53-18e26a66ae1b", "fields": { - "question": 475, - "contribution": 4052, - "answer": -3, + "question": 348, + "contribution": 1246, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "914f7c4c-9dec-485a-9a13-a055a1afc1b2", + "pk": "775a4dea-5be2-4891-a9d6-1c019a125a2f", "fields": { - "question": 362, - "contribution": 3651, + "question": 255, + "contribution": 4028, "answer": 1, - "count": 2 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "916697ed-9c31-411a-8514-6c32004c40e3", + "pk": "776022d5-3586-4112-8fe6-119d8b253f21", "fields": { - "question": 472, - "contribution": 4046, - "answer": 5, - "count": 2 + "question": 319, + "contribution": 3721, + "answer": 4, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "916f6dae-45e5-4edb-81bd-b921d0957df8", + "pk": "7766838a-173e-42fa-a6b4-41ea94f3fb84", "fields": { - "question": 338, - "contribution": 1694, + "question": 321, + "contribution": 3725, "answer": 2, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "91779e82-8a74-461a-90d6-ee4bb45288fd", + "pk": "776c9ad0-c39d-4da6-ad16-4dd26d02c3e2", "fields": { - "question": 344, - "contribution": 4188, - "answer": 3, + "question": 349, + "contribution": 4129, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9179545c-7c5f-4d15-a34e-17571ac1b637", + "pk": "776cca10-51e8-4aef-bac5-f805542bd025", "fields": { "question": 473, - "contribution": 1656, - "answer": -1, - "count": 2 + "contribution": 3354, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "917f6941-541e-4a88-a04c-3a2c99ba9395", + "pk": "776dd4ae-09c5-4334-b4f3-18172159c2a5", "fields": { - "question": 255, - "contribution": 4120, - "answer": 4, - "count": 1 + "question": 317, + "contribution": 3679, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "917f9861-2ccc-4650-957a-a00a6c3469ca", + "pk": "7772e7d5-6311-428e-a363-1fcafe1031e7", "fields": { - "question": 322, - "contribution": 1680, - "answer": 1, - "count": 1 + "question": 337, + "contribution": 1702, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9183ba92-f73e-4d64-af40-2b11c9a8dcea", + "pk": "777b369b-4b12-4d49-996a-7e75ade3f599", "fields": { - "question": 339, - "contribution": 3727, - "answer": -1, - "count": 6 + "question": 328, + "contribution": 4023, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "919572d6-0c23-4367-8281-dde4963ed2ea", + "pk": "777b7324-7129-40bf-9362-d8e670bf9d67", "fields": { - "question": 258, - "contribution": 3474, - "answer": 2, - "count": 8 + "question": 477, + "contribution": 3722, + "answer": -2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "91975a88-0c09-4af7-81b3-3ad2ef6bf6a5", + "pk": "778297e7-fb83-47b2-82bd-ed38e8861191", "fields": { - "question": 329, - "contribution": 3355, - "answer": 1, - "count": 21 + "question": 363, + "contribution": 1812, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "91983297-1a95-4803-965c-13628a2cc19a", + "pk": "778c3959-5568-4517-8491-a7f916e1a6e6", "fields": { - "question": 340, - "contribution": 886, - "answer": 3, - "count": 1 + "question": 325, + "contribution": 3423, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "919ef1de-ec9a-4fb2-a8e3-a41b81f462a7", + "pk": "77926488-33fc-44ef-b3b5-4d997e617ac0", "fields": { - "question": 343, - "contribution": 1207, - "answer": 1, - "count": 5 + "question": 473, + "contribution": 4120, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "91a60c94-7590-49bc-91c8-6cee40f1cf3e", + "pk": "77974f49-e7e4-4ab0-8ec9-c3fe5527e4cc", "fields": { - "question": 476, - "contribution": 1626, + "question": 367, + "contribution": 3472, "answer": 1, - "count": 5 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "91afab71-3f11-4e08-800d-3b59649431e5", + "pk": "77a4d7e3-e6b5-4bfd-b979-fa6ca3138fe0", "fields": { - "question": 315, - "contribution": 884, - "answer": 3, - "count": 3 + "question": 362, + "contribution": 1807, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "91b6f26f-079a-48f7-9135-add89b13cb7a", + "pk": "77a8802f-5042-49cb-a3db-4c4fb33a31c3", "fields": { - "question": 353, - "contribution": 1154, - "answer": 5, - "count": 4 + "question": 323, + "contribution": 3474, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "91cbfc04-efac-4bb3-b470-6f8620f59baa", + "pk": "77ae0653-ba39-414b-9321-b6b7ac133c8e", "fields": { - "question": 331, - "contribution": 4046, - "answer": 0, - "count": 7 + "question": 347, + "contribution": 1828, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "91d7fce1-1c80-45df-a799-d04a21ae6ede", + "pk": "77b17a38-2409-4457-95ae-471bb29294f0", "fields": { - "question": 368, - "contribution": 3519, - "answer": 1, - "count": 6 + "question": 348, + "contribution": 3546, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "91e12ef5-f007-41de-9cd2-4a48a65e2a95", + "pk": "77cd4902-37b4-4a8e-959c-4b3b33e791e2", "fields": { - "question": 343, - "contribution": 3487, - "answer": 1, - "count": 3 + "question": 472, + "contribution": 1668, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "91ee4a2a-650e-4c18-8242-fb0b3e713d63", + "pk": "77d6c9d7-1e18-46f8-80ca-1c15a9ca56f0", "fields": { - "question": 477, - "contribution": 1298, - "answer": 0, - "count": 6 + "question": 325, + "contribution": 4203, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "91f5ce0e-d2ca-4562-b110-cc1b22ea641d", + "pk": "77e3354b-3b62-471d-99df-325f684269a2", "fields": { - "question": 347, - "contribution": 3525, + "question": 370, + "contribution": 4228, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "91f94c36-72d4-46b5-84f1-16bed67fc202", + "pk": "77e3d261-63e8-4a38-a274-c9bf2cb529ef", "fields": { - "question": 366, - "contribution": 3595, - "answer": 1, + "question": 476, + "contribution": 1634, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9202b7fc-d4f7-423c-8eec-1f8c16016a1f", + "pk": "77e665ec-9a94-4e1d-bd3b-723556a8160f", "fields": { - "question": 339, - "contribution": 1656, - "answer": -2, + "question": 258, + "contribution": 4028, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92083d45-9b3c-4e7a-9caa-c5077f2065ac", + "pk": "77eee5c1-d96b-4d2e-bbd1-3d5e0ce5612b", "fields": { - "question": 335, - "contribution": 1884, + "question": 315, + "contribution": 912, "answer": 2, - "count": 2 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "920d6f44-5398-4234-904f-a25d840edcab", + "pk": "7805ab3b-3fd0-44ce-afd4-56d11ff3c56c", "fields": { - "question": 376, - "contribution": 3775, + "question": 340, + "contribution": 840, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "921f73d6-c829-475d-a506-4025fbc4a6e6", + "pk": "78071da0-96fc-4cf5-907e-a55a6e8ff968", "fields": { - "question": 477, - "contribution": 4047, - "answer": 0, - "count": 8 + "question": 343, + "contribution": 1250, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9226fe13-6bd1-416e-8b3b-8a807d9d2bde", + "pk": "7808a641-ff6b-4550-ac42-7a2c1b73fb48", "fields": { - "question": 326, - "contribution": 3391, - "answer": 3, - "count": 5 + "question": 323, + "contribution": 3679, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92398990-f09c-4199-8d23-285666dfe889", + "pk": "780de765-283e-482d-b0ff-cec5f3d49f68", "fields": { - "question": 322, - "contribution": 864, + "question": 258, + "contribution": 3474, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "923d1082-aebe-45ae-9e0d-fbb64e1329e8", + "pk": "7811f07c-d253-48cb-ba65-8b22634db393", "fields": { - "question": 346, - "contribution": 1842, + "question": 341, + "contribution": 1694, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "924477f9-4888-43fb-a049-eb56132f1141", + "pk": "7813e695-f7a4-471d-83c8-f03e0f31a775", "fields": { - "question": 328, - "contribution": 1802, - "answer": 5, - "count": 10 + "question": 363, + "contribution": 1810, + "answer": 1, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "924487c3-6b72-4572-a34d-a6da32aca764", + "pk": "78274923-e0eb-420d-806d-89011a695562", "fields": { - "question": 331, - "contribution": 880, + "question": 340, + "contribution": 788, "answer": 3, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "925e799a-cb87-45a0-9a91-9fff0677629c", + "pk": "7835cb8c-3729-4d79-acda-78de78c00358", "fields": { - "question": 457, - "contribution": 4141, + "question": 333, + "contribution": 4261, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "925fd975-61ca-4707-9cda-3ae24cc50be6", + "pk": "78426441-8619-4798-8d93-d67cada45e7c", "fields": { - "question": 319, - "contribution": 4100, - "answer": 4, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "9262fd45-c489-4ab6-81bc-6474eed1edc1", - "fields": { - "question": 341, - "contribution": 3745, + "question": 333, + "contribution": 3936, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "926f1c26-28df-4a9c-95da-501dfee46efe", + "pk": "784ab4ab-5c72-425d-97aa-7e5424dc1d5d", "fields": { - "question": 317, - "contribution": 3434, - "answer": 3, + "question": 316, + "contribution": 1680, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "928165a1-95cb-4aa5-b5e6-905c041d1271", + "pk": "784f0768-894b-4042-9449-1329982b6de5", "fields": { - "question": 368, - "contribution": 1613, + "question": 340, + "contribution": 3372, "answer": 3, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "92856b0b-a766-4a67-9ae5-8e1fe863d992", - "fields": { - "question": 331, - "contribution": 1668, - "answer": 0, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9287afc8-fcf7-4b32-822f-1d75a690f1a0", + "pk": "7853e939-8499-4dd1-afec-ecc1330bb3f9", "fields": { - "question": 323, - "contribution": 3422, + "question": 349, + "contribution": 3373, "answer": 2, - "count": 9 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "929288ed-ba75-4a03-a3c7-036d794d6cb3", + "pk": "7862abd2-f81e-4caa-811f-e2bf56b769a2", "fields": { - "question": 321, - "contribution": 912, - "answer": 5, - "count": 1 + "question": 348, + "contribution": 1842, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9292b188-9531-4ca3-9555-c62658c046bc", + "pk": "78631345-06f1-4d41-aef7-5ef329d1dc50", "fields": { - "question": 379, - "contribution": 3775, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 3407, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "929f403e-8fae-418a-8a9c-1caa337cf50c", + "pk": "7865acc3-1d44-4da3-b3b0-352e401d1594", "fields": { - "question": 360, - "contribution": 1835, - "answer": 4, - "count": 1 + "question": 367, + "contribution": 3462, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92a28661-0390-4aae-9dcb-95a7ec874a50", + "pk": "78779c16-6591-4046-8216-a80695053c83", "fields": { - "question": 328, - "contribution": 3423, - "answer": 2, - "count": 7 + "question": 338, + "contribution": 3454, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92ab46a6-32c8-4a02-acbb-0ab7175a63d8", + "pk": "78788faa-4f1d-4f15-8429-bc19080bb2b7", "fields": { - "question": 319, - "contribution": 4138, - "answer": 5, + "question": 363, + "contribution": 3921, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92acae6a-4ad6-420f-96eb-b87e3f1ae366", + "pk": "7880d331-20d6-4125-844d-608e28b0aff6", "fields": { - "question": 258, - "contribution": 4040, + "question": 335, + "contribution": 1283, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92ae9c30-595f-4c87-890a-bde6dcab3023", + "pk": "789adff7-8383-4e53-901b-7b554863ccec", "fields": { "question": 349, - "contribution": 3606, + "contribution": 3608, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92bced6e-935c-4ca3-8481-5402ed303869", + "pk": "789c0b54-1f74-457c-ba9f-2e53198f5d61", "fields": { - "question": 257, - "contribution": 3422, - "answer": 2, - "count": 9 + "question": 359, + "contribution": 3921, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92c10f20-676d-4f64-a3c0-aebd62da64b9", + "pk": "789d2b66-ffaf-4f46-9186-c8eb41ed50b1", "fields": { - "question": 340, - "contribution": 826, - "answer": 2, - "count": 1 + "question": 363, + "contribution": 1807, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92c5f545-ffa9-4f51-b6f5-65595043e127", + "pk": "78a1b95d-083e-4ea1-ba68-eaebb597850b", "fields": { - "question": 341, - "contribution": 3727, + "question": 326, + "contribution": 1613, "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92c64444-c483-416b-8b69-147dfbddefb1", + "pk": "78ab61d8-9e84-4701-83b1-3659d9ee973f", "fields": { - "question": 362, - "contribution": 3893, + "question": 355, + "contribution": 3609, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92d85187-e59a-41b4-9bc6-7aaf7cb21d35", + "pk": "78b7c091-4d0e-45d8-9cfb-ff0f545be871", "fields": { - "question": 473, - "contribution": 832, - "answer": 0, - "count": 4 + "question": 418, + "contribution": 4024, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92d938c1-139e-4146-ac9f-856a98b75dbe", + "pk": "78bf19f0-3c05-465e-a504-ca06d7cf6651", "fields": { - "question": 472, - "contribution": 880, - "answer": 5, - "count": 7 + "question": 315, + "contribution": 1626, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92db667e-2af7-42c8-9402-0bf77499ed37", + "pk": "78cb86a4-2db6-4af4-a968-5d227bfbcd19", "fields": { - "question": 472, - "contribution": 3466, - "answer": 1, + "question": 413, + "contribution": 4038, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92e73eab-cb20-4503-8ff1-2c5951547988", + "pk": "78cc79cb-20b5-4cdd-b89f-da442ea17be4", "fields": { - "question": 354, - "contribution": 3975, - "answer": 1, + "question": 357, + "contribution": 1784, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92eb6b2a-b0af-455d-be52-97dfe4bf9631", + "pk": "78cd8af0-51a0-4224-b0bc-31ee7f088ce1", "fields": { - "question": 353, - "contribution": 4267, + "question": 463, + "contribution": 4284, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92ef27bd-cb57-4807-9c52-6a3a00420762", + "pk": "78d457d0-1d1d-4b95-9433-e4fe16c1fed2", "fields": { - "question": 351, - "contribution": 3440, + "question": 316, + "contribution": 3434, "answer": 3, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "92f04122-fd3b-418c-9c62-ad19f12b3ccb", + "pk": "78ddb880-8be5-4798-a45b-fb980af7839c", "fields": { - "question": 326, - "contribution": 1777, + "question": 346, + "contribution": 4234, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93006060-6cc3-4487-a5ad-f1ca1f459ae1", + "pk": "78f352ee-cac7-47a4-9f75-2d1c7714fcbd", "fields": { - "question": 258, - "contribution": 3462, + "question": 328, + "contribution": 3883, "answer": 3, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "790c5768-2eb8-4ed9-b7a5-2a4efb4c12b2", + "fields": { + "question": 472, + "contribution": 826, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "930440dc-c337-4ec7-9726-5a4a6b2ca2d5", + "pk": "7911eff2-30a8-4451-9ce0-868339eb3de2", "fields": { - "question": 359, - "contribution": 3917, + "question": 475, + "contribution": 3416, + "answer": -1, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "79169b1c-5f78-4b33-ae42-884e1e7aa3bd", + "fields": { + "question": 370, + "contribution": 3609, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9306d4d6-c5a9-499d-89da-dffda5e6c081", + "pk": "79182e26-4677-4972-a979-7dd01793e2e8", "fields": { - "question": 316, - "contribution": 1634, - "answer": 3, - "count": 5 + "question": 331, + "contribution": 836, + "answer": 0, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "930ccbd5-1d70-4e88-84d7-c1b882405fd8", + "pk": "7918f069-4b77-4456-90a2-f3975bcb82d5", "fields": { - "question": 328, - "contribution": 3519, - "answer": 4, - "count": 1 + "question": 347, + "contribution": 3912, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "930f7524-8bbc-4a03-a8e1-42375347fa2e", + "pk": "791dc69a-9320-4d6b-a0a7-fd2474227ebe", "fields": { - "question": 459, - "contribution": 3453, - "answer": 2, + "question": 372, + "contribution": 3759, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9315591f-614d-46c9-b149-b3f4e8e41c1b", + "pk": "7928888f-8039-4a68-b559-b961c3d31947", "fields": { - "question": 473, - "contribution": 3508, - "answer": 0, - "count": 5 + "question": 319, + "contribution": 3462, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93278dca-2fd0-41c7-891e-fc566f60e943", + "pk": "792df29b-53af-4360-8f49-bc5e288d6a0b", "fields": { - "question": 325, - "contribution": 3391, - "answer": 3, - "count": 3 + "question": 348, + "contribution": 919, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "932b3ed2-b89e-4675-bddd-d0d42162c224", + "pk": "793e5a41-2e1d-46d0-8309-8a2a49733d66", "fields": { - "question": 477, - "contribution": 3391, - "answer": -2, + "question": 338, + "contribution": 3745, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93595843-3e7b-4104-b3b0-2eeb62852ff7", + "pk": "794c7aba-bdfd-49bf-b89a-ed7f1aed23d4", "fields": { - "question": 343, - "contribution": 4095, - "answer": 1, - "count": 10 + "question": 335, + "contribution": 1812, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9365aad3-5ad3-4fb0-a7ea-1a0346494e7b", + "pk": "7970bf91-34a8-40aa-9c46-1761f73119f1", "fields": { - "question": 326, - "contribution": 3435, - "answer": 2, - "count": 6 + "question": 355, + "contribution": 3607, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "936a6312-2dd5-409a-9653-47087846131f", + "pk": "7980a539-e0bb-41e0-975b-fb605514a30a", "fields": { - "question": 473, - "contribution": 4084, + "question": 477, + "contribution": 3473, "answer": -1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "936aa5dc-173c-4fbb-b888-fbb735a73632", + "pk": "7981830e-7fb2-4936-90c2-d7f7c93658ca", "fields": { - "question": 363, - "contribution": 1810, + "question": 472, + "contribution": 3727, "answer": 5, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "936ed776-c6b8-4826-8b8d-789c16a6e746", + "pk": "798fddd8-1f99-4326-87a2-06c8102d9e29", "fields": { - "question": 375, - "contribution": 3711, - "answer": 1, + "question": 353, + "contribution": 4279, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93791cbb-48cc-4d9b-9f37-916c210e480f", + "pk": "799cf2bd-0dfd-4b99-85b2-557d8e930011", "fields": { - "question": 348, - "contribution": 3895, + "question": 317, + "contribution": 3354, "answer": 1, - "count": 2 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9380d804-8956-4e75-bd72-0c92ffefc3ae", + "pk": "79b29647-a050-451b-883d-f9739e28d347", "fields": { - "question": 389, - "contribution": 3755, + "question": 322, + "contribution": 884, "answer": 4, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "938ae7b7-771c-4eac-acd9-5d7a46f238ae", + "pk": "79bfb2dd-2ee3-4b98-a634-ca151e43157e", "fields": { - "question": 352, - "contribution": 4022, + "question": 340, + "contribution": 1640, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93950e8f-53ff-479b-8614-4c5acc8e70a5", + "pk": "79c7267d-e8d6-4812-aff3-9b2f4703d3bc", "fields": { - "question": 337, - "contribution": 3693, + "question": 341, + "contribution": 3508, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9397742c-c7b7-4939-adb2-c90662a465f6", + "pk": "79dffb5a-ab5b-4ff1-877c-32efd57891a1", "fields": { - "question": 343, - "contribution": 3607, - "answer": 1, - "count": 5 + "question": 341, + "contribution": 3727, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "939dd98d-cccb-4add-b69e-33e85d239922", + "pk": "79e1c354-55b0-475a-a2e7-4ecd14cdcfd0", "fields": { - "question": 343, - "contribution": 3545, - "answer": 2, + "question": 326, + "contribution": 1186, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93a5a809-e769-46e9-89f4-a7570ef09bf3", + "pk": "79e48977-a544-46db-b531-a17021331fc3", "fields": { - "question": 329, - "contribution": 3859, - "answer": 2, - "count": 2 + "question": 368, + "contribution": 3435, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93b2b4b4-6ca1-4195-a3e2-c49486b87a71", + "pk": "79f071c7-cc77-44b6-851c-003c1589835d", "fields": { - "question": 437, - "contribution": 4052, - "answer": 3, - "count": 2 + "question": 460, + "contribution": 4091, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93b31215-0fe5-473a-90e4-fafeb4ae0e48", + "pk": "79f33506-7d7d-4093-bd1a-6889db57b5fe", "fields": { - "question": 356, + "question": 355, "contribution": 1776, "answer": 1, - "count": 7 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93b98120-0598-495f-9e2c-e6331f239539", + "pk": "79ffb4b3-f8e4-4b36-bb0d-6c4c6b582536", "fields": { - "question": 344, - "contribution": 1872, + "question": 341, + "contribution": 3693, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93be73ec-f1dd-46b8-be18-73215a151f53", + "pk": "7a0c7685-b8af-46e5-9863-7c9fb6f99e2d", "fields": { - "question": 359, - "contribution": 3653, + "question": 339, + "contribution": 3751, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93c408e3-7859-4c8d-bab7-52c9d8bc179d", + "pk": "7a0eb1be-5eb2-43ea-aea8-11e1a22354e5", "fields": { - "question": 319, - "contribution": 3683, + "question": 370, + "contribution": 1783, "answer": 1, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93c9eb4d-8c11-41a7-9f47-3daa24f940f4", + "pk": "7a1085a2-f8b5-4a1a-9a26-10677b67dacc", "fields": { - "question": 315, - "contribution": 1626, - "answer": 5, - "count": 2 + "question": 459, + "contribution": 4284, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93ca815f-54d1-4657-832f-c3dde623d7a2", + "pk": "7a176929-7a8a-4a4c-9e21-9ffe8d89e039", "fields": { - "question": 336, - "contribution": 3440, - "answer": 5, + "question": 477, + "contribution": 909, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93d26927-10e1-46ed-842b-334e303b1cb5", + "pk": "7a26e534-3dc1-49da-b2b3-a3ffcf070c29", "fields": { - "question": 255, - "contribution": 4116, - "answer": 3, - "count": 1 + "question": 315, + "contribution": 836, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93d781ab-c4dc-4641-b562-2300fd4da8c1", + "pk": "7a2db8bb-3acc-4f1b-bacb-44941a7db9c4", "fields": { - "question": 475, - "contribution": 3450, - "answer": -2, - "count": 1 + "question": 255, + "contribution": 1658, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93d81f5b-ed5d-4495-8f79-d3ef8463c137", + "pk": "7a2f547d-8725-4c72-aadf-9e64fa53aad9", "fields": { - "question": 331, - "contribution": 880, - "answer": -3, + "question": 355, + "contribution": 3831, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93d92335-3cd8-4026-9275-d5eb37e96d87", + "pk": "7a33ba86-0bb9-4a5f-8c36-f3adef25ad58", "fields": { - "question": 317, - "contribution": 3434, - "answer": 2, - "count": 15 + "question": 255, + "contribution": 912, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93dc3866-6612-43cd-985d-81c6b990a68c", + "pk": "7a3a17e3-f812-4da6-a670-15c7f5d9916e", "fields": { - "question": 326, - "contribution": 1659, + "question": 367, + "contribution": 1668, "answer": 2, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "93ed3e6f-5892-4e83-94e4-4cf58b554846", - "fields": { - "question": 347, - "contribution": 887, - "answer": 1, - "count": 12 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93f0ad57-310c-4305-a8c8-dd560d957998", + "pk": "7a4de6e2-626a-4aa4-8f87-385a4863e59c", "fields": { - "question": 473, - "contribution": 4138, - "answer": 2, + "question": 258, + "contribution": 912, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93f85b0b-3e37-4f7f-8d82-a6b7741fdde9", + "pk": "7a6cc963-1a7f-445c-b6d3-8907f9594102", "fields": { - "question": 320, - "contribution": 3354, + "question": 329, + "contribution": 4085, "answer": 4, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "93fa8bc0-e388-47f0-aa51-0882bef36f06", + "pk": "7a8d87d7-ff27-4eb2-85a0-1f42a135db22", "fields": { - "question": 315, - "contribution": 4128, - "answer": 1, - "count": 3 + "question": 348, + "contribution": 1246, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9407f1a9-8d51-40af-8219-d6500e111c50", + "pk": "7aa93ea8-dcb3-4a11-8759-6b60a0198f30", "fields": { - "question": 325, - "contribution": 3556, - "answer": 2, - "count": 4 + "question": 473, + "contribution": 3462, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "940fb13a-dc5d-4bc5-a74b-324130b17d75", + "pk": "7ab3a09f-cdaa-4188-a2ba-34495ea68e56", "fields": { - "question": 336, - "contribution": 1640, - "answer": 2, + "question": 321, + "contribution": 880, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94107dc0-5ec4-47b6-b363-37cdbf3a276d", + "pk": "7ac161e7-7e9d-417b-8d90-c9865ed24f62", "fields": { - "question": 353, - "contribution": 1782, - "answer": 1, - "count": 6 + "question": 362, + "contribution": 3919, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9414fab5-8538-41f3-b8a4-6d06ca91e76c", + "pk": "7ac60bc3-7ee6-4705-8e10-647ef014dc50", "fields": { - "question": 259, - "contribution": 3721, + "question": 345, + "contribution": 3545, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94248472-4c4f-4968-aa78-e643333465ae", + "pk": "7ac8dc39-3c36-4430-8390-2141ecf2c82b", "fields": { - "question": 363, - "contribution": 1810, + "question": 345, + "contribution": 3912, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "942b1f28-33a5-4824-9376-b4fa0c840aa4", + "pk": "7acb7197-9d67-453d-928a-aa7046aeacd5", "fields": { - "question": 368, - "contribution": 3556, - "answer": 2, - "count": 1 + "question": 345, + "contribution": 1207, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9430a46c-2282-495c-beea-63fbdf0373de", + "pk": "7acdc7df-5980-4aa9-a5ec-cd25e1f21b5d", "fields": { - "question": 476, - "contribution": 1837, - "answer": 3, - "count": 2 + "question": 367, + "contribution": 1724, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "943fa857-26e0-4cfa-9745-c6683602749f", + "pk": "7ad4bd35-3169-48c6-8957-17aabf2fba6e", "fields": { - "question": 323, - "contribution": 4138, - "answer": 3, - "count": 4 + "question": 327, + "contribution": 3722, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "944b61a6-525f-4a72-8b26-773989ac5930", + "pk": "7ad68264-75fd-4c40-b7da-67620f856b64", "fields": { - "question": 475, - "contribution": 1694, - "answer": -3, + "question": 349, + "contribution": 3515, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9463cfc9-fc6f-48c4-8827-a4a663e9def5", + "pk": "7ad830c0-b6fe-4718-ac43-bf2d55dec61b", "fields": { - "question": 477, - "contribution": 3859, - "answer": 0, - "count": 19 + "question": 317, + "contribution": 1680, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9464efc3-21e7-4206-8b1b-667338395c13", + "pk": "7ad86260-94ec-45ac-ac8f-40720b2c8ea3", "fields": { - "question": 347, - "contribution": 1250, - "answer": 1, - "count": 5 + "question": 317, + "contribution": 3390, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "946eb0d9-acd6-49ab-88e3-2fa59e0338f8", + "pk": "7ae3b7c7-006f-4822-9157-9d07ddd486cf", "fields": { - "question": 354, - "contribution": 3852, + "question": 349, + "contribution": 3900, + "answer": 4, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "7ae52867-382f-434b-a148-114f5180092c", + "fields": { + "question": 326, + "contribution": 4203, "answer": 1, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9471055d-a349-4165-8377-82c0f8766260", + "pk": "7ae75e96-caa8-4e16-a150-df35977fbafd", "fields": { - "question": 367, - "contribution": 4046, - "answer": 4, + "question": 343, + "contribution": 4129, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9488815c-0b36-45c4-a5ff-788d3d4cfb9c", + "pk": "7af03afe-842b-4506-954e-2b4fcee0507c", "fields": { - "question": 319, - "contribution": 3406, - "answer": 4, - "count": 1 + "question": 344, + "contribution": 3545, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94895f2e-89d4-46b0-89d0-dbd61e2e27ae", + "pk": "7b00daf9-83eb-4791-9b26-86af2f554037", "fields": { - "question": 319, - "contribution": 908, - "answer": 4, - "count": 9 + "question": 347, + "contribution": 3895, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "948c2eb3-d96c-4b5b-af2a-e32642fc57cb", + "pk": "7b04eaef-77cb-489b-b67e-ee164780b477", "fields": { - "question": 475, - "contribution": 3795, - "answer": 2, - "count": 2 + "question": 477, + "contribution": 1778, + "answer": 0, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "948f3f6d-036f-41fd-8d18-e1782050091b", + "pk": "7b059d06-1f98-47ba-95e1-e6a57c9aef57", "fields": { - "question": 347, - "contribution": 1228, + "question": 360, + "contribution": 1826, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9491f5c8-1ca6-41db-ae09-932f8a4782a3", + "pk": "7b069a13-bff3-4d02-a1bb-fcca9f1a9952", "fields": { "question": 259, - "contribution": 1612, - "answer": 3, - "count": 5 + "contribution": 4084, + "answer": 1, + "count": 25 } }, { "model": "evaluation.ratinganswercounter", - "pk": "949af8f8-ecd5-45b5-9167-3dce7f2cfc02", + "pk": "7b195631-1d6d-49d8-bce5-2650b0cd9ac4", "fields": { - "question": 369, - "contribution": 1799, - "answer": 4, - "count": 1 + "question": 366, + "contribution": 3932, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "949ba03d-5035-4d24-92b5-136dfc296102", + "pk": "7b2196f9-7a1d-4c1c-8bf0-e7168212f6f6", "fields": { - "question": 341, - "contribution": 3416, - "answer": 2, - "count": 2 + "question": 355, + "contribution": 4025, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "949c40d2-12c3-46a3-95ba-3263446676b9", + "pk": "7b23392d-01af-4d4c-b41c-c956d60cce34", "fields": { - "question": 397, - "contribution": 3711, - "answer": 1, + "question": 257, + "contribution": 836, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "949c7a01-fd2a-442e-8ad0-56ce14bc6169", + "pk": "7b249e7f-5f3b-4aa3-b739-8bf85a4aa925", "fields": { - "question": 367, - "contribution": 3390, + "question": 355, + "contribution": 1154, "answer": 2, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94a2f352-3651-4cff-b949-2122916c81e7", + "pk": "7b2b2e14-5000-428a-8bd1-c23f5cf8ef70", "fields": { - "question": 368, - "contribution": 4047, - "answer": 2, + "question": 370, + "contribution": 3835, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94a73519-4f99-4b69-b88e-0c73a6193bee", + "pk": "7b331fe6-8119-4253-9992-29b110eb27f5", "fields": { - "question": 363, - "contribution": 3647, - "answer": 1, + "question": 341, + "contribution": 3440, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94af87ad-c79d-4c09-8378-3f95e0b1cd81", + "pk": "7b367bd7-f6a4-49ba-bd3b-207cdfc523b8", "fields": { - "question": 316, - "contribution": 3354, + "question": 367, + "contribution": 1668, "answer": 1, - "count": 17 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94baf37f-0c78-48fe-8594-967de1036dc1", + "pk": "7b4cc7e7-5672-46e4-ab58-6286d9f9e942", "fields": { - "question": 355, - "contribution": 3847, - "answer": 1, + "question": 338, + "contribution": 3703, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94bb6933-2016-41ad-ae7f-8e9f59056e0f", + "pk": "7b4fa432-fa7b-42c1-ad40-cff9e20b7fa3", "fields": { - "question": 363, - "contribution": 3929, + "question": 321, + "contribution": 3422, "answer": 1, - "count": 12 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94c1c663-c5fa-4eed-aad2-1bc0214c4d2a", + "pk": "7b59eb50-c103-4b09-8eab-e7a67a890b83", "fields": { - "question": 354, - "contribution": 1189, - "answer": 3, - "count": 2 + "question": 317, + "contribution": 3422, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94cf22e3-9fa8-45a0-808d-17d1188aa7ed", + "pk": "7b7e52c0-173b-4d65-ba31-c8435923cf3f", + "fields": { + "question": 328, + "contribution": 1777, + "answer": 2, + "count": 4 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "7b8a50c3-5cfb-420b-b785-5901336cb17e", "fields": { "question": 258, - "contribution": 1626, + "contribution": 3679, "answer": 1, - "count": 6 + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94d4cee9-4e72-49f2-a094-efd9ac1c0ffd", + "pk": "7b8b0c23-67cd-4194-a105-2bba65fcb2e4", "fields": { - "question": 360, - "contribution": 3919, - "answer": 3, - "count": 1 + "question": 262, + "contribution": 3434, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94dc2b88-35c3-4b7c-9476-19dba49d3092", + "pk": "7b944f54-c293-42a4-9acb-ee02c85207ac", "fields": { - "question": 322, - "contribution": 4120, - "answer": 5, + "question": 346, + "contribution": 1246, + "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94e0e139-2ca5-4981-8bf5-3097abc66ef3", + "pk": "7b9eab3f-0eae-4420-b68e-51c6c06c66be", "fields": { - "question": 323, - "contribution": 3406, - "answer": 2, - "count": 4 + "question": 344, + "contribution": 4188, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94e86133-6794-4386-9861-9dc7978fcd0b", + "pk": "7bad8757-54b5-440b-babd-812abea5fc6c", "fields": { - "question": 262, - "contribution": 1668, - "answer": 2, - "count": 2 + "question": 462, + "contribution": 4141, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94f0f268-0999-493e-bb93-ed1e640821eb", + "pk": "7baf6ec4-65ec-4b33-890b-8fdffda04005", "fields": { - "question": 327, - "contribution": 1287, - "answer": 2, - "count": 2 + "question": 323, + "contribution": 3721, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "94f5d89d-5b23-4952-800b-61e6a51f8ea8", + "pk": "7bb23931-0f59-441c-94e9-d09d1fd079aa", "fields": { - "question": 351, - "contribution": 804, + "question": 344, + "contribution": 1156, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9539c75b-2403-482e-8699-6eef00d86291", + "pk": "7bb3bfce-8b43-4152-9eba-5b26fcaa906a", "fields": { - "question": 343, - "contribution": 3555, - "answer": 1, - "count": 5 + "question": 477, + "contribution": 1778, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95408815-0129-4cd9-8a0a-e201325d160b", + "pk": "7bd6636d-965a-4088-a2fa-4994ee0bc431", "fields": { - "question": 319, - "contribution": 3390, - "answer": 4, - "count": 10 + "question": 431, + "contribution": 4119, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95477c40-1551-46a7-b488-8ffc580b88fd", + "pk": "7bda612c-4d08-46f6-abd2-5180c09c94ed", "fields": { - "question": 336, - "contribution": 3486, - "answer": 3, + "question": 366, + "contribution": 3932, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "954c5356-e7c8-4833-9d53-130ac0b0b617", + "pk": "7be12aa8-ce2f-4baf-b751-a89418da521b", "fields": { - "question": 257, - "contribution": 3390, - "answer": 3, - "count": 14 + "question": 367, + "contribution": 3422, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "954db59b-1335-44ff-ace9-ed460915798c", + "pk": "7be9d635-da02-4ade-8a55-708e04f95167", "fields": { - "question": 320, - "contribution": 4120, - "answer": 1, + "question": 259, + "contribution": 3354, + "answer": 2, "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9556f0ac-ee1a-4fca-b143-639dde76b790", + "pk": "7bed6a87-c29b-4b8f-8679-6c0eb5e791ac", "fields": { - "question": 345, - "contribution": 3941, - "answer": 2, - "count": 2 + "question": 331, + "contribution": 3422, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "956145d5-a1f3-4334-b715-871fd794c334", + "pk": "7bf64014-1fd7-40d3-b61f-7a29512f23a0", "fields": { - "question": 333, - "contribution": 1283, + "question": 366, + "contribution": 3592, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95677767-bc1f-4012-8cdd-d95f522cb977", + "pk": "7bf9a241-8e6c-4916-b6ac-d66e88c50602", "fields": { - "question": 359, - "contribution": 1807, - "answer": 1, - "count": 1 + "question": 473, + "contribution": 1634, + "answer": 0, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9571ff1a-554b-429d-b0ba-3bbbcc4b9c54", + "pk": "7c0dcbff-43cb-4a87-a2b9-f362a5721dbc", "fields": { - "question": 472, - "contribution": 3394, + "question": 257, + "contribution": 1658, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9574e73f-8d89-46d5-aed1-2dc16227361d", + "pk": "7c0e9d99-3cae-4ed0-9b8e-ad7389eea7f2", "fields": { - "question": 316, - "contribution": 3472, + "question": 327, + "contribution": 1778, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "957b76aa-d778-45ac-8072-ca92e62de8b2", + "pk": "7c140d10-fd08-479a-ba1b-942b7bc56a1b", "fields": { - "question": 258, - "contribution": 4052, - "answer": 3, - "count": 3 + "question": 477, + "contribution": 3463, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95821a7f-c506-48e5-9efe-8a871504fc95", + "pk": "7c22ba37-b9b9-443c-85f2-b276c8424cc3", "fields": { - "question": 366, - "contribution": 4204, - "answer": 1, - "count": 17 + "question": 356, + "contribution": 4244, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9582dc34-d783-4e55-b95c-f37ea9937597", + "pk": "7c3012a4-f5a3-4add-b333-126c5486daca", "fields": { - "question": 472, - "contribution": 3434, - "answer": 5, - "count": 16 + "question": 354, + "contribution": 3776, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95864e0d-f5e0-4231-b81f-9426ee66df08", + "pk": "7c3c6917-fdb9-42c1-af0e-22a453045b1e", "fields": { - "question": 476, - "contribution": 4138, - "answer": 3, - "count": 2 + "question": 328, + "contribution": 3680, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9588f270-47cf-4cbd-8f43-a9815f23502b", + "pk": "7c45f902-9efe-4032-bf99-26c8e75a6416", "fields": { - "question": 317, + "question": 260, "contribution": 4138, - "answer": 2, - "count": 13 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "959905ab-452b-4925-91aa-de852e534277", - "fields": { - "question": 333, - "contribution": 1284, - "answer": 1, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95a2da8d-b6d1-46ff-8647-70c12485cdd3", + "pk": "7c4913d1-1b30-40fa-91c5-aa5582b85212", "fields": { - "question": 259, - "contribution": 1612, - "answer": 5, - "count": 1 + "question": 328, + "contribution": 4085, + "answer": 3, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95b017e3-98cb-46ec-ac83-a0192d1a87df", + "pk": "7c627e7a-edc1-4c72-b223-b2fc725252f1", "fields": { - "question": 368, - "contribution": 1659, - "answer": 2, + "question": 328, + "contribution": 913, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95b891c2-d04e-4eb6-aadc-f54a335acfed", + "pk": "7c781c49-8cb4-4e29-a4f4-32badbd181a6", "fields": { - "question": 473, - "contribution": 804, - "answer": 0, + "question": 260, + "contribution": 3390, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95c0c7f2-3eb0-4d72-8c13-c68472baa396", + "pk": "7c785c39-48bb-4946-9e38-19ffec2e0148", "fields": { "question": 362, "contribution": 3929, - "answer": 1, - "count": 12 + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95da3ac2-db28-4e25-9582-5cc0cc2e1376", + "pk": "7c7a3b3c-9e6c-4f44-afd8-27dd08943f8d", "fields": { - "question": 353, - "contribution": 3985, - "answer": 1, - "count": 1 + "question": 323, + "contribution": 4084, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95dcd4d3-202d-48e9-b458-fc61e41039c7", + "pk": "7c7ae664-f1ca-4c58-a797-7af003159862", "fields": { - "question": 360, - "contribution": 3921, - "answer": 3, + "question": 341, + "contribution": 3486, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95e093ac-a59d-4612-883f-df1bfef739ed", + "pk": "7c8fcbf2-9ce8-4101-b9f8-55f30b0ff96c", "fields": { - "question": 349, - "contribution": 887, + "question": 343, + "contribution": 1872, "answer": 1, - "count": 8 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95e33599-0d56-4719-9963-c73d403f01bf", + "pk": "7c8ff310-8139-4ca9-8796-e0dcb71f712a", "fields": { - "question": 347, - "contribution": 3528, + "question": 315, + "contribution": 3462, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95f0ccaa-39e6-4ab1-a5f7-61c316493044", + "pk": "7c906168-09b0-48e0-8257-d4b3bbfaafae", "fields": { - "question": 345, - "contribution": 3383, - "answer": 1, - "count": 1 + "question": 316, + "contribution": 4100, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95f25751-ecbb-4193-b983-016e9bea9657", + "pk": "7c9b5f61-269e-4924-ab0c-87a3069d3c4a", "fields": { - "question": 338, - "contribution": 1702, + "question": 368, + "contribution": 3726, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "95f3b7b3-3f99-403b-90c9-288c36ee821a", + "pk": "7ca69fde-1000-471d-99ab-5b4e19e3dd03", "fields": { - "question": 335, - "contribution": 3936, - "answer": 5, + "question": 325, + "contribution": 823, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "960353e2-6585-4d8e-a672-bc0dd991ce8d", + "pk": "7caa76ee-2fea-420c-9bd6-9dc5cdf61063", "fields": { - "question": 335, - "contribution": 3552, - "answer": 4, - "count": 3 + "question": 356, + "contribution": 4037, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "960f9f07-322c-4917-bbdd-b6d9c3794c77", + "pk": "7cb38343-000c-4ee1-adc7-c5499875f7f8", "fields": { - "question": 327, - "contribution": 4101, - "answer": 2, - "count": 6 + "question": 349, + "contribution": 3555, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96169719-7de8-4257-9f01-19724c656ac7", + "pk": "7cb4e2e7-4fea-4a0f-bea7-9c195dc7054e", "fields": { - "question": 472, - "contribution": 4084, + "question": 325, + "contribution": 3726, "answer": 5, - "count": 36 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96172f80-eb54-4545-8ed4-ea7e2f92aaac", + "pk": "7cb9b815-de2a-4f05-be64-f86513787de5", "fields": { - "question": 343, - "contribution": 1235, + "question": 328, + "contribution": 4085, "answer": 1, - "count": 6 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96193ac4-1246-4cf0-838e-abdc51ff6ca5", + "pk": "7cbc5784-73e6-4df5-aa6b-4460cf01ef76", "fields": { - "question": 322, - "contribution": 862, - "answer": 4, + "question": 343, + "contribution": 3899, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9619d6b7-f8e9-4540-b8a5-5a9a4f9b55fe", + "pk": "7cbd0813-81f9-423a-824b-7d1c86e8cf00", "fields": { - "question": 473, - "contribution": 4100, - "answer": -2, - "count": 3 + "question": 329, + "contribution": 3395, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9624c40e-497f-4c8e-9883-c5c79ebe80ea", + "pk": "7cc48423-a2ed-4962-9002-12663f84db54", "fields": { - "question": 476, - "contribution": 1658, - "answer": 0, - "count": 12 + "question": 355, + "contribution": 3834, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "962651ef-c561-4292-89a9-2845e2e14a3c", + "pk": "7ccbf86a-bcff-497c-9c70-ca6274040835", "fields": { "question": 349, - "contribution": 841, + "contribution": 1822, "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9628a48d-3b51-401d-8782-f74825359d32", + "pk": "7ccc23bb-0cc2-45db-b8b3-7784f7ca8669", "fields": { - "question": 473, - "contribution": 4084, - "answer": -2, + "question": 255, + "contribution": 1626, + "answer": 4, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "7cce914f-723a-47cf-965e-7cdbcca569df", + "fields": { + "question": 321, + "contribution": 3390, + "answer": 4, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "7cd6f3d1-294b-43d5-ab0c-0891429400ea", + "fields": { + "question": 366, + "contribution": 3593, + "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9629d68e-b695-4c06-a42c-ca64aca49bd8", + "pk": "7cdac9f6-83d8-4fa3-b009-d7d0f026c28c", "fields": { - "question": 327, - "contribution": 4153, + "question": 352, + "contribution": 788, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "962b5601-c51c-4e75-a44e-5847ea72bdaa", + "pk": "7cdfac9e-6db9-4d47-a35b-41404d5603e4", "fields": { - "question": 432, - "contribution": 4008, - "answer": 2, - "count": 1 + "question": 346, + "contribution": 3939, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9645e765-ab48-455a-bd50-c2919c409171", + "pk": "7ce3fcea-9da1-479c-ad62-5e008a4b333d", "fields": { - "question": 319, - "contribution": 912, - "answer": 2, - "count": 20 + "question": 353, + "contribution": 4228, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96496f61-39fc-4297-b9c3-24735c15f8e8", + "pk": "7ce5fba6-a0f2-4e11-bdc9-ac969abb485a", "fields": { - "question": 367, - "contribution": 3472, + "question": 356, + "contribution": 1188, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "965b69db-bec7-4a51-95c7-831a0e14c44e", + "pk": "7cea0362-6d13-402f-9126-d14106d59aba", "fields": { - "question": 316, - "contribution": 3721, + "question": 349, + "contribution": 3517, "answer": 2, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9660ee74-f812-49e8-9390-a4a85531d9ec", + "pk": "7cee7f5a-48a6-454f-be63-856b43d5e51a", "fields": { - "question": 258, - "contribution": 1668, - "answer": 2, - "count": 2 + "question": 347, + "contribution": 1207, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96685bf4-07c1-4f3f-a618-25c565c24e0d", + "pk": "7cf18d81-f341-4d17-a8cd-7e851eaf53bf", "fields": { - "question": 475, - "contribution": 1656, - "answer": 2, + "question": 345, + "contribution": 887, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9668b780-5eda-48b1-99ca-2f73d27628cb", + "pk": "7cfad83c-874e-4718-a33b-7e46951a1fa9", "fields": { - "question": 477, - "contribution": 3666, - "answer": 0, - "count": 8 + "question": 345, + "contribution": 841, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "966daaec-d728-4e9c-8049-48f27688a045", + "pk": "7cfdd6e3-f33d-4f44-bdab-07d2a60e7e23", "fields": { - "question": 327, - "contribution": 823, + "question": 350, + "contribution": 3735, + "answer": 2, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "7cfdfb76-de1e-4ac4-a497-d4216fe0fb4b", + "fields": { + "question": 317, + "contribution": 822, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "966edc26-5195-4fec-be82-4e92429d8c65", + "pk": "7d06d467-494c-42b5-bebf-e7595316fb81", "fields": { - "question": 343, - "contribution": 1246, - "answer": 3, - "count": 2 + "question": 345, + "contribution": 3608, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96789cb9-25dd-426e-b280-3b1077638baf", + "pk": "7d165421-6ff9-490d-8fa1-1f5349bb13f0", "fields": { - "question": 345, - "contribution": 4123, + "question": 475, + "contribution": 894, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "967d51dc-ccb5-4117-a75b-94fd43402501", + "pk": "7d1ab717-b8e1-4192-863b-92c411d9b8fb", "fields": { - "question": 369, - "contribution": 1804, - "answer": 1, - "count": 7 + "question": 349, + "contribution": 1860, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "969ace5e-4b0d-4749-aa42-5bca95694c21", + "pk": "7d250cbd-e60d-43a3-bfe3-316bda051729", "fields": { - "question": 389, - "contribution": 3711, - "answer": 3, + "question": 457, + "contribution": 4073, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96a902f0-9c7c-462a-aa07-58f7ab1a7bbb", + "pk": "7d2740c1-d8c8-4063-ba87-14b2feead3c3", "fields": { - "question": 460, - "contribution": 4283, + "question": 321, + "contribution": 3683, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96bdcd70-babd-46f0-b01e-3f6486e08664", + "pk": "7d343489-d66a-461c-b57b-5f169185276a", "fields": { - "question": 328, - "contribution": 1287, - "answer": 2, - "count": 9 + "question": 259, + "contribution": 1612, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96c5b1b0-4183-4aa5-9321-cc3c89f11c1c", + "pk": "7d3561a5-eccb-4878-81ed-2b18d5cb72a0", "fields": { - "question": 320, - "contribution": 1634, - "answer": 3, - "count": 4 + "question": 473, + "contribution": 3645, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96c939d6-65f3-42de-8938-eee56cd4f1fb", + "pk": "7d3fe6da-b8b5-4780-8786-1d8a1174810e", "fields": { - "question": 348, - "contribution": 3555, + "question": 361, + "contribution": 3893, "answer": 1, - "count": 3 + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96d32495-c539-49db-b949-9d5e0c803d16", + "pk": "7d44f0d1-574f-4251-84a6-8f204446ba39", "fields": { - "question": 329, - "contribution": 913, - "answer": 3, + "question": 255, + "contribution": 908, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96d5c811-6fe3-49e4-8d0e-bdee6faa15b6", + "pk": "7d492981-babe-4b38-8527-a47cf25a35f4", "fields": { - "question": 403, - "contribution": 4177, - "answer": 3, - "count": 1 + "question": 258, + "contribution": 884, + "answer": 2, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96db7c12-dd4d-41ec-9eb7-90dbdc8a1b42", + "pk": "7d50ef4b-9552-4dfc-8e29-34913042bcad", "fields": { - "question": 327, - "contribution": 1287, + "question": 357, + "contribution": 1189, "answer": 1, - "count": 26 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96dca4bf-a0c9-4e20-8782-97d001e2f8f1", + "pk": "7d56664a-2c6e-4df4-b71d-0e54efcabefa", "fields": { - "question": 360, - "contribution": 1825, + "question": 368, + "contribution": 3684, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96de80fe-920e-447c-ac38-b20d3d151147", + "pk": "7d56994b-81aa-4236-8672-e0f435912fcd", "fields": { - "question": 353, - "contribution": 3985, - "answer": 2, + "question": 339, + "contribution": 3795, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96e0133a-314a-4620-aac5-ebc2cef31f9f", + "pk": "7d5c7205-f683-45fe-9332-7c2a757c42b8", "fields": { - "question": 354, - "contribution": 1782, - "answer": 4, - "count": 2 + "question": 257, + "contribution": 3739, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96f583be-9134-434d-aef9-cf31fdc4d965", + "pk": "7d61bb45-b96e-4698-b4c1-ffa5d414a095", "fields": { - "question": 319, - "contribution": 1658, + "question": 346, + "contribution": 3879, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96fc04f8-add6-4195-85bd-ed87decc10be", + "pk": "7d63fd31-5d0f-4e93-b34a-09a2d27ad1d0", "fields": { - "question": 339, - "contribution": 3745, - "answer": -2, + "question": 328, + "contribution": 4153, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "96fe6de1-b6b4-45c3-aa5c-07938a283234", + "pk": "7d672ccb-4405-45a4-b54b-5fec3d1c90b6", "fields": { - "question": 323, - "contribution": 822, + "question": 257, + "contribution": 1680, "answer": 1, - "count": 7 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97064d2e-272d-4891-8a24-1b5be77885ee", + "pk": "7d70e9f2-f55e-435c-90c3-8c6f3093fac9", "fields": { - "question": 476, - "contribution": 4084, + "question": 475, + "contribution": 3785, "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9707a56e-53a2-4b88-a8ca-ad50d179129b", + "pk": "7d71880c-c2e6-43eb-8e68-0a068b0492ad", "fields": { - "question": 262, - "contribution": 3721, - "answer": 5, + "question": 346, + "contribution": 1645, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "970aeafd-3e69-4f7b-9fae-f4aefb714a0c", + "pk": "7d718d22-35a2-4af4-8fc5-a7359c462de7", "fields": { - "question": 335, - "contribution": 3886, + "question": 472, + "contribution": 918, "answer": 1, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "971145b5-6404-4c23-9d4d-508b80c17310", + "pk": "7d76f5a3-c14f-4613-bb57-9b9c54d9ee51", "fields": { - "question": 463, - "contribution": 3453, - "answer": 1, + "question": 328, + "contribution": 1635, + "answer": 4, + "count": 4 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "7d770e1a-ff51-456c-9a58-99d1ae7d3e2e", + "fields": { + "question": 475, + "contribution": 788, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9712bd07-ae23-4dad-9267-3a29c993931b", + "pk": "7d7dec32-344b-42a9-b3a3-9095ebd95529", "fields": { - "question": 345, - "contribution": 3609, + "question": 328, + "contribution": 3884, "answer": 1, - "count": 5 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9717b828-603d-4395-9758-0a5b91012484", + "pk": "7d854885-1a09-4fc7-9d95-f48f2ab9f914", "fields": { - "question": 340, - "contribution": 862, + "question": 328, + "contribution": 3556, "answer": 3, - "count": 2 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "972d6322-47e2-4b10-b68d-04cad2628b42", + "pk": "7d8807a2-76c1-403f-9614-4be1f926afa2", "fields": { - "question": 428, - "contribution": 4152, - "answer": 4, - "count": 3 + "question": 355, + "contribution": 3518, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9735a56a-ae6b-40a4-8e3e-7e2a5997680e", + "pk": "7d910047-d9fd-4579-81e5-6c39cb413e74", "fields": { - "question": 352, - "contribution": 804, - "answer": 4, - "count": 2 + "question": 341, + "contribution": 4020, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9744fd82-3ea6-4e9c-914e-9f3f4aa0f875", + "pk": "7d9253f8-fe74-4070-aa85-0820fc176604", "fields": { - "question": 477, - "contribution": 1288, + "question": 341, + "contribution": 4036, "answer": 1, - "count": 8 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "974cb9d2-b7a1-48fa-9c13-8d72099d203e", + "pk": "7d96ec52-3d17-4a54-86d9-8aaad5a85846", "fields": { - "question": 434, - "contribution": 4090, - "answer": 3, + "question": 346, + "contribution": 3451, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "974cf265-b0eb-4456-8065-2af184403251", + "pk": "7d9c70e1-9f76-43cb-9efe-4df48a8d6f33", "fields": { - "question": 367, - "contribution": 4128, - "answer": 3, - "count": 4 + "question": 346, + "contribution": 1863, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9753baf6-8fd4-48c5-9880-d4db0c85ae52", + "pk": "7d9d66c6-93cd-4939-9a93-e00a40d2c3d4", "fields": { - "question": 476, - "contribution": 1634, - "answer": 0, - "count": 24 + "question": 332, + "contribution": 1284, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9753d53f-9ade-474c-b570-cba3baaab81c", + "pk": "7da4413c-2972-4b11-a8eb-159695db67f8", "fields": { - "question": 473, - "contribution": 4090, - "answer": -2, + "question": 347, + "contribution": 1880, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "975440c1-7ca2-42f3-9c71-5c16e48b39ae", + "pk": "7da86876-7daf-46c3-935d-dbe2125f5ab1", "fields": { - "question": 354, - "contribution": 3834, - "answer": 2, + "question": 367, + "contribution": 1680, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9757e323-02c0-47aa-9edd-a03ecad70aba", + "pk": "7dc1218a-030e-4d99-b57e-52419d2256fc", "fields": { - "question": 255, - "contribution": 4084, - "answer": 3, - "count": 8 + "question": 320, + "contribution": 3422, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9761e0a5-f12f-4883-891a-b694ed4f6949", + "pk": "7dd23710-1c73-4f74-a01b-ebc1897ba8f7", "fields": { - "question": 475, - "contribution": 832, - "answer": -1, - "count": 2 + "question": 333, + "contribution": 3631, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9762c8d7-7acb-4716-b699-2513cff07acc", + "pk": "7dd258e4-e20f-4851-bb5d-9b24d8f4dab5", "fields": { - "question": 343, - "contribution": 3606, + "question": 321, + "contribution": 864, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97653356-f551-4090-8573-de205a2d738b", + "pk": "7dda4b50-908f-4382-a528-195727e6d420", "fields": { - "question": 458, - "contribution": 4141, + "question": 349, + "contribution": 4095, "answer": 1, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97779f99-c0f4-4cbe-bc5e-2b1c758794ba", + "pk": "7de471d6-fb79-4c13-a2b6-78cdde1c60fe", "fields": { - "question": 333, - "contribution": 3593, - "answer": 3, - "count": 3 + "question": 335, + "contribution": 4261, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9777aad9-7b68-41e0-985c-e0de97610091", + "pk": "7df32c66-94dc-49d7-9550-db2a85d2129f", "fields": { - "question": 259, - "contribution": 1634, + "question": 352, + "contribution": 790, "answer": 1, - "count": 11 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "977ca6bb-791f-45a3-9125-a10c0ab0f688", + "pk": "7dfa7590-2d07-4d03-9a85-af9721f0a5dd", "fields": { - "question": 367, - "contribution": 3434, + "question": 477, + "contribution": 913, + "answer": 0, + "count": 30 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "7dfe205d-2a78-4984-b57c-007989fa0e59", + "fields": { + "question": 320, + "contribution": 3665, "answer": 1, - "count": 8 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9785ccd4-97a0-4930-9fed-77d6a93c1c28", + "pk": "7e081288-58c1-435c-bdba-05649c425cdc", "fields": { - "question": 345, - "contribution": 3728, + "question": 369, + "contribution": 3651, "answer": 1, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9793c229-1404-49ec-b51c-084f704abccf", + "pk": "7e0c675d-10b0-4a4e-a80b-8af235228b29", "fields": { - "question": 319, - "contribution": 4100, + "question": 361, + "contribution": 3944, "answer": 1, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97959787-ca3e-4e50-b24a-db533d7039bc", + "pk": "7e3f76f1-b44b-4327-bba9-40277cb11f3c", "fields": { - "question": 475, - "contribution": 1662, - "answer": -2, - "count": 1 + "question": 335, + "contribution": 3566, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "979639a0-08a9-4c3f-a25b-67b2f4fe0a7c", + "pk": "7e3fd0f7-23de-4f60-913c-ec1528129ea9", "fields": { - "question": 255, - "contribution": 4046, + "question": 259, + "contribution": 836, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9796555e-b284-47d7-8aab-1c23fffd868b", + "pk": "7e45a0c8-26da-4db9-aea3-2baa0dc6ece9", "fields": { "question": 316, - "contribution": 1837, + "contribution": 908, "answer": 1, - "count": 6 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "979f362c-ce7b-463a-b408-e64083c94401", + "pk": "7e51a5b9-2b5f-449b-af48-f81669dd7647", "fields": { - "question": 327, - "contribution": 1802, + "question": 328, + "contribution": 3885, "answer": 2, - "count": 13 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97a0c420-7f6e-4e70-bbea-be714d22f913", + "pk": "7e54be74-bab5-4243-bab5-dc7a6735cab0", "fields": { - "question": 332, - "contribution": 1812, - "answer": 5, + "question": 461, + "contribution": 4091, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97a19e9e-47cb-4ccf-a5e7-a99ea0286b16", + "pk": "7e714936-673a-4017-9a5a-cde37cd72609", "fields": { - "question": 379, - "contribution": 3781, - "answer": 5, - "count": 1 + "question": 344, + "contribution": 1872, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97aa78b9-ba18-48a0-8620-0db569e09ba4", + "pk": "7e73cc21-d30a-43c5-ace2-ff71223baf31", "fields": { - "question": 356, - "contribution": 1781, + "question": 357, + "contribution": 1785, "answer": 1, - "count": 6 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97af64f5-419b-4908-8c08-dd6cee49e47c", + "pk": "7e8ff3ac-2560-44b2-8daf-4a1cebfd03fc", "fields": { - "question": 331, - "contribution": 822, + "question": 317, + "contribution": 4118, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97b3b46b-7c1e-48eb-8d5c-32758f1ec9a9", + "pk": "7e941079-c1f5-44bd-96ac-51f5450de26d", "fields": { - "question": 369, - "contribution": 1804, - "answer": 5, - "count": 1 + "question": 329, + "contribution": 3435, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97b5b633-49d0-4595-9989-082de152bdba", + "pk": "7e97a697-613c-4c04-b6ce-cf49dc8641e1", "fields": { - "question": 329, - "contribution": 1798, - "answer": 1, - "count": 4 + "question": 362, + "contribution": 3943, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97cef365-16a9-4366-b764-55f042978334", + "pk": "7ea4ba69-a266-4e96-91be-8b85d36dbed3", "fields": { - "question": 319, - "contribution": 864, + "question": 257, + "contribution": 4128, "answer": 1, - "count": 7 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97e29b25-df7a-4746-ad38-ba331f833d32", + "pk": "7ea56238-72ab-4a8f-a7b3-0b522525c00f", "fields": { - "question": 315, - "contribution": 4116, - "answer": 5, + "question": 347, + "contribution": 1156, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97e9e1d2-77d3-408f-815e-e20ab05fa191", + "pk": "7ea7333f-99ef-4956-a383-f8d98e3a4f88", "fields": { - "question": 473, - "contribution": 4116, - "answer": 3, - "count": 4 + "question": 366, + "contribution": 3598, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97ebbfa3-ef2a-4d09-9153-5abb55e0dd4e", + "pk": "7eab5895-ccc3-4a1a-bb9b-f468fc6b108c", "fields": { - "question": 353, + "question": 356, "contribution": 3835, - "answer": 1, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "97f28abc-244f-4229-84be-d5ad676dd128", - "fields": { - "question": 260, - "contribution": 3422, - "answer": 1, - "count": 18 + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "97f44a9e-393e-4700-b7d4-096d605324be", + "pk": "7eae6889-5890-4d1c-b48a-13880e31fac3", "fields": { - "question": 319, - "contribution": 912, - "answer": 1, - "count": 16 + "question": 340, + "contribution": 3482, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "980a8fef-867b-488a-90ce-16c0404d41cc", + "pk": "7eb19426-4087-4a22-b3ee-688c0ca35393", "fields": { - "question": 477, - "contribution": 1287, + "question": 255, + "contribution": 908, "answer": 2, - "count": 3 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "980c9a23-5a71-4ceb-be86-05091758ef03", + "pk": "7eb19649-280f-4ac1-a6b8-6ae51f62e973", "fields": { - "question": 321, - "contribution": 1680, + "question": 315, + "contribution": 3725, "answer": 2, - "count": 2 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98106bd7-cf71-444d-8941-cdad2b982db5", + "pk": "7ebcdd8c-4f85-456f-a634-f00bec8b38cb", "fields": { - "question": 355, - "contribution": 4268, - "answer": 4, + "question": 347, + "contribution": 3518, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "981a450e-3eb9-41a5-ac70-ef8bf1e37eed", + "pk": "7ec20f4a-82bd-4461-84d2-0fdf8759cc03", "fields": { - "question": 367, - "contribution": 4118, + "question": 333, + "contribution": 3932, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "981b5703-a20e-494d-a071-d9c69011d5b5", + "pk": "7ec37dc8-ae2d-4eaa-8edb-2c27f2450ce6", "fields": { - "question": 328, - "contribution": 3463, + "question": 349, + "contribution": 3517, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9828f256-ad2a-4b70-81be-cd67288229ca", + "pk": "7eca9432-5171-46d5-9dda-24a0e4e6a381", "fields": { - "question": 398, - "contribution": 3711, + "question": 371, + "contribution": 4205, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98322b93-f8d7-4c31-b9b8-ee7e116ac601", + "pk": "7eccbe7d-3414-44b9-b7ab-fa4c1a86b623", "fields": { - "question": 335, - "contribution": 1217, - "answer": 1, - "count": 30 + "question": 354, + "contribution": 3516, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98330960-fef5-4cbc-acc5-d96212396bed", + "pk": "7ece3bc5-c66b-4800-9dba-8215d8799474", "fields": { "question": 347, - "contribution": 1873, + "contribution": 3373, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98353ff3-365e-462d-934e-8b559ce61b84", + "pk": "7ed0efc6-f727-49ce-90ae-9fcab4811689", "fields": { - "question": 255, - "contribution": 3721, - "answer": 5, - "count": 3 + "question": 325, + "contribution": 4152, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98359f6f-87c7-45ee-9f98-8ea227ab8f81", + "pk": "7eddb436-d675-46ae-b218-06510f84007d", "fields": { - "question": 345, - "contribution": 3899, - "answer": 3, - "count": 2 + "question": 327, + "contribution": 1288, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "983aa0ee-82d9-48bb-b7fc-b0aa8bf2b2d1", + "pk": "7ee39eda-4dd5-4f52-85bf-8e81677f9f22", "fields": { - "question": 347, - "contribution": 1249, + "question": 337, + "contribution": 840, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "984b7f69-640b-429a-8806-4592e532dd7f", + "pk": "7ee494dc-61c4-4657-b31b-8dd868d4c89f", "fields": { - "question": 349, - "contribution": 3546, - "answer": 3, - "count": 2 + "question": 369, + "contribution": 1810, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9851283c-53d7-4d75-ba6a-f44bda27d1a5", + "pk": "7eeb8654-f148-462c-a1e3-20579eccb8b5", "fields": { - "question": 341, - "contribution": 3735, + "question": 336, + "contribution": 1200, "answer": 1, - "count": 1 + "count": 25 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98517a23-4fde-424f-b473-ecba920c4f00", + "pk": "7ef8a3d0-0d36-4399-a0d8-b96dd3c34b18", "fields": { - "question": 348, - "contribution": 1828, - "answer": 1, - "count": 1 + "question": 347, + "contribution": 3796, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98523ca8-7d31-4d35-95e1-182ba2b14024", + "pk": "7f03b8b4-bf56-478d-99ba-0f598d0b27a7", "fields": { - "question": 260, - "contribution": 3679, - "answer": 3, + "question": 336, + "contribution": 862, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98537627-e4b2-44de-a0de-7b18399224cc", + "pk": "7f0a4831-473a-4836-b8fa-80a13d1d1f77", "fields": { - "question": 257, - "contribution": 908, - "answer": 3, - "count": 11 + "question": 255, + "contribution": 4040, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98554ef9-2b0d-4c09-8e62-7cb715e7a5d4", + "pk": "7f145939-5eb7-4c67-becd-1cacb571cd4d", "fields": { - "question": 328, + "question": 327, "contribution": 3726, - "answer": 2, - "count": 9 + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98653e05-efc0-433f-a2a4-6f50dc5e5fc1", + "pk": "7f1b5b76-be89-4c9a-a3a9-9c1a2e8367bc", "fields": { - "question": 476, - "contribution": 3721, - "answer": 3, - "count": 3 + "question": 331, + "contribution": 822, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98772910-0349-46ed-a422-5c25c5bae1fe", + "pk": "7f1b7a1f-f153-4e21-af67-21d13a405c31", "fields": { - "question": 367, - "contribution": 4100, - "answer": 3, - "count": 3 + "question": 459, + "contribution": 3862, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98896b59-9690-4942-a811-b7f78b0cb6df", + "pk": "7f2d87ec-418c-4a7e-b9a0-067026b484ae", "fields": { - "question": 336, - "contribution": 3821, - "answer": 2, + "question": 333, + "contribution": 3631, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "988d7e51-5c4b-483e-a1ec-e0a9f987ebf5", + "pk": "7f33d181-9591-4b52-a249-2c63925434a1", "fields": { - "question": 260, - "contribution": 3462, - "answer": 5, - "count": 1 + "question": 257, + "contribution": 1668, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9897e762-e029-42a4-83f0-780dae05d552", + "pk": "7f349d16-ba86-44ce-a140-72f1771d8bce", "fields": { - "question": 356, - "contribution": 3712, - "answer": 3, - "count": 1 + "question": 327, + "contribution": 3355, + "answer": 1, + "count": 23 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98a9e720-56f8-4d1b-b7c1-26e030a8c59f", + "pk": "7f34a8f6-8c36-4449-806e-263e1c7e8932", "fields": { - "question": 344, - "contribution": 1246, - "answer": 1, + "question": 428, + "contribution": 4244, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98ad12c8-e2ea-467e-8716-116ff1c09809", + "pk": "7f45e558-1674-49f1-bb4f-a2ec9a5c6bd5", "fields": { - "question": 336, - "contribution": 886, + "question": 325, + "contribution": 3589, "answer": 2, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98add13f-48be-40af-9e4b-700ee5119e61", + "pk": "7f690334-7a6c-408d-bdbc-56414b77362f", "fields": { - "question": 353, - "contribution": 1258, + "question": 320, + "contribution": 3725, "answer": 1, - "count": 5 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98af8fca-009c-4db8-84c9-2f1d9e675102", + "pk": "7f6c5837-41d7-468e-897f-2132fc5ffa9e", "fields": { - "question": 353, - "contribution": 1256, - "answer": 2, + "question": 317, + "contribution": 1837, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98b461b6-86aa-4d5c-8710-524da98a3471", + "pk": "7f9324a3-6ec0-4a45-b143-8da3e75ed125", "fields": { - "question": 343, - "contribution": 919, + "question": 354, + "contribution": 4278, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98b98410-0ca0-4a9d-aab5-7ad9ec43efd9", + "pk": "7f9a26af-8500-44c4-82ba-30f397b46693", "fields": { - "question": 326, - "contribution": 1778, - "answer": 2, - "count": 2 + "question": 340, + "contribution": 3821, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98cd3bb1-9818-4755-b770-a33a88113b42", + "pk": "7f9b3f37-d2a2-4251-823f-7200fd4981d3", "fields": { - "question": 322, - "contribution": 3721, - "answer": 2, - "count": 6 + "question": 258, + "contribution": 884, + "answer": 1, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98db909f-7ecc-43c7-86be-622962e3e38f", + "pk": "7faec0b8-4a68-4900-8521-baa6c2ac702d", "fields": { - "question": 355, - "contribution": 1256, + "question": 353, + "contribution": 3756, "answer": 1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98e41d2d-662c-493b-85b0-95f7e8bdef48", + "pk": "7fb55d06-4f5c-44ee-b91f-180b0a2c14e3", "fields": { - "question": 347, - "contribution": 4189, - "answer": 4, + "question": 346, + "contribution": 4129, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98e8eab9-6e3b-48b3-8915-ef47b7d966f2", + "pk": "7fc7da6b-869f-4319-ba3c-986a1ecb6a49", "fields": { - "question": 323, - "contribution": 4028, - "answer": 2, - "count": 8 + "question": 325, + "contribution": 4085, + "answer": 1, + "count": 38 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98fb670b-8f63-43e7-ac35-9149494729b4", + "pk": "7fe06492-bdd1-40dd-b4a0-e92141deedbb", "fields": { - "question": 317, - "contribution": 1658, - "answer": 1, - "count": 13 + "question": 315, + "contribution": 822, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "98fd6533-daf8-483c-bff5-546ff00705ec", + "pk": "7fe87d52-c517-4b48-94a9-eb0c77f3cb1c", "fields": { - "question": 356, - "contribution": 3608, - "answer": 2, - "count": 1 + "question": 262, + "contribution": 884, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9902e682-3785-4599-bad2-f7abe35e4e23", + "pk": "7fea27e0-bdc6-4218-9692-1a733e8b9498", "fields": { "question": 338, - "contribution": 3440, + "contribution": 840, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9902effb-e78a-4cab-aacc-b604a310d449", + "pk": "7fef91f2-15ae-40a5-8cc1-b4974e9fd02b", "fields": { - "question": 259, - "contribution": 884, - "answer": 2, - "count": 1 + "question": 400, + "contribution": 4148, + "answer": 1, + "count": 26 } }, { "model": "evaluation.ratinganswercounter", - "pk": "990a49a1-9431-4e4a-acb1-21c3a9982738", + "pk": "7ff36ba9-7973-455b-b8c4-922a4901645d", "fields": { - "question": 476, - "contribution": 1626, - "answer": 0, - "count": 12 + "question": 354, + "contribution": 1786, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9917fd99-0a98-49d7-a454-7bf085b38cf8", + "pk": "8007ad17-bf7b-429b-8565-66bbac10a09c", "fields": { - "question": 346, - "contribution": 3367, - "answer": 1, + "question": 349, + "contribution": 3610, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "992289cd-a011-41bb-ac86-45595dedcd1e", + "pk": "800bef96-28bf-4f8d-b776-88ae1ec59973", "fields": { - "question": 401, - "contribution": 4119, - "answer": 2, - "count": 1 + "question": 338, + "contribution": 3466, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9922ef4d-d764-4262-93bc-d7216935b888", + "pk": "800ee42b-3596-46d3-9b62-d3313631852b", "fields": { "question": 329, - "contribution": 1635, - "answer": 1, - "count": 25 + "contribution": 1186, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9929331f-646e-4705-84e0-f2fb6709d318", + "pk": "801251aa-a309-496c-b5a3-f7c6829fdbea", "fields": { - "question": 366, - "contribution": 3566, + "question": 322, + "contribution": 1634, "answer": 2, - "count": 4 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99399e64-56e6-486c-96b8-2f8d5c694a3d", + "pk": "80126d04-4c47-478e-8eff-165fb85788e2", "fields": { - "question": 340, - "contribution": 3703, + "question": 384, + "contribution": 3775, "answer": 1, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "993f4d3b-15e7-4676-82c8-93be4cc46c2d", + "pk": "801a877f-7ee7-45b6-a571-c630791b095c", "fields": { - "question": 338, - "contribution": 3693, - "answer": 1, - "count": 1 + "question": 473, + "contribution": 4002, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9940472f-0a6a-4a74-bd73-4b77ed9d5867", + "pk": "801bb7b1-3441-4ccf-ad59-94ae19a8cbcf", "fields": { - "question": 371, - "contribution": 3631, - "answer": 2, - "count": 1 + "question": 473, + "contribution": 3404, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9944696e-8ab0-4049-a53b-d837f9902500", + "pk": "80256c3d-16a5-4823-90fe-8d4369130e8f", "fields": { - "question": 320, - "contribution": 1626, + "question": 460, + "contribution": 4091, "answer": 3, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9946e8a4-eb06-458c-80bd-7e1c0ea86cbf", + "pk": "802ce3b4-5b9f-42cf-bf40-9c0d25a86182", "fields": { - "question": 316, - "contribution": 4118, - "answer": 5, + "question": 328, + "contribution": 4047, + "answer": 2, + "count": 6 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "802d7b64-c141-4a43-8ca2-9f8268954b2d", + "fields": { + "question": 347, + "contribution": 4191, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "994c492d-e372-41e1-b5aa-f494e83319b0", + "pk": "8041f065-e2e5-4215-aa06-a00ab7b9cd21", "fields": { - "question": 336, - "contribution": 1694, + "question": 359, + "contribution": 1835, "answer": 4, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99556504-0ab1-4336-98f7-e186be5e3525", + "pk": "804fb92c-00d1-4114-8c55-a8c3cf75e5db", "fields": { - "question": 477, - "contribution": 3435, - "answer": 0, - "count": 29 + "question": 369, + "contribution": 3893, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99620d6d-c339-4e8f-9ccf-4849a981edf6", + "pk": "8057d24c-1352-4f36-aba2-24bfd1895395", "fields": { - "question": 323, - "contribution": 912, - "answer": 5, - "count": 2 + "question": 316, + "contribution": 3474, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "997d80a8-6dca-4f4f-9b62-f82f21f7735e", + "pk": "80607ea8-9721-4785-b244-eb905e496a0b", "fields": { - "question": 473, - "contribution": 4128, + "question": 323, + "contribution": 4022, "answer": 1, - "count": 6 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9989e3e9-a0cc-490f-8f58-0be9dce4f1ec", + "pk": "8060c305-b776-4f2a-9445-15fcf720cddd", "fields": { - "question": 321, - "contribution": 4116, - "answer": 3, - "count": 4 + "question": 355, + "contribution": 1784, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99a0d917-ffb1-420e-bca4-2a11b36a41ad", + "pk": "806226cf-41be-4807-a369-e196b338d2a1", "fields": { - "question": 322, - "contribution": 3434, + "question": 319, + "contribution": 884, "answer": 3, - "count": 7 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99b81c0b-55f9-46b4-b6c9-4be73c3203c0", + "pk": "806c84ca-5a4e-4ca4-956e-4de6d5780d16", "fields": { - "question": 367, - "contribution": 4116, + "question": 329, + "contribution": 1669, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99c27d60-0642-4162-a622-3d4fb9ed975b", + "pk": "808b30d9-9d75-40b1-bf1a-8eb97cd61ac8", "fields": { - "question": 348, - "contribution": 1843, - "answer": 1, + "question": 346, + "contribution": 1645, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99c2ea30-6702-4a11-ba54-9c95ed70ef2d", + "pk": "808e690b-9119-44ee-a5da-2146b1aa0328", "fields": { - "question": 322, - "contribution": 4120, - "answer": 1, - "count": 8 + "question": 362, + "contribution": 1827, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99c85daf-23ad-47c8-8762-2ad0c1e040e5", + "pk": "8091a0cb-85ce-4625-b061-cf781780ecc0", "fields": { - "question": 371, - "contribution": 4152, + "question": 354, + "contribution": 4270, "answer": 2, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99cd2f00-23bb-4ddc-807f-41008c3898c4", + "pk": "809e67e2-822b-4671-9836-bdfcde9db082", "fields": { - "question": 458, - "contribution": 4073, - "answer": 2, - "count": 3 + "question": 336, + "contribution": 894, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99cecc3d-08cd-46eb-8dea-fdbbd820f12c", + "pk": "80a3e291-5066-404e-8f5d-fda543e649aa", "fields": { - "question": 257, - "contribution": 3721, + "question": 367, + "contribution": 1626, "answer": 1, - "count": 6 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99d47817-34ca-4400-a693-b717a7e22b85", + "pk": "80aab627-715e-4188-baf2-a52d4cf53e06", "fields": { - "question": 396, - "contribution": 3775, - "answer": 2, + "question": 338, + "contribution": 3508, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99e4317e-f55a-494f-aa48-b3fe82d370c5", + "pk": "80c7d4b9-3219-4d88-bf6a-e30b72084ed8", "fields": { - "question": 329, - "contribution": 3530, - "answer": 1, - "count": 3 + "question": 462, + "contribution": 4141, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99e871f8-5886-470b-a2fe-69fd6abef0a0", + "pk": "80cff7b8-890e-4c8d-8a0b-693c70b95d91", "fields": { - "question": 320, - "contribution": 1724, - "answer": 1, - "count": 3 + "question": 476, + "contribution": 3422, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99f49399-0b1a-4583-8df8-bd284ed1e1ff", + "pk": "80d14844-64d4-4588-8889-5df6f6df33a5", "fields": { - "question": 472, - "contribution": 3406, - "answer": 5, - "count": 5 + "question": 322, + "contribution": 1634, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99f499eb-fb74-4bb8-800d-6cfb7d63f5ca", + "pk": "80d6eb85-3d00-42ec-a38b-eec0cd829ad9", "fields": { - "question": 343, - "contribution": 3900, - "answer": 2, + "question": 315, + "contribution": 4084, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "99f9cce0-cad1-43ef-8f97-0bc4c74475a3", - "fields": { - "question": 255, - "contribution": 4100, - "answer": 3, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "99fae9f0-817a-4b42-963c-32a08b4bc963", + "pk": "80dcb91b-66e1-4fd0-b674-454d027c9898", "fields": { - "question": 346, - "contribution": 4187, + "question": 328, + "contribution": 3355, "answer": 1, - "count": 8 + "count": 23 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a0779cb-67c5-4b19-8e4f-0ad4fe5b9439", + "pk": "80e5d6af-89d2-4907-995c-91973ac7e4fd", "fields": { - "question": 345, - "contribution": 1881, + "question": 327, + "contribution": 1777, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a106716-dbb3-4de8-b498-6f0744bbdc7f", + "pk": "80e7776c-4174-4432-a45c-0fcf2b7ed8cf", "fields": { - "question": 477, - "contribution": 4085, + "question": 259, + "contribution": 3422, "answer": 2, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a1f2e46-e518-4aad-91e0-873066ebefae", + "pk": "80e8459a-fd35-42f5-ab74-1be390080acd", "fields": { - "question": 344, - "contribution": 1249, - "answer": 2, + "question": 357, + "contribution": 3835, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a25905d-e1d5-4343-ad92-6cedfa970e14", + "pk": "80ed6d7a-e413-4576-8b1a-c30b1cce05d5", "fields": { - "question": 327, - "contribution": 4047, - "answer": 2, - "count": 1 + "question": 336, + "contribution": 3466, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a277a52-bbb9-48f9-8a8e-bc1c0a7c9ad8", + "pk": "80f5425f-367f-40a7-9d06-7edd05d761fb", "fields": { - "question": 347, - "contribution": 3606, - "answer": 4, - "count": 1 + "question": 336, + "contribution": 1656, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a30e67e-41ce-4c0f-95f2-59141b7e2e76", + "pk": "80fbcfdd-823e-4272-bfb3-4008d05a3aa4", "fields": { - "question": 345, - "contribution": 4146, + "question": 355, + "contribution": 4267, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a3b436b-a14e-4a88-947b-bf290eabef6e", + "pk": "810176b5-d387-46ae-ba61-15d4db21ebd6", "fields": { - "question": 319, - "contribution": 3406, - "answer": 3, - "count": 2 + "question": 363, + "contribution": 3917, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a4d8a93-3950-4699-88c0-f1cfb8f40c21", + "pk": "8102670e-c703-4025-9a65-c8c076d7c8a3", "fields": { - "question": 349, - "contribution": 1842, + "question": 255, + "contribution": 1634, "answer": 1, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a50129d-c707-4d0c-a76f-c5d86f3d35d5", + "pk": "810d0215-7757-438e-b6e0-c823055953e4", "fields": { - "question": 255, - "contribution": 880, - "answer": 5, + "question": 363, + "contribution": 3653, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a567275-785b-45b2-a58a-b025ea0c2e94", + "pk": "810e57c6-ebb4-4a52-b990-ba37d3bf1286", "fields": { - "question": 360, - "contribution": 3893, + "question": 341, + "contribution": 4072, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a57f209-7703-44dc-9c17-c8807dd986c7", + "pk": "8118be24-2307-49de-933b-3adf3994eded", "fields": { - "question": 345, - "contribution": 1842, + "question": 369, + "contribution": 1808, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a58ed75-b9a3-4053-bee7-4e8573abe38c", + "pk": "8128d7f3-f3c7-4899-8e69-6a050f068794", "fields": { - "question": 319, - "contribution": 3390, + "question": 320, + "contribution": 912, "answer": 3, "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a590826-efde-4a38-81a3-0bd4669acf5a", + "pk": "812ded07-ccb4-4643-a8e2-75fbcc876883", "fields": { - "question": 341, + "question": 338, "contribution": 3508, - "answer": 4, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a5a30d9-ee61-4a76-9195-54aca6e7d67a", + "pk": "8134ff93-2d7d-4eab-bdc9-59533548971d", "fields": { - "question": 363, - "contribution": 3921, + "question": 346, + "contribution": 1873, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a5a3c62-9778-428e-a582-e28d13e3c7ee", - "fields": { - "question": 349, - "contribution": 1842, - "answer": 4, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "9a638d1e-3aae-4c88-8fbd-8d0c2787b767", + "pk": "813e64b8-0d6e-4e6a-a031-00b7b38b5099", "fields": { - "question": 327, - "contribution": 4152, - "answer": 3, - "count": 4 + "question": 320, + "contribution": 4116, + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a66399d-3802-490c-94c9-8999d5967504", + "pk": "814e712a-4c7c-4577-a13e-41af68b7dc27", "fields": { - "question": 322, - "contribution": 880, + "question": 343, + "contribution": 1843, "answer": 2, - "count": 10 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "9a68a1d1-113f-4737-80c8-ea484d3a89fc", - "fields": { - "question": 338, - "contribution": 3440, - "answer": 1, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "9a6ff049-38b1-466a-b5bd-b91ca478548f", - "fields": { - "question": 260, - "contribution": 4022, - "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a71ab14-6cce-487b-8a41-c8ca94ea769f", + "pk": "815c2fef-21c9-4d76-9251-7188543fafaa", "fields": { - "question": 345, - "contribution": 3528, + "question": 322, + "contribution": 3679, "answer": 3, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a73f478-de6a-43d5-991b-76834185c00c", + "pk": "81625803-962c-4e52-a36a-43ad6e890c55", "fields": { - "question": 320, - "contribution": 3394, + "question": 357, + "contribution": 3782, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a8a0953-af70-41d4-ae63-10375b403d6b", + "pk": "816627de-0179-43d8-8338-aa3227391199", "fields": { - "question": 260, - "contribution": 3354, - "answer": 2, - "count": 8 + "question": 473, + "contribution": 4094, + "answer": 0, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a8a239d-38c0-4fd9-a1f4-1e152e872c50", + "pk": "8170f581-0792-4564-b035-5fcbb5805a59", "fields": { - "question": 340, - "contribution": 862, - "answer": 2, - "count": 3 + "question": 345, + "contribution": 4188, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a9a0c0a-4112-404b-87ef-2976140244f7", + "pk": "8180337d-0f56-4aba-a70a-8f0e43a45fda", "fields": { - "question": 317, - "contribution": 4116, - "answer": 3, - "count": 4 + "question": 367, + "contribution": 4028, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9a9c76f5-32d0-4ab7-8548-5038a0577ea1", + "pk": "81887dd1-bda2-4b63-b649-e8d12b6d3b9c", "fields": { - "question": 344, - "contribution": 3555, + "question": 321, + "contribution": 3434, "answer": 1, - "count": 4 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9aa843b6-079a-4327-ab75-1994ee1895a2", + "pk": "818ca2e1-8aa0-44c9-9aba-2162909ab12d", "fields": { - "question": 325, - "contribution": 1613, - "answer": 3, + "question": 372, + "contribution": 3735, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9aab3635-a077-4778-8475-43584b75e780", + "pk": "8197b4c0-7ef6-485c-a68a-3f7dcfa4f70e", "fields": { - "question": 475, - "contribution": 1694, + "question": 349, + "contribution": 1645, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ab76bf6-8fe1-46e5-96e4-eca7e9101008", + "pk": "819fe044-2a09-4a7d-9f91-0b7656ffd472", "fields": { - "question": 361, - "contribution": 3919, - "answer": 3, - "count": 1 + "question": 369, + "contribution": 1810, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ab87ece-400d-4f65-9b47-1fb3af749c67", + "pk": "81a0a410-ceb9-4fe1-b90b-dd593761cf45", "fields": { - "question": 347, - "contribution": 4188, - "answer": 3, + "question": 344, + "contribution": 3555, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ab8facd-99af-44df-a908-f41c43d25d2f", + "pk": "81a0ed02-f508-47ee-ac4b-e8643a563968", "fields": { - "question": 337, - "contribution": 1921, - "answer": 2, - "count": 1 + "question": 340, + "contribution": 1702, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9abbbfc9-072f-4819-9973-1ccb367825e2", + "pk": "81a51f28-86c8-43b6-9fab-94f58cab55f9", "fields": { - "question": 363, - "contribution": 3920, - "answer": 4, + "question": 347, + "contribution": 1868, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9abe2d1f-8606-47f9-9274-a0356eb4141d", + "pk": "81a79290-14eb-4a74-806c-772e1270d473", "fields": { - "question": 473, - "contribution": 804, - "answer": 2, - "count": 1 + "question": 316, + "contribution": 4120, + "answer": 1, + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9accd5c4-b425-4c81-8f0f-6b41cf0eb989", + "pk": "81abeaea-1685-41aa-86d7-dde4d6e54dae", "fields": { - "question": 357, - "contribution": 4269, + "question": 259, + "contribution": 1837, "answer": 1, - "count": 1 + "count": 27 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9adb27c5-dc5a-43e2-bc80-a0f925270c81", + "pk": "81c6e1b4-a79b-4537-afd2-ef979e1035e8", "fields": { - "question": 355, - "contribution": 1849, - "answer": 2, + "question": 257, + "contribution": 3462, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9af4876e-a2be-4c78-8a1d-af6a19fbb6a8", + "pk": "81cc79cc-3879-4170-921a-2bb6e92b583c", "fields": { - "question": 349, - "contribution": 1205, + "question": 356, + "contribution": 3847, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9af9bed1-dee0-4cc6-be0a-4191eb48e3f1", + "pk": "81ce8c93-4522-4b52-9298-0b56afb335d5", "fields": { - "question": 476, - "contribution": 3422, - "answer": -1, + "question": 346, + "contribution": 3728, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b0aee7a-4c54-46be-949a-2301a00ad365", + "pk": "81f3fdbf-0698-4c1f-b1d2-86b9d52fb09f", "fields": { - "question": 477, - "contribution": 1154, - "answer": -1, - "count": 7 + "question": 348, + "contribution": 3941, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b0ff510-ba46-4072-89fb-51939dc3ed9f", + "pk": "81fb52e5-5ec6-47b2-b6d0-a54bb8a2160d", "fields": { - "question": 322, - "contribution": 1724, + "question": 326, + "contribution": 4101, "answer": 3, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b1e5540-a027-4792-ba34-9340352fd1b1", + "pk": "8206e73b-2ed5-4743-9b1d-492cc0b1d8e0", "fields": { - "question": 315, - "contribution": 3472, - "answer": 1, - "count": 4 + "question": 320, + "contribution": 4028, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b26c58a-4e7b-46f4-bd0c-feda388ed01c", + "pk": "82154b45-673a-48da-a90b-05456c1b3a58", "fields": { - "question": 354, - "contribution": 1845, - "answer": 1, - "count": 2 + "question": 339, + "contribution": 4052, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b326b30-5790-4270-9452-d3eb419c2114", + "pk": "8223b32f-03c7-4d93-9ebf-8f47b3319791", "fields": { - "question": 347, - "contribution": 4188, + "question": 366, + "contribution": 3922, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b39e47e-95e1-474c-b43a-a895b1b97a97", + "pk": "822ffa13-7001-4d70-b732-5084cc04d9f5", "fields": { - "question": 354, - "contribution": 1189, - "answer": 2, - "count": 2 + "question": 315, + "contribution": 4120, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b442a26-6a9d-4187-9c91-efbd86efe308", + "pk": "8236841f-a63f-430d-a3d6-66aa2e1bba16", "fields": { - "question": 401, - "contribution": 3646, - "answer": 1, - "count": 4 + "question": 317, + "contribution": 4116, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b485adb-62f8-4284-ac32-7bde1044970e", + "pk": "823c82b4-d7fc-40a6-be79-870ad9f5eb79", "fields": { - "question": 473, - "contribution": 1748, - "answer": 3, - "count": 1 + "question": 320, + "contribution": 4128, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b549555-cb25-43be-831b-186380345a40", + "pk": "8244cd85-3efd-4183-87e6-468b050a80a2", "fields": { - "question": 329, - "contribution": 1186, + "question": 348, + "contribution": 3939, "answer": 1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b5ca1da-8dea-4100-b551-e7c28367435b", + "pk": "824b9950-1621-497f-9281-147c4d7f44d3", "fields": { - "question": 346, - "contribution": 1867, + "question": 326, + "contribution": 4153, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b5e1b6b-d1a6-48a1-9d18-f604cd157efa", + "pk": "824f679b-a7b3-499b-b5ef-9064821b38b5", "fields": { - "question": 257, - "contribution": 1724, - "answer": 1, - "count": 3 + "question": 476, + "contribution": 822, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b6d5264-b235-44c2-9472-833fb9d4e134", + "pk": "8251daa5-378c-4899-a4cd-5debf82ca1ee", "fields": { - "question": 258, - "contribution": 908, - "answer": 1, - "count": 12 + "question": 476, + "contribution": 4084, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b8a6d92-e814-4ad8-90ee-416f230c4d39", + "pk": "8256c914-c294-4754-beb2-4d352f4652d8", "fields": { - "question": 408, - "contribution": 3974, - "answer": 1, + "question": 369, + "contribution": 3929, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9b9e05f3-f194-4e6f-96e7-40c03ec41e27", + "pk": "825ece0b-222d-49e5-8e58-e19d9ca561d4", "fields": { - "question": 343, - "contribution": 1842, - "answer": 1, - "count": 4 + "question": 327, + "contribution": 1776, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ba24d5f-1b73-4d09-b72a-887f661b2bb9", + "pk": "8271e394-2794-4f50-8605-af48c52b5265", "fields": { - "question": 359, - "contribution": 1803, - "answer": 1, - "count": 4 + "question": 477, + "contribution": 3684, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9baef48f-c8e8-429d-8e08-c6d33352a1ae", + "pk": "827273db-54c3-46ea-9c4b-c1a2a2298a5d", "fields": { - "question": 390, - "contribution": 3781, - "answer": 2, - "count": 3 + "question": 326, + "contribution": 4117, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9bbb36a1-f9a9-4425-a6ba-2860fc51e9ee", + "pk": "82736dad-2f9f-43b8-b344-0319db1b74f6", "fields": { - "question": 260, - "contribution": 1634, - "answer": 5, - "count": 4 + "question": 255, + "contribution": 3725, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9bbcc164-e65f-45b6-8dc8-40287a83c8a3", + "pk": "827f4218-9a1c-48e4-95f9-f523ac558ef1", "fields": { - "question": 316, - "contribution": 3354, - "answer": 2, - "count": 6 + "question": 473, + "contribution": 1656, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9bc5b1c6-e22c-4e21-9155-2b78a38d4fbd", + "pk": "828d425c-40a3-446a-b3fa-f2fe0fb688a6", "fields": { - "question": 368, - "contribution": 3680, + "question": 336, + "contribution": 1638, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9bca8926-bd30-4d50-b044-14e55e2bc00f", + "pk": "829a1b1e-9695-4586-8f08-5f422f645f63", "fields": { - "question": 333, - "contribution": 3552, + "question": 321, + "contribution": 1634, "answer": 1, - "count": 4 + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9bcb1976-30a2-4eb2-a525-d9a3f897cddb", + "pk": "82aa88c0-9054-4778-b47a-ab51189bcb5f", "fields": { - "question": 321, - "contribution": 3354, - "answer": 2, - "count": 4 + "question": 344, + "contribution": 4234, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9bcbb05d-09fa-4db7-839b-84a462d909e1", + "pk": "82addedf-a127-499e-a14b-e87fc33d57df", "fields": { - "question": 435, - "contribution": 4090, - "answer": 5, - "count": 1 + "question": 476, + "contribution": 3474, + "answer": -1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9bd1ffd1-9551-47f6-ba82-4102399204e1", + "pk": "82bc9beb-1ae9-42b8-82c1-1c9976cd39d5", "fields": { - "question": 369, - "contribution": 3597, + "question": 362, + "contribution": 1799, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9bddb1c5-3c55-421e-b0ed-2c24587b7e93", + "pk": "82c03790-12de-4245-bad3-0781b73f5cfe", "fields": { - "question": 331, - "contribution": 3474, - "answer": 2, - "count": 4 + "question": 321, + "contribution": 1612, + "answer": 1, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9be09652-1b0e-4f4d-96d1-91319371232e", + "pk": "82c12086-414b-4dec-901f-d9077aeed330", "fields": { - "question": 475, - "contribution": 3404, + "question": 335, + "contribution": 1284, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9becbe0c-1896-4df3-a28a-23bf631f26d2", + "pk": "82c2b12b-612f-4bbc-b492-f70f2abdb1cd", "fields": { - "question": 347, - "contribution": 869, - "answer": 3, - "count": 1 + "question": 320, + "contribution": 1626, + "answer": 4, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9bf6ba42-ab80-4945-9df9-43076c7365ba", + "pk": "82c8fd5f-a4df-4cb6-a47c-bf33c68a6868", "fields": { - "question": 344, - "contribution": 1867, + "question": 353, + "contribution": 3529, "answer": 1, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9bf91a97-b6a0-483a-aea7-8dc1eac0966b", + "pk": "82d17899-da35-4a97-8697-1d9f8f6c6987", "fields": { - "question": 354, - "contribution": 1242, - "answer": 3, - "count": 1 + "question": 345, + "contribution": 1828, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9bfe130f-15ba-49e2-bccb-1cbea3a9684c", + "pk": "82d8f1be-b312-4c16-a9b9-fee194b3cd53", "fields": { - "question": 339, - "contribution": 1200, - "answer": 0, - "count": 27 + "question": 320, + "contribution": 880, + "answer": 1, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c0c7bfd-7504-4918-9b15-f2c7951199aa", + "pk": "82da0eca-996d-476e-80bf-94bc4cab88f6", "fields": { - "question": 343, - "contribution": 3405, - "answer": 1, - "count": 4 + "question": 437, + "contribution": 4140, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c182765-db8c-4236-a07a-64772102480e", + "pk": "8300fb0b-acb8-4ab1-b38f-daf82a59a43e", "fields": { - "question": 348, - "contribution": 1156, - "answer": 1, - "count": 2 + "question": 321, + "contribution": 1634, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c1f1bef-6f1e-4004-b31d-debdaee756bf", + "pk": "830bec72-f736-481d-b9e0-1eaef4e81d7b", "fields": { - "question": 473, - "contribution": 3735, - "answer": 0, - "count": 3 + "question": 258, + "contribution": 3721, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c1fcf5a-3360-4a47-870d-557e50d28fb4", + "pk": "8314d1e1-066c-4411-bbbe-6d9ea4694b31", "fields": { - "question": 473, - "contribution": 4046, - "answer": 0, - "count": 10 + "question": 346, + "contribution": 3704, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c24f6fd-7ff9-4dc0-8be3-4ce998f72b3e", + "pk": "8317d2eb-d6cf-44fb-bddc-56e5c2443b7e", "fields": { - "question": 316, - "contribution": 3679, - "answer": 5, + "question": 397, + "contribution": 3755, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c2a6878-bdc9-4f8b-9bc8-feee23c7e939", + "pk": "831875df-b710-406d-9fd8-7a451aec3942", "fields": { - "question": 327, - "contribution": 1288, - "answer": 1, - "count": 27 + "question": 475, + "contribution": 804, + "answer": -2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c2ba82d-7feb-4b41-a88c-2a78a64b50db", + "pk": "831de6f0-65ca-4cfd-bfe1-a27a95a43e27", "fields": { - "question": 475, - "contribution": 4002, - "answer": 1, + "question": 323, + "contribution": 912, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c336e15-bf78-4fec-971d-063d358b0422", + "pk": "831f71a8-e842-4c53-8559-792f09f94b1c", "fields": { - "question": 352, - "contribution": 826, + "question": 332, + "contribution": 3553, "answer": 2, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c3c6106-c6f7-41d1-8f97-9bf5a4c427c6", + "pk": "832da30b-672f-48ae-b65f-14defd04fde9", "fields": { "question": 341, - "contribution": 1644, + "contribution": 3685, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c3cfc60-d3b1-4aac-a2dc-3992e19ab153", + "pk": "83322588-beeb-41fc-bc39-c487823a14bb", "fields": { - "question": 343, - "contribution": 3935, - "answer": 1, - "count": 2 + "question": 475, + "contribution": 886, + "answer": 0, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c47b5e3-68b7-4df0-8ae6-e220c658d826", + "pk": "83353133-cd52-496a-ae0e-2b16e10a0bd3", "fields": { - "question": 329, - "contribution": 881, - "answer": 5, - "count": 4 + "question": 320, + "contribution": 822, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c53be5b-3e6a-45f1-837d-3d75fd9aaec0", + "pk": "833bb163-b20e-49d7-a96d-02f5bb6c6b27", "fields": { - "question": 319, - "contribution": 4100, - "answer": 3, - "count": 3 + "question": 331, + "contribution": 3390, + "answer": -1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c630ecf-16e5-4d7b-a839-3fcc9e848466", + "pk": "83479052-356f-4e5a-aba0-37434b29e0ee", "fields": { - "question": 473, - "contribution": 1200, - "answer": 2, - "count": 2 + "question": 349, + "contribution": 1228, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c8278a4-4595-4011-8dce-f2f5de96e9d0", + "pk": "834a8dba-f4ca-4deb-a893-a526644de62c", "fields": { - "question": 372, - "contribution": 3440, - "answer": 5, + "question": 347, + "contribution": 1202, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c8888ed-6bed-4092-a3d1-92238c568f6e", + "pk": "8362befe-3263-49ab-9d0e-068608c8f156", "fields": { - "question": 320, - "contribution": 1680, - "answer": 3, + "question": 326, + "contribution": 1186, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c89a46a-9e19-434f-9e21-413475bbbc40", + "pk": "837bc48d-90d4-4b8b-b329-e6b477ba154f", "fields": { - "question": 344, - "contribution": 3546, + "question": 338, + "contribution": 3486, "answer": 2, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c8a277f-000e-4d8a-9e07-65ab384ffe16", + "pk": "8387b10f-9717-4a3b-ac36-3d5ff4e05ceb", "fields": { - "question": 345, - "contribution": 1749, - "answer": 2, - "count": 2 + "question": 369, + "contribution": 1805, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9c921afd-e1ee-4b12-bcdf-877a59709c8f", + "pk": "838e78c9-f3ca-4c8b-a0b3-9c5a2cd60852", "fields": { - "question": 336, - "contribution": 918, - "answer": 1, - "count": 4 + "question": 317, + "contribution": 4100, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9caa1b90-1487-42b6-8f0d-8238932503ff", + "pk": "83924091-1500-4653-beb8-7362569cdbca", "fields": { - "question": 337, - "contribution": 4094, + "question": 329, + "contribution": 3666, "answer": 1, - "count": 9 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9cad02a8-873f-44b4-b96e-62d8e3dd1357", - "fields": { - "question": 331, - "contribution": 3434, - "answer": 1, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "9cc3cf9e-ca4a-47d8-a689-c38b1c0baf49", + "pk": "839733f5-7ec7-4fb0-a204-573f178c1946", "fields": { "question": 260, - "contribution": 3390, - "answer": 4, - "count": 7 + "contribution": 1626, + "answer": 2, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9cc4b845-f751-4e9a-b375-17ee9b0dc77d", + "pk": "839fef58-2287-4330-ba0a-44d26ec4db53", "fields": { - "question": 259, - "contribution": 3739, - "answer": 1, - "count": 2 + "question": 344, + "contribution": 887, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9cd3ada3-85b3-4a79-851c-c39c07968d66", + "pk": "83b35912-ea80-4cd4-ae1d-6e1a615680cb", "fields": { - "question": 347, - "contribution": 919, - "answer": 3, - "count": 1 + "question": 339, + "contribution": 1702, + "answer": -1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9cd8c1b1-6af1-46b5-ad20-591db2211d13", + "pk": "83bb241c-57c9-4494-89f1-524a373da95e", "fields": { - "question": 349, - "contribution": 3405, - "answer": 5, + "question": 371, + "contribution": 4156, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9cdeaa94-4150-45f3-86a1-18f3e916ec07", + "pk": "83c07f9d-1fea-4663-b913-a2e3562ebda6", "fields": { - "question": 328, - "contribution": 4085, + "question": 258, + "contribution": 3390, "answer": 2, - "count": 11 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9cded71e-fbcf-4e32-aec8-99755d2bcc41", + "pk": "83cecb8f-eeb6-4ada-b35c-bcd6af7ad0f9", "fields": { - "question": 361, - "contribution": 3929, + "question": 344, + "contribution": 3896, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ce1d3b0-8736-4a5c-987b-766d879dee59", + "pk": "83d87253-faaa-4740-baa6-865044de2606", "fields": { - "question": 316, - "contribution": 3422, - "answer": 4, - "count": 1 + "question": 262, + "contribution": 4120, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ce30375-77ff-4a05-b64f-a6235bdc64a1", + "pk": "83ec0537-04a5-41de-ac52-5f685947af68", "fields": { - "question": 347, - "contribution": 3890, - "answer": 1, - "count": 1 + "question": 323, + "contribution": 836, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ce413a4-9f64-410a-8e61-4cad9ce574f5", + "pk": "8400f6c1-08b6-456e-80b3-90ded692bb0e", "fields": { - "question": 329, - "contribution": 1780, + "question": 355, + "contribution": 1188, "answer": 1, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ce949c5-f40b-406d-af10-a989cdd04609", + "pk": "84031281-4358-4193-876c-2856f33cec69", "fields": { - "question": 473, - "contribution": 858, + "question": 346, + "contribution": 3900, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9cebfa9a-ec8b-49f8-a59d-c97c3b3b2be4", + "pk": "8407b63c-0b00-4dd6-9ced-0ecfb52406f9", "fields": { - "question": 323, - "contribution": 3422, - "answer": 3, - "count": 2 + "question": 260, + "contribution": 1612, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ceef765-bb0d-4125-925a-c473594f80f2", + "pk": "840c020b-f81f-47e8-b269-fafe231102ea", "fields": { - "question": 258, - "contribution": 3739, - "answer": 1, - "count": 2 + "question": 380, + "contribution": 3755, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9cff09b5-0271-445f-a96f-0aa4a166b778", + "pk": "840c7987-feed-4fb1-8942-2f49b9285c1e", "fields": { - "question": 368, - "contribution": 4023, - "answer": 2, + "question": 357, + "contribution": 4279, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d034535-27a1-458a-b344-e0c107d3802c", + "pk": "840dc948-11bb-4223-b3f1-412297ad2b65", "fields": { - "question": 350, - "contribution": 804, - "answer": 2, - "count": 4 + "question": 259, + "contribution": 4046, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d104a89-d505-4829-9403-691c64292d64", + "pk": "84249e29-c91b-40c8-83a3-a3e29b61dbbd", "fields": { - "question": 370, - "contribution": 3545, + "question": 323, + "contribution": 4120, "answer": 2, - "count": 4 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d138f8c-ec50-460a-8144-03ce1efc0e02", + "pk": "8425ef25-bd7e-41be-a731-5d44d1520133", "fields": { - "question": 337, - "contribution": 3727, - "answer": 4, - "count": 1 + "question": 475, + "contribution": 1748, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d224396-573c-4a79-8928-3f8541cbf980", + "pk": "84264ca8-31b7-4014-918f-e984708eb937", "fields": { - "question": 363, - "contribution": 3597, + "question": 327, + "contribution": 4085, "answer": 2, - "count": 1 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d324ec7-e8b8-4914-b1c8-b63729bdbdae", + "pk": "8429412d-e9b7-45c3-b571-f3171de6ff81", "fields": { - "question": 323, - "contribution": 4118, + "question": 337, + "contribution": 4052, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d34872e-2090-47f4-a291-30b0924c5bc1", + "pk": "8433c3a7-d55b-4aa8-b509-c62698db90b7", "fields": { - "question": 368, - "contribution": 3556, + "question": 315, + "contribution": 4046, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d3c9d18-d5c1-41d9-957f-5a3d6997c5c5", + "pk": "8445b8ab-09e3-4ec2-b10b-57dc618c581f", "fields": { - "question": 368, - "contribution": 1725, + "question": 336, + "contribution": 3454, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d3f954e-c156-4219-a93c-4fae752b8ddb", + "pk": "8469f4b3-07fa-4329-893f-b4356d269247", "fields": { - "question": 405, - "contribution": 3974, - "answer": 1, + "question": 371, + "contribution": 3922, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d410db9-deb5-4587-9b97-ae0d01f072c9", + "pk": "8469f6fd-e1f5-46a3-8507-c23695828f17", "fields": { - "question": 473, - "contribution": 804, - "answer": -1, + "question": 363, + "contribution": 3597, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d427e7c-65d4-4396-bced-37fc4bdd1286", + "pk": "84766670-5c15-4619-b91f-41e00323b754", "fields": { - "question": 461, - "contribution": 4283, + "question": 475, + "contribution": 1640, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d45084e-f1d2-4944-bba1-0198cc35eee1", + "pk": "847aa677-8bb1-48a9-ad44-d94da0e8f350", "fields": { - "question": 378, - "contribution": 3711, - "answer": 1, - "count": 2 + "question": 338, + "contribution": 918, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d45438b-29a2-421b-baea-e9c867512fe4", + "pk": "84822ca7-fc3b-46ca-96bc-ad8f39df5bae", "fields": { - "question": 321, - "contribution": 1837, + "question": 327, + "contribution": 3740, "answer": 1, - "count": 20 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "9d478f6d-1115-41bd-9282-4bdcdaebbfcc", - "fields": { - "question": 317, - "contribution": 3721, - "answer": 5, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d495462-3dbe-4641-9de9-8805494ec670", + "pk": "8492f7bb-df63-46fc-9ffd-11c0e38c6e2c", "fields": { - "question": 477, - "contribution": 3463, - "answer": -1, - "count": 1 + "question": 319, + "contribution": 884, + "answer": 2, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d523ba2-380d-4ff2-aee1-cc91cc3ad5d4", + "pk": "849cb233-3d47-4695-aed3-7ed7539f3842", "fields": { - "question": 464, - "contribution": 3786, + "question": 350, + "contribution": 3394, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d5e4ab6-c8b9-4e3e-8b35-eee0ef51ce1a", + "pk": "84a2cbc9-ffa1-4418-933a-0ec3d1e73f6b", "fields": { - "question": 363, - "contribution": 1812, + "question": 367, + "contribution": 3739, "answer": 5, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d5e55c7-a3eb-472c-80b3-9424c095b000", + "pk": "84aa0bde-e95c-4906-a361-0fe1922360f7", "fields": { - "question": 355, - "contribution": 4268, - "answer": 1, + "question": 337, + "contribution": 886, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d759b0c-cce2-4ab0-82de-34207eb127b1", + "pk": "84b9c0ec-96ea-4cfd-bddb-3b3c48bc61e1", "fields": { - "question": 414, - "contribution": 3984, + "question": 354, + "contribution": 3609, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d905189-c357-4aea-a6d6-5424817d25b5", - "fields": { - "question": 359, - "contribution": 1804, - "answer": 1, - "count": 7 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "9d91b2b7-edb7-41b9-9ba6-67dffa8198be", + "pk": "84c2e1bb-44e4-4d4f-a0b2-997f480aa4bc", "fields": { - "question": 457, - "contribution": 3786, - "answer": 3, + "question": 343, + "contribution": 1860, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9d98cc15-80e1-438a-9661-37c8811c2108", + "pk": "84c6addf-f89f-478b-b476-9b36fe5f610d", "fields": { - "question": 366, - "contribution": 3631, - "answer": 2, - "count": 7 + "question": 356, + "contribution": 3756, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9dac3acc-8457-471a-8e33-8f3b08be2204", + "pk": "84cd0b96-d21f-43cc-a0c5-0cd46c6b590f", "fields": { - "question": 258, - "contribution": 862, + "question": 371, + "contribution": 3932, "answer": 1, - "count": 9 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9db54466-9fb5-4cab-94b8-6669ecf6e6a0", + "pk": "84cd99a4-98e1-423a-9d22-77eb35f86489", "fields": { - "question": 332, - "contribution": 3593, + "question": 472, + "contribution": 3685, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9dbc7ffb-cb0d-4576-98f8-86be55e86033", + "pk": "84d263ae-c906-4b6e-b661-05618f6f72e0", "fields": { "question": 347, - "contribution": 1735, - "answer": 2, + "contribution": 3899, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9dcc0244-8138-438d-8351-28671255dde5", + "pk": "84d54d81-2401-470f-9c3e-e0b72b6292a8", "fields": { - "question": 346, - "contribution": 3545, - "answer": 3, + "question": 322, + "contribution": 3422, + "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9dcd86d3-a1fc-48e0-8d62-4121f73b5792", + "pk": "84d96d50-4070-49fa-a51c-1c2cf6c4a9ce", "fields": { - "question": 349, - "contribution": 4189, - "answer": 3, - "count": 2 + "question": 343, + "contribution": 3879, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9dd74baf-8917-4dc7-b7d6-738eab52cafa", + "pk": "84dca842-27b2-45fd-8648-eee0bd845148", "fields": { - "question": 320, - "contribution": 4128, - "answer": 1, - "count": 2 + "question": 361, + "contribution": 1812, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9de12d7a-1a1e-4ed1-9f9c-b623b0be8612", + "pk": "84deaca4-ea18-426b-a7f8-177e174ce9f8", "fields": { - "question": 340, - "contribution": 3416, + "question": 328, + "contribution": 4117, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9de13540-4d33-4dce-ab0b-b4952a1aad1c", + "pk": "84e38e95-7f82-4bd6-b79d-11632d84c415", "fields": { - "question": 477, - "contribution": 3423, - "answer": 0, - "count": 14 + "question": 262, + "contribution": 1634, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9df46753-aeb3-43cd-8141-bfbe1388f0aa", + "pk": "84e65028-c476-411b-abe5-debc5f43e4df", "fields": { - "question": 341, - "contribution": 4094, - "answer": 5, - "count": 1 + "question": 319, + "contribution": 4138, + "answer": 3, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e012e10-ff96-4787-ae43-261b56ae14e2", + "pk": "84e7adc7-3456-4a26-bbea-bc0032fb2ff9", "fields": { - "question": 257, - "contribution": 4022, - "answer": 3, + "question": 347, + "contribution": 1639, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e05a76f-8f06-4790-b5fe-759e3097dccd", + "pk": "84ff3785-5bc0-4bc6-af5a-8d76e254011a", "fields": { - "question": 315, - "contribution": 1612, + "question": 340, + "contribution": 918, "answer": 2, - "count": 11 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "9e1357eb-e89c-4e57-8abc-0b4bdb21f137", - "fields": { - "question": 321, - "contribution": 3721, - "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e14fb8a-8c3a-4e94-ade5-704860caf51c", + "pk": "8501136d-9bc5-4a80-ab77-9f756b908015", "fields": { - "question": 316, - "contribution": 1612, - "answer": 5, - "count": 2 + "question": 353, + "contribution": 3847, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e185f92-45e3-44de-aeb0-e527a1e837f5", + "pk": "8502697f-21a1-4261-950e-15e488494b79", "fields": { - "question": 335, - "contribution": 3593, + "question": 326, + "contribution": 1613, "answer": 1, - "count": 3 + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e244525-2967-4b84-b824-6a036ce18344", + "pk": "8502ac46-b3e6-4629-b771-27690a5688ac", "fields": { - "question": 349, - "contribution": 4188, - "answer": 1, - "count": 4 + "question": 367, + "contribution": 4138, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e2d6a2f-27cf-42bd-9fee-497067de725e", + "pk": "8506f145-3d69-4ff7-a174-37b825ea510b", "fields": { - "question": 341, - "contribution": 4002, + "question": 339, + "contribution": 3745, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e361518-0fce-4481-bce5-cbb263bbdc12", + "pk": "85150f7f-3c62-4dd1-8231-1a3f6296974d", "fields": { - "question": 326, - "contribution": 913, + "question": 408, + "contribution": 4038, "answer": 2, - "count": 14 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e4a9390-d022-4539-bc34-2e6834fe60c5", + "pk": "851b2786-8e56-4c99-b3f3-fb7aa740202e", "fields": { - "question": 329, - "contribution": 3391, - "answer": 1, - "count": 5 + "question": 320, + "contribution": 1626, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e4f5c97-06d0-4665-88cb-c7160945aa8e", + "pk": "851b8991-664d-479f-95d4-169b2219a449", "fields": { - "question": 352, - "contribution": 3693, - "answer": 1, + "question": 259, + "contribution": 1668, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e4f79a2-ba6e-452e-94a0-61be0c13bf42", + "pk": "8523d2b2-c229-4036-a0bf-59880bbecb32", "fields": { - "question": 353, - "contribution": 1860, - "answer": 1, - "count": 4 + "question": 477, + "contribution": 885, + "answer": 0, + "count": 23 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e532c7c-2bce-4bee-9a93-82d914ddabeb", + "pk": "852b18ca-c36b-4807-955b-23da62c97d54", "fields": { - "question": 262, - "contribution": 3679, + "question": 316, + "contribution": 4116, "answer": 5, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e69822c-7fb0-4728-8c6e-493c1b14c85a", + "pk": "852fbd60-1b3f-4229-8615-44a07ea3a116", "fields": { - "question": 370, - "contribution": 3975, + "question": 325, + "contribution": 1659, "answer": 1, - "count": 1 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e69fc6c-2a27-4cef-9fcf-e61652e6beed", + "pk": "8533497b-3bb6-4759-a7cd-a7cdcf451b0f", "fields": { - "question": 337, - "contribution": 1734, - "answer": 1, + "question": 329, + "contribution": 1186, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e893603-f028-45d9-a4e9-39caa78200ca", + "pk": "853cfe6b-395b-41d3-bed5-56f3b7d92b25", "fields": { - "question": 335, - "contribution": 3936, + "question": 406, + "contribution": 4038, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e972d7f-1940-4ee0-a839-72972a0c84a5", + "pk": "85490c35-0db2-4b6a-9700-1fec742a36c6", "fields": { - "question": 433, - "contribution": 4090, - "answer": 3, - "count": 1 + "question": 336, + "contribution": 826, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9e9ce21b-45a4-4a38-871a-286391b3b82c", + "pk": "85572543-b5f0-4fb3-b3af-87a7b685cfb2", "fields": { - "question": 344, - "contribution": 1860, - "answer": 1, - "count": 3 + "question": 475, + "contribution": 826, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ea37900-e893-4abc-8644-95cc8be7b50a", + "pk": "855aefc4-0770-432b-bcd8-cd98b1bdbcad", "fields": { - "question": 320, - "contribution": 908, + "question": 367, + "contribution": 3394, "answer": 2, - "count": 14 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ea414f6-bcb9-48e2-a3d1-e53e2deaf836", + "pk": "855b901b-7f71-40e5-a2e5-3677613986a1", "fields": { - "question": 317, - "contribution": 1680, + "question": 343, + "contribution": 3879, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9eac88af-857f-442b-9a8a-7efe6c140dc8", + "pk": "855e5a31-3887-45fd-bbf1-a55ec9d96ea8", "fields": { - "question": 348, - "contribution": 1880, - "answer": 4, - "count": 1 + "question": 472, + "contribution": 3390, + "answer": 5, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ebc4fd0-e8cb-47c0-bc43-4ccc66ce0966", + "pk": "855f0be5-139f-492a-99f4-098951202f97", "fields": { - "question": 354, - "contribution": 3782, + "question": 326, + "contribution": 823, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ed4c306-521a-47ed-a8ca-c7c8730fdd7f", + "pk": "855f4d4b-2656-43e2-8389-99f1d4ea481d", "fields": { - "question": 340, - "contribution": 886, - "answer": 1, - "count": 1 + "question": 333, + "contribution": 4261, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ed50ed4-6f48-4c7e-b404-2a0c19b8ae39", + "pk": "85633281-e824-4e93-b1b5-21e431769936", "fields": { - "question": 329, - "contribution": 913, - "answer": 2, - "count": 9 + "question": 354, + "contribution": 1154, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ed54226-1288-4cbf-9cdb-5fc06ac50c7f", + "pk": "856e4b04-8f10-4bd2-9409-b405b1dc6713", "fields": { - "question": 316, - "contribution": 1724, + "question": 369, + "contribution": 1812, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ee37c4d-c110-42e2-b768-862adfe19677", + "pk": "8572f563-55ff-450c-9ba3-b5bb4380db9c", "fields": { - "question": 316, - "contribution": 1837, - "answer": 2, - "count": 19 + "question": 370, + "contribution": 3834, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ee4d4a6-02a3-4cf7-b1b6-2de3eff2324f", + "pk": "857a774f-18f3-4ab3-90c6-c6e690210cde", "fields": { "question": 347, - "contribution": 3900, - "answer": 3, - "count": 1 + "contribution": 3939, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f07fccb-404d-42f7-ba6b-03c520e79ab5", + "pk": "858200e3-36f1-4598-b05e-1560b7937f0b", "fields": { - "question": 329, - "contribution": 1779, + "question": 349, + "contribution": 3912, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f0809e5-594a-4816-833b-a35f101fd5c0", + "pk": "858a97f3-52fd-48ef-991d-6a5d2995f8d5", "fields": { - "question": 363, - "contribution": 1836, + "question": 463, + "contribution": 3786, "answer": 1, - "count": 10 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f0cdca8-f45a-4e12-baf6-9c882b4284dc", + "pk": "858ef826-ed75-40ce-ab48-b4e009f0d2af", "fields": { - "question": 337, - "contribution": 3508, - "answer": 5, + "question": 347, + "contribution": 3526, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f0f94d3-65e2-44dc-be80-91c5b2b63e08", + "pk": "859c0079-4b70-4f67-869b-2d39cf7019f9", "fields": { - "question": 255, - "contribution": 1837, + "question": 327, + "contribution": 1681, "answer": 2, - "count": 10 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f2069d5-624b-4b0e-b38e-204126338144", + "pk": "85a3600d-daa2-4f4d-909f-7debe191dbfb", "fields": { - "question": 341, - "contribution": 3795, - "answer": 4, - "count": 1 + "question": 316, + "contribution": 3390, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f26a472-96fc-4111-878f-3b2a0b42821c", + "pk": "85a5211b-05d8-4b20-b6d6-be75b128130d", "fields": { - "question": 367, - "contribution": 3462, - "answer": 5, - "count": 1 + "question": 255, + "contribution": 880, + "answer": 4, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f3e67b9-c813-4ce3-a654-5c8f79510a0c", + "pk": "85acb418-18a6-41e4-b5b1-28a3e5a4bafb", "fields": { - "question": 368, - "contribution": 1681, - "answer": 2, - "count": 1 + "question": 338, + "contribution": 1662, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f42c9ed-a9a4-4f36-8e5a-1af623ca02aa", + "pk": "85cd78e3-0615-45b4-804c-00d19ee1e157", "fields": { - "question": 335, - "contribution": 1283, - "answer": 2, - "count": 6 + "question": 357, + "contribution": 4039, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f5a84e1-a25b-49a9-be97-5266bb1db886", + "pk": "85d905b0-1bfc-4d4a-8b33-8d64c76002a8", "fields": { - "question": 460, - "contribution": 4283, + "question": 343, + "contribution": 1881, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f5b0d85-06c7-4bb2-9c6d-12f10310c47a", + "pk": "85eb10ba-b2cc-4c5c-b975-ac2ed6949a70", "fields": { - "question": 260, - "contribution": 3721, - "answer": 1, - "count": 9 + "question": 337, + "contribution": 3466, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f60c4ae-ff2c-4f83-abf6-d516d5285543", + "pk": "85edeadf-129b-4216-be15-557d8de47184", "fields": { - "question": 259, - "contribution": 1626, - "answer": 4, + "question": 341, + "contribution": 4020, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f6c9a24-6312-47dd-bf13-227f24d6b9be", + "pk": "85f1703a-061f-401d-b8ce-0900e2cdcabf", "fields": { - "question": 338, - "contribution": 826, + "question": 347, + "contribution": 3555, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f6d5d1c-a2dc-4838-b9bc-0a5ce41aa28b", + "pk": "86151282-aaf1-4f6d-b0d0-920794b1173a", "fields": { - "question": 320, - "contribution": 3725, - "answer": 3, - "count": 2 + "question": 472, + "contribution": 1694, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f71c784-36b8-4a9e-b317-7f5d9c4444a4", + "pk": "8619f541-6f19-4b97-9240-07805f72036a", "fields": { - "question": 317, - "contribution": 4120, - "answer": 5, - "count": 5 + "question": 362, + "contribution": 1835, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f767a1b-6954-4ac3-8ea4-1e7a8fd04e50", + "pk": "861b0814-baf8-40c7-86bd-c1e56675c421", "fields": { - "question": 338, - "contribution": 4094, + "question": 321, + "contribution": 3725, "answer": 1, - "count": 8 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f801a79-8353-4c63-9802-341e67d765d1", + "pk": "861daaec-e91e-478b-9143-83a46d12b8c0", "fields": { - "question": 367, - "contribution": 1612, - "answer": 5, + "question": 477, + "contribution": 3726, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f83049b-9ea8-4c21-aab6-1ded7d4842ea", + "pk": "862b6696-9454-4d81-8691-eda2fb700459", "fields": { - "question": 368, - "contribution": 3726, + "question": 255, + "contribution": 4120, "answer": 3, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f94cb51-ce0b-489c-a98a-13c94ef5d348", + "pk": "86302343-664e-416a-a367-143938b1570e", "fields": { - "question": 255, - "contribution": 4084, - "answer": 2, - "count": 16 + "question": 336, + "contribution": 4036, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f971820-ddec-49cc-9f0a-c041f36c3d02", + "pk": "86310615-7fa4-4854-9708-851c8db440f5", "fields": { - "question": 346, - "contribution": 1205, - "answer": 1, - "count": 6 + "question": 258, + "contribution": 908, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f9e0c92-e3bc-4a03-80a2-0737c71bc1f9", + "pk": "863850d1-4fd4-43c9-9054-4d8e363ab46e", "fields": { - "question": 325, - "contribution": 3740, + "question": 418, + "contribution": 3984, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9f9e16f6-65a8-4038-8bea-468f5f8fcb7d", + "pk": "863e2939-9fb7-4e49-8d67-6e5f82cdc86a", "fields": { - "question": 262, - "contribution": 3422, - "answer": 5, + "question": 337, + "contribution": 1726, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9fafee59-1d0a-4aaf-b599-8f1d0daa4619", + "pk": "86404aac-82b6-4402-8de8-72e981684ea8", "fields": { - "question": 335, - "contribution": 1283, - "answer": 4, - "count": 1 + "question": 319, + "contribution": 862, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9fbbbab2-d002-427b-b757-9b6c3ad7038d", + "pk": "8649c3a7-12bd-4c78-bcd5-1c731b867f65", "fields": { - "question": 348, - "contribution": 3528, + "question": 259, + "contribution": 1724, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9fbf53ce-ee21-43d1-929b-6ff36619169e", + "pk": "864bd802-50aa-4755-9a09-55c5ece089be", "fields": { - "question": 322, - "contribution": 1612, + "question": 327, + "contribution": 4117, "answer": 1, - "count": 9 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9fc7465c-d479-46fe-a2a0-1c28c1ba6d5b", + "pk": "864ebf43-ee0c-4af0-9ab5-ab3bfa06e2ec", "fields": { - "question": 351, - "contribution": 790, - "answer": 1, + "question": 335, + "contribution": 3932, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9fd308e9-ae50-4340-b797-c9f06b9ba721", + "pk": "864f7728-a5f5-4225-96c3-8b402392705f", "fields": { - "question": 361, - "contribution": 3919, + "question": 325, + "contribution": 1725, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9fd49972-2611-4d83-8db4-67c8f0c4cab0", + "pk": "8654b5f3-9d0e-4415-8dd6-86ea9c3207ce", "fields": { - "question": 367, - "contribution": 1612, + "question": 475, + "contribution": 1644, "answer": 2, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9fe6fbc7-0f48-4094-a6a5-70f086a185b9", + "pk": "86575f01-f572-4718-826a-ba5c7f937a40", "fields": { - "question": 259, - "contribution": 836, - "answer": 3, + "question": 368, + "contribution": 4117, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "9ff2747f-9002-4694-9321-7fe6d90f8300", + "pk": "86604fc5-55b7-44f4-86cc-a20734269d07", "fields": { - "question": 349, - "contribution": 3796, + "question": 357, + "contribution": 4270, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a000cd73-8bd5-4e3c-9e40-576172880fa0", + "pk": "8663685d-6be0-46fb-8b74-83455c7b085a", "fields": { - "question": 345, - "contribution": 3939, + "question": 336, + "contribution": 3751, + "answer": 1, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "866bad1b-10a1-4f62-b890-7eb0f601e8d6", + "fields": { + "question": 331, + "contribution": 4120, + "answer": 1, + "count": 5 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "866f42df-ecff-40ab-8380-739e0593b67b", + "fields": { + "question": 337, + "contribution": 3450, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a0010b6f-f68e-4260-bb27-427e17979cd2", + "pk": "86709078-af61-4972-af34-b50f549bfe1a", "fields": { - "question": 337, - "contribution": 804, + "question": 477, + "contribution": 909, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a00edc25-82ca-43c5-8a18-72a853884a63", + "pk": "8677d2e7-fe28-4e88-95ef-4584a517386b", "fields": { - "question": 333, - "contribution": 4152, + "question": 322, + "contribution": 3721, "answer": 3, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a0170c97-3baa-491c-ae9f-c471a59fe924", + "pk": "867cf989-46a1-40f0-9cac-1bfeeba147a4", "fields": { - "question": 262, - "contribution": 3354, + "question": 338, + "contribution": 4002, "answer": 1, - "count": 8 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a02001a9-701e-4216-8051-2578e55634d6", + "pk": "868d3ba3-2955-45bf-88e5-7f1bd199add0", "fields": { - "question": 347, - "contribution": 1880, - "answer": 4, - "count": 1 + "question": 366, + "contribution": 3551, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a04c4a0f-2f27-4939-ab93-9c8515d71b8e", + "pk": "868ff2c9-2afe-4370-9c74-21749d774c1b", "fields": { - "question": 343, - "contribution": 1156, - "answer": 1, + "question": 349, + "contribution": 887, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a04cf375-180e-48f6-a270-ac5477039ecd", + "pk": "86902923-b231-4da2-a667-4375e799352b", "fields": { - "question": 329, - "contribution": 4203, - "answer": 4, + "question": 359, + "contribution": 3597, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a068ce9c-ffa8-4686-9f06-faf5d4c9e649", + "pk": "86920feb-b856-408e-8ea4-c72fb724fe81", "fields": { - "question": 366, - "contribution": 4154, + "question": 347, + "contribution": 1206, "answer": 1, - "count": 6 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a077a4a3-5579-47d4-8deb-809ccca0fc13", + "pk": "869797fc-9096-4563-8804-14376ec7df85", "fields": { - "question": 344, - "contribution": 4187, + "question": 457, + "contribution": 4284, "answer": 1, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a0780b6d-b4d5-418c-a3ba-d2ec771b8ca6", + "pk": "869a739b-6cb1-4fcd-a001-cb26f5ce0e98", "fields": { - "question": 477, - "contribution": 3391, - "answer": -3, - "count": 2 + "question": 371, + "contribution": 3551, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a07dba61-da67-4700-b963-21e561f651f3", + "pk": "869eb77e-e5ed-4b90-ad46-acbc156de3e0", "fields": { - "question": 346, - "contribution": 3934, + "question": 259, + "contribution": 3739, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a0804acf-e6e5-40db-a7ae-38b979d37e71", + "pk": "869f6dd4-f103-4dfe-b28b-63b3c9f1564c", "fields": { - "question": 360, - "contribution": 3929, + "question": 354, + "contribution": 1154, "answer": 3, - "count": 3 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a0869c09-f599-4f03-a385-b1eae1d517f5", + "pk": "86a1c76e-67d2-43e7-89c0-a7cd139bf803", "fields": { - "question": 325, - "contribution": 3407, - "answer": 1, - "count": 8 + "question": 320, + "contribution": 3434, + "answer": 2, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a09a76a0-a7d1-4084-98f5-0cb060960222", + "pk": "86aeb68f-7c00-4e91-8ace-a19ae5154e63", "fields": { - "question": 349, - "contribution": 4189, + "question": 354, + "contribution": 4232, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a0aa71d9-c729-418a-b381-876e160fc3a7", + "pk": "86b988d7-8858-4153-9310-d0eb1932b2ea", "fields": { - "question": 338, - "contribution": 1726, - "answer": 4, - "count": 1 + "question": 325, + "contribution": 1681, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a0aab48b-57cc-4b24-a5d2-b743bc240f75", + "pk": "86bf22ed-5f12-48d2-8f17-34bc2c3ff909", "fields": { - "question": 326, - "contribution": 837, + "question": 368, + "contribution": 1613, "answer": 2, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a0c46df8-05f9-4887-a854-1f9a0bbb3afe", + "pk": "86c5c91d-0313-42ea-949a-1d34aa29b787", "fields": { - "question": 319, - "contribution": 3739, + "question": 431, + "contribution": 4177, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a0cbd02d-f2f1-415b-b928-e7727f97f693", + "pk": "86c6aabe-7a53-4373-8636-6e3f0c6eca3d", "fields": { - "question": 343, - "contribution": 3383, - "answer": 2, - "count": 1 + "question": 359, + "contribution": 1836, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a0d29f4e-9556-4618-b9db-5560d7c0274e", + "pk": "86c8ac84-59a0-4e99-b494-23108a9fec40", "fields": { - "question": 367, - "contribution": 3422, + "question": 346, + "contribution": 3518, "answer": 1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a0e9cc50-478a-4393-ad3b-7808ae4ffcaf", - "fields": { - "question": 366, - "contribution": 3594, - "answer": 1, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "a0ec8f11-3064-4147-bd34-1fde68f1bc69", + "pk": "86cb6808-d60f-4cbc-bb24-7af8ef9f0403", "fields": { - "question": 317, - "contribution": 4022, - "answer": 1, + "question": 476, + "contribution": 1634, + "answer": -1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a0f0881d-4725-49ad-b1c3-1880dd9db1d6", + "pk": "86d162cd-caeb-4b32-a4ae-eba913e4b5e7", "fields": { - "question": 371, - "contribution": 3882, + "question": 354, + "contribution": 3848, "answer": 1, - "count": 7 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a10909cb-e4a4-4c1a-a15a-0e40a7b0cd84", + "pk": "86d4df34-e747-49bf-9a23-75d3791748bd", "fields": { - "question": 341, - "contribution": 3821, - "answer": 1, - "count": 1 + "question": 328, + "contribution": 1776, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a115aba5-6db1-4ca1-a0f4-a137faf9c32a", + "pk": "86d93d74-87b9-44a0-836f-4280f819b7a8", "fields": { - "question": 355, - "contribution": 4039, + "question": 345, + "contribution": 1860, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a118e27c-fc56-440a-ab1e-62e29a04c880", + "pk": "86dadc20-36bf-431d-8dad-36025cc49993", "fields": { - "question": 363, - "contribution": 3648, - "answer": 1, - "count": 2 + "question": 319, + "contribution": 4116, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a11a41bc-3283-4ded-8d61-3db5558eab74", + "pk": "86ddc9ae-d9cd-413d-bc46-816ca1ed90b0", "fields": { "question": 367, - "contribution": 4118, + "contribution": 1658, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a11c2322-fef1-4523-a513-a527bf9f31d0", + "pk": "86de3ea7-798d-4fe6-8e19-88ed0b6d3326", "fields": { - "question": 325, - "contribution": 1776, - "answer": 4, - "count": 1 + "question": 344, + "contribution": 3608, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a130142c-2950-4592-a0ed-e2464f033c83", + "pk": "86e4765a-a2f4-42e1-9d40-17076de2110a", "fields": { - "question": 346, - "contribution": 3528, - "answer": 1, - "count": 2 + "question": 340, + "contribution": 3508, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1362816-29d1-48c4-a0ce-71ca88f324e1", + "pk": "86e8b681-243e-44c4-8e30-0b176b6cdd97", "fields": { - "question": 345, - "contribution": 4189, - "answer": 3, - "count": 1 + "question": 325, + "contribution": 909, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a13c500a-dc2a-43ca-a71f-44df5975c4be", + "pk": "86ed9def-c378-4e51-b302-37df630e72de", "fields": { - "question": 319, - "contribution": 3434, - "answer": 5, - "count": 1 + "question": 361, + "contribution": 1825, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a13fe739-22f4-4551-84dc-1d53475e755c", + "pk": "86eda815-c4ee-4dc6-82df-3ecae0b057fe", "fields": { - "question": 458, - "contribution": 4283, - "answer": 5, - "count": 1 + "question": 348, + "contribution": 3896, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a15a0cb0-6f5f-4943-990c-418f60aeeabf", + "pk": "86f1b7c5-f087-45de-b03f-c1c9b0fad7b9", "fields": { - "question": 327, - "contribution": 4203, + "question": 346, + "contribution": 3517, "answer": 2, - "count": 8 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a15b3588-3ebd-4051-9feb-dfc805137862", + "pk": "8723ea6d-2b1a-4302-ad35-41171369e46b", "fields": { - "question": 329, - "contribution": 885, - "answer": 3, - "count": 2 + "question": 328, + "contribution": 913, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a163c827-2f6d-4908-9b4c-a8683a302636", + "pk": "8734d252-8a0d-4cbc-a24c-74bcc4436ba9", "fields": { - "question": 348, - "contribution": 1247, - "answer": 1, - "count": 1 + "question": 353, + "contribution": 1154, + "answer": 4, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a16651e0-b25a-495b-9717-2aa30d3fca79", + "pk": "873a662c-e59f-4d33-945d-c8d149eef72a", "fields": { - "question": 327, - "contribution": 1669, + "question": 351, + "contribution": 3440, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a166c758-1a29-446b-9b00-ff9479e406ea", + "pk": "87445d12-a154-4b73-86d3-315fd9e67ebe", "fields": { - "question": 473, - "contribution": 4008, - "answer": 1, - "count": 1 + "question": 477, + "contribution": 1779, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1690e3c-9bee-4bf6-bf43-49dc55f045c1", + "pk": "8747de90-6080-491e-9403-056298f59cfc", "fields": { - "question": 317, - "contribution": 3665, - "answer": 4, + "question": 352, + "contribution": 804, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a16a7494-1ae2-4e1b-a760-072a6b16bf93", + "pk": "874de2f5-2ebd-4f3b-84b1-04ea4c0110e0", "fields": { - "question": 320, - "contribution": 4100, - "answer": 2, - "count": 10 + "question": 316, + "contribution": 3390, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1725a70-37ff-452b-8941-d59224cd2253", + "pk": "87543c18-120c-4acd-8d1f-088d54798681", "fields": { - "question": 336, - "contribution": 1638, - "answer": 1, - "count": 4 + "question": 349, + "contribution": 1207, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a177f9b3-7921-41d6-b213-00d2ccc3515b", + "pk": "8757b283-11fa-43c7-a647-9194db7ad817", "fields": { "question": 345, - "contribution": 1735, + "contribution": 4095, "answer": 1, - "count": 4 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a179bde9-7b5a-4978-b6c0-4eaa28366155", + "pk": "8758c09b-7ec4-4413-a422-4bc2e70d83da", "fields": { - "question": 370, - "contribution": 3712, - "answer": 5, + "question": 347, + "contribution": 4191, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a17e4615-33c6-4051-a0f4-0f3cbf76dd15", + "pk": "876644d9-a197-4774-9615-690f1280b3a0", "fields": { - "question": 319, - "contribution": 3354, + "question": 322, + "contribution": 862, "answer": 1, - "count": 21 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a17f4914-8c29-4c9e-8c67-550ab83c7e39", + "pk": "876cf2a8-f1be-4369-9d4e-723b92131b3c", "fields": { - "question": 316, - "contribution": 4116, - "answer": 2, + "question": 328, + "contribution": 3885, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a17f602f-7e2f-48bd-8d97-5becead62023", + "pk": "877dc1d4-fc95-46a1-9c4f-ef66cb196efe", "fields": { - "question": 347, - "contribution": 3546, - "answer": 3, + "question": 346, + "contribution": 1873, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1852228-53fe-4972-a1fa-6caa74be623b", - "fields": { - "question": 328, - "contribution": 4101, - "answer": 2, - "count": 6 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "a185b509-2ed8-41f4-86f6-e3fdf203439b", + "pk": "87802c04-d998-463f-b6f9-faff9a1c753e", "fields": { - "question": 473, - "contribution": 3434, - "answer": 0, - "count": 30 + "question": 360, + "contribution": 3650, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1a02e66-abf9-48ab-9370-3457c3ec6cbd", + "pk": "8781a43b-17f6-48c1-abd9-c16941e557d0", "fields": { - "question": 464, - "contribution": 4091, - "answer": 3, - "count": 1 + "question": 353, + "contribution": 3545, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1a831be-476b-4905-9fbe-79d3f8e998e8", + "pk": "878fd96f-7532-4c53-ba7e-9a9a7b74adf9", "fields": { - "question": 259, - "contribution": 1837, - "answer": 5, - "count": 1 + "question": 335, + "contribution": 1884, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1b1af5b-fd09-4ecc-8cbc-d6a3577d154f", + "pk": "8796a3fc-6dc0-4cd2-b8c0-6288bac87fc5", "fields": { - "question": 333, - "contribution": 3598, - "answer": 1, + "question": 457, + "contribution": 4283, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1b40eef-bccf-4559-bc42-9ca1f5f85f2a", + "pk": "879cd4cf-75da-48e1-8599-991a22676bcd", "fields": { - "question": 327, - "contribution": 4023, - "answer": 1, - "count": 4 + "question": 362, + "contribution": 1836, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1b49130-8fba-4ac0-862d-294809b2f82c", + "pk": "87a5db87-33e3-46ce-95dd-d0dea71a4728", "fields": { - "question": 357, - "contribution": 3609, - "answer": 1, - "count": 3 + "question": 361, + "contribution": 1812, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1b4bf21-6456-4e1a-97c8-26701cd0cddc", + "pk": "87ba471c-a588-4f05-8971-4e130af09578", "fields": { - "question": 335, - "contribution": 3592, - "answer": 2, + "question": 369, + "contribution": 1825, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1c67e0b-d7f0-4450-8ec8-225d38a496fa", + "pk": "87be82d9-7b23-4f86-ade7-19eb94473918", "fields": { - "question": 255, - "contribution": 884, + "question": 368, + "contribution": 1613, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1cb1354-b05a-4b75-8d64-31177fa2a7a9", + "pk": "87c571d7-7888-4af7-99d4-0d497492abbb", "fields": { - "question": 349, - "contribution": 3607, - "answer": 1, - "count": 3 + "question": 475, + "contribution": 4122, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1d3ada1-54e4-417e-b091-18c4eb31471d", + "pk": "87cf6cd4-8725-4959-ac8f-d686e5490876", "fields": { - "question": 255, - "contribution": 3474, - "answer": 3, - "count": 12 + "question": 320, + "contribution": 3665, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1da7976-4fb2-4d4d-9826-79c6c9e7afa8", + "pk": "87d4defd-3e50-4e29-bfe5-80760d3b7009", "fields": { - "question": 335, - "contribution": 3631, + "question": 356, + "contribution": 1782, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1e47d9c-a9c2-4651-abdd-4ba426da44ac", + "pk": "87eb9c42-25da-4b08-bbda-8402b850c026", "fields": { "question": 338, - "contribution": 3482, - "answer": 3, - "count": 3 + "contribution": 1638, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1e8cbfa-eda7-4322-bc89-102118e73401", + "pk": "87f66c5e-533f-4368-8a02-19d22550567a", "fields": { - "question": 355, - "contribution": 1782, - "answer": 2, - "count": 3 + "question": 319, + "contribution": 4022, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1eeeaf5-0923-49f8-9799-f3031e6728d4", + "pk": "87f78e83-514f-4933-ae94-12286a9f2df4", "fields": { - "question": 357, - "contribution": 1782, + "question": 315, + "contribution": 880, "answer": 2, - "count": 1 + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1ef6928-4135-4826-8837-5bce076c4262", + "pk": "8800535b-d02b-4a80-80df-c8f54389dc8e", "fields": { - "question": 400, - "contribution": 3646, - "answer": 4, + "question": 327, + "contribution": 1778, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1f6538f-764c-4418-ba30-624ca3e2f84e", + "pk": "880d903d-5ba4-45f0-86e5-d3146e7f11f0", "fields": { - "question": 326, - "contribution": 3859, - "answer": 3, - "count": 1 + "question": 476, + "contribution": 880, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a1f80f4b-2dc3-47d1-8511-8730263e44ab", + "pk": "88112281-d36f-4904-823a-36c010c5c1f2", "fields": { - "question": 369, - "contribution": 1835, + "question": 337, + "contribution": 3727, "answer": 5, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a201651e-6927-4df0-9ae5-771fe214fc31", + "pk": "8815edaf-6b6b-4c19-995e-8f1c840d1252", "fields": { - "question": 336, - "contribution": 3508, + "question": 446, + "contribution": 4114, "answer": 1, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a20b080b-9e5c-406e-95bd-c3da7a2afeaf", + "pk": "8817b23c-20a9-4e5c-84de-a0c425db78fb", "fields": { - "question": 355, - "contribution": 3516, + "question": 349, + "contribution": 1204, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a20de9d7-4835-4709-8155-b22e939ea5a5", + "pk": "881f4e13-8dc3-411d-8e2a-5467ca90ef36", "fields": { - "question": 345, - "contribution": 1867, + "question": 346, + "contribution": 4123, "answer": 1, - "count": 7 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a2207d97-fb11-4be9-a668-d9a9e45a2a5b", + "pk": "8822228b-6631-484b-86cc-ae3e57b78a31", "fields": { - "question": 322, - "contribution": 1626, - "answer": 2, - "count": 7 + "question": 315, + "contribution": 4138, + "answer": 1, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a227ee91-544f-4e35-b6de-d788e94e4890", + "pk": "882cb517-0030-492d-8998-f1adcb6870b2", "fields": { - "question": 357, - "contribution": 1776, - "answer": 3, - "count": 2 + "question": 472, + "contribution": 1724, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a23234e5-a8e4-449f-8220-acf7579522f7", + "pk": "8835ca69-be10-494d-addd-c0e0063ab802", "fields": { - "question": 346, - "contribution": 1641, - "answer": 5, + "question": 320, + "contribution": 3739, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a238eb64-f4ed-4f9e-93e8-53530c77b701", + "pk": "8837bd17-0e22-4796-8a7a-cf44fe97b725", "fields": { - "question": 327, - "contribution": 4153, - "answer": 2, - "count": 3 + "question": 473, + "contribution": 4120, + "answer": -1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a23dc90b-8404-4309-a830-68fcb8582035", + "pk": "8839ac2b-add7-4565-a40d-5e1c7bc84fe6", "fields": { - "question": 339, - "contribution": 1710, - "answer": 1, + "question": 475, + "contribution": 3735, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a23df4e2-fe75-421f-bfc3-7b5b594f9296", + "pk": "8862f77e-2338-42fe-a5b7-de16f19e0b7f", "fields": { - "question": 356, - "contribution": 1154, - "answer": 3, - "count": 6 + "question": 315, + "contribution": 1658, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a255a227-e46e-4de8-9dff-a220f77b6870", + "pk": "8863e21f-037e-49a7-bfb5-e5b670083c22", "fields": { - "question": 370, - "contribution": 1782, - "answer": 2, + "question": 346, + "contribution": 1843, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a25f04a9-effd-4713-95df-8cb2d68456c5", + "pk": "886c9c92-924a-40f6-b3e7-d8ea5552a64b", "fields": { - "question": 315, - "contribution": 3665, - "answer": 1, - "count": 3 + "question": 472, + "contribution": 3745, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a2623e36-f0dc-48e1-8236-c7c12b9c775d", + "pk": "88731677-5cb7-460f-98d2-4e33af4f3302", "fields": { - "question": 378, - "contribution": 3781, - "answer": 4, - "count": 1 + "question": 349, + "contribution": 3822, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a26d8306-6c0a-4014-ab58-75229b384331", + "pk": "887dff43-7dec-4da9-8093-cbd7a3336a1c", "fields": { - "question": 475, - "contribution": 3685, + "question": 348, + "contribution": 3487, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a278a827-955d-45b7-a2e6-1b303cffc4ce", + "pk": "8884387d-697d-49cd-8ddc-a86bc920d7c1", "fields": { - "question": 331, - "contribution": 836, + "question": 343, + "contribution": 3704, "answer": 1, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a29a46aa-a5bc-4148-b045-bee149490f5c", + "pk": "8889e943-d8eb-4413-8ddd-d49f26b989e8", "fields": { - "question": 477, - "contribution": 1778, - "answer": -3, - "count": 2 + "question": 326, + "contribution": 4047, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a29e8e83-1f23-4079-be52-ab77097b2029", + "pk": "88950d95-4553-428c-b6eb-c6619ddfb982", "fields": { - "question": 333, - "contribution": 1283, - "answer": 4, - "count": 1 + "question": 317, + "contribution": 4128, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a2a32aca-10cd-4470-9b5d-a6f852bf1b5e", + "pk": "8896fb1a-b048-445b-8fa1-f621b86af7d4", "fields": { - "question": 1, - "contribution": 4302, - "answer": 1, - "count": 42 + "question": 463, + "contribution": 4091, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a2beafa1-4257-40d7-8090-f0135bf24cb8", + "pk": "88978825-3c7f-4f54-8944-c8cf160ef58c", "fields": { - "question": 323, - "contribution": 1612, - "answer": 1, - "count": 7 + "question": 326, + "contribution": 1154, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a2c10dba-3d92-401d-b81f-84c01f821651", + "pk": "88a47068-557a-4dab-9426-09f14a93790a", "fields": { - "question": 371, - "contribution": 4205, + "question": 344, + "contribution": 3935, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a2c3488c-1114-4476-9640-e2d76409f5ab", + "pk": "88a629eb-2153-4c3b-b921-122507a63411", "fields": { - "question": 349, - "contribution": 1204, - "answer": 3, - "count": 2 + "question": 335, + "contribution": 3552, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a2c88f96-fea1-4151-9757-feb02636bac8", + "pk": "88a96d54-326a-494f-9f4a-bdcf0b68a981", "fields": { - "question": 326, - "contribution": 3473, + "question": 322, + "contribution": 4100, "answer": 3, - "count": 1 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a2c918bb-6a21-4997-bdf1-a13bfa0df912", + "pk": "88af7583-42c2-49c9-a51e-4d92bafba71d", "fields": { - "question": 340, - "contribution": 788, + "question": 258, + "contribution": 3406, "answer": 1, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "a2d1a356-78b0-4329-952e-9ba5a4efc575", - "fields": { - "question": 473, - "contribution": 4116, - "answer": 2, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a2d8d596-64c5-4eba-8657-7600265b743a", + "pk": "88b70fae-2caf-48f1-acde-e76868c597e5", "fields": { - "question": 346, - "contribution": 1749, + "question": 336, + "contribution": 826, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a2e44b9b-1d1b-457d-ac45-2edaabcfeb60", + "pk": "88b78fe2-c184-41ef-ba39-b09d2ed2472b", "fields": { - "question": 473, - "contribution": 3466, - "answer": 0, + "question": 368, + "contribution": 3740, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a30a9994-fb0a-4027-abc8-f77daffb90f9", + "pk": "88c104bd-e834-409e-83f4-8432ab6b15f7", "fields": { - "question": 348, - "contribution": 3855, - "answer": 2, + "question": 356, + "contribution": 1244, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a310f254-b305-4207-bebb-4c856a57af5c", + "pk": "88c4d93d-bb99-438b-a9b5-1830e4595c76", "fields": { - "question": 317, - "contribution": 3406, + "question": 323, + "contribution": 3394, "answer": 1, - "count": 7 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a31ceb33-47c9-4c83-8f32-067dfcb3b27b", + "pk": "88c97719-cae9-450f-a0fe-8de01cd32de8", "fields": { - "question": 416, - "contribution": 3974, - "answer": 2, - "count": 1 + "question": 335, + "contribution": 837, + "answer": 1, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a31dcc2b-4f78-43b9-82c4-2c3bfe35b49f", + "pk": "88c98de9-456f-471c-8330-4d5cc2bed841", "fields": { - "question": 343, - "contribution": 4234, + "question": 347, + "contribution": 3610, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3248bd3-2c21-4638-a294-fdc5202ad4ca", + "pk": "88d2676d-4800-4b23-96f9-b2a281537c47", "fields": { - "question": 345, - "contribution": 3545, + "question": 337, + "contribution": 4094, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3263f63-5e21-416a-8274-6b56b4d1522a", + "pk": "88da6822-4cca-4d3d-9632-cd150a555542", "fields": { - "question": 338, - "contribution": 3685, - "answer": 2, - "count": 1 + "question": 329, + "contribution": 3391, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a32eda97-e178-4ee3-83ee-774fa2a2ecb3", + "pk": "88dc01ca-1ace-49a8-880a-03381b59e6cb", "fields": { - "question": 344, - "contribution": 1661, + "question": 354, + "contribution": 3529, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3371e2d-8b8d-49e2-a596-fff89f655455", + "pk": "88dffd57-0863-45ae-8889-75bf55b336dc", "fields": { - "question": 345, - "contribution": 1868, - "answer": 1, + "question": 340, + "contribution": 3508, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3379a2a-89bf-4f4f-8365-b966bcfa3d47", + "pk": "88e34a9f-9107-4f41-80b6-721a457402fb", "fields": { - "question": 359, - "contribution": 3652, - "answer": 1, + "question": 315, + "contribution": 1680, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3389648-9544-4244-905e-67475e2ca283", + "pk": "88ea44b7-6e79-4cb8-824a-7b0ac608d7e4", "fields": { - "question": 351, - "contribution": 3693, - "answer": 1, - "count": 2 + "question": 395, + "contribution": 3711, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a33da47c-65b8-4e89-87e7-d5fc7936fb9c", + "pk": "88f043a0-f1ed-4770-960a-5cc70c47214b", "fields": { - "question": 320, - "contribution": 1612, - "answer": 3, - "count": 4 + "question": 328, + "contribution": 1779, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a33e863e-5c59-4bb9-99ad-8d87f4422d8f", + "pk": "88f5d910-e511-4116-9eb6-818073b93ff4", "fields": { - "question": 368, - "contribution": 4117, - "answer": 1, - "count": 2 + "question": 436, + "contribution": 4052, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3587256-2edf-49b1-8895-86257f2dd092", + "pk": "8900348d-4693-47a2-88b8-c57ae1d707be", "fields": { - "question": 473, - "contribution": 3390, - "answer": 2, + "question": 345, + "contribution": 1880, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a35d74c5-06da-4a83-b0de-b6d79aef6165", + "pk": "89031328-6d00-40e4-90dc-a6392b9ddcaf", "fields": { - "question": 333, - "contribution": 3553, - "answer": 4, - "count": 3 + "question": 475, + "contribution": 3693, + "answer": 0, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3633fb4-e6dd-42af-87cc-c2a98bd44969", + "pk": "8905efde-fc5c-4d72-934d-94d060fc8291", "fields": { - "question": 328, - "contribution": 3391, - "answer": 3, + "question": 343, + "contribution": 1204, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a36b9f49-08a9-4aea-9320-417095b519ac", + "pk": "890b789c-9c16-45be-a6e9-e48c598ce4cb", "fields": { - "question": 348, - "contribution": 4003, + "question": 473, + "contribution": 3723, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a37b2754-1865-4b44-871f-0c76334cd8d2", + "pk": "891341a5-9322-48c0-b8e9-986ddfea126e", "fields": { - "question": 359, - "contribution": 1810, - "answer": 4, + "question": 262, + "contribution": 3406, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a37b7b92-4da0-47bc-b949-17db8123b726", + "pk": "8919c5f2-34fa-4955-8388-f23a6e686063", "fields": { - "question": 366, - "contribution": 4152, - "answer": 1, - "count": 19 + "question": 351, + "contribution": 3454, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a37ecb7e-48fc-4532-82c6-e8abac245358", + "pk": "892d10a8-2d5f-4fb5-911c-cb95efa67679", "fields": { - "question": 262, - "contribution": 822, + "question": 340, + "contribution": 3486, "answer": 2, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a38576e3-df35-4df2-b18c-51ea132bdbe8", + "pk": "893d03bd-170d-4648-999a-1570b80d2cfa", "fields": { - "question": 335, - "contribution": 3882, - "answer": 2, + "question": 258, + "contribution": 1680, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3978488-4ff6-41d8-b2b9-6175102942e2", + "pk": "894b5703-67b9-4f6e-adf5-6a1a47342f03", "fields": { - "question": 337, - "contribution": 804, - "answer": 3, + "question": 339, + "contribution": 1694, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a398fba2-36c2-462c-9374-df8b81790396", + "pk": "8956e401-ac8e-4cce-a37c-7fb6951c5c4a", "fields": { - "question": 357, - "contribution": 3847, - "answer": 4, - "count": 1 + "question": 362, + "contribution": 3653, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3a2f045-9c7e-421c-9732-5bf343738afb", + "pk": "895d4b99-ff9c-4b09-b64f-347372e44ba4", "fields": { - "question": 362, - "contribution": 3942, - "answer": 5, + "question": 475, + "contribution": 1694, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3a52394-a454-4a2f-8772-57a5a208362d", + "pk": "89682a09-a480-4c3c-9ebe-1a9b2d076007", "fields": { - "question": 361, - "contribution": 3893, - "answer": 3, - "count": 1 + "question": 475, + "contribution": 3727, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3a9b424-afe7-47b5-8932-317439eee316", + "pk": "89749339-5462-4450-b79e-cdb1ddc127c9", "fields": { - "question": 473, - "contribution": 3745, - "answer": 1, + "question": 336, + "contribution": 1660, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3af9c4e-6e3c-46b1-8463-6fda6cd1298b", + "pk": "897b70d0-07d8-422e-89cd-3f1b4bfe422f", "fields": { - "question": 366, - "contribution": 3631, - "answer": 1, + "question": 477, + "contribution": 1776, + "answer": 2, "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3b26fb0-d8d1-478d-9b23-6016987d9493", + "pk": "897ddc58-dc53-47e2-9b08-bf57c1202427", "fields": { - "question": 325, - "contribution": 909, - "answer": 1, - "count": 32 + "question": 327, + "contribution": 3859, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3b47b9b-5941-456f-a00a-b7e654596f92", + "pk": "89834a17-7293-49fd-9146-0e7f45554ff1", "fields": { - "question": 348, - "contribution": 1250, - "answer": 4, - "count": 1 + "question": 388, + "contribution": 3775, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3c295fa-ab1d-4d10-b6ac-16099e02ce6d", + "pk": "8986b097-f0dc-45d2-b32f-53e08d106dfb", "fields": { - "question": 316, - "contribution": 4118, + "question": 347, + "contribution": 1249, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3c5dad0-6f2a-4787-85ee-2dcb1e6dcec2", + "pk": "898f092f-e893-4a6b-9384-c3e0312fb066", "fields": { - "question": 344, - "contribution": 3517, - "answer": 1, - "count": 4 + "question": 259, + "contribution": 3390, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3cdff0e-d7c1-4e03-af8e-38d28cf640d3", + "pk": "89918a89-ba62-4a6f-872f-6122a98c0186", "fields": { - "question": 316, - "contribution": 4100, - "answer": 4, + "question": 332, + "contribution": 3592, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3ceda41-4863-41f9-9547-ff6d41e1bad1", + "pk": "89921109-d994-494d-9e33-5668fdf4bc9f", "fields": { - "question": 368, - "contribution": 3680, - "answer": 1, - "count": 2 + "question": 338, + "contribution": 1660, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3cf0833-1e13-4c00-8b0b-0ae7210d22ff", + "pk": "89966ad2-f54f-4390-810f-f7f376bcc912", "fields": { - "question": 360, - "contribution": 1835, + "question": 333, + "contribution": 4155, "answer": 2, - "count": 7 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3d464bb-2487-413d-a4e6-30e3c617a437", + "pk": "8998cbc0-1a37-4757-972d-c0efec6455d2", "fields": { - "question": 339, - "contribution": 1200, - "answer": -2, + "question": 362, + "contribution": 3648, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3dc851c-4700-44be-b7ec-9d1486a3a20b", + "pk": "8999ff7b-38c9-4fe0-b235-4fcb1a222a6c", "fields": { - "question": 322, - "contribution": 3679, + "question": 392, + "contribution": 3755, "answer": 1, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3de24d7-62be-485c-b594-524bdcf03943", + "pk": "89a41fe3-9da6-40c2-abcc-2de3d026022d", "fields": { - "question": 332, - "contribution": 3551, - "answer": 1, - "count": 18 + "question": 476, + "contribution": 4022, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3fa2aef-17fd-477b-ba98-8b6312432a2a", + "pk": "89a4fe03-2778-45c9-a744-3faabe383b41", "fields": { - "question": 403, - "contribution": 4119, - "answer": 2, + "question": 436, + "contribution": 4090, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a3fbc2d3-8772-4b17-a8f2-d0485e75e4c3", + "pk": "89c722f9-a8e9-4424-9d1e-eb36949c1571", "fields": { "question": 477, "contribution": 1802, + "answer": -1, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "89c8139f-b4e1-4cca-a2aa-8644ff586b03", + "fields": { + "question": 360, + "contribution": 3919, "answer": 2, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a401a56b-7f30-49d9-8527-cf7721d53c94", + "pk": "89ced0c1-1d49-4930-a950-36e558bd2bcc", "fields": { - "question": 315, - "contribution": 3725, + "question": 362, + "contribution": 3597, "answer": 3, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a40380ec-66ac-4c31-aba5-0af091a7a367", + "pk": "89debe2b-704f-4d7e-9975-a856aa39f19c", "fields": { - "question": 473, - "contribution": 3795, - "answer": -1, - "count": 3 + "question": 316, + "contribution": 880, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a40e7e91-4c51-4154-bc21-7167417b9041", + "pk": "89e45141-0e5c-4443-a334-1f649419e10d", "fields": { - "question": 315, - "contribution": 3406, + "question": 260, + "contribution": 3679, "answer": 2, - "count": 3 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a40f7d60-2c1f-463d-8d74-c8abdbd101e2", + "pk": "89e6967e-4e13-4cda-8f12-5e9bfdec54f9", "fields": { - "question": 349, - "contribution": 1207, + "question": 337, + "contribution": 4052, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4250e6c-793f-4d33-9409-483da51e32cf", + "pk": "89e72a19-4ddc-4c30-b61e-ae69c0973864", "fields": { - "question": 333, - "contribution": 3598, - "answer": 3, - "count": 3 + "question": 394, + "contribution": 3775, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a425fb1f-7a81-4fc9-b47a-ccb5b55c41ad", + "pk": "89f060fa-1db6-4cdb-9b57-53dbbc5b93d8", "fields": { - "question": 370, - "contribution": 3832, + "question": 255, + "contribution": 3390, "answer": 1, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a433e50b-aa59-4ba4-b66e-5e6f0eddb163", + "pk": "89f19433-3a2b-43c6-9958-6d4952fa3eb1", "fields": { - "question": 259, - "contribution": 1658, + "question": 321, + "contribution": 3739, + "answer": 2, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "89fb2ceb-3ddf-4b51-bf00-73c699a5e399", + "fields": { + "question": 340, + "contribution": 1200, "answer": 1, - "count": 13 + "count": 27 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a435dd56-9136-412d-a38e-c26a5b5896de", + "pk": "8a029370-bb8b-4371-8cc7-9cce0e841aa9", "fields": { - "question": 325, - "contribution": 3859, + "question": 320, + "contribution": 884, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a44290ba-8ce5-472e-9cda-4e8fda972c6c", + "pk": "8a0861a1-7ea3-4920-addb-44cf27b7d513", "fields": { - "question": 357, - "contribution": 3516, + "question": 327, + "contribution": 3722, "answer": 2, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a44540dd-2008-48d6-be7a-2972a3fea02d", + "pk": "8a092140-ee73-420a-a561-4c2c48cdbe32", "fields": { - "question": 336, - "contribution": 3450, - "answer": 4, + "question": 475, + "contribution": 1660, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4591c8a-3367-4b96-9fb0-ae8534a80ab6", + "pk": "8a0d7f46-72bf-431c-9875-505007d2a142", "fields": { - "question": 359, - "contribution": 1812, - "answer": 1, - "count": 4 + "question": 255, + "contribution": 884, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a465e7d3-4511-4ed7-8cf7-dfca0f5d258f", + "pk": "8a10e70b-397a-4192-907a-03382f105a51", "fields": { - "question": 473, - "contribution": 3404, - "answer": -2, - "count": 1 + "question": 356, + "contribution": 1243, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a46c0694-4487-49cd-84c5-85b35756e24d", + "pk": "8a1461e9-3e5f-4ad0-b95d-0a493ae8ed0f", "fields": { - "question": 262, - "contribution": 3679, - "answer": 2, - "count": 8 + "question": 349, + "contribution": 1663, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a46d676f-35c3-4909-8ba6-ac7e1cd9271b", + "pk": "8a1ce3c6-c993-48d0-a2cf-b97900e7f0c2", "fields": { - "question": 317, - "contribution": 1724, + "question": 341, + "contribution": 3454, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a474ef64-3d40-444e-8fd8-bbb3da66bb40", + "pk": "8a207531-761d-49db-aced-6d2b089762fb", "fields": { "question": 353, - "contribution": 4223, - "answer": 4, + "contribution": 4268, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a47656da-a87e-4960-9810-eb72d25a53fb", + "pk": "8a269bd8-e81e-49cf-a7ab-f8bc42b3879e", "fields": { - "question": 258, - "contribution": 1612, - "answer": 2, - "count": 12 + "question": 366, + "contribution": 3882, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4857916-fe5f-494e-8925-2c648e2b2d5f", + "pk": "8a2a7563-1335-415c-9c06-9fca25c79923", "fields": { - "question": 333, - "contribution": 837, - "answer": 3, + "question": 343, + "contribution": 3934, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a49a49dd-e23b-49b6-a262-a4d70c246f97", + "pk": "8a2b5989-bd58-4483-b566-5e9c9339528f", "fields": { - "question": 356, - "contribution": 3832, - "answer": 1, - "count": 1 + "question": 337, + "contribution": 858, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a49a76c8-df86-4788-846d-1674520788dd", + "pk": "8a3329a9-8ab6-4da9-af21-9f47625e69f5", "fields": { - "question": 323, - "contribution": 884, - "answer": 3, + "question": 320, + "contribution": 4084, + "answer": 4, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a49b6e88-28cd-4fd2-88ce-182d68709e42", + "pk": "8a3bedba-c30a-41dc-9d07-59701b060b0e", "fields": { - "question": 355, - "contribution": 3832, - "answer": 1, + "question": 348, + "contribution": 4129, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a49da1eb-ea23-499a-be70-00e2bf9c8a7f", + "pk": "8a412b08-b49e-4448-a5d3-d8b1ab44770e", "fields": { - "question": 379, - "contribution": 3711, - "answer": 4, + "question": 331, + "contribution": 3462, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a49da447-7006-416e-b5f5-2961add2fed5", + "pk": "8a427913-6808-4d64-9543-59a1a2092dbc", "fields": { - "question": 337, - "contribution": 3454, - "answer": 1, - "count": 4 + "question": 432, + "contribution": 4140, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4a630e9-28c3-4ef3-a9ce-26ca792dc984", + "pk": "8a4f9c51-36a9-430a-9eb5-7382965df371", "fields": { - "question": 475, - "contribution": 3693, - "answer": -1, + "question": 472, + "contribution": 3745, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4a8e291-0c55-4463-b8f8-8a76e57912ea", + "pk": "8a55e399-7bb7-4b57-bf03-b63537943efb", "fields": { - "question": 346, - "contribution": 4021, - "answer": 2, + "question": 332, + "contribution": 3631, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4bca726-dc91-445a-9df8-b1de82ad0cc8", + "pk": "8a571bf7-3ef2-4801-92db-2ea2245cd9f5", "fields": { - "question": 325, - "contribution": 3680, - "answer": 3, - "count": 1 + "question": 319, + "contribution": 4116, + "answer": 5, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4bcbcb9-4e83-4fe4-beca-da1eda06bb6b", + "pk": "8a575aa5-82cc-4a14-9118-c965d1f7872a", "fields": { - "question": 359, - "contribution": 3650, + "question": 337, + "contribution": 4002, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4c66314-454e-4bb6-acfb-ff13e6d40489", + "pk": "8a5f84c0-db2f-47ef-8060-d6515c01b080", "fields": { - "question": 355, - "contribution": 3607, - "answer": 2, - "count": 1 + "question": 323, + "contribution": 3739, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4c6638f-97de-4613-9c0d-da39180ef0c0", + "pk": "8a61250c-a09f-4a65-95c8-e5412455cc4d", "fields": { - "question": 329, - "contribution": 1780, - "answer": 2, + "question": 475, + "contribution": 804, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4cd4149-3f41-49f9-9806-81fc1d05cbc4", + "pk": "8a6dcb96-63f9-43cb-b59a-817990edd339", "fields": { - "question": 327, - "contribution": 881, + "question": 326, + "contribution": 3423, "answer": 1, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4cd9239-025b-4664-8384-bed83649e3a5", + "pk": "8a73fae1-382c-407b-bdc4-b0a799386ccc", "fields": { - "question": 477, - "contribution": 1154, - "answer": -3, + "question": 354, + "contribution": 4279, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4cef9b3-8470-4d98-9738-7874ef90c2fa", + "pk": "8a864da0-9b06-4c71-9937-6c1a63e7b593", "fields": { - "question": 337, - "contribution": 4036, - "answer": 1, - "count": 1 + "question": 347, + "contribution": 4123, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4d164e2-efcc-4f8c-a990-98fc1493bcf9", + "pk": "8a8761ee-0302-44ad-8545-546ad1f5b460", "fields": { - "question": 438, - "contribution": 4140, - "answer": 4, - "count": 4 + "question": 368, + "contribution": 1776, + "answer": 1, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4d21ae4-4894-41a4-b5f4-4b546fa79908", + "pk": "8a8a9636-c5f8-42c8-9d24-c566fb73f2f8", "fields": { - "question": 255, - "contribution": 3462, + "question": 402, + "contribution": 4177, "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4d2f4c5-09ef-47f2-b7ff-51ea3eadd940", + "pk": "8a961e9a-d943-44c9-930a-1469d993f0fd", "fields": { - "question": 331, - "contribution": 3739, - "answer": -1, - "count": 1 + "question": 328, + "contribution": 4117, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4e1f758-c320-4c16-8539-976d7a58ddaa", + "pk": "8aab9418-a765-448c-9880-4c5d4ef83dd0", "fields": { - "question": 369, - "contribution": 1810, - "answer": 5, - "count": 1 + "question": 361, + "contribution": 3653, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4e202a0-e13d-47b1-bf0d-67bf3163c3f6", + "pk": "8ab387c8-c41d-433c-a0cc-d2cf59c6ea28", "fields": { - "question": 477, - "contribution": 4117, - "answer": 0, - "count": 8 + "question": 348, + "contribution": 4223, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4e7b997-c7c8-4f4a-b541-c2e136fa1bf0", + "pk": "8ab59441-4741-4a9f-9fde-3efd7348afc4", "fields": { - "question": 344, - "contribution": 3895, - "answer": 2, + "question": 328, + "contribution": 913, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4ed22a0-6bc1-4394-9778-0e23b8420c64", + "pk": "8abb474f-7be4-4a77-b66b-46d007a8627a", "fields": { - "question": 320, - "contribution": 4120, + "question": 257, + "contribution": 3434, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a4ee6bb7-a4b5-45dd-80d8-1464d37d35ab", + "pk": "8abebe72-e05c-4651-8ce0-ec6167c34bf6", "fields": { - "question": 325, - "contribution": 3722, - "answer": 1, - "count": 18 + "question": 345, + "contribution": 4003, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5027d48-704a-4481-a079-bb05271eb257", + "pk": "8acd2c40-0d73-4e72-a8e6-7dcc2763bb68", "fields": { - "question": 257, - "contribution": 3422, - "answer": 5, - "count": 3 + "question": 338, + "contribution": 862, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a50416b8-55a1-426c-84a8-d5dd250f035d", + "pk": "8ae1d6aa-435b-424f-a1a6-bd4d231be751", "fields": { - "question": 475, - "contribution": 1694, - "answer": 0, - "count": 2 + "question": 328, + "contribution": 1186, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5155b96-532c-420b-af8a-a9d54969f5a7", + "pk": "8ae33ade-6c44-4d67-9327-2229ae74cbe2", "fields": { - "question": 357, - "contribution": 3782, - "answer": 1, + "question": 356, + "contribution": 1849, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5203170-12d0-455f-9d34-0cce11e7fd34", + "pk": "8ae459bb-2878-4a8c-b3a3-e877a5f87d81", "fields": { - "question": 344, - "contribution": 4191, - "answer": 2, - "count": 2 + "question": 331, + "contribution": 880, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a526c08b-dda9-4410-85d9-e59c274fcbf9", + "pk": "8af8a286-7769-4bfe-9d43-bdcd197729a1", "fields": { - "question": 344, - "contribution": 1206, - "answer": 4, - "count": 1 + "question": 333, + "contribution": 3553, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5278f52-eff5-4d45-a8d7-14bac5d5bcf8", + "pk": "8b066336-d4cf-4caf-96b3-aace4ffa58e7", "fields": { - "question": 348, - "contribution": 1863, - "answer": 2, - "count": 2 + "question": 338, + "contribution": 3450, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a52b61c5-b811-4c57-bf57-ca949b4b75f7", + "pk": "8b1b48da-3c6f-4ad3-add4-3d23242b038d", "fields": { - "question": 356, - "contribution": 3546, + "question": 336, + "contribution": 3404, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a52ca546-164c-42c5-b5c2-7b0adc931e19", + "pk": "8b1e9332-31eb-44b0-a145-65c242c3b67d", "fields": { - "question": 260, - "contribution": 4084, + "question": 360, + "contribution": 3917, "answer": 1, - "count": 10 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a52f18b8-fc5c-473a-bf02-0f0140b5d4d3", + "pk": "8b1ecd18-bd24-4039-88f0-5b81fec4012b", "fields": { - "question": 328, - "contribution": 4101, - "answer": 4, - "count": 3 + "question": 323, + "contribution": 880, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5320017-11a5-4428-84fd-6c359c314c85", + "pk": "8b1ecf6e-a5c9-4c1f-b08c-2ee0d622c434", "fields": { - "question": 356, - "contribution": 4243, - "answer": 1, + "question": 327, + "contribution": 3740, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5360a47-8c82-44d3-95e7-34ec6e0e6ea1", + "pk": "8b273f2a-cedc-4cb3-8344-fd6fb9d40eba", "fields": { - "question": 356, - "contribution": 3517, - "answer": 1, + "question": 335, + "contribution": 1217, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5430090-a9d9-4528-bea1-c3cffbd60967", + "pk": "8b29141a-cee5-4238-843a-bf199c170182", "fields": { - "question": 347, - "contribution": 3367, - "answer": 1, - "count": 1 + "question": 319, + "contribution": 3679, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5492a78-c9c8-4782-9c10-f4769d48ef32", + "pk": "8b319715-7694-436d-a0b5-872b12e77ef8", "fields": { - "question": 362, - "contribution": 1803, - "answer": 3, - "count": 1 + "question": 345, + "contribution": 3373, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a561f828-d776-4b95-b04d-7c5585b4ef13", + "pk": "8b32e43c-80f0-4472-b3f6-04a2a3e8f6ae", "fields": { - "question": 362, - "contribution": 3597, - "answer": 5, - "count": 1 + "question": 315, + "contribution": 1658, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a56c2604-8c87-4353-a7f7-cea2c4d99474", + "pk": "8b447af6-71ca-4761-bb9e-83ce94e170bb", "fields": { - "question": 258, - "contribution": 3739, - "answer": 2, + "question": 323, + "contribution": 3354, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a57646ac-48d8-4022-99c3-24fd7d093137", + "pk": "8b4c87ea-c69b-471d-87ab-82da5dfd2b5c", "fields": { - "question": 319, - "contribution": 4040, - "answer": 5, - "count": 1 + "question": 260, + "contribution": 880, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a57a11d4-056c-4e07-b295-d6153dc30132", + "pk": "8b56a413-bc6f-4620-bae6-4adaabb8ddb9", "fields": { - "question": 257, - "contribution": 908, + "question": 258, + "contribution": 3474, "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a58fd612-4273-4df9-8621-a6e35524b42e", + "pk": "8b5fd32b-78c8-4ec5-9c32-f83e55608a49", "fields": { - "question": 346, - "contribution": 1735, + "question": 319, + "contribution": 912, + "answer": 3, + "count": 5 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "8b615502-7382-4743-8351-6df2e63d2094", + "fields": { + "question": 336, + "contribution": 3745, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5962ef9-d84e-44f4-b97f-96913a451804", + "pk": "8b671cf7-fb2e-4960-aa8b-fbf5c5bc2eaf", "fields": { - "question": 328, - "contribution": 3473, + "question": 257, + "contribution": 3434, "answer": 1, - "count": 5 + "count": 30 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5a301ab-1a59-4a6c-9499-32667b7e491c", + "pk": "8b738946-3e71-4dd7-a0c2-4d3606f938f2", "fields": { - "question": 329, - "contribution": 3740, - "answer": 3, + "question": 333, + "contribution": 3593, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5a9c352-5108-43e4-b225-b858633614f8", + "pk": "8b7397fc-28c7-4b42-846b-3d1bf2550b81", "fields": { - "question": 329, - "contribution": 881, - "answer": 3, - "count": 11 + "question": 347, + "contribution": 1663, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5aa2e27-f0f3-4486-8212-4281d72c4c83", + "pk": "8b77f247-19b3-4dd0-8fbd-55f5d414f6e2", "fields": { - "question": 329, - "contribution": 4152, - "answer": 1, - "count": 14 + "question": 323, + "contribution": 3474, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5aa9527-9d98-47fa-87ad-5e1082d7dcf7", + "pk": "8b81030c-2536-4213-9f0b-d13d4364a12a", "fields": { - "question": 370, - "contribution": 4271, - "answer": 1, - "count": 1 + "question": 322, + "contribution": 4138, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5b5eca5-aea3-485c-97a0-5da4931890cb", + "pk": "8b8dd010-96d5-4eed-8514-465069bee30e", "fields": { - "question": 328, - "contribution": 3463, + "question": 323, + "contribution": 3683, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5c96b00-5658-4082-9167-be61f90c53d2", + "pk": "8b8e9f34-7eeb-4aec-8e5f-a8ce6b1f215b", "fields": { - "question": 320, - "contribution": 822, - "answer": 1, - "count": 3 + "question": 359, + "contribution": 3921, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5d0f58a-b401-4204-a3c8-f24ee8f32027", + "pk": "8b91353a-2b8c-4124-8bf2-23c0681ef7c2", "fields": { - "question": 258, - "contribution": 3679, - "answer": 3, + "question": 329, + "contribution": 3391, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5d8080a-5961-43a1-ae8a-3a132a09641e", + "pk": "8bb37dc1-f368-4493-95bd-ab8ce808edd2", "fields": { - "question": 337, - "contribution": 1748, - "answer": 2, - "count": 3 + "question": 348, + "contribution": 3939, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5d8e130-1771-42e9-9594-efe2d5b362a2", + "pk": "8bbb4fc5-821c-464a-8cd8-cb8923dfe372", "fields": { - "question": 360, - "contribution": 1806, - "answer": 5, + "question": 472, + "contribution": 1644, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5e30bba-cc04-468f-b39c-4552f0443d05", + "pk": "8bbf103d-2c64-4d85-8e1f-a685d79a9754", "fields": { - "question": 428, - "contribution": 4156, - "answer": 4, + "question": 255, + "contribution": 3739, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a5e9de61-640e-4894-a878-4b43a6961cd9", + "pk": "8bc1fbe5-b425-4864-aafe-0e9e983d11c8", "fields": { - "question": 350, - "contribution": 3745, + "question": 339, + "contribution": 3486, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6065e81-1a0f-4ab2-92ae-b05054e814cd", + "pk": "8bcdbea1-42e7-445f-8eb5-cc0c51dee543", "fields": { - "question": 328, - "contribution": 1154, - "answer": 3, - "count": 9 + "question": 325, + "contribution": 1779, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a64397c8-3bad-4b24-9f14-7f49fd6a37d6", + "pk": "8bcf6ee9-8293-4724-bcfe-a396aa3f77bd", "fields": { - "question": 473, - "contribution": 1660, - "answer": 3, - "count": 1 + "question": 475, + "contribution": 3466, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a644841f-5446-42d2-b0f6-0ae458ceb8b1", + "pk": "8bd9e727-f1f6-406d-8894-fff08a236d3d", "fields": { - "question": 348, - "contribution": 1880, - "answer": 2, + "question": 432, + "contribution": 4052, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a645d893-f098-40ed-abb6-7fb35e2c5589", + "pk": "8bda47a8-267f-438c-95d4-23e0d3229ae3", "fields": { - "question": 337, - "contribution": 3486, + "question": 370, + "contribution": 3607, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6471578-cf52-48fe-8e8e-2a1140964e6e", + "pk": "8bdb79fb-8f32-4254-9302-0a9fb5de61c3", "fields": { - "question": 340, - "contribution": 3366, + "question": 319, + "contribution": 4046, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a649d9f3-9751-439d-99a2-08489d976c46", + "pk": "8be10540-d295-404d-850b-9cd75f777b9f", "fields": { - "question": 255, - "contribution": 3739, - "answer": 1, + "question": 332, + "contribution": 4156, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6519a63-f1d2-44b5-a60e-8e83a682119a", + "pk": "8bef46b4-17eb-4f6c-b376-ee45f44f9406", "fields": { "question": 329, - "contribution": 4152, - "answer": 4, - "count": 3 + "contribution": 3684, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a65fc2f7-5ec5-4312-9112-f3368cf132f8", + "pk": "8bf0e3dd-3642-4e22-a2fe-6927da2df670", "fields": { - "question": 319, - "contribution": 4118, - "answer": 1, - "count": 2 + "question": 333, + "contribution": 1284, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a66ba4af-b681-446c-b07d-5347698492b9", + "pk": "8bf1f3b8-0712-4c19-9f1e-16272ef017c8", "fields": { - "question": 326, - "contribution": 3883, - "answer": 2, - "count": 2 + "question": 258, + "contribution": 3354, + "answer": 1, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a66f0c2a-1966-4962-843c-7be4891fa7b5", + "pk": "8bf79f9a-d80a-4287-826f-f252655f44b1", "fields": { - "question": 367, - "contribution": 3434, - "answer": 5, - "count": 8 + "question": 258, + "contribution": 4028, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6735e05-d2fa-4b8d-9514-69c2eb57a451", + "pk": "8c067649-6f72-4395-8a9a-3108a77d9c85", "fields": { - "question": 331, - "contribution": 1612, - "answer": -3, + "question": 337, + "contribution": 886, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a67d8d76-ecb5-440d-8895-dbc30abc11a2", + "pk": "8c0ee1b5-3c9a-4ed2-9e8d-44841c5bdd95", "fields": { - "question": 394, - "contribution": 3711, - "answer": 2, + "question": 477, + "contribution": 3680, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a68c1fe9-d32a-4478-843a-0391c7031924", + "pk": "8c15d6f4-f596-4e7c-bd67-477db06760b9", "fields": { - "question": 257, - "contribution": 1612, - "answer": 3, - "count": 3 + "question": 328, + "contribution": 1802, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a68d2a49-d0f5-4fb7-92cc-74ac2c9fe3bc", + "pk": "8c19f746-7c67-4604-a1bc-7c57dd84578f", "fields": { - "question": 473, - "contribution": 1726, - "answer": -1, - "count": 1 + "question": 346, + "contribution": 3606, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6951d38-df5f-4e9c-b1c8-957e2bbdd5a4", + "pk": "8c233826-5654-4318-b3a7-64e5a9b81aaa", "fields": { - "question": 349, - "contribution": 3728, - "answer": 2, - "count": 4 + "question": 1, + "contribution": 4303, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a69b3867-cce5-4388-ad7d-e6ad4ea9ffd1", + "pk": "8c2e1c08-48f9-4d41-a802-959a85c62f8c", "fields": { - "question": 362, - "contribution": 1826, - "answer": 1, - "count": 2 + "question": 361, + "contribution": 3650, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a69c072b-e0e9-4d78-b81a-de2db49f36d4", + "pk": "8c33be39-a002-42f7-9c0b-86b41e79707b", "fields": { - "question": 316, - "contribution": 4028, + "question": 345, + "contribution": 3912, "answer": 1, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6a15613-3198-4a2d-9e2c-37abc0c20abc", + "pk": "8c349160-3616-4efc-8e2a-721ab899a93d", "fields": { - "question": 388, - "contribution": 3755, - "answer": 3, + "question": 257, + "contribution": 3474, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6a73aea-0724-4eca-8a17-c046585af8bb", + "pk": "8c36045f-ee46-40d6-9c99-0634c1e3a041", "fields": { - "question": 255, - "contribution": 880, - "answer": 3, - "count": 9 + "question": 475, + "contribution": 1640, + "answer": 0, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6b2467e-c8ed-47d5-a80f-c9316f90f25d", + "pk": "8c3823e2-32da-4584-b373-b3ce7ac81e98", "fields": { - "question": 459, - "contribution": 4073, - "answer": 1, + "question": 328, + "contribution": 1798, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6b9575f-4487-4bd6-a8e9-1c123ba51708", + "pk": "8c3a028f-e40b-4527-b45d-eeac83a5ff53", "fields": { - "question": 345, - "contribution": 1822, + "question": 319, + "contribution": 4084, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6bfc342-cde7-4150-9d00-c6305603cf2e", + "pk": "8c51b00f-6054-4abf-b075-5471d58c7ddb", "fields": { - "question": 473, - "contribution": 4116, - "answer": -3, - "count": 1 + "question": 347, + "contribution": 3518, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6c33dda-a180-4819-b238-88e5b501a403", + "pk": "8c52b4ed-1b99-480d-8830-eaedd2c10c59", "fields": { - "question": 255, - "contribution": 4120, + "question": 356, + "contribution": 1849, "answer": 1, - "count": 13 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6c6d7ca-f2dc-4a99-87d3-0345cda6504d", + "pk": "8c531b53-63ac-4849-b4fe-7fa6eeb6af1f", "fields": { - "question": 320, - "contribution": 3434, - "answer": 5, + "question": 327, + "contribution": 3740, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6c8b12a-440a-4257-81ca-ab04bd317965", + "pk": "8c5aeb24-0f79-4b67-9510-926d919f8254", "fields": { - "question": 328, - "contribution": 1669, - "answer": 1, - "count": 7 + "question": 473, + "contribution": 1694, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6d7795b-aaf2-46c1-95c0-f32065c4849d", + "pk": "8c6e2f3a-1871-49a6-a539-ffacf03abe07", "fields": { - "question": 323, - "contribution": 3721, + "question": 341, + "contribution": 3703, "answer": 2, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6dd9a92-9feb-48bc-8a8f-d5b5192e8a24", + "pk": "8c7630e7-173c-4164-8f0d-b08bac1fe112", "fields": { - "question": 259, - "contribution": 4138, - "answer": 1, - "count": 6 + "question": 337, + "contribution": 1660, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6ecb837-9a85-4a98-bb03-4bc8c19ccf1d", + "pk": "8c847d38-8b6a-47a0-8383-ab887f20ae0c", "fields": { - "question": 346, - "contribution": 1873, - "answer": 2, + "question": 361, + "contribution": 1835, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6ee7255-4b3a-4721-b2ba-d3ced70504a6", + "pk": "8c8698ca-e916-41c8-a5ba-97ab4c3eaef4", "fields": { - "question": 325, - "contribution": 3726, - "answer": 3, - "count": 5 + "question": 472, + "contribution": 788, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a6f8c8a8-f5ff-4a4f-8f06-5893c1345723", + "pk": "8c876c5b-538b-4d41-a31f-cc11c7489f5b", "fields": { - "question": 347, - "contribution": 1156, - "answer": 3, + "question": 396, + "contribution": 3781, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a70c20d2-748f-4af0-9ea8-bd8065d235f2", + "pk": "8c9a8ab7-b0d3-4fc7-be00-2e5dfc626094", "fields": { - "question": 346, - "contribution": 1824, + "question": 348, + "contribution": 3704, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a722e7a0-20bc-4ee1-839d-e37daa17e0f5", + "pk": "8c9aadef-6539-422a-8017-2c44861cd810", "fields": { - "question": 349, - "contribution": 3518, - "answer": 1, - "count": 2 + "question": 409, + "contribution": 4024, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a72465c9-c368-467a-9b90-da7e86d7a398", + "pk": "8c9edaaf-353e-491c-85fe-12234083f756", "fields": { - "question": 340, - "contribution": 1644, - "answer": 2, + "question": 477, + "contribution": 1725, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a72617f8-1dfd-48b6-acfb-e3fa2c7ccdce", + "pk": "8cb3444a-88cf-46dd-8674-722fd0f869ea", "fields": { - "question": 339, - "contribution": 3735, + "question": 473, + "contribution": 3725, "answer": 0, - "count": 3 + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a728be9b-184d-4441-af02-060e745a210e", + "pk": "8cbe5d46-f413-4e6b-8c12-36b090710efe", "fields": { - "question": 348, - "contribution": 1922, - "answer": 1, - "count": 1 + "question": 331, + "contribution": 3390, + "answer": -2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a73a27ec-695e-4c49-82db-4e396b969ffd", + "pk": "8cc7e509-4146-4daa-bbd3-3ce8b3f106af", "fields": { - "question": 473, - "contribution": 1656, - "answer": 0, - "count": 7 + "question": 257, + "contribution": 3472, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a7480dc7-2911-484f-9fa4-f2cbb0341800", + "pk": "8ccf39b3-66c2-4eff-aae0-1580942066f6", "fields": { - "question": 335, - "contribution": 4152, + "question": 319, + "contribution": 4120, "answer": 2, - "count": 4 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a74ba136-b859-45be-b00e-fd8e553cf6d0", + "pk": "8ce03213-0713-4f15-99e2-80724d05b5f3", "fields": { - "question": 338, - "contribution": 3821, - "answer": 3, - "count": 1 + "question": 321, + "contribution": 4100, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a74e197d-fae5-47d7-81b3-cb0a6986fbca", + "pk": "8ce29d1c-125d-4eab-a621-bff8e9366e14", "fields": { - "question": 477, - "contribution": 1669, - "answer": -1, - "count": 2 + "question": 346, + "contribution": 1851, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a751f251-9c53-4634-a18d-1d4f726d86ce", + "pk": "8cfef629-9b70-4f8c-a15b-5082dc434c8b", "fields": { - "question": 476, - "contribution": 3462, - "answer": 2, - "count": 2 + "question": 325, + "contribution": 3722, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a752f024-8046-4935-894f-d15d4f943d8e", + "pk": "8d011d9d-80ae-4310-9a7b-f7e92fc6b411", "fields": { - "question": 345, - "contribution": 1880, - "answer": 3, + "question": 344, + "contribution": 3383, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a75354e8-613e-46ee-b559-fe45eaad4f09", + "pk": "8d03fbb7-ce03-4c52-a1bc-bf60bbf81f47", "fields": { - "question": 321, - "contribution": 908, - "answer": 2, - "count": 18 + "question": 316, + "contribution": 1626, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a76ceab1-cf0e-41f0-8345-7928ed52a3eb", + "pk": "8d0bc982-553e-4f72-b2f1-865af58360c9", "fields": { - "question": 341, - "contribution": 1734, + "question": 350, + "contribution": 894, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a76e84d1-15da-425a-aca7-a91101b5c60a", + "pk": "8d0f8a12-7ab4-447a-ae20-10e0cd5b5e68", "fields": { - "question": 315, - "contribution": 4118, - "answer": 5, + "question": 344, + "contribution": 3879, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a774c44e-4a69-492e-b871-ea8199d30049", + "pk": "8d13a648-85cf-4e69-bdd0-5c9095b72a02", "fields": { - "question": 325, - "contribution": 823, - "answer": 3, - "count": 1 + "question": 315, + "contribution": 4100, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a779f4dc-94b2-496c-988a-3a6e8e91189a", + "pk": "8d1deb72-8501-41d6-a7b0-94dd2e772c80", "fields": { - "question": 340, - "contribution": 3404, + "question": 459, + "contribution": 4141, "answer": 2, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a782f3bb-c2c3-4cdf-9049-341f90bcae34", + "pk": "8d1ebf08-637b-4024-b7b9-97dbe45d601c", "fields": { - "question": 323, - "contribution": 4046, + "question": 346, + "contribution": 4191, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a7835112-0329-4182-a812-565c171863d7", + "pk": "8d22bb23-cabe-4030-99ec-e7442119d5b9", "fields": { - "question": 255, - "contribution": 4128, - "answer": 2, - "count": 3 + "question": 361, + "contribution": 3916, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a788fdb4-01da-453f-a8d9-857bc29225ec", + "pk": "8d23783b-d151-4bb4-b34f-6bb8fc4a2976", "fields": { - "question": 262, - "contribution": 1612, + "question": 344, + "contribution": 1246, "answer": 2, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a7944979-150f-42ec-9659-2c3d787c3fd5", + "pk": "8d2bd3f6-c658-4c1c-9b0b-d0a7cc42952f", "fields": { - "question": 258, - "contribution": 4084, - "answer": 5, - "count": 5 + "question": 335, + "contribution": 3551, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a79b6800-915d-4e1a-b7b6-f23cbf9950b6", + "pk": "8d467b85-3a51-4c94-9fe3-1f017440fb93", "fields": { - "question": 328, - "contribution": 1802, - "answer": 4, - "count": 6 + "question": 346, + "contribution": 4188, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a7af91bb-2e30-44ec-a023-fc0960d305fa", + "pk": "8d4896f0-5eca-496e-9222-2f16aa4263ce", "fields": { - "question": 258, - "contribution": 3462, + "question": 259, + "contribution": 1626, "answer": 2, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a7d03678-7b86-4dd2-860b-ccf104a4ba4a", + "pk": "8d52de25-33cb-46db-9e9e-4113d6caf216", "fields": { - "question": 322, - "contribution": 880, - "answer": 4, + "question": 339, + "contribution": 1694, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a7dd8f38-e945-425a-80ec-f06119d0a109", + "pk": "8d595e46-8dbc-4cf2-a9f1-ac2ac4b4bd6b", "fields": { - "question": 368, - "contribution": 4153, - "answer": 2, - "count": 1 + "question": 317, + "contribution": 4138, + "answer": 1, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a7e59060-49c6-48ea-b5aa-c10975e615f8", + "pk": "8d601d8a-953c-4df1-8862-9d06db111802", "fields": { - "question": 357, - "contribution": 1776, - "answer": 4, - "count": 3 + "question": 477, + "contribution": 1681, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a7e98323-e31a-479e-b9ff-ce1ba25c2080", + "pk": "8d604b48-faee-4364-8496-748d97630f02", "fields": { - "question": 320, - "contribution": 822, + "question": 475, + "contribution": 3727, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a7fdfeb0-995e-4e6a-b891-8fbd8d7fc218", + "pk": "8d65d47b-e51f-4fed-80e5-7ad7d25c0b1d", "fields": { - "question": 464, - "contribution": 3786, - "answer": 2, - "count": 1 + "question": 428, + "contribution": 4204, + "answer": 1, + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a80cef7e-9372-4dcb-8513-d11052e30891", + "pk": "8d89a3b5-ec77-4bd5-9cbc-939831a41ea2", "fields": { - "question": 467, - "contribution": 4115, - "answer": 2, + "question": 472, + "contribution": 1748, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8138d17-d198-494a-85ac-2b202d016dd4", + "pk": "8d8ceefa-ab24-4cb1-8c72-1e4558256472", "fields": { - "question": 368, - "contribution": 4203, - "answer": 2, + "question": 355, + "contribution": 4278, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a81c9dc3-174c-4160-bf2d-b310ed82ac24", + "pk": "8d9174d2-297e-4973-b475-00b110fc8a98", "fields": { - "question": 319, - "contribution": 880, - "answer": 4, - "count": 6 + "question": 345, + "contribution": 4192, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a82ccdf2-5e88-4fc0-9b77-42b4b88ed912", + "pk": "8d9d0571-0de3-4ee7-9417-df5d44879db5", "fields": { - "question": 432, - "contribution": 4052, - "answer": 2, - "count": 4 + "question": 360, + "contribution": 3653, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a82dfb2a-0436-473f-89c9-233fc31c72d7", + "pk": "8da570e2-5249-416d-8830-217bf14ee269", "fields": { - "question": 354, - "contribution": 3516, + "question": 344, + "contribution": 1809, "answer": 1, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a830371c-1b99-4fd3-89c3-d6a9ec301ed6", + "pk": "8db58e8b-0ea0-4448-8e87-befc3bd7ebee", "fields": { - "question": 385, - "contribution": 3755, + "question": 343, + "contribution": 1880, "answer": 1, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a831a748-320f-467a-ad07-2fe0792a7201", + "pk": "8db9a02e-2e94-4676-82f5-45777194b933", "fields": { - "question": 344, - "contribution": 3525, + "question": 347, + "contribution": 3516, "answer": 1, - "count": 1 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a83323bb-359d-41fe-9c49-07303d9dd498", + "pk": "8dbbb51f-6d0c-4175-8aef-7f1c2478a266", "fields": { - "question": 262, - "contribution": 1837, - "answer": 3, - "count": 2 + "question": 477, + "contribution": 909, + "answer": 0, + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8348016-2e05-42bd-b976-20e12c001b75", + "pk": "8dbfb346-e93d-433d-bcd2-6a43b0022604", "fields": { - "question": 333, - "contribution": 1812, - "answer": 2, - "count": 2 + "question": 329, + "contribution": 4203, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a83daa83-81fa-44db-9253-26290caa5ec9", + "pk": "8dbfe4b8-f69e-4aa0-b4e0-8388c56326e1", "fields": { - "question": 452, - "contribution": 4185, + "question": 338, + "contribution": 1694, "answer": 5, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a842151e-dd65-4d6f-a3a7-1eb1ae5d6c53", + "pk": "8dc45922-be94-4251-99ac-bca34727be8b", "fields": { - "question": 366, - "contribution": 3552, - "answer": 5, - "count": 2 + "question": 350, + "contribution": 3406, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8463320-0ee0-4d5f-a638-8890d656f0f7", + "pk": "8dc88a81-a252-4086-8491-78781a704b55", "fields": { - "question": 339, - "contribution": 804, - "answer": 2, + "question": 356, + "contribution": 4279, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8466a42-723f-48fc-ac3b-10ac9459a107", + "pk": "8dd02fad-ba0e-4382-be67-2dc1d3026b53", "fields": { - "question": 331, - "contribution": 4120, + "question": 339, + "contribution": 3508, "answer": 0, - "count": 20 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a85237ed-3aff-49fa-94df-3ba18f98a8bf", + "pk": "8dd13256-9978-4d61-b444-af1075d5b7a4", "fields": { - "question": 339, - "contribution": 3372, - "answer": 1, + "question": 262, + "contribution": 1626, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a859328b-a133-4c47-9768-824f00654afa", + "pk": "8ddb0621-a5b5-4bf5-aa7e-c8ab79592d56", "fields": { - "question": 472, - "contribution": 3372, + "question": 345, + "contribution": 4191, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a859a121-87bd-449e-a1e8-e124f5b70649", - "fields": { - "question": 327, - "contribution": 1776, - "answer": 1, - "count": 18 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "a85eac62-f146-4a4a-b643-92f351838288", + "pk": "8de2f44e-e450-47a4-90d2-2d4a5b83a110", "fields": { - "question": 376, - "contribution": 3781, + "question": 368, + "contribution": 3435, "answer": 1, - "count": 2 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a862e4ab-2c35-4723-b54f-c469d13adfd2", + "pk": "8defaa5b-5800-40f3-831d-fd0f49e4e01b", "fields": { - "question": 328, - "contribution": 1298, - "answer": 1, - "count": 8 + "question": 325, + "contribution": 3680, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a867b91a-6857-4794-a02f-ee39bd4fa541", + "pk": "8df6796c-0baa-42cc-8fe3-7d88a13f9430", "fields": { - "question": 379, - "contribution": 3775, - "answer": 1, - "count": 2 + "question": 356, + "contribution": 4223, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a87397bf-40f6-4332-bcb3-a52b0476b10b", + "pk": "8dfad89e-7719-41ee-9432-01ff755e054c", "fields": { - "question": 317, - "contribution": 884, + "question": 326, + "contribution": 1288, "answer": 3, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8791775-316c-4d0d-8b5b-26da23ad586c", + "pk": "8dfd2a56-b0ca-42c7-84ce-62b9083220ff", "fields": { - "question": 336, - "contribution": 918, - "answer": 3, - "count": 2 + "question": 255, + "contribution": 3422, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a87ff5e5-a010-4ec4-af30-a21ea9743133", + "pk": "8dff092d-48e2-40da-b815-7a441378310d", "fields": { - "question": 347, - "contribution": 3822, + "question": 477, + "contribution": 3423, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8844019-776a-4f15-a643-251bdb1e7317", + "pk": "8e017392-c5d9-4316-ac35-ed435b544a51", "fields": { - "question": 260, - "contribution": 3354, + "question": 340, + "contribution": 3450, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8887142-1332-4573-b959-c33b789e1175", + "pk": "8e09fe3d-be78-403a-9eb3-009155caeb83", "fields": { - "question": 345, - "contribution": 1250, - "answer": 2, + "question": 328, + "contribution": 1776, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a88c837a-b4ac-4ece-bd37-7fe9ea8e88cf", + "pk": "8e0ad045-d85c-4eb2-b6a0-b7179244e562", "fields": { "question": 477, - "contribution": 3589, + "contribution": 1613, "answer": 0, - "count": 7 + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a88cadc1-b454-44af-a4c3-1c336d1410e5", + "pk": "8e17f2c6-cd64-43ec-b062-cd1057d57de2", "fields": { - "question": 337, - "contribution": 1694, + "question": 367, + "contribution": 4084, "answer": 2, - "count": 4 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a896db29-13d2-450d-bd34-39d2af0f9a6a", + "pk": "8e1b1940-fb85-4c31-b190-60bb5b135d78", "fields": { - "question": 327, - "contribution": 4152, - "answer": 4, - "count": 1 + "question": 346, + "contribution": 1246, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a89b1c3d-911b-4fe5-80d2-524c88f35543", + "pk": "8e27ab93-4c24-4268-b217-abe5077d66a2", "fields": { - "question": 348, - "contribution": 4190, - "answer": 1, - "count": 5 + "question": 360, + "contribution": 1805, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8a9e56e-25f6-4373-83de-ac0ca5ea79f3", + "pk": "8e3358cf-a644-4e2f-8964-c87c30667435", "fields": { - "question": 320, - "contribution": 3725, + "question": 435, + "contribution": 4090, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8b2adaa-4ffe-4b8d-94c4-823655ee4af1", + "pk": "8e34a58c-cd66-41f0-984e-ef87194b4814", "fields": { - "question": 347, - "contribution": 4223, - "answer": 1, - "count": 2 + "question": 367, + "contribution": 1626, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8b336ec-f5c2-4f2c-9121-099f0bcc92c1", + "pk": "8e408cc0-24dc-4ec7-99cc-f0cc27fb9340", "fields": { - "question": 341, - "contribution": 1662, - "answer": 1, - "count": 5 + "question": 359, + "contribution": 1804, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8d5b761-9451-41ce-899c-503b0f1da0f4", + "pk": "8e4782d3-e8be-4716-9569-3e0b65b60270", "fields": { - "question": 344, - "contribution": 4146, - "answer": 2, + "question": 473, + "contribution": 3508, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8d660ad-2f82-4845-9bd4-c988105d3cb5", + "pk": "8e56722b-ddb7-42b6-911d-d91e21904d9b", "fields": { - "question": 262, - "contribution": 3354, + "question": 321, + "contribution": 884, + "answer": 4, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "8e648cff-d3c6-4674-8201-a80f88d498c4", + "fields": { + "question": 349, + "contribution": 3900, "answer": 2, - "count": 12 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8dbdba0-477a-4a68-8327-7c20b6df2427", + "pk": "8e68c3dc-04fa-4f4b-985c-c0de03832f72", "fields": { - "question": 316, - "contribution": 3665, + "question": 258, + "contribution": 4022, "answer": 3, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8e917f9-28c1-44c4-93b5-760229496e90", + "pk": "8e727997-6b6c-4e7d-8563-422fb36be4ee", "fields": { - "question": 326, - "contribution": 3435, - "answer": 4, + "question": 341, + "contribution": 1662, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a8fdb41d-8cc3-4615-9524-d7164618d124", + "pk": "8e73761a-2675-4e41-8612-40fd8ffe56fe", "fields": { - "question": 340, - "contribution": 3745, + "question": 360, + "contribution": 1836, "answer": 2, + "count": 4 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "8e7670c0-0f5c-4fbb-bcf2-cb0219d768be", + "fields": { + "question": 341, + "contribution": 1638, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9070514-30bf-4478-a0d7-9de8dad9e4e4", + "pk": "8e7ec6cd-e2c3-43cf-ad1f-973c7f86b4f6", "fields": { - "question": 361, - "contribution": 3651, - "answer": 1, - "count": 2 + "question": 321, + "contribution": 4040, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a90fa3c8-a8f8-4b0e-bccd-b4e6f3be53fb", + "pk": "8e813ca9-69f7-4b2b-9c12-5784740288d1", "fields": { - "question": 346, - "contribution": 3546, + "question": 345, + "contribution": 3606, "answer": 3, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a91d47c7-a8b6-4823-a829-f2c1ccf2eef7", + "pk": "8e88ba23-e73b-4ed3-aa1d-8ff5179d23dc", "fields": { - "question": 344, - "contribution": 4129, - "answer": 1, - "count": 5 + "question": 337, + "contribution": 3727, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a91f1cf6-12af-456a-a793-13cc4ee6e9cf", + "pk": "8e8978ec-fc58-482e-a4ec-10322428d5c0", "fields": { - "question": 343, - "contribution": 3796, + "question": 336, + "contribution": 840, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9310d5a-8cd3-4aa1-bd9d-bab191cdf64b", + "pk": "8e99e263-d7e0-4795-b515-417eaacb52bb", "fields": { - "question": 348, - "contribution": 1881, - "answer": 1, - "count": 4 + "question": 473, + "contribution": 3725, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9316279-ebfd-41bb-9a6d-6ddf99d70f7a", + "pk": "8e9e4da8-9309-436b-9771-9824344d4767", "fields": { - "question": 460, - "contribution": 3786, - "answer": 1, + "question": 406, + "contribution": 3984, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a934817e-56d0-4444-8739-15c035cb9d7f", + "pk": "8ea038f4-27b4-4556-80e7-3d004dad5610", "fields": { - "question": 477, - "contribution": 1798, - "answer": 0, - "count": 4 + "question": 349, + "contribution": 3608, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a939cfbe-5fe9-49ea-9378-9c421114c5d5", + "pk": "8ea39c8b-7bbc-45b4-a845-867fefc2e688", "fields": { - "question": 260, - "contribution": 1724, - "answer": 2, - "count": 2 + "question": 339, + "contribution": 3486, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a942ed28-819f-4083-8d00-bb39b09ad718", + "pk": "8eb26826-4c6d-49ac-857d-c80a5df42594", "fields": { - "question": 347, - "contribution": 3894, + "question": 345, + "contribution": 4223, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a94957de-db89-4304-8498-3f5ff5759bbc", + "pk": "8ec3681a-e7b1-4a63-b4be-32cd7e755d95", "fields": { - "question": 327, - "contribution": 3680, - "answer": 1, - "count": 13 + "question": 329, + "contribution": 837, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9499c75-310c-4b8d-956d-6d6735afc00f", + "pk": "8ec765fa-34af-42fd-9822-7b9049c1a611", "fields": { - "question": 361, - "contribution": 1826, - "answer": 2, + "question": 369, + "contribution": 3944, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a95a5b71-d829-477c-ae4d-20d76c172f19", + "pk": "8ed5ffe6-8147-4ec3-9b21-585b5e246529", "fields": { - "question": 347, - "contribution": 3609, - "answer": 3, + "question": 472, + "contribution": 3416, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a95c123a-2734-4957-b977-9bc33a685740", + "pk": "8ed6500b-8d56-44cd-b8e8-da94cfa88951", "fields": { - "question": 331, - "contribution": 3739, - "answer": 0, + "question": 346, + "contribution": 3896, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a987cd31-caef-4984-ae62-8c9c80a38c58", + "pk": "8ed688fe-7a1d-42b1-9361-2de93b3da42a", "fields": { - "question": 337, - "contribution": 3735, + "question": 320, + "contribution": 4046, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a995668a-0bcb-41a5-8c28-2c8ee686f76d", + "pk": "8edb6a32-a825-47b4-a635-2d99cbc5e25a", "fields": { - "question": 337, - "contribution": 3645, - "answer": 2, - "count": 3 + "question": 475, + "contribution": 4002, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a998ebb7-0e33-4e94-8352-88ba80d34dc4", + "pk": "8edd5b9f-274b-4dba-9869-bd894e5c06b8", "fields": { - "question": 328, - "contribution": 913, - "answer": 1, - "count": 30 + "question": 331, + "contribution": 880, + "answer": 0, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9a9e2ad-7620-4109-a448-a02193974623", + "pk": "8ee1bc3f-079c-45cf-bf61-38b07b9e05f3", "fields": { - "question": 316, - "contribution": 3739, - "answer": 3, - "count": 5 + "question": 356, + "contribution": 1860, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9ad010e-a80e-4c92-a76f-b27160781c08", + "pk": "8ee9c136-4f3b-431b-ba29-c8eaff6dff9f", "fields": { "question": 476, - "contribution": 3422, + "contribution": 3406, "answer": 0, - "count": 12 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9c17fdf-a0d9-404f-b5c3-6d23bdb52f27", + "pk": "8eecec83-5003-47f2-9d68-66c6d6dcab53", "fields": { - "question": 357, - "contribution": 3852, + "question": 462, + "contribution": 4283, "answer": 1, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9c6c28e-a0f2-42b8-b30d-bb88464d9e12", + "pk": "8ef102b1-52e1-4fad-811c-ff8d6f050646", "fields": { - "question": 323, - "contribution": 880, - "answer": 1, - "count": 15 + "question": 336, + "contribution": 1694, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9cc6bc9-4252-48ce-9539-63a799ec63f0", + "pk": "8f040223-9aef-4cec-85a5-5ad9182f6b2e", "fields": { - "question": 371, - "contribution": 4156, - "answer": 2, - "count": 5 + "question": 336, + "contribution": 1694, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9d0e3d0-5952-45a1-bb89-115dd52f0c9b", + "pk": "8f05753a-1473-44ae-8f11-778a71c3eea7", "fields": { - "question": 344, - "contribution": 1202, - "answer": 1, - "count": 7 + "question": 453, + "contribution": 4185, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9d29a02-2747-4a5f-b57a-455146d5cb84", + "pk": "8f07e9d2-7c9b-42b0-a1ac-50610344012e", "fields": { - "question": 341, - "contribution": 3785, - "answer": 2, - "count": 1 + "question": 316, + "contribution": 3725, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9d53e05-933f-42cb-90b1-c1b96b1b58cf", + "pk": "8f145751-1ff0-4e92-a5f0-89b8e3b751b5", "fields": { - "question": 329, - "contribution": 4117, - "answer": 2, + "question": 473, + "contribution": 3416, + "answer": 0, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9dd8749-8fb3-44a7-a228-cbe25d029dc6", + "pk": "8f19d544-4b8c-4d59-bfe5-796a08e1b3bb", "fields": { - "question": 344, - "contribution": 1828, - "answer": 2, + "question": 475, + "contribution": 3795, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9e0feea-9f7f-44b4-a564-1af5f0642320", + "pk": "8f1f58ec-565c-4361-b022-4c20e07b0a81", "fields": { - "question": 329, - "contribution": 909, + "question": 338, + "contribution": 3735, "answer": 1, - "count": 27 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9e8f000-07c9-4d16-b4c6-37e4f46cbe7d", + "pk": "8f2bfa1f-9008-46c2-8bb4-33b68fc5a989", "fields": { - "question": 355, - "contribution": 1776, - "answer": 3, - "count": 2 + "question": 323, + "contribution": 1837, + "answer": 1, + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "a9e908c6-cdda-4010-9899-4db62a47e160", + "pk": "8f311e1d-2795-4190-8859-9f84de8a2ada", "fields": { - "question": 317, - "contribution": 4116, - "answer": 1, - "count": 6 + "question": 367, + "contribution": 1837, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa000131-fb9b-40da-b90c-7c486abe25ac", + "pk": "8f3d3940-4d9a-4923-b589-a3ccd70d6b09", "fields": { - "question": 327, - "contribution": 3666, + "question": 475, + "contribution": 3727, "answer": 1, - "count": 7 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa04fada-6327-4ff8-a266-3eddba4f3b10", + "pk": "8f3d9559-fe38-42c4-876e-bbb36ff1b981", "fields": { - "question": 477, - "contribution": 1777, - "answer": 3, - "count": 2 + "question": 349, + "contribution": 3899, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa0627d2-89ac-4b90-a25e-99d5785dd82e", + "pk": "8f3e43dd-7161-4640-a0dc-06bf84df963d", "fields": { - "question": 340, - "contribution": 1656, + "question": 345, + "contribution": 3518, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa0c9ebc-f70e-43a8-8eaf-3d72cd72c024", + "pk": "8f41808d-7f1c-4176-8cef-09df60cb2ab0", "fields": { - "question": 473, - "contribution": 1644, - "answer": -1, + "question": 337, + "contribution": 862, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa1ef4bc-df20-433a-a526-983d41ad163b", + "pk": "8f4c2879-0f5d-4ef0-bc8c-0d72749015cc", "fields": { - "question": 473, - "contribution": 3434, - "answer": 3, - "count": 1 + "question": 371, + "contribution": 4155, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa2ce664-7bd9-4ff4-be9b-8a93d4c1bf97", + "pk": "8f5a2bbb-78eb-4dd0-b450-1bca7db25087", "fields": { - "question": 477, - "contribution": 3726, - "answer": -2, + "question": 352, + "contribution": 864, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa2ce912-3ce4-4d53-94a8-56e6d8e7c290", + "pk": "8f5ffb84-fa5a-495b-882d-df1a4d08ff83", "fields": { - "question": 323, - "contribution": 908, + "question": 477, + "contribution": 3355, "answer": 1, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa35bcc4-6163-4380-aebf-53dee1af898e", + "pk": "8f6083f4-27e2-402d-b2ba-d1929f181d74", "fields": { - "question": 356, - "contribution": 1782, + "question": 317, + "contribution": 4100, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa367166-592a-45a2-8cc1-83d686664c1a", + "pk": "8f7c7014-79bb-4763-8971-22d67d9e46e9", "fields": { - "question": 322, - "contribution": 4128, - "answer": 3, - "count": 4 + "question": 338, + "contribution": 1921, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa372025-5e39-4d5c-9faf-bd26a700c52c", + "pk": "8f7f6540-12df-47d8-a5aa-54a8206bc450", "fields": { - "question": 257, - "contribution": 4120, - "answer": 2, - "count": 4 + "question": 341, + "contribution": 4072, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa47ef4e-4383-49ac-a1d1-afe9cb9ac315", + "pk": "8f9605e7-129e-4a9d-bbcc-025d99357f4b", "fields": { - "question": 349, - "contribution": 3526, + "question": 352, + "contribution": 4046, "answer": 1, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa4b1ab1-9253-4e97-a76e-8879e0295958", + "pk": "8f994edc-6d84-40b8-a591-3368fcb24100", "fields": { - "question": 328, - "contribution": 3722, - "answer": 2, - "count": 4 + "question": 401, + "contribution": 3646, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa4f7fb9-6114-4d45-90d6-b2ba08822c89", + "pk": "8faf3683-1e17-4f9a-b989-dcebf81ac7fd", "fields": { - "question": 320, - "contribution": 4120, + "question": 260, + "contribution": 3422, "answer": 2, - "count": 12 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa514c51-f01e-426e-9b35-6944054a93a5", + "pk": "8fafadc7-010d-473c-9df3-8743e924bd93", "fields": { - "question": 339, - "contribution": 3645, - "answer": 0, - "count": 6 + "question": 442, + "contribution": 4114, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa53521f-8971-4fd1-b424-b12f874fcb3d", + "pk": "8fb7f6d8-1633-4b49-9404-1707ddbc3e3c", "fields": { - "question": 340, - "contribution": 862, - "answer": 1, - "count": 3 + "question": 345, + "contribution": 3728, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa63e42f-a6f6-437c-aa09-0f7bd30326b3", + "pk": "8fbf1045-4c00-4bc1-838f-a3b5cbf879d5", "fields": { - "question": 257, - "contribution": 4028, + "question": 262, + "contribution": 4084, "answer": 2, - "count": 3 + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa66fdb6-453f-4a19-ba09-02dec2994e72", + "pk": "8fc19752-3597-406b-80bb-70bd0466dd53", "fields": { - "question": 345, - "contribution": 4223, + "question": 329, + "contribution": 823, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa6a8a48-983c-4a0f-a851-9482439cdb58", + "pk": "8fca5a61-e50d-4d10-b44f-ed77e7569387", "fields": { - "question": 390, - "contribution": 3775, - "answer": 3, - "count": 4 + "question": 329, + "contribution": 3884, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa6edbc3-a640-439b-abc2-453e1711d359", + "pk": "8fd1f787-44f5-4c73-b002-63a7234a9fc6", "fields": { - "question": 354, - "contribution": 1188, + "question": 337, + "contribution": 826, + "answer": 1, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "8fd75284-a250-4ece-9423-ead80d058a13", + "fields": { + "question": 260, + "contribution": 4046, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa708ca4-f5ff-4f7b-9bc1-7d55b736f267", + "pk": "8fda4ed0-2f7a-48d7-a70b-68a4146804de", "fields": { - "question": 341, - "contribution": 1748, - "answer": 3, + "question": 361, + "contribution": 3921, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa77820d-f843-415d-9ecc-c3044d8d2445", + "pk": "8fde48ac-c74b-4264-92bf-e116ea8c3bb0", "fields": { - "question": 321, - "contribution": 1668, - "answer": 3, - "count": 1 + "question": 344, + "contribution": 1645, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa7b986d-f6a6-41e3-9a93-1edf787259a5", + "pk": "8fe15f84-fa66-4b4f-80b6-3c26b93601a6", "fields": { - "question": 319, - "contribution": 908, - "answer": 2, - "count": 12 + "question": 357, + "contribution": 4271, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa7efc76-1263-4355-858d-98b59a181028", + "pk": "8ff9bd2e-ca90-4ff2-bcc9-521b15277b85", "fields": { - "question": 477, - "contribution": 3556, - "answer": 2, - "count": 2 + "question": 340, + "contribution": 918, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa88b93d-b3e9-482c-b982-0bbe6ba297c6", + "pk": "8ffe3bab-729d-4925-9248-22eb02f3e4a5", "fields": { - "question": 477, - "contribution": 3519, - "answer": -2, - "count": 4 + "question": 322, + "contribution": 4120, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aa941fd4-27ca-44a2-b8ff-0ac9d250952d", + "pk": "9000e520-321c-4400-9a1c-1441ff251bbc", "fields": { - "question": 340, - "contribution": 4072, + "question": 327, + "contribution": 1635, "answer": 2, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aaa218ef-c8c3-42ad-8e15-4fec5183026a", + "pk": "9009f3a3-a235-4c73-9641-02a440c81a46", "fields": { - "question": 428, - "contribution": 4244, + "question": 475, + "contribution": 1710, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aaa521a3-85ee-4917-9985-28b7067042e1", + "pk": "9030f69a-7758-4f5d-bff7-0d6a5270c435", "fields": { - "question": 319, - "contribution": 822, - "answer": 2, - "count": 2 + "question": 337, + "contribution": 3482, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aaa8f3e8-e486-4d97-97e9-91176fdbe80a", + "pk": "9041b452-6899-44ac-8c2a-dd2d2a46246b", "fields": { - "question": 362, - "contribution": 1826, - "answer": 2, + "question": 341, + "contribution": 3366, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aaaf21ae-d217-498b-ab19-1372828c42e4", + "pk": "904469f5-dfed-449e-9a30-af3c05685ea7", "fields": { - "question": 320, - "contribution": 4022, - "answer": 3, + "question": 336, + "contribution": 3482, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aabe7f3b-0118-4ab4-a39c-2e47d168e9d2", + "pk": "904c3333-9c0d-4afc-864a-31a841b15d9f", "fields": { - "question": 476, - "contribution": 4120, - "answer": -2, - "count": 2 + "question": 473, + "contribution": 4022, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aac7d465-53e9-4a72-b70e-e96e6cf971bf", + "pk": "904e9c94-c6a4-4516-9e22-4b515b28a01d", "fields": { - "question": 337, - "contribution": 3645, - "answer": 5, - "count": 1 + "question": 349, + "contribution": 1880, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aac91981-3c1b-4963-8be7-5c75d9210269", + "pk": "905e5554-0d9c-40b7-9710-cb814e37b120", "fields": { - "question": 325, - "contribution": 1779, + "question": 347, + "contribution": 3405, "answer": 1, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aacb496b-236c-4cdc-811d-eeffe3a8a8d9", + "pk": "90611581-94fe-45f0-af4b-55cca4d21c74", "fields": { - "question": 462, - "contribution": 3862, + "question": 341, + "contribution": 3454, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aad585cc-c0e0-4867-9239-d7710aaf23cb", + "pk": "9065e246-24dd-498b-a3cc-a491e8a2b6f1", "fields": { - "question": 258, - "contribution": 4116, - "answer": 5, - "count": 7 + "question": 315, + "contribution": 1724, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aadac35b-b209-459e-8089-3439855b0514", + "pk": "906681d2-4b34-4545-9d88-af9d9b4b7834", "fields": { - "question": 331, - "contribution": 3679, - "answer": -2, + "question": 353, + "contribution": 4266, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aae1b934-6d80-4cca-919a-788fd24f23f5", + "pk": "9068f9b4-3e58-40e3-82c3-91f475b6d8af", "fields": { - "question": 346, - "contribution": 1869, - "answer": 3, - "count": 1 + "question": 349, + "contribution": 1809, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aae29c0c-12cb-4527-b77d-2d4f6246f625", + "pk": "9076bfa3-01a5-4e71-9bcd-ae8e97d84d7f", "fields": { - "question": 328, - "contribution": 1778, - "answer": 1, - "count": 3 + "question": 317, + "contribution": 3474, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aae6beb0-32c1-49bb-8c2e-8875b8783957", + "pk": "9094b6df-176f-4ae4-aa9c-15010f4d0d8f", "fields": { - "question": 347, - "contribution": 3935, - "answer": 2, - "count": 1 + "question": 326, + "contribution": 3666, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aaeec410-ceaa-4ff0-bb9d-57158ffa565d", + "pk": "90998183-2aec-4cf9-af2d-46dfcb8f30de", "fields": { - "question": 258, - "contribution": 3354, + "question": 350, + "contribution": 3440, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aaf916c4-e64f-4310-adeb-a4126fba0c4f", + "pk": "90aa6042-8bf8-479d-88c6-3b4c70581bc3", "fields": { - "question": 258, - "contribution": 912, - "answer": 1, - "count": 19 + "question": 260, + "contribution": 4084, + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aafea284-2137-4117-928c-f5a91e258ac3", + "pk": "90aa9488-e9ce-4f88-8545-976756d9cf63", "fields": { - "question": 347, - "contribution": 4003, + "question": 340, + "contribution": 832, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab010580-ef23-4312-9a7a-e8bb3a399fc0", + "pk": "90aaf4f0-fc4e-4038-a2d5-bc552a0825ea", "fields": { - "question": 326, - "contribution": 3740, - "answer": 3, - "count": 4 + "question": 317, + "contribution": 4084, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab23362a-00cf-4431-9c0a-c3a67332d3e8", + "pk": "90af2346-bfe6-4962-a4ca-089badf71bf9", "fields": { - "question": 321, - "contribution": 1658, - "answer": 2, - "count": 3 + "question": 329, + "contribution": 4101, + "answer": 1, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab2c39e8-9a3c-4d4e-b91a-b8af2117da62", + "pk": "90b486f0-b3db-45f9-ab27-1a7ae4d9e419", "fields": { - "question": 356, - "contribution": 1253, - "answer": 1, - "count": 3 + "question": 325, + "contribution": 881, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab2fa6fa-e561-4282-b6de-79677f782bf2", + "pk": "90bec3a5-e6c0-4f32-8089-e7b14e2e6625", "fields": { - "question": 357, - "contribution": 1253, + "question": 336, + "contribution": 1662, "answer": 1, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab30443f-bbe1-489e-8547-2ff7758926c9", + "pk": "90cd034f-2cbd-4363-9c19-2df8f0250f73", "fields": { - "question": 323, - "contribution": 4084, + "question": 344, + "contribution": 1247, "answer": 3, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab395f68-9a91-4d29-ac51-a5763302c593", + "pk": "90df1fbc-8fab-4276-bf9e-94066a8563b7", "fields": { - "question": 260, - "contribution": 1668, + "question": 315, + "contribution": 3462, "answer": 1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab461bb0-9203-40fe-91d6-6074a85110ed", + "pk": "90e9ef8f-5ba4-4c7c-8d4f-5f384c1e4c22", "fields": { - "question": 345, - "contribution": 3728, - "answer": 2, + "question": 331, + "contribution": 3474, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab4d4b32-07ec-4cbc-8e73-66417ea3f082", + "pk": "90eb3d1f-afbe-400d-8fb4-cef364cfc013", "fields": { - "question": 344, - "contribution": 3405, + "question": 368, + "contribution": 1797, "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab524649-a243-4804-9a10-719663ae9305", + "pk": "90f078e5-975b-45c8-89a2-ba58fedc50a7", "fields": { - "question": 322, - "contribution": 884, - "answer": 1, - "count": 11 + "question": 444, + "contribution": 4114, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab5549cd-dc9c-4a0f-8f74-f31782623704", + "pk": "90f5a7cb-160f-4f9e-942c-c9bef2da0ed2", "fields": { - "question": 349, - "contribution": 869, - "answer": 1, - "count": 3 + "question": 356, + "contribution": 1154, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab5a5b5d-eaa7-4f5c-9bae-825be050e428", + "pk": "90fbd49c-af34-49e2-88eb-ae8f458bbd16", "fields": { - "question": 343, - "contribution": 3545, - "answer": 5, + "question": 327, + "contribution": 3407, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab5ce175-a997-4750-8098-4adc01b529f0", + "pk": "90fce576-7c2f-4660-a2c3-98209303eff3", "fields": { - "question": 344, - "contribution": 1842, + "question": 406, + "contribution": 3974, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab5e1c04-4d3d-4f49-bcb4-e1f0390dbfb0", + "pk": "910751ec-7496-48ce-a146-638f29cda101", "fields": { - "question": 319, - "contribution": 1634, - "answer": 5, - "count": 6 + "question": 477, + "contribution": 4101, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab62c1eb-54da-48c7-971c-0be5b4d1b4c9", + "pk": "910e718e-3b9e-4f6a-a9fd-e8e6c762a35b", "fields": { - "question": 257, - "contribution": 3406, + "question": 327, + "contribution": 3423, + "answer": 2, + "count": 8 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "910effe0-4755-4962-8382-7442f1200ba3", + "fields": { + "question": 374, + "contribution": 3781, + "answer": 2, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "9115a086-9a33-43af-bfa5-3f176fc30cd8", + "fields": { + "question": 331, + "contribution": 880, "answer": 2, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab634964-3a7d-4c27-81c3-0432036c29ec", + "pk": "911e5d0c-b97e-4f99-8a8f-95c59184cc0d", "fields": { - "question": 322, - "contribution": 4128, - "answer": 1, - "count": 6 + "question": 339, + "contribution": 1638, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab77f1bb-11b9-4c9f-a493-898a7901f90a", + "pk": "912418be-a8f2-407d-ad2d-1e4ac14f4e02", "fields": { - "question": 357, - "contribution": 1845, + "question": 395, + "contribution": 3775, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab7b1bd2-e2ea-4acb-bd9b-eb4384d3a8ba", + "pk": "912e2b16-33e8-4fb7-9f28-fabc603949a4", "fields": { - "question": 255, - "contribution": 3390, + "question": 257, + "contribution": 908, "answer": 5, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab871949-9663-4d65-8fea-e7654b32b7b0", + "pk": "9135aa42-c31d-420f-b718-69dfdca3669a", "fields": { - "question": 333, - "contribution": 4154, + "question": 257, + "contribution": 3390, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab8e5411-6f66-4530-8369-ca9d899ed49c", + "pk": "913f5bda-bac1-4c28-a3c4-cca118cdd70b", "fields": { - "question": 349, - "contribution": 3607, - "answer": 4, + "question": 475, + "contribution": 4052, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab9355c4-6f25-4257-b200-8cd30c6bff66", + "pk": "914f7c4c-9dec-485a-9a13-a055a1afc1b2", "fields": { "question": 362, - "contribution": 1836, - "answer": 5, - "count": 1 + "contribution": 3651, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab97330f-e18e-440f-969b-194aeb9e656e", + "pk": "916697ed-9c31-411a-8514-6c32004c40e3", "fields": { - "question": 371, - "contribution": 3551, - "answer": 1, - "count": 7 + "question": 472, + "contribution": 4046, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab9a8f56-7996-4d95-8cdf-401a8007e23f", + "pk": "916f6dae-45e5-4edb-81bd-b921d0957df8", "fields": { "question": 338, - "contribution": 3795, - "answer": 4, - "count": 3 + "contribution": 1694, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ab9b54d8-f2bc-4880-8207-025454d257b5", + "pk": "91779e82-8a74-461a-90d6-ee4bb45288fd", "fields": { - "question": 346, - "contribution": 3525, - "answer": 1, + "question": 344, + "contribution": 4188, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aba1235a-dadf-4973-b5ea-b16122e11942", + "pk": "9179545c-7c5f-4d15-a34e-17571ac1b637", "fields": { - "question": 315, - "contribution": 1837, - "answer": 1, - "count": 16 + "question": 473, + "contribution": 1656, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aba30df2-f809-4ecc-917d-1b9f2655c4a0", + "pk": "917f6941-541e-4a88-a04c-3a2c99ba9395", "fields": { - "question": 362, - "contribution": 3649, - "answer": 2, + "question": 255, + "contribution": 4120, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aba4036e-68ad-40a0-81eb-267b82c6ab19", + "pk": "917f9861-2ccc-4650-957a-a00a6c3469ca", "fields": { - "question": 477, - "contribution": 3391, - "answer": 3, + "question": 322, + "contribution": 1680, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aba5ea37-b597-4c54-82e5-3e9856dfab3b", + "pk": "9183ba92-f73e-4d64-af40-2b11c9a8dcea", "fields": { - "question": 353, - "contribution": 1783, - "answer": 1, - "count": 5 + "question": 339, + "contribution": 3727, + "answer": -1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "abc12f93-969f-482b-a45d-b5d244ac44bd", + "pk": "919572d6-0c23-4367-8281-dde4963ed2ea", "fields": { - "question": 345, - "contribution": 1874, - "answer": 1, - "count": 2 + "question": 258, + "contribution": 3474, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "abc2f9da-464a-425b-b657-98a0cb9bfe14", + "pk": "91975a88-0c09-4af7-81b3-3ad2ef6bf6a5", "fields": { - "question": 331, - "contribution": 1658, - "answer": -1, - "count": 2 + "question": 329, + "contribution": 3355, + "answer": 1, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "abc67cb9-3378-43a4-b073-456839acb989", + "pk": "91983297-1a95-4803-965c-13628a2cc19a", "fields": { - "question": 319, - "contribution": 3472, + "question": 340, + "contribution": 886, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "abdc135b-b0bf-4500-bf01-ace9b347a47d", + "pk": "919ef1de-ec9a-4fb2-a8e3-a41b81f462a7", "fields": { - "question": 262, - "contribution": 3422, - "answer": 3, - "count": 6 + "question": 343, + "contribution": 1207, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "abea054b-477c-4f1b-8b01-431a57dfc351", + "pk": "91a60c94-7590-49bc-91c8-6cee40f1cf3e", "fields": { - "question": 345, - "contribution": 1663, - "answer": 2, - "count": 1 + "question": 476, + "contribution": 1626, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "abeb4e6d-87d3-49c0-94a8-ef650ab575ae", + "pk": "91afab71-3f11-4e08-800d-3b59649431e5", "fields": { - "question": 401, - "contribution": 3646, + "question": 315, + "contribution": 884, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "abf38837-e4a8-43ed-8d91-7cf65100e12a", + "pk": "91b6f26f-079a-48f7-9135-add89b13cb7a", "fields": { - "question": 325, - "contribution": 1288, - "answer": 1, - "count": 31 + "question": 353, + "contribution": 1154, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac08113d-de6b-4959-b914-3a8ebcd401d1", + "pk": "91cbfc04-efac-4bb3-b470-6f8620f59baa", "fields": { - "question": 328, - "contribution": 3423, - "answer": 3, - "count": 9 + "question": 331, + "contribution": 4046, + "answer": 0, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac0ba487-7d6c-428a-b195-73e78b452f46", + "pk": "91d7fce1-1c80-45df-a799-d04a21ae6ede", "fields": { - "question": 476, - "contribution": 3721, - "answer": -3, - "count": 1 + "question": 368, + "contribution": 3519, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac0e82c5-86fb-4ab4-af51-df5663e1659f", + "pk": "91e12ef5-f007-41de-9cd2-4a48a65e2a95", "fields": { - "question": 316, - "contribution": 3665, - "answer": 2, - "count": 4 + "question": 343, + "contribution": 3487, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac1191e6-4e1f-4c0c-a0e9-3937452c2ac0", + "pk": "91ee4a2a-650e-4c18-8242-fb0b3e713d63", "fields": { - "question": 344, - "contribution": 3515, - "answer": 3, + "question": 477, + "contribution": 1298, + "answer": 0, + "count": 6 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "91f5ce0e-d2ca-4562-b110-cc1b22ea641d", + "fields": { + "question": 347, + "contribution": 3525, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac121720-8f87-4dc1-b4d3-e02032fb67af", + "pk": "91f94c36-72d4-46b5-84f1-16bed67fc202", "fields": { - "question": 329, - "contribution": 3684, - "answer": 5, + "question": 366, + "contribution": 3595, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac1d81f1-0520-43b4-8dfb-2ed254ed34d8", + "pk": "9202b7fc-d4f7-423c-8eec-1f8c16016a1f", "fields": { - "question": 255, - "contribution": 836, - "answer": 2, + "question": 339, + "contribution": 1656, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac23e5f2-2cd8-405d-bb2f-8c4ba54cae22", + "pk": "92083d45-9b3c-4e7a-9caa-c5077f2065ac", "fields": { - "question": 353, - "contribution": 1244, - "answer": 1, + "question": 335, + "contribution": 1884, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac33e2b6-3239-4e6c-9e7e-f7d139accd99", + "pk": "920d6f44-5398-4234-904f-a25d840edcab", "fields": { - "question": 340, - "contribution": 4094, + "question": 376, + "contribution": 3775, "answer": 1, - "count": 10 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac3449c8-5f9f-439f-8ba7-531cc91fac00", + "pk": "921f73d6-c829-475d-a506-4025fbc4a6e6", "fields": { - "question": 353, - "contribution": 1849, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 4047, + "answer": 0, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac3cf01c-1edc-4209-bf8e-e458446535ee", + "pk": "9226fe13-6bd1-416e-8b3b-8a807d9d2bde", "fields": { - "question": 343, - "contribution": 1869, + "question": 326, + "contribution": 3391, "answer": 3, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac428d07-e39a-4994-8305-8f79d27a9016", + "pk": "92398990-f09c-4199-8d23-285666dfe889", "fields": { - "question": 259, - "contribution": 1626, + "question": 322, + "contribution": 864, "answer": 1, - "count": 21 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac463454-5aed-4132-933a-bb0773007127", + "pk": "923d1082-aebe-45ae-9e0d-fbb64e1329e8", "fields": { - "question": 395, - "contribution": 3755, + "question": 346, + "contribution": 1842, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac4b435e-841b-42ea-93dd-b9832ec92409", + "pk": "924477f9-4888-43fb-a049-eb56132f1141", "fields": { - "question": 394, - "contribution": 3755, - "answer": 2, - "count": 1 + "question": 328, + "contribution": 1802, + "answer": 5, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac4f0bf9-80cd-478b-bf5e-3268897e78d1", + "pk": "924487c3-6b72-4572-a34d-a6da32aca764", "fields": { - "question": 350, - "contribution": 3454, - "answer": 1, - "count": 5 + "question": 331, + "contribution": 880, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac58c82c-3861-402b-853e-c67917921d8e", + "pk": "925e799a-cb87-45a0-9a91-9fff0677629c", "fields": { - "question": 367, - "contribution": 3665, - "answer": 1, - "count": 5 + "question": 457, + "contribution": 4141, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac5ab2fb-3856-4366-b7f0-03e168f7304b", + "pk": "925fd975-61ca-4707-9cda-3ae24cc50be6", "fields": { - "question": 360, - "contribution": 3918, - "answer": 2, + "question": 319, + "contribution": 4100, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac682408-2e61-4b2c-994d-b4930fa23505", + "pk": "9262fd45-c489-4ab6-81bc-6474eed1edc1", "fields": { - "question": 476, - "contribution": 1612, - "answer": -1, - "count": 4 + "question": 341, + "contribution": 3745, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac6a46dd-1f66-488d-9ed2-c32301a0b18d", + "pk": "926f1c26-28df-4a9c-95da-501dfee46efe", "fields": { - "question": 339, - "contribution": 1640, + "question": 317, + "contribution": 3434, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac6fc9cc-8472-4254-9333-745f73833c9e", + "pk": "928165a1-95cb-4aa5-b5e6-905c041d1271", "fields": { - "question": 475, - "contribution": 862, - "answer": 0, - "count": 8 + "question": 368, + "contribution": 1613, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ac8d8c92-c113-4c78-95a2-39e1d0d48931", + "pk": "92856b0b-a766-4a67-9ae5-8e1fe863d992", "fields": { - "question": 380, - "contribution": 3775, - "answer": 3, - "count": 1 + "question": 331, + "contribution": 1668, + "answer": 0, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aca87afe-c75e-4e55-9c0c-7d96ba84d451", + "pk": "9287afc8-fcf7-4b32-822f-1d75a690f1a0", "fields": { - "question": 473, - "contribution": 3711, - "answer": -2, - "count": 1 + "question": 323, + "contribution": 3422, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acac2a77-5751-43ac-b5ad-f0fd4088ac4a", + "pk": "929288ed-ba75-4a03-a3c7-036d794d6cb3", "fields": { - "question": 329, - "contribution": 4203, + "question": 321, + "contribution": 912, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acb33f5d-09e7-42db-8d15-2b25fffb1988", + "pk": "9292b188-9531-4ca3-9555-c62658c046bc", "fields": { - "question": 328, - "contribution": 837, + "question": 379, + "contribution": 3775, "answer": 2, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acbfec97-a7fd-41fd-90fb-d26210e756c7", + "pk": "929f403e-8fae-418a-8a9c-1caa337cf50c", "fields": { - "question": 473, - "contribution": 894, - "answer": 0, + "question": 360, + "contribution": 1835, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acc8b680-4a9e-44e1-a340-e77e34d50715", + "pk": "92a28661-0390-4aae-9dcb-95a7ec874a50", "fields": { - "question": 333, - "contribution": 3936, - "answer": 4, - "count": 1 + "question": 328, + "contribution": 3423, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "accd4a63-5020-4e3a-a55f-8c1dcab8d943", + "pk": "92ab46a6-32c8-4a02-acbb-0ab7175a63d8", "fields": { - "question": 475, - "contribution": 3404, - "answer": 1, - "count": 2 + "question": 319, + "contribution": 4138, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acce716f-49a4-4345-b6c1-d8872b88b074", + "pk": "92acae6a-4ad6-420f-96eb-b87e3f1ae366", "fields": { - "question": 476, - "contribution": 836, - "answer": 1, + "question": 258, + "contribution": 4040, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "accf77dd-a674-49b2-810c-9e28f9ede2e5", + "pk": "92ae9c30-595f-4c87-890a-bde6dcab3023", "fields": { - "question": 338, - "contribution": 868, - "answer": 4, + "question": 349, + "contribution": 3606, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acd2b115-9c2d-40c1-952c-023a844ee721", + "pk": "92bced6e-935c-4ca3-8481-5402ed303869", "fields": { - "question": 355, - "contribution": 1785, + "question": 257, + "contribution": 3422, "answer": 2, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acd2c054-e432-4b50-a10f-d80397912df3", + "pk": "92c10f20-676d-4f64-a3c0-aebd62da64b9", "fields": { - "question": 344, - "contribution": 3912, - "answer": 1, - "count": 2 + "question": 340, + "contribution": 826, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acd37d00-c407-4682-ab6c-05f25c5854de", + "pk": "92c5f545-ffa9-4f51-b6f5-65595043e127", "fields": { - "question": 345, - "contribution": 3546, - "answer": 2, - "count": 1 + "question": 341, + "contribution": 3727, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ace881f0-4675-4fd5-82f2-3afd571ca5c3", + "pk": "92c64444-c483-416b-8b69-147dfbddefb1", "fields": { - "question": 344, - "contribution": 1869, + "question": 362, + "contribution": 3893, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acee4bfa-ce32-4ef3-9820-c91237fb75be", + "pk": "92d85187-e59a-41b4-9bc6-7aaf7cb21d35", "fields": { "question": 473, - "contribution": 3683, - "answer": -2, - "count": 1 + "contribution": 832, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acf3e4f0-100f-45f8-9969-33de2042af07", + "pk": "92d938c1-139e-4146-ac9f-856a98b75dbe", "fields": { - "question": 325, - "contribution": 1186, - "answer": 2, - "count": 3 + "question": 472, + "contribution": 880, + "answer": 5, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acf59787-14af-4135-8816-ad34e5880438", + "pk": "92db667e-2af7-42c8-9402-0bf77499ed37", "fields": { - "question": 346, - "contribution": 1250, + "question": 472, + "contribution": 3466, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acfa43ab-0f3f-4c6b-8591-0e631d444442", + "pk": "92e73eab-cb20-4503-8ff1-2c5951547988", "fields": { - "question": 262, - "contribution": 3721, + "question": 354, + "contribution": 3975, "answer": 1, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acfbd1a4-bcb0-41d0-914d-8ae32aa52c02", + "pk": "92eb6b2a-b0af-455d-be52-97dfe4bf9631", "fields": { - "question": 475, - "contribution": 3645, - "answer": 0, - "count": 3 + "question": 353, + "contribution": 4267, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "acfd3e26-baef-49c0-8c72-48053b5ddd29", + "pk": "92ef27bd-cb57-4807-9c52-6a3a00420762", "fields": { - "question": 370, - "contribution": 4025, - "answer": 2, - "count": 1 + "question": 351, + "contribution": 3440, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad0b37a4-e618-4acc-b7f1-3efaee13b079", + "pk": "92f04122-fd3b-418c-9c62-ad19f12b3ccb", "fields": { "question": 326, - "contribution": 3391, - "answer": 4, - "count": 9 + "contribution": 1777, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad176b15-d819-4888-b1cc-7894c788fb41", + "pk": "93006060-6cc3-4487-a5ad-f1ca1f459ae1", "fields": { - "question": 343, - "contribution": 1151, + "question": 258, + "contribution": 3462, + "answer": 3, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "930440dc-c337-4ec7-9726-5a4a6b2ca2d5", + "fields": { + "question": 359, + "contribution": 3917, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad1b0df5-788b-4031-890f-02f01c2efd3a", + "pk": "9306d4d6-c5a9-499d-89da-dffda5e6c081", "fields": { - "question": 258, - "contribution": 4100, - "answer": 4, - "count": 2 + "question": 316, + "contribution": 1634, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad1e1574-4eb5-49ad-ba18-9ea594efc557", + "pk": "930ccbd5-1d70-4e88-84d7-c1b882405fd8", "fields": { "question": 328, - "contribution": 4203, - "answer": 5, + "contribution": 3519, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad20414e-a105-4f74-b999-c425af210b5c", + "pk": "930f7524-8bbc-4a03-a8e1-42375347fa2e", "fields": { - "question": 345, - "contribution": 1873, + "question": 459, + "contribution": 3453, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad216239-9a2c-4b20-bcf2-0709039e363c", + "pk": "9315591f-614d-46c9-b149-b3f4e8e41c1b", "fields": { "question": 473, - "contribution": 1640, - "answer": 1, - "count": 1 + "contribution": 3508, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad241cd1-ad82-4d08-8cb4-bdeacbda06d5", + "pk": "93278dca-2fd0-41c7-891e-fc566f60e943", "fields": { - "question": 329, - "contribution": 1777, - "answer": 1, - "count": 4 + "question": 325, + "contribution": 3391, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad314b67-c571-4d30-814e-1cb91942aaaa", + "pk": "932b3ed2-b89e-4675-bddd-d0d42162c224", "fields": { - "question": 332, - "contribution": 3886, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 3391, + "answer": -2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad524ee9-2e1a-42df-8150-763dd58bf7b2", + "pk": "93595843-3e7b-4104-b3b0-2eeb62852ff7", "fields": { - "question": 372, - "contribution": 3406, - "answer": 2, - "count": 3 + "question": 343, + "contribution": 4095, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad55e4c5-a84c-4ec6-9c7c-7c108624979a", + "pk": "9365aad3-5ad3-4fb0-a7ea-1a0346494e7b", "fields": { - "question": 349, - "contribution": 1870, - "answer": 1, - "count": 1 + "question": 326, + "contribution": 3435, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad5b54bf-832b-4c67-ace0-9989495408b2", + "pk": "936a6312-2dd5-409a-9653-47087846131f", "fields": { - "question": 325, - "contribution": 881, - "answer": 4, - "count": 2 + "question": 473, + "contribution": 4084, + "answer": -1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad6d7125-8fa2-4bb2-8973-b426891abfbc", + "pk": "936aa5dc-173c-4fbb-b888-fbb735a73632", "fields": { - "question": 323, - "contribution": 3462, + "question": 363, + "contribution": 1810, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad75286d-8340-4fe9-b7e1-9a78a7f5f357", + "pk": "936ed776-c6b8-4826-8b8d-789c16a6e746", "fields": { - "question": 326, - "contribution": 3722, - "answer": 5, + "question": 375, + "contribution": 3711, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad7c6ebf-93f2-4a37-97e0-961bfe12bc7e", + "pk": "93791cbb-48cc-4d9b-9f37-916c210e480f", "fields": { - "question": 369, - "contribution": 1836, + "question": 348, + "contribution": 3895, "answer": 1, - "count": 11 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad8a061a-4863-4311-9975-3a4b08b989ca", + "pk": "9380d804-8956-4e75-bd72-0c92ffefc3ae", "fields": { - "question": 408, - "contribution": 4024, - "answer": 3, + "question": 389, + "contribution": 3755, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad91a0dd-2d5f-4ccc-81c0-b37441829ede", + "pk": "938ae7b7-771c-4eac-acd9-5d7a46f238ae", "fields": { - "question": 322, - "contribution": 4028, + "question": 352, + "contribution": 4022, "answer": 1, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad944fdb-0243-472f-a349-2046f1c6016c", + "pk": "93950e8f-53ff-479b-8614-4c5acc8e70a5", "fields": { - "question": 458, - "contribution": 4283, - "answer": 3, - "count": 4 + "question": 337, + "contribution": 3693, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ad96e894-4738-4ee7-afbe-247bf7c827fc", + "pk": "9397742c-c7b7-4939-adb2-c90662a465f6", "fields": { - "question": 323, - "contribution": 4084, + "question": 343, + "contribution": 3607, "answer": 1, - "count": 22 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ada4c6d8-349f-4bc4-a9ec-0aa9d06bc046", + "pk": "939dd98d-cccb-4add-b69e-33e85d239922", "fields": { - "question": 400, - "contribution": 3646, + "question": 343, + "contribution": 3545, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "adb193ce-28e7-49a3-a3ec-883c761c72cd", + "pk": "93a5a809-e769-46e9-89f4-a7570ef09bf3", "fields": { - "question": 321, - "contribution": 3434, - "answer": 3, - "count": 5 + "question": 329, + "contribution": 3859, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "adb2b71f-29b3-4b10-9d83-fd19a7ae2792", + "pk": "93b2b4b4-6ca1-4195-a3e2-c49486b87a71", "fields": { - "question": 323, - "contribution": 4046, - "answer": 1, - "count": 6 + "question": 437, + "contribution": 4052, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "adbd8203-2af6-46f0-8c70-6e7f07969a93", + "pk": "93b31215-0fe5-473a-90e4-fafeb4ae0e48", "fields": { - "question": 328, - "contribution": 3883, - "answer": 4, - "count": 1 + "question": 356, + "contribution": 1776, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "adc43a32-5223-4051-8fbf-e83c4ede6fbe", + "pk": "93b98120-0598-495f-9e2c-e6331f239539", "fields": { - "question": 473, - "contribution": 1702, - "answer": -1, + "question": 344, + "contribution": 1872, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "adce5172-40e4-4575-a872-9d4f91178168", + "pk": "93be73ec-f1dd-46b8-be18-73215a151f53", "fields": { - "question": 340, - "contribution": 3372, - "answer": 4, + "question": 359, + "contribution": 3653, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "add86bbc-c1a4-46d8-8a94-653cb1c26be5", + "pk": "93c408e3-7859-4c8d-bab7-52c9d8bc179d", "fields": { - "question": 257, - "contribution": 4052, - "answer": 2, - "count": 2 + "question": 319, + "contribution": 3683, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ade20193-8da8-430c-997b-bfb21af143a3", + "pk": "93c9eb4d-8c11-41a7-9f47-3daa24f940f4", "fields": { - "question": 371, - "contribution": 3553, - "answer": 4, + "question": 315, + "contribution": 1626, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ade89bac-e577-455b-9810-ef1d0e5216c6", - "fields": { - "question": 333, - "contribution": 3553, - "answer": 3, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "adfd54c4-93e4-4481-8901-c37b3f0397d9", + "pk": "93ca815f-54d1-4657-832f-c3dde623d7a2", "fields": { - "question": 353, - "contribution": 3610, - "answer": 1, - "count": 2 + "question": 336, + "contribution": 3440, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae043b31-00b6-41f7-ad68-ae15be3b2189", + "pk": "93d26927-10e1-46ed-842b-334e303b1cb5", "fields": { - "question": 348, - "contribution": 919, + "question": 255, + "contribution": 4116, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae0af521-3635-40f9-b3e2-98833fd652b9", + "pk": "93d781ab-c4dc-4641-b562-2300fd4da8c1", "fields": { - "question": 357, - "contribution": 3610, - "answer": 1, - "count": 3 + "question": 475, + "contribution": 3450, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae168c76-1944-485b-9021-8be514aa69a8", + "pk": "93d81f5b-ed5d-4495-8f79-d3ef8463c137", "fields": { - "question": 320, - "contribution": 3721, - "answer": 1, - "count": 2 + "question": 331, + "contribution": 880, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae265c00-855b-4ee5-a9e7-a2f577380329", + "pk": "93d92335-3cd8-4026-9275-d5eb37e96d87", "fields": { - "question": 259, - "contribution": 1626, - "answer": 3, - "count": 1 + "question": 317, + "contribution": 3434, + "answer": 2, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae26df13-f14f-445e-a3a3-29ca014f74f1", + "pk": "93dc3866-6612-43cd-985d-81c6b990a68c", "fields": { - "question": 400, - "contribution": 4119, + "question": 326, + "contribution": 1659, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae30fc05-1c72-4ae7-84ad-ef71526ce464", + "pk": "93ed3e6f-5892-4e83-94e4-4cf58b554846", "fields": { - "question": 319, - "contribution": 908, - "answer": 5, - "count": 2 + "question": 347, + "contribution": 887, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae34287f-53c0-4993-9300-01a7e2fb98d9", + "pk": "93f0ad57-310c-4305-a8c8-dd560d957998", "fields": { - "question": 339, - "contribution": 804, - "answer": 1, - "count": 4 + "question": 473, + "contribution": 4138, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae34a615-e0c6-4d63-af43-e9d3cf82168d", + "pk": "93f85b0b-3e37-4f7f-8d82-a6b7741fdde9", "fields": { - "question": 328, - "contribution": 3407, - "answer": 2, - "count": 5 + "question": 320, + "contribution": 3354, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae3c4c19-25ce-4106-9ace-6993ff103bd6", + "pk": "93fa8bc0-e388-47f0-aa51-0882bef36f06", "fields": { - "question": 349, - "contribution": 4233, + "question": 315, + "contribution": 4128, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae3d4d4d-f2bb-4d56-a56d-9a01b8b6fb22", + "pk": "9407f1a9-8d51-40af-8219-d6500e111c50", "fields": { - "question": 475, - "contribution": 858, - "answer": 1, - "count": 2 + "question": 325, + "contribution": 3556, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae3f6866-8649-45d3-904a-bafc5d6e3462", + "pk": "940fb13a-dc5d-4bc5-a74b-324130b17d75", "fields": { "question": 336, - "contribution": 3693, - "answer": 1, + "contribution": 1640, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae434751-655e-4a5a-a98f-5d05921dfed2", + "pk": "94107dc0-5ec4-47b6-b363-37cdbf3a276d", "fields": { - "question": 338, - "contribution": 1638, + "question": 353, + "contribution": 1782, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae4942e8-c23e-43fe-8311-1e80ce1a6c60", + "pk": "9414fab5-8538-41f3-b8a4-6d06ca91e76c", "fields": { - "question": 336, - "contribution": 3727, + "question": 259, + "contribution": 3721, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae49fc90-b8b1-4393-a0c0-d442362e93ea", + "pk": "94248472-4c4f-4968-aa78-e643333465ae", "fields": { - "question": 343, - "contribution": 4188, - "answer": 1, - "count": 7 + "question": 363, + "contribution": 1810, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae536c13-8b4e-4160-96c9-66a7ede6ac3f", + "pk": "942b1f28-33a5-4824-9376-b4fa0c840aa4", "fields": { - "question": 348, - "contribution": 3546, - "answer": 1, - "count": 2 + "question": 368, + "contribution": 3556, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae5c9d71-1150-47c3-930d-b9895e33d9fb", + "pk": "9430a46c-2282-495c-beea-63fbdf0373de", "fields": { - "question": 343, - "contribution": 4123, - "answer": 1, - "count": 5 + "question": 476, + "contribution": 1837, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae5ca29f-6d71-4791-8bc0-bc12dbf5fa52", + "pk": "943fa857-26e0-4cfa-9745-c6683602749f", "fields": { - "question": 325, - "contribution": 1635, - "answer": 1, - "count": 30 + "question": 323, + "contribution": 4138, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae5cca00-d5fa-4a5c-8bae-1c2577067b04", + "pk": "944b61a6-525f-4a72-8b26-773989ac5930", "fields": { "question": 475, - "contribution": 4052, - "answer": 0, - "count": 4 + "contribution": 1694, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae63828a-f85b-4023-8714-1dccbdf4ffb9", + "pk": "9463cfc9-fc6f-48c4-8827-a4a663e9def5", "fields": { - "question": 345, - "contribution": 1881, - "answer": 3, - "count": 2 + "question": 477, + "contribution": 3859, + "answer": 0, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae6928c6-24ba-4845-a14c-d28a2f359358", + "pk": "9464efc3-21e7-4206-8b1b-667338395c13", "fields": { - "question": 255, - "contribution": 1634, - "answer": 5, - "count": 1 + "question": 347, + "contribution": 1250, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae6b7594-f518-42ea-92d5-20e631646ba4", + "pk": "946eb0d9-acd6-49ab-88e3-2fa59e0338f8", "fields": { - "question": 351, - "contribution": 3735, + "question": 354, + "contribution": 3852, "answer": 1, - "count": 2 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae7ef0e2-0ce0-4b51-b793-6d2fd7ef517d", + "pk": "9471055d-a349-4165-8377-82c0f8766260", "fields": { - "question": 322, - "contribution": 3725, + "question": 367, + "contribution": 4046, "answer": 4, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae8c5762-f55a-40f8-80ce-044781630522", + "pk": "9488815c-0b36-45c4-a5ff-788d3d4cfb9c", "fields": { - "question": 325, - "contribution": 1725, - "answer": 2, + "question": 319, + "contribution": 3406, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ae93cde2-60b6-4508-9065-abf4bbc7a2e3", + "pk": "94895f2e-89d4-46b0-89d0-dbd61e2e27ae", "fields": { - "question": 322, - "contribution": 3462, + "question": 319, + "contribution": 908, "answer": 4, - "count": 1 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aea1fc05-804a-424b-baec-7db4669a8aaf", + "pk": "948c2eb3-d96c-4b5b-af2a-e32642fc57cb", "fields": { - "question": 345, - "contribution": 3525, - "answer": 1, - "count": 1 + "question": 475, + "contribution": 3795, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aea2c4d2-edcc-47f7-8894-b0968ce66ea8", + "pk": "948f3f6d-036f-41fd-8d18-e1782050091b", "fields": { - "question": 344, - "contribution": 1863, - "answer": 3, + "question": 347, + "contribution": 1228, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aea5a7b4-eb05-4ab3-ac86-7c56cdda1dac", + "pk": "9491f5c8-1ca6-41db-ae09-932f8a4782a3", "fields": { - "question": 258, - "contribution": 836, + "question": 259, + "contribution": 1612, "answer": 3, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aeaa3c1a-e1e0-407b-bfb6-952b7472cf31", + "pk": "949af8f8-ecd5-45b5-9167-3dce7f2cfc02", "fields": { - "question": 363, + "question": 369, "contribution": 1799, - "answer": 1, - "count": 2 + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aeae35f9-e183-4a72-9516-23e9c1884b60", + "pk": "949ba03d-5035-4d24-92b5-136dfc296102", "fields": { - "question": 368, - "contribution": 1779, + "question": 341, + "contribution": 3416, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aeb1cc70-06a5-4a3f-86a3-38dd4c351073", + "pk": "949c40d2-12c3-46a3-95ba-3263446676b9", "fields": { - "question": 258, - "contribution": 4116, - "answer": 4, - "count": 3 + "question": 397, + "contribution": 3711, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aeb34563-324c-45ff-87a7-64d328e9301f", + "pk": "949c7a01-fd2a-442e-8ad0-56ce14bc6169", "fields": { - "question": 477, - "contribution": 1777, + "question": 367, + "contribution": 3390, "answer": 2, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aeb7fa35-a485-4a52-a2cb-76dc8910880e", + "pk": "94a2f352-3651-4cff-b949-2122916c81e7", "fields": { - "question": 317, - "contribution": 3390, - "answer": 3, - "count": 8 + "question": 368, + "contribution": 4047, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aeb8788f-d6f9-44b5-b41f-d9cf3673a336", + "pk": "94a73519-4f99-4b69-b88e-0c73a6193bee", "fields": { - "question": 338, - "contribution": 3745, + "question": 363, + "contribution": 3647, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aebaf32b-7984-4819-985d-78c32bfb470d", + "pk": "94af87ad-c79d-4c09-8378-3f95e0b1cd81", "fields": { - "question": 320, - "contribution": 3422, + "question": 316, + "contribution": 3354, "answer": 1, - "count": 4 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aec7abc2-6ce6-479f-8004-25c86e8fa1f2", + "pk": "94baf37f-0c78-48fe-8594-967de1036dc1", "fields": { - "question": 343, - "contribution": 1873, - "answer": 2, - "count": 1 + "question": 355, + "contribution": 3847, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aec933d1-5640-4597-803f-36ded839e4de", + "pk": "94bb6933-2016-41ad-ae7f-8e9f59056e0f", "fields": { - "question": 315, - "contribution": 3354, - "answer": 3, - "count": 2 + "question": 363, + "contribution": 3929, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aeca035d-e5ab-45d2-ad30-352c99b13f02", + "pk": "94c1c663-c5fa-4eed-aad2-1bc0214c4d2a", "fields": { - "question": 257, - "contribution": 3422, - "answer": 1, - "count": 7 + "question": 354, + "contribution": 1189, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aede52ce-2f52-443c-9993-07bc0ff73b93", + "pk": "94cf22e3-9fa8-45a0-808d-17d1188aa7ed", "fields": { - "question": 354, - "contribution": 1776, + "question": 258, + "contribution": 1626, "answer": 1, - "count": 7 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aeec0968-01c5-4a5a-85ec-1cef66e30506", + "pk": "94d4cee9-4e72-49f2-a094-efd9ac1c0ffd", "fields": { - "question": 326, - "contribution": 1669, - "answer": 2, - "count": 2 + "question": 360, + "contribution": 3919, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aeed1055-8f81-4246-90de-9da3f654e0d5", + "pk": "94dc2b88-35c3-4b7c-9476-19dba49d3092", "fields": { - "question": 340, - "contribution": 3727, - "answer": 4, + "question": 322, + "contribution": 4120, + "answer": 5, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aefc10eb-1218-4f90-b9a7-ca54ff31cb50", + "pk": "94e0e139-2ca5-4981-8bf5-3097abc66ef3", "fields": { - "question": 361, - "contribution": 3653, - "answer": 4, - "count": 1 + "question": 323, + "contribution": 3406, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aefdbd1b-6e7a-4d34-b9a8-654c54ee97b9", + "pk": "94e86133-6794-4386-9861-9dc7978fcd0b", "fields": { - "question": 319, - "contribution": 3472, - "answer": 1, + "question": 262, + "contribution": 1668, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af04b89d-0203-4f1d-8c69-93891f0d79d4", + "pk": "94f0f268-0999-493e-bb93-ed1e640821eb", "fields": { - "question": 317, - "contribution": 3472, + "question": 327, + "contribution": 1287, "answer": 2, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af14c5a1-84b5-4fcc-b413-ce5ad9d46fa2", + "pk": "94f5d89d-5b23-4952-800b-61e6a51f8ea8", "fields": { - "question": 473, - "contribution": 4002, + "question": 351, + "contribution": 804, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af14fdaa-0456-4049-a682-34c976e5898e", + "pk": "9539c75b-2403-482e-8699-6eef00d86291", "fields": { - "question": 347, - "contribution": 1228, - "answer": 5, - "count": 2 + "question": 343, + "contribution": 3555, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af2092c3-7393-431d-8336-831bc57eef18", + "pk": "95408815-0129-4cd9-8a0a-e201325d160b", "fields": { - "question": 315, - "contribution": 3354, - "answer": 1, - "count": 17 + "question": 319, + "contribution": 3390, + "answer": 4, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af23254e-b9e4-4277-afe7-7338971424e5", + "pk": "95477c40-1551-46a7-b488-8ffc580b88fd", "fields": { - "question": 428, - "contribution": 4152, + "question": 336, + "contribution": 3486, "answer": 3, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af256fbe-9726-4627-8d41-1f46dd3b19db", + "pk": "954c5356-e7c8-4833-9d53-130ac0b0b617", "fields": { - "question": 348, - "contribution": 1809, - "answer": 2, - "count": 2 + "question": 257, + "contribution": 3390, + "answer": 3, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af277124-f8ac-4510-8920-c87093a2848c", + "pk": "954db59b-1335-44ff-ace9-ed460915798c", "fields": { - "question": 472, - "contribution": 4128, - "answer": 5, - "count": 5 + "question": 320, + "contribution": 4120, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af2ec644-9131-4620-8a77-80c55a8823df", + "pk": "9556f0ac-ee1a-4fca-b143-639dde76b790", "fields": { - "question": 384, - "contribution": 3755, + "question": 345, + "contribution": 3941, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af304474-2de4-4268-b071-447c36eac0b5", + "pk": "956145d5-a1f3-4334-b715-871fd794c334", "fields": { - "question": 335, - "contribution": 4152, - "answer": 3, - "count": 4 + "question": 333, + "contribution": 1283, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af305eb2-8521-4f04-9934-6b243acc2bca", + "pk": "95677767-bc1f-4012-8cdd-d95f522cb977", "fields": { - "question": 348, - "contribution": 1205, + "question": 359, + "contribution": 1807, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af3567c3-6101-4e39-a83c-97084944f75f", + "pk": "9571ff1a-554b-429d-b0ba-3bbbcc4b9c54", "fields": { - "question": 339, - "contribution": 1200, - "answer": 1, - "count": 2 + "question": 472, + "contribution": 3394, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af3aafb8-bf72-458b-8d79-c7b65c1d78b7", + "pk": "9574e73f-8d89-46d5-aed1-2dc16227361d", "fields": { - "question": 328, - "contribution": 1777, - "answer": 1, - "count": 3 + "question": 316, + "contribution": 3472, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af5b447d-59b3-4a36-a560-5d372a4160ad", + "pk": "957b76aa-d778-45ac-8072-ca92e62de8b2", "fields": { - "question": 321, - "contribution": 1634, - "answer": 2, - "count": 10 + "question": 258, + "contribution": 4052, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af655087-bbeb-4a34-895f-d400b7292b00", + "pk": "95821a7f-c506-48e5-9efe-8a871504fc95", "fields": { - "question": 463, - "contribution": 3786, - "answer": 2, - "count": 1 + "question": 366, + "contribution": 4204, + "answer": 1, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af675bdb-79ed-4945-9c04-b24abb504ea6", + "pk": "9582dc34-d783-4e55-b95c-f37ea9937597", "fields": { - "question": 259, - "contribution": 822, - "answer": 1, - "count": 5 + "question": 472, + "contribution": 3434, + "answer": 5, + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af6fdb9b-0aed-4167-af77-d70208ea2086", + "pk": "95864e0d-f5e0-4231-b81f-9426ee66df08", "fields": { - "question": 475, - "contribution": 886, - "answer": 1, - "count": 5 + "question": 476, + "contribution": 4138, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af71aa5a-1d02-4c63-aa90-36e8c99908e4", + "pk": "9588f270-47cf-4cbd-8f43-a9815f23502b", "fields": { - "question": 343, - "contribution": 3609, + "question": 317, + "contribution": 4138, "answer": 2, - "count": 1 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af79250c-54aa-40a7-bd42-9d651f33e4b9", + "pk": "959905ab-452b-4925-91aa-de852e534277", "fields": { - "question": 331, - "contribution": 3434, - "answer": -2, - "count": 1 + "question": 333, + "contribution": 1284, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af7c1824-411b-4cc7-9240-b651c908b19e", + "pk": "95a2da8d-b6d1-46ff-8647-70c12485cdd3", "fields": { - "question": 320, - "contribution": 3721, + "question": 259, + "contribution": 1612, "answer": 5, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af7ed26c-9d9a-4dbb-a949-d3a5b768d29d", + "pk": "95b017e3-98cb-46ec-ac83-a0192d1a87df", "fields": { - "question": 322, - "contribution": 3725, - "answer": 1, - "count": 7 + "question": 368, + "contribution": 1659, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af857bf6-7c99-401a-aec2-5a86d3bed568", + "pk": "95b891c2-d04e-4eb6-aadc-f54a335acfed", "fields": { - "question": 322, - "contribution": 3422, - "answer": 2, - "count": 7 + "question": 473, + "contribution": 804, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af865713-32bd-40a8-b29d-48824d6f9978", + "pk": "95c0c7f2-3eb0-4d72-8c13-c68472baa396", "fields": { - "question": 325, - "contribution": 3473, + "question": 362, + "contribution": 3929, "answer": 1, - "count": 6 + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af8b448e-1b79-4b3c-9fdc-b9e8ed75b5cb", + "pk": "95da3ac2-db28-4e25-9582-5cc0cc2e1376", "fields": { - "question": 319, - "contribution": 4046, - "answer": 4, + "question": 353, + "contribution": 3985, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af8e3acc-b4c6-4131-99af-3c0702e20462", + "pk": "95dcd4d3-202d-48e9-b458-fc61e41039c7", "fields": { - "question": 476, - "contribution": 822, - "answer": -2, + "question": 360, + "contribution": 3921, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "af9729cd-62d6-4d93-b1ff-2b93ef9fb9ca", + "pk": "95e093ac-a59d-4612-883f-df1bfef739ed", "fields": { - "question": 345, - "contribution": 1663, + "question": 349, + "contribution": 887, "answer": 1, "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "afa29fc9-94ef-4a1e-bb95-19e7ed33d396", + "pk": "95e33599-0d56-4719-9963-c73d403f01bf", "fields": { - "question": 328, - "contribution": 4203, + "question": 347, + "contribution": 3528, "answer": 2, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "afa73fc0-85fa-49bf-8b61-09bfb70901e2", + "pk": "95f0ccaa-39e6-4ab1-a5f7-61c316493044", "fields": { - "question": 319, - "contribution": 822, - "answer": 5, + "question": 345, + "contribution": 3383, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "afba544c-2fe0-4437-b754-b008b036cb31", + "pk": "95f25751-ecbb-4193-b983-016e9bea9657", "fields": { - "question": 363, - "contribution": 3942, - "answer": 2, + "question": 338, + "contribution": 1702, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "afbf6eea-0cde-4430-9468-bf7dea96c396", + "pk": "95f3b7b3-3f99-403b-90c9-288c36ee821a", "fields": { - "question": 336, - "contribution": 1734, - "answer": 2, + "question": 335, + "contribution": 3936, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "afc84d0e-8bcb-42e5-a692-5458239727a9", + "pk": "960353e2-6585-4d8e-a672-bc0dd991ce8d", "fields": { - "question": 326, - "contribution": 1777, - "answer": 5, - "count": 1 + "question": 335, + "contribution": 3552, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "afed63ed-491a-4e0c-b207-18dcca91dedb", + "pk": "960f9f07-322c-4917-bbdd-b6d9c3794c77", "fields": { - "question": 316, - "contribution": 3665, - "answer": 4, - "count": 1 + "question": 327, + "contribution": 4101, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "aff1b9f4-44ad-4faf-b05b-81100f78245b", + "pk": "96169719-7de8-4257-9f01-19724c656ac7", "fields": { - "question": 476, + "question": 472, "contribution": 4084, - "answer": 0, - "count": 29 + "answer": 5, + "count": 36 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b0003f67-b6e6-41d3-80f2-759027b87c05", + "pk": "96172f80-eb54-4545-8ed4-ea7e2f92aaac", "fields": { - "question": 258, - "contribution": 4138, - "answer": 2, - "count": 16 + "question": 343, + "contribution": 1235, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b002f152-b685-469b-9fb9-a7f87b0e435e", + "pk": "96193ac4-1246-4cf0-838e-abdc51ff6ca5", "fields": { - "question": 257, - "contribution": 3679, - "answer": 3, + "question": 322, + "contribution": 862, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b00d34e8-c0e9-4071-ac80-e77074729d1d", + "pk": "9619d6b7-f8e9-4540-b8a5-5a9a4f9b55fe", "fields": { - "question": 361, - "contribution": 1810, - "answer": 2, - "count": 4 + "question": 473, + "contribution": 4100, + "answer": -2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b015ba2f-9ea9-43e3-862b-9a11d9505deb", + "pk": "9624c40e-497f-4c8e-9883-c5c79ebe80ea", "fields": { - "question": 329, - "contribution": 3722, - "answer": 2, - "count": 2 + "question": 476, + "contribution": 1658, + "answer": 0, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b02b4ce6-eddd-412e-9eeb-4ec9206c6519", + "pk": "962651ef-c561-4292-89a9-2845e2e14a3c", "fields": { - "question": 331, - "contribution": 3462, - "answer": 3, - "count": 1 + "question": 349, + "contribution": 841, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b03b7bc0-caff-4f9f-89c3-616fb7b9d10c", + "pk": "9628a48d-3b51-401d-8782-f74825359d32", "fields": { "question": 473, - "contribution": 3645, + "contribution": 4084, "answer": -2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b03c7550-fd3d-4cec-9888-740473c20676", + "pk": "9629d68e-b695-4c06-a42c-ca64aca49bd8", "fields": { - "question": 436, - "contribution": 4090, + "question": 327, + "contribution": 4153, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b0478eb4-918a-4923-afa3-056a8f431424", + "pk": "962b5601-c51c-4e75-a44e-5847ea72bdaa", "fields": { - "question": 368, - "contribution": 3885, - "answer": 1, - "count": 3 + "question": 432, + "contribution": 4008, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b055337a-2fa8-4d94-9ca9-81030ebb52d1", + "pk": "9645e765-ab48-455a-bd50-c2919c409171", "fields": { - "question": 257, - "contribution": 822, - "answer": 1, - "count": 5 + "question": 319, + "contribution": 912, + "answer": 2, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b05c3778-6f05-40ad-bc8a-edf8bdc892d6", + "pk": "96496f61-39fc-4297-b9c3-24735c15f8e8", "fields": { - "question": 363, - "contribution": 3916, - "answer": 1, - "count": 6 + "question": 367, + "contribution": 3472, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b05f1c19-4624-4952-af2f-c926f62379f2", + "pk": "965b69db-bec7-4a51-95c7-831a0e14c44e", "fields": { - "question": 348, - "contribution": 3606, - "answer": 4, - "count": 1 + "question": 316, + "contribution": 3721, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b06c80e4-b537-4eff-8d5f-a7a345a6253f", + "pk": "9660ee74-f812-49e8-9390-a4a85531d9ec", "fields": { - "question": 325, - "contribution": 3722, + "question": 258, + "contribution": 1668, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b0760844-acea-440f-a893-d24e7cd2d535", + "pk": "96685bf4-07c1-4f3f-a618-25c565c24e0d", "fields": { - "question": 361, - "contribution": 3942, - "answer": 4, + "question": 475, + "contribution": 1656, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b0916296-e9b5-4fda-8cfa-f46dd8da3c4b", + "pk": "9668b780-5eda-48b1-99ca-2f73d27628cb", "fields": { - "question": 343, - "contribution": 3451, - "answer": 3, - "count": 2 + "question": 477, + "contribution": 3666, + "answer": 0, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b09da0fb-cec7-4387-9b0d-20c645ac573f", + "pk": "966daaec-d728-4e9c-8049-48f27688a045", "fields": { - "question": 347, - "contribution": 1749, + "question": 327, + "contribution": 823, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b0a32126-325b-421b-980c-648c0dd61a44", + "pk": "966edc26-5195-4fec-be82-4e92429d8c65", "fields": { - "question": 337, - "contribution": 1694, - "answer": 4, + "question": 343, + "contribution": 1246, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b0b8c0e1-8a51-446c-a660-1ff30f6081c1", + "pk": "96789cb9-25dd-426e-b280-3b1077638baf", "fields": { - "question": 349, - "contribution": 3515, - "answer": 1, - "count": 8 + "question": 345, + "contribution": 4123, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b0d5095b-95a2-419d-a792-77813ada0b9b", + "pk": "967d51dc-ccb5-4117-a75b-94fd43402501", "fields": { - "question": 348, - "contribution": 3545, - "answer": 2, - "count": 3 + "question": 369, + "contribution": 1804, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b0db0472-805e-4dc8-bd1b-1545b13ffe39", + "pk": "969ace5e-4b0d-4749-aa42-5bca95694c21", "fields": { - "question": 340, - "contribution": 1644, + "question": 389, + "contribution": 3711, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b0e253a8-4891-420e-9d6c-ad03157d3721", + "pk": "96a902f0-9c7c-462a-aa07-58f7ab1a7bbb", "fields": { - "question": 332, - "contribution": 4155, - "answer": 2, + "question": 460, + "contribution": 4283, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b0f0c01b-37c9-42d9-a916-28b8d58c41eb", + "pk": "96bdcd70-babd-46f0-b01e-3f6486e08664", "fields": { - "question": 333, - "contribution": 3932, + "question": 328, + "contribution": 1287, "answer": 2, - "count": 4 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b0fda722-e8a4-465c-9fe4-1d2f53b9ca9b", + "pk": "96c5b1b0-4183-4aa5-9321-cc3c89f11c1c", "fields": { - "question": 345, - "contribution": 4003, - "answer": 1, + "question": 320, + "contribution": 1634, + "answer": 3, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1290660-f273-40f8-b845-13811850e9b6", - "fields": { - "question": 326, - "contribution": 1802, - "answer": 2, - "count": 9 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "b13cdc00-05dd-46a2-afac-728e127e7cfd", + "pk": "96c939d6-65f3-42de-8938-eee56cd4f1fb", "fields": { - "question": 327, - "contribution": 3473, + "question": 348, + "contribution": 3555, "answer": 1, - "count": 7 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b140108b-3a3b-4dd5-8433-2b66fc9ad91a", + "pk": "96d32495-c539-49db-b949-9d5e0c803d16", "fields": { - "question": 370, - "contribution": 1845, - "answer": 5, - "count": 1 + "question": 329, + "contribution": 913, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b142beaa-e9a4-490d-84bd-a4b4c005bcbc", + "pk": "96d5c811-6fe3-49e4-8d0e-bdee6faa15b6", "fields": { - "question": 473, - "contribution": 1634, - "answer": -3, - "count": 4 + "question": 403, + "contribution": 4177, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b143c6a2-82e3-4485-aa47-e5b991fa260f", + "pk": "96db7c12-dd4d-41ec-9eb7-90dbdc8a1b42", "fields": { - "question": 333, - "contribution": 1217, + "question": 327, + "contribution": 1287, "answer": 1, - "count": 31 + "count": 26 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b14b123d-66a5-4589-a68c-1725167ecd39", + "pk": "96dca4bf-a0c9-4e20-8782-97d001e2f8f1", "fields": { - "question": 475, - "contribution": 3372, + "question": 360, + "contribution": 1825, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b15d8be8-2045-4255-8f16-50639f9ea5e7", + "pk": "96de80fe-920e-447c-ac38-b20d3d151147", "fields": { - "question": 333, - "contribution": 4152, - "answer": 1, - "count": 11 + "question": 353, + "contribution": 3985, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b173523b-f4de-4957-8ca7-eff94ab08dbe", + "pk": "96e0133a-314a-4620-aac5-ebc2cef31f9f", "fields": { - "question": 325, - "contribution": 3885, - "answer": 2, + "question": 354, + "contribution": 1782, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1746d98-01c2-429c-9fb7-dbc0c47581ce", + "pk": "96f583be-9134-434d-aef9-cf31fdc4d965", "fields": { - "question": 476, - "contribution": 3390, + "question": 319, + "contribution": 1658, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b17d057b-841d-40da-9b26-088576c60d23", - "fields": { - "question": 316, - "contribution": 4040, - "answer": 4, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "b1802089-64f9-4f3c-b852-86e6a0c23891", + "pk": "96fc04f8-add6-4195-85bd-ed87decc10be", "fields": { - "question": 319, - "contribution": 1724, - "answer": 2, + "question": 339, + "contribution": 3745, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1827cd2-57eb-4f15-b4ec-3894ed860839", + "pk": "96fe6de1-b6b4-45c3-aa5c-07938a283234", "fields": { - "question": 349, - "contribution": 3610, + "question": 323, + "contribution": 822, "answer": 1, - "count": 3 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b183359a-4c3c-4362-a88c-a833856d43c0", + "pk": "97064d2e-272d-4891-8a24-1b5be77885ee", "fields": { - "question": 360, - "contribution": 3918, - "answer": 1, + "question": 476, + "contribution": 4084, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b18bb0cb-8bd0-4902-8844-b99f77895993", + "pk": "9707a56e-53a2-4b88-a8ca-ad50d179129b", "fields": { - "question": 414, - "contribution": 3984, - "answer": 1, - "count": 1 + "question": 262, + "contribution": 3721, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1959407-ee4e-490a-8d48-764594e9ea37", + "pk": "970aeafd-3e69-4f7b-9fae-f4aefb714a0c", "fields": { - "question": 347, - "contribution": 4189, - "answer": 2, + "question": 335, + "contribution": 3886, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1975167-b3c4-426e-86a1-3911ed2b86f5", + "pk": "971145b5-6404-4c23-9d4d-508b80c17310", "fields": { - "question": 335, - "contribution": 3553, - "answer": 4, + "question": 463, + "contribution": 3453, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1a00206-5b8e-40ff-bb8d-d6a7fde4307d", + "pk": "9712bd07-ae23-4dad-9267-3a29c993931b", "fields": { - "question": 347, - "contribution": 3894, + "question": 345, + "contribution": 3609, "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1a8a402-0080-4e65-b612-edbe53999379", + "pk": "9717b828-603d-4395-9758-0a5b91012484", "fields": { - "question": 371, - "contribution": 3882, - "answer": 2, - "count": 3 + "question": 340, + "contribution": 862, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1aca4d2-9737-4259-b35c-0485bf18092c", + "pk": "972d6322-47e2-4b10-b68d-04cad2628b42", "fields": { - "question": 475, - "contribution": 858, - "answer": 0, - "count": 6 + "question": 428, + "contribution": 4152, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1acecf1-a009-49fe-8222-c8e2b7a115b8", + "pk": "9735a56a-ae6b-40a4-8e3e-7e2a5997680e", "fields": { - "question": 336, - "contribution": 3482, - "answer": 1, - "count": 1 + "question": 352, + "contribution": 804, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1b200bf-361f-4277-b861-efa49303e1d1", + "pk": "9744fd82-3ea6-4e9c-914e-9f3f4aa0f875", "fields": { - "question": 328, - "contribution": 1154, - "answer": 4, + "question": 477, + "contribution": 1288, + "answer": 1, "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1bb88df-dbeb-4b2e-a553-eb21d9d3ada0", + "pk": "974cb9d2-b7a1-48fa-9c13-8d72099d203e", "fields": { "question": 434, - "contribution": 4052, + "contribution": 4090, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1c1b8a9-4fc0-4614-81e9-4439618be4d3", + "pk": "974cf265-b0eb-4456-8065-2af184403251", "fields": { - "question": 346, - "contribution": 1249, - "answer": 2, - "count": 1 + "question": 367, + "contribution": 4128, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1c4f4bd-27c6-43f8-8fd4-1fbfd0750e2d", + "pk": "9753baf6-8fd4-48c5-9880-d4db0c85ae52", "fields": { - "question": 477, - "contribution": 823, - "answer": -1, - "count": 4 + "question": 476, + "contribution": 1634, + "answer": 0, + "count": 24 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1dadf93-ca94-4b28-b11b-fa74e46fb846", + "pk": "9753d53f-9ade-474c-b570-cba3baaab81c", "fields": { - "question": 344, - "contribution": 3509, - "answer": 1, - "count": 1 + "question": 473, + "contribution": 4090, + "answer": -2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1e9a019-5898-4a16-9ed1-5b84a28db3f9", + "pk": "975440c1-7ca2-42f3-9c71-5c16e48b39ae", "fields": { - "question": 349, - "contribution": 3704, + "question": 354, + "contribution": 3834, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1e9c7d4-9a40-41bf-9dc0-e59d01344f3c", + "pk": "9757e323-02c0-47aa-9edd-a03ecad70aba", "fields": { - "question": 340, - "contribution": 3645, - "answer": 2, - "count": 4 + "question": 255, + "contribution": 4084, + "answer": 3, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1ee9dc5-23fa-40cf-ac76-8e78c4528555", + "pk": "9761e0a5-f12f-4883-891a-b694ed4f6949", "fields": { - "question": 343, - "contribution": 4192, - "answer": 1, - "count": 4 + "question": 475, + "contribution": 832, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b1f29967-969e-4813-a69a-0185bacd2df3", + "pk": "9762c8d7-7acb-4716-b699-2513cff07acc", "fields": { - "question": 354, - "contribution": 1776, - "answer": 4, + "question": 343, + "contribution": 3606, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2016fcb-17be-4842-8462-fe39ba997c15", + "pk": "97653356-f551-4090-8573-de205a2d738b", "fields": { - "question": 257, - "contribution": 4118, + "question": 458, + "contribution": 4141, "answer": 1, - "count": 7 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b20ba6c2-df57-4a0a-8ae4-afdae9d017e8", + "pk": "97779f99-c0f4-4cbe-bc5e-2b1c758794ba", "fields": { - "question": 341, - "contribution": 1638, - "answer": 1, - "count": 5 + "question": 333, + "contribution": 3593, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b20d4e45-6457-4e1e-b514-010aa0dc42da", + "pk": "9777aad9-7b68-41e0-985c-e0de97610091", "fields": { - "question": 362, - "contribution": 3917, + "question": 259, + "contribution": 1634, "answer": 1, - "count": 2 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b21bb8d8-ce9d-4934-ab25-c6ad5f1dd61a", + "pk": "977ca6bb-791f-45a3-9125-a10c0ab0f688", "fields": { - "question": 344, - "contribution": 1249, + "question": 367, + "contribution": 3434, "answer": 1, - "count": 2 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b21d2d36-b748-4d5c-b4c6-1d68fcd86bf0", + "pk": "9785ccd4-97a0-4930-9fed-77d6a93c1c28", "fields": { - "question": 335, - "contribution": 1812, - "answer": 2, - "count": 3 + "question": 345, + "contribution": 3728, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b23c3789-cd0d-4dbe-b51c-bdc754f07565", + "pk": "9793c229-1404-49ec-b51c-084f704abccf", "fields": { - "question": 435, - "contribution": 4140, - "answer": 5, - "count": 1 + "question": 319, + "contribution": 4100, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b23c75f8-a01c-47ff-9fc6-065a1543b3a0", + "pk": "97959787-ca3e-4e50-b24a-db533d7039bc", "fields": { - "question": 322, - "contribution": 3665, - "answer": 4, + "question": 475, + "contribution": 1662, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b242f71e-bde9-437e-9f9b-a76325953c88", + "pk": "979639a0-08a9-4c3f-a25b-67b2f4fe0a7c", "fields": { - "question": 325, - "contribution": 3463, + "question": 255, + "contribution": 4046, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b249fc8a-f898-44d7-9fbf-c62f80e0236f", + "pk": "9796555e-b284-47d7-8aab-1c23fffd868b", "fields": { - "question": 348, - "contribution": 3704, + "question": 316, + "contribution": 1837, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b25104a8-e305-44de-bef5-4b3be9c6f119", + "pk": "979f362c-ce7b-463a-b408-e64083c94401", "fields": { - "question": 328, - "contribution": 4101, - "answer": 3, - "count": 4 + "question": 327, + "contribution": 1802, + "answer": 2, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2549355-04a9-4ae7-b5cb-4cf7c2bfb8a5", + "pk": "97a0c420-7f6e-4e70-bbea-be714d22f913", "fields": { - "question": 477, - "contribution": 1725, - "answer": 0, - "count": 3 + "question": 332, + "contribution": 1812, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b25e6f4b-9e3d-495c-b2ad-0a1a0c7fa1ba", + "pk": "97a19e9e-47cb-4ccf-a5e7-a99ea0286b16", "fields": { - "question": 347, - "contribution": 1235, - "answer": 1, - "count": 5 + "question": 379, + "contribution": 3781, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2611627-abc1-447f-b5fd-8d8853e84cdd", + "pk": "97aa78b9-ba18-48a0-8620-0db569e09ba4", "fields": { - "question": 349, - "contribution": 3610, - "answer": 3, - "count": 1 + "question": 356, + "contribution": 1781, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b26ca43f-6ecd-4bd2-a8d9-a7b8c388e2e3", + "pk": "97af64f5-419b-4908-8c08-dd6cee49e47c", "fields": { - "question": 345, - "contribution": 1824, + "question": 331, + "contribution": 822, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b272b96d-a667-4934-a9b3-05f2127f06e0", + "pk": "97b3b46b-7c1e-48eb-8d5c-32758f1ec9a9", "fields": { - "question": 255, - "contribution": 4118, - "answer": 2, - "count": 3 + "question": 369, + "contribution": 1804, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b272decb-1915-4543-b8fc-bc4d09b438f3", + "pk": "97b5b633-49d0-4595-9989-082de152bdba", "fields": { - "question": 339, - "contribution": 868, - "answer": 0, - "count": 3 + "question": 329, + "contribution": 1798, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2847461-b072-44b3-b336-7899880f293b", + "pk": "97cef365-16a9-4366-b764-55f042978334", "fields": { - "question": 341, - "contribution": 1638, - "answer": 4, - "count": 2 + "question": 319, + "contribution": 864, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b28a5394-2fcd-4626-85e3-6cc6f75905d7", + "pk": "97e29b25-df7a-4746-ad38-ba331f833d32", "fields": { - "question": 398, - "contribution": 3755, - "answer": 4, + "question": 315, + "contribution": 4116, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b28efabe-805f-49f2-8931-600bf9b22ff7", + "pk": "97e9e1d2-77d3-408f-815e-e20ab05fa191", "fields": { - "question": 344, - "contribution": 3518, - "answer": 2, - "count": 1 + "question": 473, + "contribution": 4116, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b28fdbc0-fb76-4f6d-a730-1c7a7af08af5", + "pk": "97ebbfa3-ef2a-4d09-9153-5abb55e0dd4e", "fields": { "question": 353, - "contribution": 1256, + "contribution": 3835, "answer": 1, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b29092ea-3dab-47b4-b46f-54e4e6caf96c", + "pk": "97f28abc-244f-4229-84be-d5ad676dd128", "fields": { - "question": 432, - "contribution": 4052, - "answer": 4, - "count": 1 + "question": 260, + "contribution": 3422, + "answer": 1, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b29117a4-6a2d-48d8-b4f0-2e23eac7582f", + "pk": "97f44a9e-393e-4700-b7d4-096d605324be", "fields": { - "question": 368, - "contribution": 3391, + "question": 319, + "contribution": 912, "answer": 1, - "count": 1 + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b294d1c3-23ef-488b-b587-6fb5917e324e", + "pk": "980a8fef-867b-488a-90ce-16c0404d41cc", "fields": { - "question": 359, - "contribution": 1826, + "question": 477, + "contribution": 1287, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b29f1ce5-ff46-4519-b505-526320b10bd8", + "pk": "980c9a23-5a71-4ceb-be86-05091758ef03", "fields": { - "question": 359, - "contribution": 1836, - "answer": 3, + "question": 321, + "contribution": 1680, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2a8a771-2e66-4290-9a5c-cc7be1e131d0", + "pk": "98106bd7-cf71-444d-8941-cdad2b982db5", "fields": { - "question": 366, - "contribution": 4154, - "answer": 3, + "question": 355, + "contribution": 4268, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2b15042-6fe7-42ab-950a-2f260f94d6e9", + "pk": "981a450e-3eb9-41a5-ac70-ef8bf1e37eed", "fields": { - "question": 260, - "contribution": 4022, - "answer": 3, - "count": 1 + "question": 367, + "contribution": 4118, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2c10d48-6b11-4046-b458-c8efd13f271d", + "pk": "981b5703-a20e-494d-a071-d9c69011d5b5", "fields": { - "question": 475, - "contribution": 1638, + "question": 328, + "contribution": 3463, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2cfee9e-aabf-4eee-b000-636042cc2b88", + "pk": "9828f256-ad2a-4b70-81be-cd67288229ca", "fields": { - "question": 328, - "contribution": 881, - "answer": 4, - "count": 8 + "question": 398, + "contribution": 3711, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2d169ee-56eb-47fb-8d9c-7775a67aad1f", + "pk": "98322b93-f8d7-4c31-b9b8-ee7e116ac601", "fields": { "question": 335, - "contribution": 837, + "contribution": 1217, + "answer": 1, + "count": 30 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "98330960-fef5-4cbc-acc5-d96212396bed", + "fields": { + "question": 347, + "contribution": 1873, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2dcbbbb-2d62-4e6e-a2a5-d1c783f4673d", + "pk": "98353ff3-365e-462d-934e-8b559ce61b84", "fields": { "question": 255, - "contribution": 4138, + "contribution": 3721, "answer": 5, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2e1f691-e346-42b1-add4-34599c8ee830", + "pk": "98359f6f-87c7-45ee-9f98-8ea227ab8f81", "fields": { - "question": 336, - "contribution": 3785, + "question": 345, + "contribution": 3899, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2e9825d-9040-4dcc-87fa-378ac9b7b752", + "pk": "983aa0ee-82d9-48bb-b7fc-b0aa8bf2b2d1", "fields": { - "question": 326, - "contribution": 4203, + "question": 347, + "contribution": 1249, + "answer": 1, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "984b7f69-640b-429a-8806-4592e532dd7f", + "fields": { + "question": 349, + "contribution": 3546, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2ea2297-3395-4a68-9035-2b256fcc163f", + "pk": "9851283c-53d7-4d75-ba6a-f44bda27d1a5", "fields": { - "question": 346, - "contribution": 3894, + "question": 341, + "contribution": 3735, "answer": 1, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2f15c42-3719-4814-81ee-2f2267cb581e", + "pk": "98517a23-4fde-424f-b473-ecba920c4f00", "fields": { "question": 348, - "contribution": 1645, - "answer": 2, + "contribution": 1828, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2f250ad-c3fc-4329-8244-13d29dcf3d72", + "pk": "98523ca8-7d31-4d35-95e1-182ba2b14024", "fields": { - "question": 356, - "contribution": 1154, - "answer": 4, + "question": 260, + "contribution": 3679, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b2fd63ff-dac7-4e97-8625-8cd6e11f2447", + "pk": "98537627-e4b2-44de-a0de-7b18399224cc", "fields": { - "question": 322, - "contribution": 4116, - "answer": 2, - "count": 4 + "question": 257, + "contribution": 908, + "answer": 3, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b304696a-02d1-4af6-b7da-3091829fed5b", + "pk": "98554ef9-2b0d-4c09-8e62-7cb715e7a5d4", "fields": { - "question": 361, - "contribution": 1805, - "answer": 5, - "count": 1 + "question": 328, + "contribution": 3726, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3128400-1f4b-419f-b543-3d157cc3b0ba", + "pk": "98653e05-efc0-433f-a2a4-6f50dc5e5fc1", "fields": { - "question": 323, - "contribution": 4118, - "answer": 1, - "count": 6 + "question": 476, + "contribution": 3721, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3156a9d-98a5-43c5-b5a0-9602fbfb6f3d", + "pk": "98772910-0349-46ed-a422-5c25c5bae1fe", "fields": { - "question": 473, - "contribution": 4084, + "question": 367, + "contribution": 4100, "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b31a29a1-279a-4f79-9386-7d173663d8a0", + "pk": "98896b59-9690-4942-a811-b7f78b0cb6df", "fields": { - "question": 346, - "contribution": 3608, - "answer": 1, - "count": 4 + "question": 336, + "contribution": 3821, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b32584ff-79ec-492f-9bd3-19c707eb9328", + "pk": "988d7e51-5c4b-483e-a1ec-e0a9f987ebf5", "fields": { - "question": 329, - "contribution": 3680, - "answer": 1, - "count": 15 + "question": 260, + "contribution": 3462, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b328ef62-567d-41af-9ea0-a9a0d88618ca", + "pk": "9897e762-e029-42a4-83f0-780dae05d552", "fields": { - "question": 331, - "contribution": 1634, - "answer": 1, - "count": 5 + "question": 356, + "contribution": 3712, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b329f444-915b-4f50-bff6-67ec430fddb5", + "pk": "98a9e720-56f8-4d1b-b7c1-26e030a8c59f", "fields": { - "question": 325, - "contribution": 4117, + "question": 344, + "contribution": 1246, "answer": 1, - "count": 11 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b32fb1a6-d5fa-4aec-9e50-92254fd29ba0", + "pk": "98ad12c8-e2ea-467e-8716-116ff1c09809", "fields": { - "question": 327, - "contribution": 1659, + "question": 336, + "contribution": 886, "answer": 2, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3416768-d930-443d-97c2-eb969c9d1fa2", + "pk": "98add13f-48be-40af-9e4b-700ee5119e61", "fields": { - "question": 368, - "contribution": 4047, + "question": 353, + "contribution": 1258, "answer": 1, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b34824c1-5ef9-4ece-b22d-6e0696a0cb60", + "pk": "98af8fca-009c-4db8-84c9-2f1d9e675102", "fields": { - "question": 332, - "contribution": 3882, + "question": 353, + "contribution": 1256, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b34badf0-085b-444b-a234-ddc0b1666689", + "pk": "98b461b6-86aa-4d5c-8710-524da98a3471", "fields": { - "question": 327, - "contribution": 885, + "question": 343, + "contribution": 919, "answer": 2, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3501e06-96a4-4d22-bff4-f77479ef1f54", + "pk": "98b98410-0ca0-4a9d-aab5-7ad9ec43efd9", "fields": { - "question": 316, - "contribution": 4116, - "answer": 4, - "count": 4 + "question": 326, + "contribution": 1778, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b355921e-652b-4c38-9d15-e7b01d070366", + "pk": "98cd3bb1-9818-4755-b770-a33a88113b42", "fields": { - "question": 361, - "contribution": 1827, - "answer": 3, - "count": 1 + "question": 322, + "contribution": 3721, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b37ee809-9699-4229-9931-9efd1226a270", + "pk": "98db909f-7ecc-43c7-86be-622962e3e38f", "fields": { - "question": 357, - "contribution": 3975, + "question": 355, + "contribution": 1256, "answer": 1, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3822e7e-5a60-428a-96e6-d651bf573fdd", + "pk": "98e41d2d-662c-493b-85b0-95f7e8bdef48", "fields": { - "question": 349, - "contribution": 1249, - "answer": 2, + "question": 347, + "contribution": 4189, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3847aba-727f-4b94-a58b-ec3c05d869d8", + "pk": "98e8eab9-6e3b-48b3-8915-ef47b7d966f2", "fields": { - "question": 477, - "contribution": 3884, - "answer": 0, + "question": 323, + "contribution": 4028, + "answer": 2, "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b387d1a8-6cae-4b45-ad42-663a7ae137d1", + "pk": "98fb670b-8f63-43e7-ac35-9149494729b4", "fields": { - "question": 322, - "contribution": 912, + "question": 317, + "contribution": 1658, + "answer": 1, + "count": 13 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "98fd6533-daf8-483c-bff5-546ff00705ec", + "fields": { + "question": 356, + "contribution": 3608, "answer": 2, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b39dd080-d172-4e24-9897-ae60d34beca3", + "pk": "9902e682-3785-4599-bad2-f7abe35e4e23", "fields": { "question": 338, - "contribution": 3404, - "answer": 3, - "count": 3 + "contribution": 3440, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3b1fe31-7169-446d-8fa1-9b2a2a50ce4c", + "pk": "9902effb-e78a-4cab-aacc-b604a310d449", "fields": { - "question": 347, - "contribution": 1250, - "answer": 3, + "question": 259, + "contribution": 884, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3bc796a-0c0c-4caa-83eb-66a15d8020bd", + "pk": "990a49a1-9431-4e4a-acb1-21c3a9982738", "fields": { - "question": 316, - "contribution": 4116, - "answer": 3, - "count": 3 + "question": 476, + "contribution": 1626, + "answer": 0, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3c0c285-168f-4673-834a-a51225321c8a", + "pk": "9917fd99-0a98-49d7-a454-7bf085b38cf8", "fields": { - "question": 338, - "contribution": 1656, - "answer": 2, - "count": 2 + "question": 346, + "contribution": 3367, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3d672f8-5049-4522-a1a4-b5f5309845a3", + "pk": "992289cd-a011-41bb-ac86-45595dedcd1e", "fields": { - "question": 316, - "contribution": 822, + "question": 401, + "contribution": 4119, "answer": 2, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3dee237-6f6a-4a52-913d-3485d03564ad", + "pk": "9922ef4d-d764-4262-93bc-d7216935b888", "fields": { - "question": 327, - "contribution": 1681, + "question": 329, + "contribution": 1635, "answer": 1, - "count": 3 + "count": 25 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3e69e3d-29d9-429f-b038-9a289b8d38fa", + "pk": "9929331f-646e-4705-84e0-f2fb6709d318", "fields": { - "question": 339, - "contribution": 3466, - "answer": 0, - "count": 3 + "question": 366, + "contribution": 3566, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3ec51b6-43aa-4eeb-b2ac-2f183c2f740b", + "pk": "99399e64-56e6-486c-96b8-2f8d5c694a3d", "fields": { - "question": 260, - "contribution": 884, + "question": 340, + "contribution": 3703, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3f1de25-71d4-4c10-baf3-1edd5c62bf69", + "pk": "993f4d3b-15e7-4676-82c8-93be4cc46c2d", "fields": { - "question": 356, - "contribution": 3848, + "question": 338, + "contribution": 3693, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3fbbeb0-f3ef-4df9-9bc8-0e7e74537a00", + "pk": "9940472f-0a6a-4a74-bd73-4b77ed9d5867", "fields": { - "question": 329, - "contribution": 1802, - "answer": 3, - "count": 9 + "question": 371, + "contribution": 3631, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b3ffad61-8b4d-4af8-9c08-d5ec9a4b12ab", + "pk": "9944696e-8ab0-4049-a53b-d837f9902500", "fields": { - "question": 331, - "contribution": 4120, + "question": 320, + "contribution": 1626, "answer": 3, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4057db4-280f-4d8b-b185-3721114f38c7", + "pk": "9946e8a4-eb06-458c-80bd-7e1c0ea86cbf", "fields": { - "question": 343, - "contribution": 1824, - "answer": 1, - "count": 5 + "question": 316, + "contribution": 4118, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b409101c-359f-4332-aff4-e0503f078596", + "pk": "994c492d-e372-41e1-b5aa-f494e83319b0", "fields": { - "question": 319, - "contribution": 4138, + "question": 336, + "contribution": 1694, "answer": 4, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b415ae6d-1b4c-44e0-891b-cd9d2e84a954", + "pk": "99556504-0ab1-4336-98f7-e186be5e3525", "fields": { - "question": 326, - "contribution": 3556, - "answer": 4, - "count": 4 + "question": 477, + "contribution": 3435, + "answer": 0, + "count": 29 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b42bf48e-9ee4-4279-af3a-4f1e09aa414e", + "pk": "99620d6d-c339-4e8f-9ccf-4849a981edf6", "fields": { - "question": 476, - "contribution": 880, - "answer": 2, - "count": 4 + "question": 323, + "contribution": 912, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b43d4446-8a0f-4ffa-8535-929c3c9ee5dd", + "pk": "997d80a8-6dca-4f4f-9b62-f82f21f7735e", "fields": { - "question": 316, - "contribution": 1626, - "answer": 5, - "count": 3 + "question": 473, + "contribution": 4128, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4410778-503a-4bf8-a309-e8439d5fdb34", + "pk": "9989e3e9-a0cc-490f-8f58-0be9dce4f1ec", "fields": { - "question": 340, - "contribution": 832, + "question": 321, + "contribution": 4116, "answer": 3, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4458277-26c0-48ec-9eda-97586f7f1244", + "pk": "99a0d917-ffb1-420e-bca4-2a11b36a41ad", "fields": { - "question": 403, - "contribution": 4177, - "answer": 1, - "count": 4 + "question": 322, + "contribution": 3434, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b45bace7-54a7-4ad2-aa1a-f7059e4b1cf4", + "pk": "99b81c0b-55f9-46b4-b6c9-4be73c3203c0", "fields": { "question": 367, - "contribution": 4138, + "contribution": 4116, "answer": 2, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b462839e-2d2b-4bde-ba81-6cf9e3f64092", + "pk": "99c27d60-0642-4162-a622-3d4fb9ed975b", "fields": { - "question": 355, - "contribution": 1845, - "answer": 2, + "question": 348, + "contribution": 1843, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b47442f2-0815-47f7-b3e4-05b59a16818c", + "pk": "99c2ea30-6702-4a11-ba54-9c95ed70ef2d", "fields": { - "question": 472, - "contribution": 4128, + "question": 322, + "contribution": 4120, "answer": 1, - "count": 6 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b487f1c1-9762-42f8-bbc4-45b8ce534142", + "pk": "99c85daf-23ad-47c8-8762-2ad0c1e040e5", "fields": { - "question": 344, - "contribution": 1246, - "answer": 5, - "count": 5 + "question": 371, + "contribution": 4152, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4931606-cdb4-4141-a61b-f261c38194a7", + "pk": "99cd2f00-23bb-4ddc-807f-41008c3898c4", "fields": { - "question": 356, - "contribution": 1154, - "answer": 1, - "count": 20 + "question": 458, + "contribution": 4073, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4a96602-8d81-480a-84db-b5defbcdfc49", + "pk": "99cecc3d-08cd-46eb-8dea-fdbbd820f12c", "fields": { - "question": 335, - "contribution": 3553, - "answer": 5, - "count": 4 + "question": 257, + "contribution": 3721, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4a9f2ee-05a5-4d6b-b355-54673ae75d00", + "pk": "99d47817-34ca-4400-a693-b717a7e22b85", "fields": { - "question": 344, - "contribution": 3912, - "answer": 4, + "question": 396, + "contribution": 3775, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4aa2823-d289-4576-94ed-a1e61730f29b", + "pk": "99e4317e-f55a-494f-aa48-b3fe82d370c5", "fields": { - "question": 459, - "contribution": 3786, + "question": 329, + "contribution": 3530, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4ad771a-adec-4629-b7ea-d226e16bd697", + "pk": "99e871f8-5886-470b-a2fe-69fd6abef0a0", "fields": { - "question": 477, - "contribution": 3556, - "answer": 3, - "count": 1 + "question": 320, + "contribution": 1724, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4b22659-705c-45e7-92d0-15729641d423", + "pk": "99f49399-0b1a-4583-8df8-bd284ed1e1ff", "fields": { - "question": 260, - "contribution": 3474, + "question": 472, + "contribution": 3406, "answer": 5, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4b61bef-5915-4be8-aada-80864046ffc6", + "pk": "99f499eb-fb74-4bb8-800d-6cfb7d63f5ca", "fields": { - "question": 332, - "contribution": 3552, - "answer": 5, + "question": 343, + "contribution": 3900, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4b9bc84-c492-4f92-8574-4fe71119f904", + "pk": "99f9cce0-cad1-43ef-8f97-0bc4c74475a3", "fields": { - "question": 403, - "contribution": 3646, - "answer": 1, - "count": 7 + "question": 255, + "contribution": 4100, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4c15522-5c4f-47c1-b353-d3fcae9c33ea", + "pk": "99fae9f0-817a-4b42-963c-32a08b4bc963", "fields": { - "question": 377, - "contribution": 3755, - "answer": 2, - "count": 1 + "question": 346, + "contribution": 4187, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4d40274-e507-4d6a-bf9d-7c2d04582072", + "pk": "9a0779cb-67c5-4b19-8e4f-0ad4fe5b9439", "fields": { - "question": 403, - "contribution": 4041, - "answer": 5, + "question": 345, + "contribution": 1881, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4d85c8b-dae2-40f1-9f46-434afaa2eddc", + "pk": "9a106716-dbb3-4de8-b498-6f0744bbdc7f", "fields": { - "question": 347, - "contribution": 1809, - "answer": 3, - "count": 1 + "question": 477, + "contribution": 4085, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4df6f82-fe1e-4a2e-ace7-e08cf91f70b9", + "pk": "9a1f2e46-e518-4aad-91e0-873066ebefae", "fields": { - "question": 349, - "contribution": 1863, - "answer": 1, + "question": 344, + "contribution": 1249, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4e670ba-5470-4dee-a0af-e307cf2d3cb0", + "pk": "9a25905d-e1d5-4343-ad92-6cedfa970e14", "fields": { - "question": 349, - "contribution": 3607, - "answer": 3, + "question": 327, + "contribution": 4047, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b4e81ff9-0942-47f1-8fbd-fc2a005d0f26", + "pk": "9a277a52-bbb9-48f9-8a8e-bc1c0a7c9ad8", "fields": { - "question": 344, - "contribution": 887, - "answer": 3, + "question": 347, + "contribution": 3606, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b501d0d2-4d39-4a2b-812c-2c40c4176719", + "pk": "9a30e67e-41ce-4c0f-95f2-59141b7e2e76", "fields": { - "question": 327, - "contribution": 1798, + "question": 345, + "contribution": 4146, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b50566b3-f92f-4dba-9594-a117adbfa3c9", + "pk": "9a3b436b-a14e-4a88-947b-bf290eabef6e", "fields": { - "question": 316, + "question": 319, "contribution": 3406, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b505838f-76eb-4dbe-bfd3-87528e347863", + "pk": "9a4d8a93-3950-4699-88c0-f1cfb8f40c21", "fields": { - "question": 367, - "contribution": 1724, - "answer": 3, - "count": 1 + "question": 349, + "contribution": 1842, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5103faf-9708-48b1-9768-2a5841313d01", + "pk": "9a50129d-c707-4d0c-a76f-c5d86f3d35d5", "fields": { - "question": 316, - "contribution": 4084, - "answer": 1, - "count": 10 + "question": 255, + "contribution": 880, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5131475-e964-4347-9729-4bcae0d2605b", + "pk": "9a567275-785b-45b2-a58a-b025ea0c2e94", "fields": { - "question": 351, - "contribution": 864, - "answer": 1, - "count": 7 + "question": 360, + "contribution": 3893, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b519b960-092b-4286-a1b9-1898f380b478", + "pk": "9a57f209-7703-44dc-9c17-c8807dd986c7", "fields": { - "question": 341, - "contribution": 4002, - "answer": 3, + "question": 345, + "contribution": 1842, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b51d2f4b-ca90-467c-8f7f-16a09c2b6d77", + "pk": "9a58ed75-b9a3-4053-bee7-4e8573abe38c", "fields": { - "question": 354, - "contribution": 1258, - "answer": 1, - "count": 5 + "question": 319, + "contribution": 3390, + "answer": 3, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b52b03f2-a86d-4b3b-981e-f75124278795", + "pk": "9a590826-efde-4a38-81a3-0bd4669acf5a", "fields": { - "question": 346, - "contribution": 4123, - "answer": 2, + "question": 341, + "contribution": 3508, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b53152eb-f24e-4daa-9a10-378853ef2e92", + "pk": "9a5a30d9-ee61-4a76-9195-54aca6e7d67a", "fields": { - "question": 370, - "contribution": 3835, - "answer": 2, + "question": 363, + "contribution": 3921, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b539ecf7-74f3-4338-a491-193c24709854", + "pk": "9a5a3c62-9778-428e-a582-e28d13e3c7ee", "fields": { - "question": 329, - "contribution": 881, - "answer": 1, - "count": 3 + "question": 349, + "contribution": 1842, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b53fdfdb-bced-4a90-8617-828e589043fd", + "pk": "9a638d1e-3aae-4c88-8fbd-8d0c2787b767", "fields": { - "question": 336, - "contribution": 1638, - "answer": 2, + "question": 327, + "contribution": 4152, + "answer": 3, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b544f02b-fb58-42b1-b40a-dda1666ada9f", + "pk": "9a66399d-3802-490c-94c9-8999d5967504", "fields": { - "question": 317, - "contribution": 4100, - "answer": 1, - "count": 4 + "question": 322, + "contribution": 880, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b54c2f02-a67d-4b0e-8118-5070455e6c3d", + "pk": "9a68a1d1-113f-4737-80c8-ea484d3a89fc", "fields": { - "question": 322, - "contribution": 1612, - "answer": 3, - "count": 8 + "question": 338, + "contribution": 3440, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5542a49-0f2a-4bc8-a201-421090d30d1c", + "pk": "9a6ff049-38b1-466a-b5bd-b91ca478548f", "fields": { - "question": 329, - "contribution": 1154, + "question": 260, + "contribution": 4022, "answer": 1, - "count": 22 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b55ee41e-8d9e-412f-bdb7-5c0fe098cc8d", + "pk": "9a71ab14-6cce-487b-8a41-c8ca94ea769f", "fields": { - "question": 383, - "contribution": 3711, - "answer": 2, - "count": 1 + "question": 345, + "contribution": 3528, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b56b56f3-2f2b-416c-9d70-b768af163046", + "pk": "9a73f478-de6a-43d5-991b-76834185c00c", "fields": { - "question": 345, - "contribution": 3855, + "question": 320, + "contribution": 3394, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b56bcf24-1ff8-4681-95e6-011ab9ce70c6", + "pk": "9a8a0953-af70-41d4-ae63-10375b403d6b", "fields": { - "question": 329, - "contribution": 1186, + "question": 260, + "contribution": 3354, "answer": 2, - "count": 5 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b57f3dc0-2646-4ca0-a853-55b6aae639bc", + "pk": "9a8a239d-38c0-4fd9-a1f4-1e152e872c50", "fields": { - "question": 366, - "contribution": 4261, + "question": 340, + "contribution": 862, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b57f4c11-bd50-479a-865b-bc3cdeb7bf50", + "pk": "9a9a0c0a-4112-404b-87ef-2976140244f7", "fields": { - "question": 472, - "contribution": 1634, - "answer": 1, - "count": 2 + "question": 317, + "contribution": 4116, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5833778-bc7b-48c3-a5ba-a87bb859ff5d", + "pk": "9a9c76f5-32d0-4ab7-8548-5038a0577ea1", "fields": { - "question": 340, - "contribution": 3735, + "question": 344, + "contribution": 3555, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b58c77a9-f9ea-49ee-a44f-41ac6ce388fc", + "pk": "9aa843b6-079a-4327-ab75-1994ee1895a2", "fields": { - "question": 362, - "contribution": 3920, - "answer": 2, - "count": 2 + "question": 325, + "contribution": 1613, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b59ca70a-1574-4fed-bb14-cc40e3699bf9", + "pk": "9aab3635-a077-4778-8475-43584b75e780", "fields": { - "question": 371, - "contribution": 4205, - "answer": 4, + "question": 475, + "contribution": 1694, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b59ecd43-9d43-42b4-ac7f-01c4c5505d70", + "pk": "9ab76bf6-8fe1-46e5-96e4-eca7e9101008", "fields": { - "question": 343, - "contribution": 3610, - "answer": 2, + "question": 361, + "contribution": 3919, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5ad6d01-e365-4ac4-898a-04156292cd31", + "pk": "9ab87ece-400d-4f65-9b47-1fb3af749c67", "fields": { - "question": 345, - "contribution": 1922, - "answer": 1, - "count": 2 + "question": 347, + "contribution": 4188, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5affa9f-f96a-4b14-bbf8-e0b306fa79d5", + "pk": "9ab8facd-99af-44df-a908-f41c43d25d2f", "fields": { - "question": 472, - "contribution": 3474, - "answer": 1, - "count": 3 + "question": 337, + "contribution": 1921, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5bdf3d7-1cee-42bf-bacf-9e19731f738a", + "pk": "9abbbfc9-072f-4819-9973-1ccb367825e2", "fields": { "question": 363, - "contribution": 3942, - "answer": 5, + "contribution": 3920, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5c8f5ce-ada5-4184-ba27-346257d79ecb", + "pk": "9abe2d1f-8606-47f9-9274-a0356eb4141d", "fields": { - "question": 472, - "contribution": 4185, - "answer": 5, - "count": 28 + "question": 473, + "contribution": 804, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5ccd585-e487-4f4b-a1bb-10c92d3157db", + "pk": "9accd5c4-b425-4c81-8f0f-6b41cf0eb989", "fields": { - "question": 463, - "contribution": 3862, - "answer": 2, - "count": 3 + "question": 357, + "contribution": 4269, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5d1b546-d9db-443a-bc9a-be4a4f00f4e4", + "pk": "9adb27c5-dc5a-43e2-bc80-a0f925270c81", "fields": { - "question": 362, - "contribution": 1808, - "answer": 5, - "count": 1 + "question": 355, + "contribution": 1849, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5d547a7-9015-4a7c-8450-3ca822c459b8", + "pk": "9af4876e-a2be-4c78-8a1d-af6a19fbb6a8", "fields": { - "question": 258, - "contribution": 1837, - "answer": 1, - "count": 15 + "question": 349, + "contribution": 1205, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5da3360-db39-4810-9950-06141bc6a1c3", + "pk": "9af9bed1-dee0-4cc6-be0a-4191eb48e3f1", "fields": { - "question": 343, - "contribution": 3796, - "answer": 1, - "count": 2 + "question": 476, + "contribution": 3422, + "answer": -1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5dfd6c3-da6f-4ff8-8484-6b3dbd93cd0c", + "pk": "9b0aee7a-4c54-46be-949a-2301a00ad365", "fields": { - "question": 398, - "contribution": 3781, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 1154, + "answer": -1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5e5fc8e-ccab-40f1-81ed-a10aba467383", + "pk": "9b0ff510-ba46-4072-89fb-51939dc3ed9f", "fields": { "question": 322, - "contribution": 3472, - "answer": 4, - "count": 1 + "contribution": 1724, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5f43cdb-5d58-4b8c-b0b5-43c433e3afc3", + "pk": "9b1e5540-a027-4792-ba34-9340352fd1b1", "fields": { - "question": 257, - "contribution": 1658, - "answer": 2, + "question": 315, + "contribution": 3472, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5f54d81-a475-4371-907d-24af65b1f7c0", + "pk": "9b26c58a-4e7b-46f4-bd0c-feda388ed01c", "fields": { - "question": 328, - "contribution": 3519, - "answer": 3, - "count": 5 + "question": 354, + "contribution": 1845, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5f6d465-8b69-4b2a-aae8-e369315e188a", + "pk": "9b326b30-5790-4270-9452-d3eb419c2114", "fields": { "question": 347, - "contribution": 1881, - "answer": 4, + "contribution": 4188, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5f76cd1-7a01-42d8-9c1c-4397604ad80e", + "pk": "9b39e47e-95e1-474c-b43a-a895b1b97a97", "fields": { - "question": 333, - "contribution": 4204, - "answer": 1, - "count": 17 + "question": 354, + "contribution": 1189, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b5faf20d-a4ff-4205-8f7d-fa5970db7085", + "pk": "9b442a26-6a9d-4187-9c91-efbd86efe308", "fields": { - "question": 477, - "contribution": 823, - "answer": 0, + "question": 401, + "contribution": 3646, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b602e259-128a-4ef2-af0e-7c6507641519", + "pk": "9b485adb-62f8-4284-ac32-7bde1044970e", "fields": { - "question": 321, - "contribution": 4084, - "answer": 5, - "count": 1 + "question": 473, + "contribution": 1748, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b61a134b-4b54-45ce-a61d-791b6087edd5", + "pk": "9b549555-cb25-43be-831b-186380345a40", "fields": { - "question": 257, - "contribution": 4116, - "answer": 2, - "count": 5 + "question": 329, + "contribution": 1186, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b61a1afc-b057-4c17-89d5-7b289bc48dc0", + "pk": "9b5ca1da-8dea-4100-b551-e7c28367435b", "fields": { - "question": 323, - "contribution": 4118, + "question": 346, + "contribution": 1867, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b62115b8-3d19-48e8-bae9-65c0bd1e5256", - "fields": { - "question": 326, - "contribution": 4153, - "answer": 4, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "b632805f-b1e7-435e-8bad-c0d41cb86f14", + "pk": "9b5e1b6b-d1a6-48a1-9d18-f604cd157efa", "fields": { - "question": 328, - "contribution": 1617, - "answer": 5, - "count": 1 + "question": 257, + "contribution": 1724, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b63e2f02-41e8-45de-bae9-6a90a4800684", + "pk": "9b6d5264-b235-44c2-9472-833fb9d4e134", "fields": { - "question": 320, - "contribution": 3683, - "answer": 4, - "count": 1 + "question": 258, + "contribution": 908, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b642cb72-987a-4183-b0e5-8502c02fbc98", + "pk": "9b8a6d92-e814-4ad8-90ee-416f230c4d39", "fields": { - "question": 355, - "contribution": 3545, - "answer": 5, - "count": 1 + "question": 408, + "contribution": 3974, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b643e69f-5e1f-4090-b8f4-567cce7a9f62", + "pk": "9b9e05f3-f194-4e6f-96e7-40c03ec41e27", "fields": { - "question": 345, - "contribution": 3405, - "answer": 5, - "count": 1 + "question": 343, + "contribution": 1842, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b64ee278-4e69-4c37-84d5-e139f1f57dab", + "pk": "9ba24d5f-1b73-4d09-b72a-887f661b2bb9", "fields": { - "question": 407, - "contribution": 4038, + "question": 359, + "contribution": 1803, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b657f277-915e-46fa-8614-566365886405", + "pk": "9baef48f-c8e8-429d-8e08-c6d33352a1ae", "fields": { - "question": 323, - "contribution": 1658, + "question": 390, + "contribution": 3781, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b65b7f72-b84f-47c9-bc52-d6da5c646a91", + "pk": "9bbb36a1-f9a9-4425-a6ba-2860fc51e9ee", "fields": { - "question": 255, + "question": 260, "contribution": 1634, - "answer": 2, - "count": 12 + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b65ef3d0-1932-499a-a1b6-0eb177491a46", + "pk": "9bbcc164-e65f-45b6-8dc8-40287a83c8a3", "fields": { - "question": 257, - "contribution": 4100, + "question": 316, + "contribution": 3354, "answer": 2, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b662424c-e552-4e84-bdbf-e288e8191268", + "pk": "9bc5b1c6-e22c-4e21-9155-2b78a38d4fbd", "fields": { - "question": 359, - "contribution": 3944, - "answer": 2, + "question": 368, + "contribution": 3680, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b66d9602-bdd4-46d5-84a4-c4f7e0f7f5bd", + "pk": "9bca8926-bd30-4d50-b044-14e55e2bc00f", "fields": { - "question": 472, - "contribution": 4020, + "question": 333, + "contribution": 3552, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b66e10c1-61ec-4619-b523-aba76c6ea459", + "pk": "9bcb1976-30a2-4eb2-a525-d9a3f897cddb", "fields": { - "question": 475, - "contribution": 918, - "answer": 1, - "count": 2 + "question": 321, + "contribution": 3354, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b66fa2fb-4f2a-409b-a2ab-e21fd18ab5a6", + "pk": "9bcbb05d-09fa-4db7-839b-84a462d909e1", "fields": { - "question": 317, - "contribution": 4084, - "answer": 1, - "count": 17 + "question": 435, + "contribution": 4090, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b6732f66-bcfd-4392-b443-ca154a31ebd7", + "pk": "9bd1ffd1-9551-47f6-ba82-4102399204e1", "fields": { - "question": 331, - "contribution": 4084, - "answer": -1, - "count": 20 + "question": 369, + "contribution": 3597, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b679812b-4386-4c33-acbc-a279d50bd243", + "pk": "9bddb1c5-3c55-421e-b0ed-2c24587b7e93", "fields": { - "question": 473, - "contribution": 1658, - "answer": 1, - "count": 2 + "question": 331, + "contribution": 3474, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b67c525e-6960-4cbf-8d03-e2e4a07d0b99", + "pk": "9be09652-1b0e-4f4d-96d1-91319371232e", "fields": { - "question": 353, - "contribution": 4232, - "answer": 1, + "question": 475, + "contribution": 3404, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b6885906-4250-4ffd-adb7-bcee881131b0", + "pk": "9becbe0c-1896-4df3-a28a-23bf631f26d2", "fields": { - "question": 348, - "contribution": 3822, + "question": 347, + "contribution": 869, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b69b80e0-813e-4303-8ca2-a93f0ffb4ffa", + "pk": "9bf6ba42-ab80-4945-9df9-43076c7365ba", "fields": { - "question": 359, - "contribution": 3653, - "answer": 2, - "count": 1 + "question": 344, + "contribution": 1867, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b6a35a13-0038-4667-a881-4c1791903be7", + "pk": "9bf91a97-b6a0-483a-aea7-8dc1eac0966b", "fields": { - "question": 260, - "contribution": 3462, - "answer": 1, - "count": 3 + "question": 354, + "contribution": 1242, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b6cd1f8e-1272-40c4-93d1-5e81c9fff047", + "pk": "9bfe130f-15ba-49e2-bccb-1cbea3a9684c", "fields": { - "question": 349, - "contribution": 4191, - "answer": 3, - "count": 1 + "question": 339, + "contribution": 1200, + "answer": 0, + "count": 27 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b6d01475-e122-4ad9-a2db-f8c6ffd66596", + "pk": "9c0c7bfd-7504-4918-9b15-f2c7951199aa", "fields": { - "question": 353, - "contribution": 3847, + "question": 343, + "contribution": 3405, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b6d2458f-425f-44d1-8855-11b593648a32", + "pk": "9c182765-db8c-4236-a07a-64772102480e", "fields": { - "question": 328, - "contribution": 1777, - "answer": 5, + "question": 348, + "contribution": 1156, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b6d42a4a-b675-440e-8844-222cee55bd4d", + "pk": "9c1f1bef-6f1e-4004-b31d-debdaee756bf", "fields": { - "question": 352, - "contribution": 4046, - "answer": 2, + "question": 473, + "contribution": 3735, + "answer": 0, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b6d5ea3a-8d41-4ffc-9a6a-ed2de55441d3", + "pk": "9c1fcf5a-3360-4a47-870d-557e50d28fb4", "fields": { - "question": 353, - "contribution": 3975, - "answer": 1, - "count": 2 + "question": 473, + "contribution": 4046, + "answer": 0, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b6e38809-4f6f-4825-a333-77feebc7a7ca", + "pk": "9c24f6fd-7ff9-4dc0-8be3-4ce998f72b3e", "fields": { - "question": 477, - "contribution": 4101, - "answer": -1, - "count": 5 + "question": 316, + "contribution": 3679, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b6e49a53-2fdd-4122-bfca-d5a4d7f9aa31", + "pk": "9c2a6878-bdc9-4f8b-9bc8-feee23c7e939", "fields": { - "question": 337, - "contribution": 1638, + "question": 327, + "contribution": 1288, "answer": 1, - "count": 3 + "count": 27 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b6e5fd64-3b54-4df2-8960-3a58c82132d8", + "pk": "9c2ba82d-7feb-4b41-a88c-2a78a64b50db", "fields": { - "question": 356, - "contribution": 3848, - "answer": 2, - "count": 2 + "question": 475, + "contribution": 4002, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b6e79ae2-f8e2-4185-b5b6-d57cfe33cf73", + "pk": "9c336e15-bf78-4fec-971d-063d358b0422", "fields": { - "question": 321, - "contribution": 3679, - "answer": 1, - "count": 13 + "question": 352, + "contribution": 826, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b6eb3889-c7cd-4df4-863f-4eec9b028157", + "pk": "9c3c6106-c6f7-41d1-8f97-9bf5a4c427c6", "fields": { - "question": 362, - "contribution": 3893, + "question": 341, + "contribution": 1644, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b70ce3ec-679e-4b98-b0b9-8e4c5d254f52", + "pk": "9c3cfc60-d3b1-4aac-a2dc-3992e19ab153", "fields": { - "question": 336, - "contribution": 3452, + "question": 343, + "contribution": 3935, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b71bf720-47c6-489a-97bc-02b1196c68b3", + "pk": "9c47b5e3-68b7-4df0-8ae6-e220c658d826", "fields": { - "question": 339, - "contribution": 3450, - "answer": -2, - "count": 2 + "question": 329, + "contribution": 881, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7273c15-330f-488d-91a9-b1140b67bf10", + "pk": "9c53be5b-3e6a-45f1-837d-3d75fd9aaec0", "fields": { - "question": 343, - "contribution": 3515, - "answer": 2, - "count": 1 + "question": 319, + "contribution": 4100, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b72985e1-e7fa-4ed3-83e0-ec5ea19471f6", + "pk": "9c630ecf-16e5-4d7b-a839-3fcc9e848466", "fields": { - "question": 378, - "contribution": 3781, + "question": 473, + "contribution": 1200, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b72d61b1-3e27-450a-94ac-6ddb0daec226", + "pk": "9c8278a4-4595-4011-8dce-f2f5de96e9d0", "fields": { - "question": 348, - "contribution": 3895, - "answer": 2, + "question": 372, + "contribution": 3440, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b733c04e-20a0-41b9-9374-b53742d03262", + "pk": "9c8888ed-6bed-4092-a3d1-92238c568f6e", "fields": { - "question": 331, - "contribution": 3474, - "answer": -1, + "question": 320, + "contribution": 1680, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b73b395b-41a2-4df8-a5d4-8f171a97cab8", + "pk": "9c89a46a-9e19-434f-9e21-413475bbbc40", "fields": { - "question": 331, - "contribution": 884, - "answer": 1, + "question": 344, + "contribution": 3546, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b73fcb07-0d45-4c04-8198-e1113454f97a", + "pk": "9c8a277f-000e-4d8a-9e07-65ab384ffe16", "fields": { - "question": 472, - "contribution": 3404, - "answer": 5, + "question": 345, + "contribution": 1749, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b741e009-cd43-45ab-b126-ca7a6b606266", + "pk": "9c921afd-e1ee-4b12-bcdf-877a59709c8f", "fields": { - "question": 363, - "contribution": 1806, - "answer": 5, - "count": 1 + "question": 336, + "contribution": 918, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b750d71e-5c7f-403c-bb36-8e92ec11261c", + "pk": "9caa1b90-1487-42b6-8f0d-8238932503ff", "fields": { - "question": 477, - "contribution": 3423, + "question": 337, + "contribution": 4094, "answer": 1, - "count": 8 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7567479-3055-4d6d-a911-84d8138cfd63", + "pk": "9cad02a8-873f-44b4-b96e-62d8e3dd1357", "fields": { - "question": 257, - "contribution": 4084, - "answer": 5, - "count": 3 + "question": 331, + "contribution": 3434, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b75b6248-eb7b-4cd5-aa0d-f61c832e2803", + "pk": "9cc3cf9e-ca4a-47d8-a689-c38b1c0baf49", "fields": { - "question": 472, - "contribution": 4008, - "answer": 1, - "count": 1 + "question": 260, + "contribution": 3390, + "answer": 4, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b75bbeda-3001-48bd-aa20-ec7bd80b6a29", + "pk": "9cc4b845-f751-4e9a-b375-17ee9b0dc77d", "fields": { - "question": 1, - "contribution": 4303, + "question": 259, + "contribution": 3739, "answer": 1, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b76fcdc6-2f17-41d5-9fc0-856f419a8b77", + "pk": "9cd3ada3-85b3-4a79-851c-c39c07968d66", "fields": { - "question": 326, - "contribution": 3722, - "answer": 2, - "count": 5 + "question": 347, + "contribution": 919, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7735a31-7b67-4ce9-8060-b371eec48f0b", + "pk": "9cd8c1b1-6af1-46b5-ad20-591db2211d13", "fields": { - "question": 321, - "contribution": 3665, - "answer": 1, - "count": 7 + "question": 349, + "contribution": 3405, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b773e85e-114e-42ca-a641-5cc16fc8a7d1", + "pk": "9cdeaa94-4150-45f3-86a1-18f3e916ec07", "fields": { - "question": 337, - "contribution": 3404, - "answer": 3, - "count": 3 + "question": 328, + "contribution": 4085, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7746279-bbe7-41c0-acde-827e4e2df1d9", + "pk": "9cded71e-fbcf-4e32-aec8-99755d2bcc41", "fields": { - "question": 341, - "contribution": 1748, + "question": 361, + "contribution": 3929, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b776d1ee-d842-4433-99f0-0e79b0c9754e", + "pk": "9ce1d3b0-8736-4a5c-987b-766d879dee59", "fields": { - "question": 384, - "contribution": 3781, + "question": 316, + "contribution": 3422, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7887f37-4959-449b-a9c4-5773e4ea8082", + "pk": "9ce30375-77ff-4a05-b64f-a6235bdc64a1", "fields": { "question": 347, - "contribution": 1246, - "answer": 5, - "count": 2 + "contribution": 3890, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b78ed73f-9079-47d7-b566-2712f5b9b60c", + "pk": "9ce413a4-9f64-410a-8e61-4cad9ce574f5", "fields": { - "question": 332, - "contribution": 3552, + "question": 329, + "contribution": 1780, "answer": 1, - "count": 7 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b798437e-cb70-460c-861a-76629d6b77be", + "pk": "9ce949c5-f40b-406d-af10-a989cdd04609", "fields": { - "question": 475, - "contribution": 3454, - "answer": -1, - "count": 2 + "question": 473, + "contribution": 858, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7a2eed6-e67e-4dce-9386-f889b4240f1f", + "pk": "9cebfa9a-ec8b-49f8-a59d-c97c3b3b2be4", "fields": { - "question": 362, - "contribution": 3648, - "answer": 1, - "count": 4 + "question": 323, + "contribution": 3422, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7a3b812-aacc-4029-b81b-ff6ad616f438", + "pk": "9ceef765-bb0d-4125-925a-c473594f80f2", "fields": { - "question": 349, - "contribution": 3895, + "question": 258, + "contribution": 3739, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7a61e13-a0c0-40e4-8de5-9ae5bf4a37ce", + "pk": "9cff09b5-0271-445f-a96f-0aa4a166b778", "fields": { - "question": 339, - "contribution": 918, + "question": 368, + "contribution": 4023, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7b06eef-1fbc-4f0a-a958-a89bd29229ae", + "pk": "9d034535-27a1-458a-b344-e0c107d3802c", "fields": { - "question": 363, - "contribution": 1804, - "answer": 1, - "count": 5 + "question": 350, + "contribution": 804, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7b572cb-c596-4921-aafc-23eeae4df2f1", + "pk": "9d104a89-d505-4829-9403-691c64292d64", "fields": { - "question": 335, - "contribution": 4152, - "answer": 1, - "count": 12 + "question": 370, + "contribution": 3545, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7bb35ea-3422-45d0-8fab-213892f49359", + "pk": "9d138f8c-ec50-460a-8144-03ce1efc0e02", "fields": { - "question": 316, - "contribution": 3679, - "answer": 3, - "count": 4 + "question": 337, + "contribution": 3727, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7bde7fc-6c27-4499-a5a2-ab39dede8cdd", + "pk": "9d224396-573c-4a79-8928-3f8541cbf980", "fields": { - "question": 337, - "contribution": 3372, - "answer": 3, + "question": 363, + "contribution": 3597, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7c835cf-a669-40dc-85f1-716c95c509ce", + "pk": "9d324ec7-e8b8-4914-b1c8-b63729bdbdae", "fields": { - "question": 321, - "contribution": 4084, - "answer": 4, - "count": 3 + "question": 323, + "contribution": 4118, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7cb0821-b96c-4f70-9266-dd585c726901", + "pk": "9d34872e-2090-47f4-a291-30b0924c5bc1", "fields": { - "question": 369, - "contribution": 1835, + "question": 368, + "contribution": 3556, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7cd1a08-fabe-430d-a57f-c104d8b67256", + "pk": "9d3c9d18-d5c1-41d9-957f-5a3d6997c5c5", "fields": { - "question": 257, - "contribution": 4084, - "answer": 4, + "question": 368, + "contribution": 1725, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7d0a3fa-847a-4197-9500-d6460309a81d", + "pk": "9d3f954e-c156-4219-a93c-4fae752b8ddb", "fields": { - "question": 323, - "contribution": 4040, - "answer": 3, - "count": 1 + "question": 405, + "contribution": 3974, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7dbc8b9-91af-4ed5-bb3f-9305ac3a25a6", + "pk": "9d410db9-deb5-4587-9b97-ae0d01f072c9", "fields": { "question": 473, "contribution": 804, - "answer": -2, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7fe842d-964a-4f23-baa9-fd60ac8209a0", + "pk": "9d427e7c-65d4-4396-bced-37fc4bdd1286", "fields": { - "question": 349, - "contribution": 1695, - "answer": 5, - "count": 2 + "question": 461, + "contribution": 4283, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b7fe8493-a92c-42d6-b7a4-e8ff574d95d5", + "pk": "9d45084e-f1d2-4944-bba1-0198cc35eee1", "fields": { - "question": 336, - "contribution": 1640, - "answer": 3, - "count": 1 + "question": 378, + "contribution": 3711, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8108854-59b0-43bf-b229-e828c3cf8661", + "pk": "9d45438b-29a2-421b-baea-e9c867512fe4", "fields": { - "question": 345, - "contribution": 1205, - "answer": 2, - "count": 2 + "question": 321, + "contribution": 1837, + "answer": 1, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b811339d-9ac3-498a-9582-2311fa3719d5", + "pk": "9d478f6d-1115-41bd-9282-4bdcdaebbfcc", "fields": { - "question": 359, - "contribution": 3648, - "answer": 2, - "count": 1 + "question": 317, + "contribution": 3721, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b818c0f4-5a6d-4f62-bf4d-b1927876495d", + "pk": "9d495462-3dbe-4641-9de9-8805494ec670", "fields": { - "question": 360, - "contribution": 1836, - "answer": 3, + "question": 477, + "contribution": 3463, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8215fce-a434-41a6-b7c0-bbbfa7c55b55", + "pk": "9d523ba2-380d-4ff2-aee1-cc91cc3ad5d4", "fields": { - "question": 349, - "contribution": 3509, + "question": 464, + "contribution": 3786, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8271aad-1d9e-49d5-9b9f-80807f57f32f", + "pk": "9d5e4ab6-c8b9-4e3e-8b35-eee0ef51ce1a", "fields": { - "question": 323, - "contribution": 3434, - "answer": 1, - "count": 21 + "question": 363, + "contribution": 1812, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8392d7b-e3c7-4c33-bfa3-1e01e1d8d3d5", + "pk": "9d5e55c7-a3eb-472c-80b3-9424c095b000", "fields": { - "question": 260, - "contribution": 1626, - "answer": 5, - "count": 3 + "question": 355, + "contribution": 4268, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b83d1df3-e858-4b95-972f-9d4d826434c7", + "pk": "9d759b0c-cce2-4ab0-82de-34207eb127b1", "fields": { - "question": 346, - "contribution": 1228, - "answer": 4, - "count": 3 + "question": 414, + "contribution": 3984, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8483f80-5e4d-46cc-ac4d-9e9631a1e4e6", + "pk": "9d905189-c357-4aea-a6d6-5424817d25b5", "fields": { - "question": 346, - "contribution": 1661, + "question": 359, + "contribution": 1804, "answer": 1, - "count": 3 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b84ee5a5-9f70-44eb-936b-32bd0765b859", + "pk": "9d91b2b7-edb7-41b9-9ba6-67dffa8198be", "fields": { - "question": 354, - "contribution": 3528, + "question": 457, + "contribution": 3786, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b85890da-a08a-4bb7-a9b2-eb52387a20f3", + "pk": "9d98cc15-80e1-438a-9661-37c8811c2108", "fields": { - "question": 341, - "contribution": 1726, + "question": 366, + "contribution": 3631, "answer": 2, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b85c21a2-64bc-46f1-a6cc-95d98a668b1a", + "pk": "9dac3acc-8457-471a-8e33-8f3b08be2204", "fields": { - "question": 348, - "contribution": 3526, + "question": 258, + "contribution": 862, "answer": 1, - "count": 1 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b85f1b1c-3ef7-4fba-b6bb-6aa124ac6da4", + "pk": "9db54466-9fb5-4cab-94b8-6669ecf6e6a0", "fields": { - "question": 368, - "contribution": 3391, - "answer": 5, - "count": 11 + "question": 332, + "contribution": 3593, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b85fb0db-42b0-4f8c-87cb-be9068d45d6a", + "pk": "9dbc7ffb-cb0d-4576-98f8-86be55e86033", "fields": { - "question": 428, - "contribution": 4156, + "question": 347, + "contribution": 1735, "answer": 2, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8642aa1-8b53-47fb-a8a5-7a04a7354820", + "pk": "9dcc0244-8138-438d-8351-28671255dde5", "fields": { - "question": 361, - "contribution": 3917, - "answer": 1, - "count": 4 + "question": 346, + "contribution": 3545, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b86f8c4b-83e3-491b-9c02-b5eb7cabfa3e", + "pk": "9dcd86d3-a1fc-48e0-8d62-4121f73b5792", "fields": { - "question": 329, - "contribution": 3589, + "question": 349, + "contribution": 4189, + "answer": 3, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "9dd74baf-8917-4dc7-b7d6-738eab52cafa", + "fields": { + "question": 320, + "contribution": 4128, "answer": 1, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b87305d8-4a53-46fe-b735-7d55d54122de", + "pk": "9de12d7a-1a1e-4ed1-9f9c-b623b0be8612", "fields": { - "question": 315, - "contribution": 3422, - "answer": 5, - "count": 1 + "question": 340, + "contribution": 3416, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b87b3c68-39c4-4cc1-99fa-72d88ef89bc8", + "pk": "9de13540-4d33-4dce-ab0b-b4952a1aad1c", "fields": { - "question": 473, - "contribution": 1694, - "answer": -2, - "count": 2 + "question": 477, + "contribution": 3423, + "answer": 0, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8813928-9890-4dd8-828e-59b4fc194224", + "pk": "9df46753-aeb3-43cd-8141-bfbe1388f0aa", "fields": { - "question": 328, - "contribution": 4085, + "question": 341, + "contribution": 4094, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8856a25-dfb1-4975-a50f-50866531ecc2", + "pk": "9e012e10-ff96-4787-ae43-261b56ae14e2", "fields": { - "question": 322, - "contribution": 3406, - "answer": 4, + "question": 257, + "contribution": 4022, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8874d51-4a70-4e9f-8448-553c6969db9d", + "pk": "9e05a76f-8f06-4790-b5fe-759e3097dccd", "fields": { - "question": 327, - "contribution": 913, - "answer": 1, - "count": 35 + "question": 315, + "contribution": 1612, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b88b9041-2f06-4934-b61e-7a7a30a0cb3f", + "pk": "9e1357eb-e89c-4e57-8abc-0b4bdb21f137", "fields": { - "question": 333, - "contribution": 3881, - "answer": 2, + "question": 321, + "contribution": 3721, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b88f13bf-98b8-4f2d-a0fe-6e7d40e10e0f", + "pk": "9e14fb8a-8c3a-4e94-ade5-704860caf51c", "fields": { - "question": 437, - "contribution": 4008, - "answer": 2, + "question": 316, + "contribution": 1612, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8966323-b718-4772-9f49-89343012d265", + "pk": "9e185f92-45e3-44de-aeb0-e527a1e837f5", "fields": { - "question": 317, - "contribution": 4120, - "answer": 4, - "count": 4 + "question": 335, + "contribution": 3593, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b89eb413-64ab-48cf-9b97-2a6c38f4dbcc", + "pk": "9e244525-2967-4b84-b824-6a036ce18344", "fields": { - "question": 315, - "contribution": 4084, - "answer": 3, - "count": 8 + "question": 349, + "contribution": 4188, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8b236ad-ff95-426a-96ca-6cd10ffbb205", + "pk": "9e2d6a2f-27cf-42bd-9fee-497067de725e", "fields": { - "question": 348, - "contribution": 1809, + "question": 341, + "contribution": 4002, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8b3bb76-b3a8-4069-963b-0ac4d561bc6f", + "pk": "9e361518-0fce-4481-bce5-cbb263bbdc12", "fields": { - "question": 325, - "contribution": 4153, + "question": 326, + "contribution": 913, + "answer": 2, + "count": 14 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "9e4a9390-d022-4539-bc34-2e6834fe60c5", + "fields": { + "question": 329, + "contribution": 3391, "answer": 1, - "count": 11 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8b777b2-884a-4b26-8b4d-67285273b458", + "pk": "9e4f5c97-06d0-4665-88cb-c7160945aa8e", "fields": { - "question": 349, - "contribution": 1250, - "answer": 3, - "count": 3 + "question": 352, + "contribution": 3693, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8c2e095-120a-40ed-8e8d-256da9243d1b", + "pk": "9e4f79a2-ba6e-452e-94a0-61be0c13bf42", "fields": { - "question": 259, - "contribution": 3406, + "question": 353, + "contribution": 1860, "answer": 1, - "count": 5 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8c8e6bf-f8a2-4ffb-bf61-a31d90396be1", + "pk": "9e532c7c-2bce-4bee-9a93-82d914ddabeb", "fields": { - "question": 315, - "contribution": 3721, - "answer": 2, - "count": 7 + "question": 262, + "contribution": 3679, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8c8f661-5a99-4742-b001-10db1dd5b825", + "pk": "9e69822c-7fb0-4728-8c6e-493c1b14c85a", "fields": { - "question": 348, - "contribution": 3608, - "answer": 2, + "question": 370, + "contribution": 3975, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8dc9294-4c25-4ace-b771-08b412b2e9e6", + "pk": "9e69fc6c-2a27-4cef-9fcf-e61652e6beed", "fields": { - "question": 260, - "contribution": 884, - "answer": 3, + "question": 337, + "contribution": 1734, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8dcd4a6-d2d6-422b-83b9-dd1bb25935b3", + "pk": "9e893603-f028-45d9-a4e9-39caa78200ca", "fields": { - "question": 348, - "contribution": 1873, - "answer": 2, - "count": 1 + "question": 335, + "contribution": 3936, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8e7c2d2-e4e8-4384-a742-3b3f7979591d", + "pk": "9e972d7f-1940-4ee0-a839-72972a0c84a5", "fields": { - "question": 428, - "contribution": 4155, + "question": 433, + "contribution": 4090, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b8f32ead-2438-47ed-b723-58ea8cc657ba", + "pk": "9e9ce21b-45a4-4a38-871a-286391b3b82c", "fields": { - "question": 475, - "contribution": 832, - "answer": 0, - "count": 2 + "question": 344, + "contribution": 1860, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9030fde-9e1c-4510-910a-006f221fc607", + "pk": "9ea37900-e893-4abc-8644-95cc8be7b50a", "fields": { - "question": 359, - "contribution": 3649, + "question": 320, + "contribution": 908, "answer": 2, - "count": 1 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9031b0f-666a-4d21-b2fe-c254a36017a2", + "pk": "9ea414f6-bcb9-48e2-a3d1-e53e2deaf836", "fields": { - "question": 473, - "contribution": 1638, - "answer": -3, + "question": 317, + "contribution": 1680, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b903e152-c195-4c99-8ceb-6302f67a074c", + "pk": "9eac88af-857f-442b-9a8a-7efe6c140dc8", "fields": { - "question": 367, - "contribution": 3390, + "question": 348, + "contribution": 1880, "answer": 4, - "count": 12 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b935e63a-f97a-4d15-98ab-c1168df5557a", + "pk": "9ebc4fd0-e8cb-47c0-bc43-4ccc66ce0966", "fields": { - "question": 344, - "contribution": 1202, - "answer": 4, + "question": 354, + "contribution": 3782, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b937dce1-1a22-44a0-8b24-b74a32852307", + "pk": "9ed4c306-521a-47ed-a8ca-c7c8730fdd7f", "fields": { - "question": 359, - "contribution": 1812, - "answer": 2, - "count": 2 + "question": 340, + "contribution": 886, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b93a2700-9063-416b-ac58-b69030563aa7", + "pk": "9ed50ed4-6f48-4c7e-b404-2a0c19b8ae39", "fields": { - "question": 325, - "contribution": 3355, + "question": 329, + "contribution": 913, "answer": 2, - "count": 1 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b93bb958-128f-4799-8eb1-2e767b9843c5", + "pk": "9ed54226-1288-4cbf-9cdb-5fc06ac50c7f", "fields": { - "question": 473, - "contribution": 1668, + "question": 316, + "contribution": 1724, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b93d6e7b-f3ef-4996-aa42-3443a5d7bd15", + "pk": "9ee37c4d-c110-42e2-b768-862adfe19677", "fields": { - "question": 363, - "contribution": 1825, + "question": 316, + "contribution": 1837, "answer": 2, - "count": 1 + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b93da477-75b0-4789-b232-b04c33f3b3d0", + "pk": "9ee4d4a6-02a3-4cf7-b1b6-2de3eff2324f", "fields": { - "question": 333, - "contribution": 1282, - "answer": 2, - "count": 3 + "question": 347, + "contribution": 3900, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b942895d-1f39-4f1c-9f05-0e3bb778b71f", + "pk": "9f07fccb-404d-42f7-ba6b-03c520e79ab5", "fields": { - "question": 361, - "contribution": 1812, - "answer": 1, - "count": 4 + "question": 329, + "contribution": 1779, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9463c44-f5c6-4efe-b9e2-bb2f032b4c3e", + "pk": "9f0809e5-594a-4816-833b-a35f101fd5c0", "fields": { "question": 363, - "contribution": 1804, - "answer": 2, - "count": 4 + "contribution": 1836, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b948ef0e-e8e5-4e26-84a7-44bbdf0d28bb", + "pk": "9f0cdca8-f45a-4e12-baf6-9c882b4284dc", "fields": { - "question": 349, - "contribution": 4123, - "answer": 1, + "question": 337, + "contribution": 3508, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b94e34fc-9714-4420-b64a-f9938925604a", + "pk": "9f0f94d3-65e2-44dc-be80-91c5b2b63e08", "fields": { - "question": 326, - "contribution": 1669, - "answer": 1, - "count": 8 + "question": 255, + "contribution": 1837, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9502a75-65f8-4e71-8975-05f888f96c5e", + "pk": "9f2069d5-624b-4b0e-b38e-204126338144", "fields": { - "question": 260, - "contribution": 3406, - "answer": 3, + "question": 341, + "contribution": 3795, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b951aeae-0594-4e62-bb92-96cd3451d28a", + "pk": "9f26a472-96fc-4111-878f-3b2a0b42821c", "fields": { - "question": 351, - "contribution": 3466, + "question": 367, + "contribution": 3462, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b956c0df-26bb-4a5c-bd7b-52abb227188a", + "pk": "9f3e67b9-c813-4ce3-a654-5c8f79510a0c", "fields": { - "question": 326, - "contribution": 1635, + "question": 368, + "contribution": 1681, "answer": 2, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b968b95c-9128-4d91-98d4-fb027e470b04", + "pk": "9f42c9ed-a9a4-4f36-8e5a-1af623ca02aa", "fields": { - "question": 346, - "contribution": 1860, + "question": 335, + "contribution": 1283, "answer": 2, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b96cd174-9016-4f6f-91b6-fcabb9f91508", + "pk": "9f5a84e1-a25b-49a9-be97-5266bb1db886", "fields": { - "question": 322, - "contribution": 4046, + "question": 460, + "contribution": 4283, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b977f2a1-2eb0-4e19-98f2-a4ba6c07031f", + "pk": "9f5b0d85-06c7-4bb2-9c6d-12f10310c47a", "fields": { - "question": 321, - "contribution": 4116, + "question": 260, + "contribution": 3721, "answer": 1, - "count": 3 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b978f150-835a-412e-b7d6-06d069bea368", + "pk": "9f60c4ae-ff2c-4f83-abf6-d516d5285543", "fields": { - "question": 326, - "contribution": 885, - "answer": 3, + "question": 259, + "contribution": 1626, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b97b6702-7d9c-47a5-adf4-334d6d36c0d7", + "pk": "9f6c9a24-6312-47dd-bf13-227f24d6b9be", "fields": { - "question": 326, - "contribution": 3740, - "answer": 2, - "count": 1 + "question": 338, + "contribution": 826, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b97beb85-d5d2-4875-b4ff-488d377e4a4b", + "pk": "9f6d5d1c-a2dc-4838-b9bc-0a5ce41aa28b", "fields": { - "question": 322, - "contribution": 3683, + "question": 320, + "contribution": 3725, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b97dccc9-47db-46f8-b50b-1dd2dba9b229", + "pk": "9f71c784-36b8-4a9e-b317-7f5d9c4444a4", "fields": { - "question": 315, - "contribution": 1668, + "question": 317, + "contribution": 4120, "answer": 5, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "b981ac4e-f6e1-4326-9647-495acc9b8806", - "fields": { - "question": 321, - "contribution": 3406, - "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9870535-c440-4943-b23e-8945ac3d38ab", + "pk": "9f767a1b-6954-4ac3-8ea4-1e7a8fd04e50", "fields": { - "question": 336, - "contribution": 868, - "answer": 2, - "count": 2 + "question": 338, + "contribution": 4094, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9909959-351e-4e3c-a4fe-7f8fab969b65", + "pk": "9f801a79-8353-4c63-9802-341e67d765d1", "fields": { - "question": 359, - "contribution": 1806, - "answer": 1, - "count": 2 + "question": 367, + "contribution": 1612, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9adca69-9055-40c9-a5f5-a2c146d6014a", + "pk": "9f83049b-9ea8-4c21-aab6-1ded7d4842ea", "fields": { - "question": 338, - "contribution": 3645, + "question": 368, + "contribution": 3726, "answer": 3, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9bbc2ae-b0f3-4caf-817f-b6f246cf6baf", + "pk": "9f94cb51-ce0b-489c-a98a-13c94ef5d348", "fields": { - "question": 325, - "contribution": 1617, + "question": 255, + "contribution": 4084, "answer": 2, - "count": 2 + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9be3bf9-6eb9-4608-b145-f10868d7d237", + "pk": "9f971820-ddec-49cc-9f0a-c041f36c3d02", "fields": { - "question": 345, - "contribution": 1203, + "question": 346, + "contribution": 1205, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9c54e1d-8baf-4580-9d44-a874a0208423", + "pk": "9f9e0c92-e3bc-4a03-80a2-0737c71bc1f9", "fields": { - "question": 473, - "contribution": 3440, - "answer": -1, + "question": 325, + "contribution": 3740, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9cd3db7-914d-48e7-82d8-8b01acb25e02", + "pk": "9f9e16f6-65a8-4038-8bea-468f5f8fcb7d", "fields": { - "question": 477, - "contribution": 4117, - "answer": -2, - "count": 2 + "question": 262, + "contribution": 3422, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9d7a75e-880a-43f1-ad7c-da7e91b20b17", + "pk": "9fafee59-1d0a-4aaf-b599-8f1d0daa4619", "fields": { - "question": 336, - "contribution": 3404, - "answer": 3, - "count": 3 + "question": 335, + "contribution": 1283, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9dbef94-53c9-4335-973b-5050ef041f9d", + "pk": "9fbbbab2-d002-427b-b757-9b6c3ad7038d", "fields": { - "question": 344, - "contribution": 4190, + "question": 348, + "contribution": 3528, "answer": 1, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9dd3c9b-7bd0-4278-8ff6-3a14e4a8edc2", + "pk": "9fbf53ce-ee21-43d1-929b-6ff36619169e", "fields": { - "question": 335, - "contribution": 3631, - "answer": 2, - "count": 1 + "question": 322, + "contribution": 1612, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9dde3dd-f047-492e-87d9-bfbed4b7f780", + "pk": "9fc7465c-d479-46fe-a2a0-1c28c1ba6d5b", "fields": { - "question": 354, - "contribution": 3834, + "question": 351, + "contribution": 790, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9eb42f1-d200-4879-8e58-bac340648e7f", + "pk": "9fd308e9-ae50-4340-b797-c9f06b9ba721", "fields": { - "question": 315, - "contribution": 908, - "answer": 2, - "count": 12 + "question": 361, + "contribution": 3919, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9f3a767-b08d-486f-8c00-2282868613d2", + "pk": "9fd49972-2611-4d83-8db4-67c8f0c4cab0", "fields": { - "question": 363, - "contribution": 3929, - "answer": 3, - "count": 1 + "question": 367, + "contribution": 1612, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9f63362-cbb7-4bed-9063-0c4f8e44f236", + "pk": "9fe6fbc7-0f48-4094-a6a5-70f086a185b9", "fields": { - "question": 333, - "contribution": 4154, + "question": 259, + "contribution": 836, "answer": 3, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "b9f83968-88b9-4035-b36a-5a7a2f8a65af", + "pk": "9ff2747f-9002-4694-9321-7fe6d90f8300", "fields": { - "question": 344, - "contribution": 3941, + "question": 349, + "contribution": 3796, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba0e03a0-5b45-402f-bd1f-c6a9a1685380", + "pk": "a000cd73-8bd5-4e3c-9e40-576172880fa0", "fields": { - "question": 343, - "contribution": 1809, - "answer": 1, - "count": 5 + "question": 345, + "contribution": 3939, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba1f87e3-5940-43ce-b80c-9b92c3703acb", + "pk": "a0010b6f-f68e-4260-bb27-427e17979cd2", "fields": { - "question": 316, - "contribution": 4046, + "question": 337, + "contribution": 804, "answer": 1, - "count": 9 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba26dca1-2dca-47e2-9392-8d8a2d5bccbf", + "pk": "a00edc25-82ca-43c5-8a18-72a853884a63", "fields": { - "question": 326, + "question": 333, "contribution": 4152, - "answer": 1, - "count": 14 + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba2a0f5f-6f08-435f-8c0f-d9ef02dce408", + "pk": "a0170c97-3baa-491c-ae9f-c471a59fe924", "fields": { - "question": 353, - "contribution": 3849, + "question": 262, + "contribution": 3354, "answer": 1, - "count": 6 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba331072-e615-43c9-80ec-606379d8d949", + "pk": "a02001a9-701e-4216-8051-2578e55634d6", "fields": { - "question": 325, - "contribution": 823, - "answer": 1, - "count": 4 + "question": 347, + "contribution": 1880, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba34d2ff-fd87-4502-8808-c4e0fef4aa3e", + "pk": "a04c4a0f-2f27-4939-ab93-9c8515d71b8e", "fields": { - "question": 347, - "contribution": 3900, - "answer": 2, + "question": 343, + "contribution": 1156, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba365365-c6c3-46e6-9c91-711b0c932cd0", + "pk": "a04cf375-180e-48f6-a270-ac5477039ecd", "fields": { - "question": 337, - "contribution": 1640, - "answer": 1, + "question": 329, + "contribution": 4203, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba3704f7-2632-4126-a70d-e283e96ce9cc", + "pk": "a068ce9c-ffa8-4686-9f06-faf5d4c9e649", "fields": { - "question": 337, - "contribution": 3751, + "question": 366, + "contribution": 4154, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba3c4ab1-aa16-41d0-a237-19cbbfb5ff7d", + "pk": "a077a4a3-5579-47d4-8deb-809ccca0fc13", "fields": { - "question": 332, - "contribution": 4152, + "question": 344, + "contribution": 4187, "answer": 1, - "count": 20 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba53b7be-9cde-447a-9adf-fd70e6ad9c6d", + "pk": "a0780b6d-b4d5-418c-a3ba-d2ec771b8ca6", "fields": { - "question": 338, - "contribution": 3645, - "answer": 4, + "question": 477, + "contribution": 3391, + "answer": -3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba588867-0f5e-4da5-bd28-5165d2e3cda3", + "pk": "a07dba61-da67-4700-b963-21e561f651f3", "fields": { - "question": 329, - "contribution": 913, - "answer": 4, + "question": 346, + "contribution": 3934, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba5903aa-276b-49a7-82aa-f762cc0e6176", + "pk": "a0804acf-e6e5-40db-a7ae-38b979d37e71", "fields": { - "question": 326, - "contribution": 3473, - "answer": 2, + "question": 360, + "contribution": 3929, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba5b6b4b-b4ae-43f0-9168-f9db5af415dc", + "pk": "a0869c09-f599-4f03-a385-b1eae1d517f5", "fields": { - "question": 356, - "contribution": 4268, - "answer": 5, - "count": 1 + "question": 325, + "contribution": 3407, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba60ebcd-0732-42e9-baf7-e1f80a745f0e", + "pk": "a09a76a0-a7d1-4084-98f5-0cb060960222", "fields": { - "question": 432, - "contribution": 4052, - "answer": 5, - "count": 1 + "question": 349, + "contribution": 4189, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba67cc8c-c623-4b75-b521-6788091169dd", + "pk": "a0aa71d9-c729-418a-b381-876e160fc3a7", "fields": { - "question": 344, - "contribution": 1881, - "answer": 1, + "question": 338, + "contribution": 1726, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba7640e4-196a-46b9-b300-8498891d0822", + "pk": "a0aab48b-57cc-4b24-a5d2-b743bc240f75", "fields": { - "question": 335, - "contribution": 3631, - "answer": 4, - "count": 5 + "question": 326, + "contribution": 837, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba764220-bfbe-43dc-b452-7aa3f0b9c03d", + "pk": "a0c46df8-05f9-4887-a854-1f9a0bbb3afe", "fields": { - "question": 325, - "contribution": 823, - "answer": 4, - "count": 2 + "question": 319, + "contribution": 3739, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba8c7261-6d94-4bf8-bdc0-73dffb49dac7", + "pk": "a0cbd02d-f2f1-415b-b928-e7727f97f693", "fields": { - "question": 344, - "contribution": 1867, - "answer": 3, + "question": 343, + "contribution": 3383, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba9375e8-5a8e-4744-8066-b699df7c1a50", + "pk": "a0d29f4e-9556-4618-b9db-5560d7c0274e", "fields": { - "question": 328, - "contribution": 4023, + "question": 367, + "contribution": 3422, "answer": 1, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba946f42-3182-4ec7-8e4e-7417f5b7f590", + "pk": "a0e9cc50-478a-4393-ad3b-7808ae4ffcaf", "fields": { - "question": 476, - "contribution": 3679, - "answer": 2, + "question": 366, + "contribution": 3594, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ba9e24db-d369-4079-a16b-cf097a0c7b1d", + "pk": "a0ec8f11-3064-4147-bd34-1fde68f1bc69", "fields": { - "question": 354, - "contribution": 1266, + "question": 317, + "contribution": 4022, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "baa5ade1-c4e4-45b8-94e9-d334db3b44cf", + "pk": "a0f0881d-4725-49ad-b1c3-1880dd9db1d6", "fields": { - "question": 329, - "contribution": 3407, + "question": 371, + "contribution": 3882, "answer": 1, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "baa8dc67-10e4-42d8-a1d6-8d938e6cc3c5", - "fields": { - "question": 329, - "contribution": 1778, - "answer": 2, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "bab033dd-9435-478c-bd94-faa5e77a5f4b", + "pk": "a10909cb-e4a4-4c1a-a15a-0e40a7b0cd84", "fields": { - "question": 346, - "contribution": 1749, + "question": 341, + "contribution": 3821, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bab5d67c-eb5a-4ca7-bec7-11685f2c5701", + "pk": "a115aba5-6db1-4ca1-a0f4-a137faf9c32a", "fields": { - "question": 320, - "contribution": 3434, - "answer": 4, - "count": 3 + "question": 355, + "contribution": 4039, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bab62ffd-2d29-4bfc-8825-b76041ddc79a", + "pk": "a118e27c-fc56-440a-ab1e-62e29a04c880", "fields": { - "question": 321, - "contribution": 4128, + "question": 363, + "contribution": 3648, "answer": 1, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "baba1d15-f2e3-4acd-a368-128060949c35", + "pk": "a11a41bc-3283-4ded-8d61-3db5558eab74", "fields": { - "question": 343, - "contribution": 3899, - "answer": 4, + "question": 367, + "contribution": 4118, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "babc29e1-2491-4d77-9af5-25a16d991031", + "pk": "a11c2322-fef1-4523-a513-a527bf9f31d0", "fields": { - "question": 476, - "contribution": 1668, - "answer": 1, - "count": 3 + "question": 325, + "contribution": 1776, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "babc302d-3d83-4876-aac5-34b4cd13c24a", + "pk": "a130142c-2950-4592-a0ed-e2464f033c83", "fields": { - "question": 348, - "contribution": 1843, - "answer": 2, + "question": 346, + "contribution": 3528, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "babf1a75-0a3a-4cdf-af8d-a5ddf68f14db", + "pk": "a1362816-29d1-48c4-a0ce-71ca88f324e1", "fields": { - "question": 258, - "contribution": 3665, + "question": 345, + "contribution": 4189, "answer": 3, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bac09a23-7ba1-4c2e-8751-2eefe9fa3f7e", + "pk": "a13c500a-dc2a-43ca-a71f-44df5975c4be", "fields": { - "question": 347, - "contribution": 3515, - "answer": 2, - "count": 3 + "question": 319, + "contribution": 3434, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bacdff1c-3ccf-4f4b-b08a-7bc261e2090d", + "pk": "a13fe739-22f4-4551-84dc-1d53475e755c", "fields": { - "question": 356, - "contribution": 3609, - "answer": 1, - "count": 3 + "question": 458, + "contribution": 4283, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bad7bcc5-1b56-4797-ab45-e2b3fd31021c", + "pk": "a15a0cb0-6f5f-4943-990c-418f60aeeabf", "fields": { - "question": 346, - "contribution": 3895, + "question": 327, + "contribution": 4203, "answer": 2, - "count": 3 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "baf123d0-d451-4e21-ad35-bd47d5d62bfa", + "pk": "a15b3588-3ebd-4051-9feb-dfc805137862", "fields": { - "question": 348, - "contribution": 3546, - "answer": 4, - "count": 1 + "question": 329, + "contribution": 885, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "baf2de47-bcc8-48c3-a244-df3c6ce88571", + "pk": "a163c827-2f6d-4908-9b4c-a8683a302636", "fields": { - "question": 345, - "contribution": 1157, + "question": 348, + "contribution": 1247, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "baf64d79-a5c6-4ca5-a67f-62d286e73aab", + "pk": "a16651e0-b25a-495b-9717-2aa30d3fca79", "fields": { - "question": 257, - "contribution": 880, + "question": 327, + "contribution": 1669, "answer": 2, - "count": 13 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb0470aa-4f8c-460a-a9f8-f23bf515ae94", + "pk": "a166c758-1a29-446b-9b00-ff9479e406ea", "fields": { - "question": 336, - "contribution": 868, + "question": 473, + "contribution": 4008, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb056f37-7923-4db9-8309-d51704ff5d73", + "pk": "a1690e3c-9bee-4bf6-bf43-49dc55f045c1", "fields": { - "question": 340, - "contribution": 4072, - "answer": 1, - "count": 2 + "question": 317, + "contribution": 3665, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb09f0d3-863c-45fb-8f0f-6600c592db2b", + "pk": "a16a7494-1ae2-4e1b-a760-072a6b16bf93", "fields": { - "question": 326, - "contribution": 1725, + "question": 320, + "contribution": 4100, + "answer": 2, + "count": 10 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "a1725a70-37ff-452b-8941-d59224cd2253", + "fields": { + "question": 336, + "contribution": 1638, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb0be6a6-6c6e-46f3-a196-5c5e2bae3d2d", + "pk": "a177f9b3-7921-41d6-b213-00d2ccc3515b", "fields": { - "question": 326, - "contribution": 3680, - "answer": 2, + "question": 345, + "contribution": 1735, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb0fb973-7805-4a0b-868a-b02a065e1ea2", + "pk": "a179bde9-7b5a-4978-b6c0-4eaa28366155", "fields": { - "question": 328, - "contribution": 3859, - "answer": 3, + "question": 370, + "contribution": 3712, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb12896d-79d8-49bf-a59a-6eb4a02d285e", + "pk": "a17e4615-33c6-4051-a0f4-0f3cbf76dd15", "fields": { - "question": 322, - "contribution": 3679, - "answer": 4, - "count": 2 + "question": 319, + "contribution": 3354, + "answer": 1, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb1adc07-021f-4acb-b173-881994394f03", + "pk": "a17f4914-8c29-4c9e-8c67-550ab83c7e39", "fields": { - "question": 371, - "contribution": 1884, - "answer": 1, + "question": 316, + "contribution": 4116, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb1becf6-1187-4a1f-a9f4-b95e352ea6f0", + "pk": "a17f602f-7e2f-48bd-8d97-5becead62023", "fields": { - "question": 362, - "contribution": 3921, - "answer": 2, + "question": 347, + "contribution": 3546, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb2a16be-a0a3-4cdf-a1ec-cc737ff3553f", + "pk": "a1852228-53fe-4972-a1fa-6caa74be623b", "fields": { - "question": 369, - "contribution": 1836, - "answer": 3, - "count": 1 + "question": 328, + "contribution": 4101, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb424e14-b72a-4767-92f8-47e6d5e07ebf", + "pk": "a185b509-2ed8-41f4-86f6-e3fdf203439b", "fields": { - "question": 477, - "contribution": 3556, + "question": 473, + "contribution": 3434, "answer": 0, - "count": 9 + "count": 30 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb464ae4-791a-41ab-85f9-f93ea5a8f639", + "pk": "a1a02e66-abf9-48ab-9370-3457c3ec6cbd", "fields": { - "question": 363, - "contribution": 3652, + "question": 464, + "contribution": 4091, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb50c140-eca2-468f-9579-8b41dd8f59ce", + "pk": "a1a831be-476b-4905-9fbe-79d3f8e998e8", "fields": { - "question": 475, - "contribution": 1638, - "answer": 3, + "question": 259, + "contribution": 1837, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb6590cc-7f42-427f-a499-926c7fb6933c", + "pk": "a1b1af5b-fd09-4ecc-8cbc-d6a3577d154f", "fields": { - "question": 368, - "contribution": 3883, - "answer": 3, - "count": 1 + "question": 333, + "contribution": 3598, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb72404e-ca03-432f-b025-e7e5e756a607", + "pk": "a1b40eef-bccf-4559-bc42-9ca1f5f85f2a", "fields": { - "question": 477, - "contribution": 881, - "answer": 0, - "count": 18 + "question": 327, + "contribution": 4023, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb82af2d-f00c-45fc-a08d-af85078f47d8", + "pk": "a1b49130-8fba-4ac0-862d-294809b2f82c", "fields": { - "question": 361, - "contribution": 3597, - "answer": 4, - "count": 1 + "question": 357, + "contribution": 3609, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb88225b-c329-4117-8fef-e7d41ba04894", + "pk": "a1b4bf21-6456-4e1a-97c8-26701cd0cddc", "fields": { - "question": 326, - "contribution": 913, - "answer": 1, - "count": 28 + "question": 335, + "contribution": 3592, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb918eb2-e5ba-40f5-96f0-9056be7ae4a9", + "pk": "a1c67e0b-d7f0-4450-8ec8-225d38a496fa", "fields": { - "question": 341, - "contribution": 1640, - "answer": 3, + "question": 255, + "contribution": 884, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb9360f6-bf5a-4a3e-9840-46efdeb0bbb8", + "pk": "a1cb1354-b05a-4b75-8d64-31177fa2a7a9", "fields": { - "question": 338, - "contribution": 4122, + "question": 349, + "contribution": 3607, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb964316-107d-4c15-99f2-e048d11aa6f2", + "pk": "a1d3ada1-54e4-417e-b091-18c4eb31471d", "fields": { - "question": 371, - "contribution": 4155, - "answer": 1, - "count": 4 + "question": 255, + "contribution": 3474, + "answer": 3, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb997ca1-a01f-4c47-a3d9-d253c2fd649e", + "pk": "a1da7976-4fb2-4d4d-9826-79c6c9e7afa8", "fields": { - "question": 476, - "contribution": 3390, - "answer": -2, + "question": 335, + "contribution": 3631, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bb9eceff-04f7-460f-95cb-25686344a494", + "pk": "a1e47d9c-a9c2-4651-abdd-4ba426da44ac", "fields": { - "question": 369, - "contribution": 3649, - "answer": 1, - "count": 8 + "question": 338, + "contribution": 3482, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bba11e3e-bd84-46ae-acdb-acdad65911ea", + "pk": "a1e8cbfa-eda7-4322-bc89-102118e73401", "fields": { - "question": 367, - "contribution": 3406, + "question": 355, + "contribution": 1782, "answer": 2, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bba31069-875b-45cd-9c90-fd4bfc7ca55d", + "pk": "a1eeeaf5-0923-49f8-9799-f3031e6728d4", "fields": { - "question": 408, - "contribution": 3984, - "answer": 3, + "question": 357, + "contribution": 1782, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bba5be61-04dc-4aef-9d41-4f673177b28f", + "pk": "a1ef6928-4135-4826-8837-5bce076c4262", "fields": { - "question": 428, - "contribution": 4261, - "answer": 2, + "question": 400, + "contribution": 3646, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbb0f541-f55f-4fb3-aebc-3c2cffec4381", + "pk": "a1f6538f-764c-4418-ba30-624ca3e2f84e", "fields": { - "question": 321, - "contribution": 822, - "answer": 1, - "count": 4 + "question": 326, + "contribution": 3859, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbb42476-5b07-440a-81af-809e53aafa91", + "pk": "a1f80f4b-2dc3-47d1-8511-8730263e44ab", "fields": { - "question": 347, - "contribution": 3895, - "answer": 2, + "question": 369, + "contribution": 1835, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbbe7db8-1c53-4adf-9bb6-3a0296e5ecbb", + "pk": "a201651e-6927-4df0-9ae5-771fe214fc31", "fields": { - "question": 348, - "contribution": 3545, + "question": 336, + "contribution": 3508, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbbee02c-f555-4ca6-95bf-fd34f237655d", + "pk": "a20b080b-9e5c-406e-95bd-c3da7a2afeaf", "fields": { - "question": 316, - "contribution": 1668, + "question": 355, + "contribution": 3516, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbcdc6ea-f585-4e96-8564-8cc0bf1b0365", + "pk": "a20de9d7-4835-4709-8155-b22e939ea5a5", "fields": { - "question": 344, - "contribution": 3451, + "question": 345, + "contribution": 1867, "answer": 1, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbd6c8d4-44c7-401e-a282-739318437f96", + "pk": "a2207d97-fb11-4be9-a668-d9a9e45a2a5b", "fields": { - "question": 476, - "contribution": 880, - "answer": 1, - "count": 3 + "question": 322, + "contribution": 1626, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbd6e1d8-d5f9-453c-a8e4-5989bd6e11c7", + "pk": "a227ee91-544f-4e35-b6de-d788e94e4890", "fields": { - "question": 323, - "contribution": 4128, - "answer": 4, - "count": 1 + "question": 357, + "contribution": 1776, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbd92d33-3f8c-4d1d-8f0c-47b93865573a", + "pk": "a23234e5-a8e4-449f-8220-acf7579522f7", "fields": { - "question": 326, - "contribution": 1186, - "answer": 2, - "count": 5 + "question": 346, + "contribution": 1641, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbe20a2b-6849-444f-8bcd-5858f6f664be", + "pk": "a238eb64-f4ed-4f9e-93e8-53530c77b701", "fields": { - "question": 361, - "contribution": 1826, - "answer": 4, - "count": 1 + "question": 327, + "contribution": 4153, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbf32495-de35-4776-b73b-72acd127bb5c", + "pk": "a23dc90b-8404-4309-a830-68fcb8582035", "fields": { - "question": 255, - "contribution": 4120, - "answer": 5, - "count": 2 + "question": 339, + "contribution": 1710, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbf52d8f-9319-4752-b40d-13f51f9c5c64", + "pk": "a23df4e2-fe75-421f-bfc3-7b5b594f9296", "fields": { - "question": 262, - "contribution": 3721, + "question": 356, + "contribution": 1154, "answer": 3, - "count": 4 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbfd3b6c-abf2-4e89-a33a-35569d7d0d9b", + "pk": "a255a227-e46e-4de8-9dff-a220f77b6870", "fields": { - "question": 255, - "contribution": 4116, + "question": 370, + "contribution": 1782, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbfdc903-5e2c-44f8-a3e1-0b83a58b1134", + "pk": "a25f04a9-effd-4713-95df-8cb2d68456c5", "fields": { - "question": 350, - "contribution": 4046, + "question": 315, + "contribution": 3665, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bbfe08e5-88d2-4782-99ee-1675757be7b4", + "pk": "a2623e36-f0dc-48e1-8236-c7c12b9c775d", "fields": { - "question": 348, - "contribution": 3960, - "answer": 2, + "question": 378, + "contribution": 3781, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc04ec67-3849-4ef4-b45a-3567e1df2f10", + "pk": "a26d8306-6c0a-4014-ab58-75229b384331", "fields": { - "question": 396, - "contribution": 3775, - "answer": 3, - "count": 2 + "question": 475, + "contribution": 3685, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc07a553-bb60-4350-9402-91e773e3684b", + "pk": "a278a827-955d-45b7-a2e6-1b303cffc4ce", "fields": { - "question": 367, - "contribution": 3721, - "answer": 3, - "count": 3 + "question": 331, + "contribution": 836, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc0878cb-8c86-4529-a9f8-212eaff833c9", + "pk": "a29a46aa-a5bc-4148-b045-bee149490f5c", "fields": { - "question": 369, - "contribution": 3916, - "answer": 4, - "count": 1 + "question": 477, + "contribution": 1778, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc095aba-43df-417f-bf56-78ac66194000", + "pk": "a29e8e83-1f23-4079-be52-ab77097b2029", "fields": { - "question": 348, - "contribution": 3509, - "answer": 1, + "question": 333, + "contribution": 1283, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc0acafc-3338-4065-b2c0-1c57692cdeb0", + "pk": "a2a32aca-10cd-4470-9b5d-a6f852bf1b5e", "fields": { - "question": 452, - "contribution": 4185, - "answer": 4, - "count": 2 + "question": 1, + "contribution": 4302, + "answer": 1, + "count": 42 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc12510c-e398-4df2-8c63-05a36e334e80", + "pk": "a2beafa1-4257-40d7-8090-f0135bf24cb8", "fields": { - "question": 337, - "contribution": 3440, + "question": 323, + "contribution": 1612, "answer": 1, - "count": 5 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc19b12d-5bd4-4495-8559-de9845338ded", + "pk": "a2c10dba-3d92-401d-b81f-84c01f821651", "fields": { - "question": 388, - "contribution": 3775, - "answer": 2, + "question": 371, + "contribution": 4205, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc25c09d-a58e-4f88-8a96-ef016f5b1842", + "pk": "a2c3488c-1114-4476-9640-e2d76409f5ab", "fields": { - "question": 338, - "contribution": 894, + "question": 349, + "contribution": 1204, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc263266-d6ba-4f93-966a-1b5db4f72f0c", + "pk": "a2c88f96-fea1-4151-9757-feb02636bac8", "fields": { - "question": 329, - "contribution": 1154, + "question": 326, + "contribution": 3473, "answer": 3, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc26c591-e5d8-4834-a40b-2f6fa1731c5e", + "pk": "a2c918bb-6a21-4997-bdf1-a13bfa0df912", "fields": { - "question": 385, - "contribution": 3781, - "answer": 2, + "question": 340, + "contribution": 788, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc328b68-fff6-4006-980e-706ca8029ea9", + "pk": "a2d1a356-78b0-4329-952e-9ba5a4efc575", "fields": { - "question": 368, - "contribution": 1613, - "answer": 4, - "count": 1 + "question": 473, + "contribution": 4116, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc37b166-fdb0-40b5-a717-822c6d8ede29", + "pk": "a2d8d596-64c5-4eba-8657-7600265b743a", "fields": { - "question": 361, - "contribution": 3929, - "answer": 4, - "count": 1 + "question": 346, + "contribution": 1749, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc38ba77-ec30-45b8-b138-9d04343c7188", + "pk": "a2e44b9b-1d1b-457d-ac45-2edaabcfeb60", "fields": { - "question": 333, - "contribution": 1283, - "answer": 2, - "count": 4 + "question": 473, + "contribution": 3466, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc3e5870-0afa-4af5-b8e5-3fb4fc5d8876", + "pk": "a30a9994-fb0a-4027-abc8-f77daffb90f9", "fields": { - "question": 340, - "contribution": 3466, + "question": 348, + "contribution": 3855, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc482bf5-71fb-4c30-9dea-4adb88762166", + "pk": "a310f254-b305-4207-bebb-4c856a57af5c", "fields": { - "question": 326, - "contribution": 3391, + "question": 317, + "contribution": 3406, "answer": 1, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc508b45-b6f9-4bcb-acdc-6ec3d76005c8", + "pk": "a31ceb33-47c9-4c83-8f32-067dfcb3b27b", "fields": { - "question": 336, - "contribution": 3466, + "question": 416, + "contribution": 3974, "answer": 2, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "bc61d825-022b-4531-93a5-e6724ce2c959", - "fields": { - "question": 366, - "contribution": 4155, - "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc62b727-08fa-4b9f-a6a1-cc28a2c501c5", + "pk": "a31dcc2b-4f78-43b9-82c4-2c3bfe35b49f", "fields": { - "question": 369, - "contribution": 3942, + "question": 343, + "contribution": 4234, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc6c1e7d-c815-47d6-af83-de35fc537233", + "pk": "a3248bd3-2c21-4638-a294-fdc5202ad4ca", "fields": { - "question": 357, - "contribution": 1781, + "question": 345, + "contribution": 3545, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc72c7f9-5ec3-4121-a229-18b786269263", + "pk": "a3263f63-5e21-416a-8274-6b56b4d1522a", "fields": { - "question": 315, - "contribution": 3665, - "answer": 4, + "question": 338, + "contribution": 3685, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc944ba4-5390-405a-bcfe-317659b7eacf", + "pk": "a32eda97-e178-4ee3-83ee-774fa2a2ecb3", "fields": { - "question": 332, - "contribution": 4152, - "answer": 3, - "count": 2 + "question": 344, + "contribution": 1661, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc986b33-8fff-4593-adec-659f94643065", + "pk": "a3371e2d-8b8d-49e2-a596-fff89f655455", "fields": { - "question": 371, - "contribution": 3592, - "answer": 5, + "question": 345, + "contribution": 1868, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bc9fb1d6-1ea5-497e-9522-7074efb496d1", + "pk": "a3379a2a-89bf-4f4f-8365-b966bcfa3d47", "fields": { - "question": 326, - "contribution": 3473, + "question": 359, + "contribution": 3652, "answer": 1, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bca0af4c-cae1-4bad-880a-41a80cf4dae9", + "pk": "a3389648-9544-4244-905e-67475e2ca283", "fields": { - "question": 343, - "contribution": 1246, - "answer": 2, + "question": 351, + "contribution": 3693, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bca16055-4f6d-4bb1-b6f0-ff00c1afe5c1", - "fields": { - "question": 328, - "contribution": 3473, - "answer": 2, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "bca87c66-adc6-415b-aff6-7ec70d005db6", + "pk": "a33da47c-65b8-4e89-87e7-d5fc7936fb9c", "fields": { - "question": 258, - "contribution": 1634, + "question": 320, + "contribution": 1612, "answer": 3, - "count": 8 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bcacc7b8-d4e8-4116-b049-81518c6a9030", + "pk": "a33e863e-5c59-4bb9-99ad-8d87f4422d8f", "fields": { - "question": 321, - "contribution": 4116, - "answer": 2, + "question": 368, + "contribution": 4117, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bcb2aea1-2d1e-4164-8bcf-fd2b43071101", + "pk": "a3587256-2edf-49b1-8895-86257f2dd092", "fields": { - "question": 354, - "contribution": 1257, - "answer": 1, - "count": 6 + "question": 473, + "contribution": 3390, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bcb8d23a-7bbd-4afb-a41b-472b9201fd99", + "pk": "a35d74c5-06da-4a83-b0de-b6d79aef6165", "fields": { - "question": 473, - "contribution": 3683, - "answer": 0, - "count": 5 + "question": 333, + "contribution": 3553, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bcb9ddef-56eb-494d-91f8-173983f0795e", + "pk": "a3633fb4-e6dd-42af-87cc-c2a98bd44969", "fields": { - "question": 348, - "contribution": 3545, + "question": 328, + "contribution": 3391, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bcccf51c-a308-4158-86f6-846f653c7911", + "pk": "a36b9f49-08a9-4aea-9320-417095b519ac", "fields": { - "question": 340, - "contribution": 3681, + "question": 348, + "contribution": 4003, "answer": 1, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "bcd79416-23dd-43ef-bb8e-cf86750986ff", - "fields": { - "question": 315, - "contribution": 1612, - "answer": 3, - "count": 5 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bcd95fe2-8006-444c-9351-be18a4925e84", + "pk": "a37b2754-1865-4b44-871f-0c76334cd8d2", "fields": { - "question": 338, - "contribution": 3759, + "question": 359, + "contribution": 1810, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bce70647-76a0-4cba-89f2-e87ae40135e8", + "pk": "a37b7b92-4da0-47bc-b949-17db8123b726", "fields": { - "question": 323, - "contribution": 1634, - "answer": 3, - "count": 9 + "question": 366, + "contribution": 4152, + "answer": 1, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bce85886-f4a5-4e74-b23c-529922c269c2", + "pk": "a37ecb7e-48fc-4532-82c6-e8abac245358", "fields": { - "question": 333, - "contribution": 4155, - "answer": 3, + "question": 262, + "contribution": 822, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bce97ac6-d62e-40ba-bfe0-960232d2b08b", + "pk": "a38576e3-df35-4df2-b18c-51ea132bdbe8", "fields": { - "question": 262, - "contribution": 4022, - "answer": 1, - "count": 3 + "question": 335, + "contribution": 3882, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd04b4d9-d166-469a-a677-d9c7d21e240e", + "pk": "a3978488-4ff6-41d8-b2b9-6175102942e2", "fields": { - "question": 348, - "contribution": 4146, - "answer": 1, - "count": 3 + "question": 337, + "contribution": 804, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd0c2a73-1754-4de9-bc66-a743c23edf5b", + "pk": "a398fba2-36c2-462c-9374-df8b81790396", "fields": { - "question": 320, - "contribution": 3474, - "answer": 5, - "count": 4 + "question": 357, + "contribution": 3847, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd150239-1838-4e34-8589-914414359b80", + "pk": "a3a2f045-9c7e-421c-9732-5bf343738afb", "fields": { - "question": 344, - "contribution": 3516, - "answer": 1, - "count": 9 + "question": 362, + "contribution": 3942, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd15165a-d18f-433c-9413-512e8029d82f", + "pk": "a3a52394-a454-4a2f-8772-57a5a208362d", "fields": { - "question": 315, - "contribution": 4116, + "question": 361, + "contribution": 3893, "answer": 3, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd1b04ef-adcb-4cb0-96b0-177bd1f2211f", + "pk": "a3a9b424-afe7-47b5-8932-317439eee316", "fields": { - "question": 259, - "contribution": 3390, - "answer": 3, - "count": 4 + "question": 473, + "contribution": 3745, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd1cc1b1-2302-4e45-bec8-436cda7e2e4b", + "pk": "a3af9c4e-6e3c-46b1-8463-6fda6cd1298b", "fields": { - "question": 255, - "contribution": 4022, + "question": 366, + "contribution": 3631, "answer": 1, - "count": 2 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd206176-be4c-4b3c-be0b-3a45c8306e19", + "pk": "a3b26fb0-d8d1-478d-9b23-6016987d9493", "fields": { - "question": 344, - "contribution": 1873, + "question": 325, + "contribution": 909, "answer": 1, - "count": 1 + "count": 32 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd257408-67e1-422d-812f-3d803abb8b18", + "pk": "a3b47b9b-5941-456f-a00a-b7e654596f92", "fields": { - "question": 328, - "contribution": 1186, - "answer": 3, - "count": 4 + "question": 348, + "contribution": 1250, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd37f8d8-5d9d-4a4a-ad41-944c670bea42", + "pk": "a3c295fa-ab1d-4d10-b6ac-16099e02ce6d", "fields": { - "question": 366, - "contribution": 3552, - "answer": 1, + "question": 316, + "contribution": 4118, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd430304-af07-44c1-bf4f-9f7d4b73b34d", + "pk": "a3c5dad0-6f2a-4787-85ee-2dcb1e6dcec2", "fields": { - "question": 337, - "contribution": 3454, - "answer": 2, - "count": 1 + "question": 344, + "contribution": 3517, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd4ac986-eb2e-45a2-afa4-43eceefd4b07", + "pk": "a3cdff0e-d7c1-4e03-af8e-38d28cf640d3", "fields": { - "question": 346, - "contribution": 1735, - "answer": 2, + "question": 316, + "contribution": 4100, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd4df250-c0eb-4f2d-87cd-f79c2e65f93b", + "pk": "a3ceda41-4863-41f9-9547-ff6d41e1bad1", "fields": { - "question": 383, - "contribution": 3781, - "answer": 2, + "question": 368, + "contribution": 3680, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd4fdaa3-6b9a-409a-8668-0e65c9b03065", + "pk": "a3cf0833-1e13-4c00-8b0b-0ae7210d22ff", "fields": { - "question": 326, - "contribution": 1287, - "answer": 3, - "count": 2 + "question": 360, + "contribution": 1835, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd6c5de3-d326-4e07-9898-5adfa0211290", + "pk": "a3d464bb-2487-413d-a4e6-30e3c617a437", "fields": { - "question": 428, - "contribution": 4205, - "answer": 3, + "question": 339, + "contribution": 1200, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd6cd7d7-27f8-4e4c-9297-372c049d9cb6", + "pk": "a3dc851c-4700-44be-b7ec-9d1486a3a20b", "fields": { - "question": 348, - "contribution": 1205, - "answer": 3, - "count": 1 + "question": 322, + "contribution": 3679, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd7976c3-fd9d-46dd-9fe4-77381c9d17d9", + "pk": "a3de24d7-62be-485c-b594-524bdcf03943", "fields": { - "question": 337, - "contribution": 1694, - "answer": 3, - "count": 1 + "question": 332, + "contribution": 3551, + "answer": 1, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd860cb5-6054-4712-9ef5-d59ce2027330", + "pk": "a3fa2aef-17fd-477b-ba98-8b6312432a2a", "fields": { - "question": 348, - "contribution": 4187, - "answer": 3, - "count": 1 + "question": 403, + "contribution": 4119, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd93602d-5b92-4226-bb8c-d93cc99d3c17", + "pk": "a3fbc2d3-8772-4b17-a8f2-d0485e75e4c3", "fields": { - "question": 257, - "contribution": 3679, - "answer": 1, - "count": 21 + "question": 477, + "contribution": 1802, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd94c8b6-ab7a-4d74-a135-0d7ad94b5c39", + "pk": "a401a56b-7f30-49d9-8527-cf7721d53c94", "fields": { - "question": 359, - "contribution": 3916, - "answer": 1, - "count": 6 + "question": 315, + "contribution": 3725, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd95c0ae-3477-4953-8fcb-80ddd231f4ba", + "pk": "a40380ec-66ac-4c31-aba5-0af091a7a367", "fields": { - "question": 317, - "contribution": 1634, - "answer": 1, - "count": 22 + "question": 473, + "contribution": 3795, + "answer": -1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd9920d3-b6b2-41e7-9c1a-609c082d3b1a", + "pk": "a40e7e91-4c51-4154-bc21-7167417b9041", "fields": { - "question": 473, - "contribution": 3474, - "answer": -1, - "count": 5 + "question": 315, + "contribution": 3406, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd99d291-63ee-4bdc-a969-36c890ff885a", + "pk": "a40f7d60-2c1f-463d-8d74-c8abdbd101e2", "fields": { - "question": 339, - "contribution": 3486, - "answer": -1, + "question": 349, + "contribution": 1207, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bd9ac961-8607-493b-959f-50f77daf4561", + "pk": "a4250e6c-793f-4d33-9409-483da51e32cf", "fields": { - "question": 460, - "contribution": 4283, - "answer": 4, - "count": 1 + "question": 333, + "contribution": 3598, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bda21ff8-805e-4037-90eb-e6280aebb25c", + "pk": "a425fb1f-7a81-4fc9-b47a-ccb5b55c41ad", "fields": { - "question": 344, - "contribution": 4123, + "question": 370, + "contribution": 3832, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bdb7a152-65bb-4bf7-9af3-fda198631077", + "pk": "a433e50b-aa59-4ba4-b66e-5e6f0eddb163", "fields": { - "question": 329, - "contribution": 4101, - "answer": 2, - "count": 5 + "question": 259, + "contribution": 1658, + "answer": 1, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bdbbfbd0-4923-431c-9be7-5d289405321d", + "pk": "a435dd56-9136-412d-a38e-c26a5b5896de", "fields": { - "question": 333, - "contribution": 4205, - "answer": 3, + "question": 325, + "contribution": 3859, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bdc02092-b80b-4bca-ada9-1ec98d01ab01", + "pk": "a44290ba-8ce5-472e-9cda-4e8fda972c6c", "fields": { - "question": 475, - "contribution": 1660, - "answer": 3, - "count": 1 + "question": 357, + "contribution": 3516, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bdc2d59f-aec6-4c9e-bf0b-e5e5ce6ad852", + "pk": "a44540dd-2008-48d6-be7a-2972a3fea02d", "fields": { - "question": 370, - "contribution": 3546, - "answer": 2, - "count": 2 + "question": 336, + "contribution": 3450, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bdd69f31-c226-434d-ba08-97dd80ad4851", + "pk": "a4591c8a-3367-4b96-9fb0-ae8534a80ab6", "fields": { - "question": 346, - "contribution": 1867, + "question": 359, + "contribution": 1812, "answer": 1, - "count": 6 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bddaa4d2-a3ac-47a6-9883-5e0ad38bdbee", + "pk": "a465e7d3-4511-4ed7-8cf7-dfca0f5d258f", "fields": { - "question": 332, - "contribution": 3593, - "answer": 3, - "count": 3 + "question": 473, + "contribution": 3404, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bddcb921-46e2-4b84-b466-eb6efcf0a20a", + "pk": "a46c0694-4487-49cd-84c5-85b35756e24d", "fields": { - "question": 350, - "contribution": 4046, + "question": 262, + "contribution": 3679, "answer": 2, - "count": 3 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bddec8dc-f7a3-4386-a607-a9bc2076d81a", + "pk": "a46d676f-35c3-4909-8ba6-ac7e1cd9271b", "fields": { - "question": 369, - "contribution": 1835, + "question": 317, + "contribution": 1724, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bde5b6ac-0e84-4b78-b4fe-9fc929e91505", + "pk": "a474ef64-3d40-444e-8fd8-bbb3da66bb40", "fields": { - "question": 315, - "contribution": 822, - "answer": 3, + "question": 353, + "contribution": 4223, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bde639e2-fcc0-4a69-9516-ff8fc7ab962d", + "pk": "a47656da-a87e-4960-9810-eb72d25a53fb", "fields": { - "question": 257, - "contribution": 912, - "answer": 1, - "count": 37 + "question": 258, + "contribution": 1612, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bdee2ef5-ca84-4bec-bf35-c71a379c41b7", + "pk": "a4857916-fe5f-494e-8925-2c648e2b2d5f", "fields": { - "question": 345, - "contribution": 3545, - "answer": 1, - "count": 3 + "question": 333, + "contribution": 837, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bdfc6f4d-98bc-46e4-868b-7510f0f3ff25", + "pk": "a49a49dd-e23b-49b6-a262-a4d70c246f97", "fields": { - "question": 472, - "contribution": 4072, + "question": 356, + "contribution": 3832, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be00fe50-c240-4595-b0ef-16e8488b363e", + "pk": "a49a76c8-df86-4788-846d-1674520788dd", "fields": { - "question": 322, - "contribution": 1612, - "answer": 4, - "count": 1 + "question": 323, + "contribution": 884, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be022d63-2a89-4c3c-b696-0bd4c708b31d", + "pk": "a49b6e88-28cd-4fd2-88ce-182d68709e42", "fields": { - "question": 328, - "contribution": 3556, - "answer": 5, - "count": 2 + "question": 355, + "contribution": 3832, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be1bf1e5-2e0e-4e3c-bf0f-a79cbba0cb97", + "pk": "a49da1eb-ea23-499a-be70-00e2bf9c8a7f", "fields": { - "question": 340, - "contribution": 1200, - "answer": 3, + "question": 379, + "contribution": 3711, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be1c6674-d929-49d8-99f1-072cfbd43490", + "pk": "a49da447-7006-416e-b5f5-2961add2fed5", "fields": { - "question": 347, - "contribution": 4190, - "answer": 2, + "question": 337, + "contribution": 3454, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be27907b-2983-4911-ba7a-96925751ad60", + "pk": "a4a630e9-28c3-4ef3-a9ce-26ca792dc984", "fields": { - "question": 345, - "contribution": 3895, - "answer": 1, - "count": 4 + "question": 475, + "contribution": 3693, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be27affc-0a42-46da-b35f-a4c51a168c4d", + "pk": "a4a8e291-0c55-4463-b8f8-8a76e57912ea", "fields": { - "question": 327, - "contribution": 1797, - "answer": 1, - "count": 4 + "question": 346, + "contribution": 4021, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be317cbd-4d6e-4c3d-8be9-19fb98e3ad9a", + "pk": "a4bca726-dc91-445a-9df8-b1de82ad0cc8", "fields": { - "question": 327, - "contribution": 885, - "answer": 5, + "question": 325, + "contribution": 3680, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be371cda-0440-4701-9b3a-76142127b7a9", + "pk": "a4bcbcb9-4e83-4fe4-beca-da1eda06bb6b", "fields": { - "question": 461, - "contribution": 4141, + "question": 359, + "contribution": 3650, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be3accbf-fb2f-4640-b17a-84ff3babc689", + "pk": "a4c66314-454e-4bb6-acfb-ff13e6d40489", "fields": { - "question": 400, - "contribution": 4148, + "question": 355, + "contribution": 3607, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be4094b2-45db-473b-a3e3-af6995208968", + "pk": "a4c6638f-97de-4613-9c0d-da39180ef0c0", "fields": { - "question": 341, - "contribution": 4020, - "answer": 4, + "question": 329, + "contribution": 1780, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be495693-4ea4-4d0e-bab7-10b70328efac", + "pk": "a4cd4149-3f41-49f9-9806-81fc1d05cbc4", "fields": { "question": 327, - "contribution": 4117, - "answer": 5, - "count": 1 + "contribution": 881, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be4b50b4-5970-476a-9c84-cd4de985bd15", + "pk": "a4cd9239-025b-4664-8384-bed83649e3a5", "fields": { - "question": 322, - "contribution": 3354, - "answer": 3, + "question": 477, + "contribution": 1154, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be57a6a3-2b6f-4ae5-b784-65b931447350", + "pk": "a4cef9b3-8470-4d98-9738-7874ef90c2fa", "fields": { - "question": 472, - "contribution": 3711, + "question": 337, + "contribution": 4036, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be62a0e8-d7f5-45fa-b8e1-eb4678c7033c", + "pk": "a4d164e2-efcc-4f8c-a990-98fc1493bcf9", "fields": { - "question": 321, - "contribution": 3434, - "answer": 5, - "count": 2 + "question": 438, + "contribution": 4140, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be677645-df11-4517-ba0c-c578c292ce98", + "pk": "a4d21ae4-4894-41a4-b5f4-4b546fa79908", "fields": { - "question": 472, - "contribution": 3422, - "answer": 5, - "count": 20 + "question": 255, + "contribution": 3462, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be6cff95-c558-4e2b-a262-981d5fd8fdb4", + "pk": "a4d2f4c5-09ef-47f2-b7ff-51ea3eadd940", "fields": { - "question": 473, - "contribution": 884, - "answer": 0, - "count": 29 + "question": 331, + "contribution": 3739, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be763909-eef1-48c4-bd8c-f29feaa482ed", + "pk": "a4e1f758-c320-4c16-8539-976d7a58ddaa", + "fields": { + "question": 369, + "contribution": 1810, + "answer": 5, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "a4e202a0-e13d-47b1-bf0d-67bf3163c3f6", "fields": { "question": 477, - "contribution": 1298, - "answer": 2, - "count": 2 + "contribution": 4117, + "answer": 0, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be7aa331-9c96-454a-8efc-07ba858fa8e9", + "pk": "a4e7b997-c7c8-4f4a-b541-c2e136fa1bf0", "fields": { - "question": 260, - "contribution": 822, - "answer": 3, + "question": 344, + "contribution": 3895, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be8613a5-d38a-4105-884d-7d8d8376c6ab", + "pk": "a4ed22a0-6bc1-4394-9778-0e23b8420c64", "fields": { - "question": 366, - "contribution": 4155, - "answer": 3, + "question": 320, + "contribution": 4120, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be895156-ec78-4ebf-afbb-93e42292a3ee", + "pk": "a4ee6bb7-a4b5-45dd-80d8-1464d37d35ab", "fields": { - "question": 356, - "contribution": 1776, - "answer": 3, - "count": 2 + "question": 325, + "contribution": 3722, + "answer": 1, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be9467bf-11dd-44b3-a197-021a1907f829", + "pk": "a5027d48-704a-4481-a079-bb05271eb257", "fields": { - "question": 331, - "contribution": 1634, - "answer": 0, - "count": 21 + "question": 257, + "contribution": 3422, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be94d171-ca17-41be-b335-9ec9dc00c9f4", + "pk": "a50416b8-55a1-426c-84a8-d5dd250f035d", "fields": { - "question": 335, - "contribution": 3552, - "answer": 3, - "count": 9 + "question": 475, + "contribution": 1694, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be9765c7-b390-4a04-bca1-7f26c30feb79", + "pk": "a5155b96-532c-420b-af8a-a9d54969f5a7", "fields": { - "question": 348, - "contribution": 3890, + "question": 357, + "contribution": 3782, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be989072-4b6e-4b45-90d9-fe8781efc78f", + "pk": "a5203170-12d0-455f-9d34-0cce11e7fd34", "fields": { - "question": 260, - "contribution": 4138, - "answer": 4, - "count": 3 + "question": 344, + "contribution": 4191, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "be9f9ac8-edec-43d3-8b10-12ea5de908b3", + "pk": "a526c08b-dda9-4410-85d9-e59c274fcbf9", "fields": { - "question": 473, - "contribution": 3725, - "answer": 3, - "count": 2 + "question": 344, + "contribution": 1206, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bead8669-381b-4d35-b6a4-3c2a817d3f80", + "pk": "a5278f52-eff5-4d45-a8d7-14bac5d5bcf8", "fields": { - "question": 262, - "contribution": 880, - "answer": 3, + "question": 348, + "contribution": 1863, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "beaf140c-8ec0-46cd-83c7-4b6b3301bc10", + "pk": "a52b61c5-b811-4c57-bf57-ca949b4b75f7", "fields": { - "question": 328, - "contribution": 1635, + "question": 356, + "contribution": 3546, "answer": 2, - "count": 11 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "beaf6629-8e02-42b6-aef2-b3ae2b199c05", + "pk": "a52ca546-164c-42c5-b5c2-7b0adc931e19", "fields": { - "question": 346, - "contribution": 1851, - "answer": 2, - "count": 1 + "question": 260, + "contribution": 4084, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "beb00baf-300c-472b-978e-b3c3acc9f9d3", + "pk": "a52f18b8-fc5c-473a-bf02-0f0140b5d4d3", "fields": { - "question": 315, - "contribution": 836, - "answer": 3, + "question": 328, + "contribution": 4101, + "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "beb8ad6a-5864-435e-8440-7fc6cba8676d", + "pk": "a5320017-11a5-4428-84fd-6c359c314c85", "fields": { - "question": 367, - "contribution": 3422, - "answer": 4, - "count": 2 + "question": 356, + "contribution": 4243, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bebae17d-2b97-4867-b2a0-2e37c2ea80b3", + "pk": "a5360a47-8c82-44d3-95e7-34ec6e0e6ea1", "fields": { - "question": 435, - "contribution": 4008, - "answer": 2, - "count": 1 + "question": 356, + "contribution": 3517, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bebb006d-4145-4816-8eb5-1a8e7638d5cb", + "pk": "a5430090-a9d9-4528-bea1-c3cffbd60967", "fields": { - "question": 317, - "contribution": 884, - "answer": 5, + "question": 347, + "contribution": 3367, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bec7e663-7d52-4007-82c8-08b8babcccd1", + "pk": "a5492a78-c9c8-4782-9c10-f4769d48ef32", "fields": { - "question": 340, - "contribution": 3404, - "answer": 5, + "question": 362, + "contribution": 1803, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bed8932c-c2c7-482a-8781-71b141d8f9e9", + "pk": "a561f828-d776-4b95-b04d-7c5585b4ef13", "fields": { - "question": 255, - "contribution": 3665, - "answer": 1, - "count": 9 + "question": 362, + "contribution": 3597, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bee2b18b-5996-473b-becc-d6e9ca83a05a", + "pk": "a56c2604-8c87-4353-a7f7-cea2c4d99474", "fields": { - "question": 315, - "contribution": 4118, - "answer": 1, - "count": 4 + "question": 258, + "contribution": 3739, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bef05d20-8280-4578-9fb6-876aaaa421a1", + "pk": "a57646ac-48d8-4022-99c3-24fd7d093137", "fields": { - "question": 338, - "contribution": 3382, - "answer": 2, + "question": 319, + "contribution": 4040, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bef9f842-562b-48fb-9e78-80a2658d3861", + "pk": "a57a11d4-056c-4e07-b295-d6153dc30132", "fields": { - "question": 335, - "contribution": 4152, + "question": 257, + "contribution": 908, "answer": 4, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "beff3682-ae89-4b1b-8eee-3926cbc7e935", + "pk": "a58fd612-4273-4df9-8621-a6e35524b42e", "fields": { - "question": 347, - "contribution": 1881, - "answer": 3, - "count": 2 + "question": 346, + "contribution": 1735, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf0ef5d9-d96c-4205-8c2f-0b2328f1d195", + "pk": "a5962ef9-d84e-44f4-b97f-96913a451804", "fields": { - "question": 315, - "contribution": 4084, + "question": 328, + "contribution": 3473, "answer": 1, - "count": 24 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf2a9115-6557-45aa-8c47-4ea004ccf213", + "pk": "a5a301ab-1a59-4a6c-9499-32667b7e491c", "fields": { - "question": 331, - "contribution": 1724, - "answer": 0, - "count": 4 + "question": 329, + "contribution": 3740, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf3547ff-7e29-43e2-aaa6-176ea735e5bc", + "pk": "a5a9c352-5108-43e4-b225-b858633614f8", "fields": { - "question": 341, - "contribution": 3382, + "question": 329, + "contribution": 881, "answer": 3, - "count": 1 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf428259-9e6b-4e09-9fe6-7cbc82d2e60b", + "pk": "a5aa2e27-f0f3-4486-8212-4281d72c4c83", "fields": { - "question": 315, - "contribution": 3472, - "answer": 2, - "count": 5 + "question": 329, + "contribution": 4152, + "answer": 1, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf45f3c9-f75b-4888-b3c3-013357cc1438", + "pk": "a5aa9527-9d98-47fa-87ad-5e1082d7dcf7", "fields": { - "question": 323, - "contribution": 3472, + "question": 370, + "contribution": 4271, "answer": 1, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf4df3af-27eb-4a8a-8bf7-ccf247bd7b41", + "pk": "a5b5eca5-aea3-485c-97a0-5da4931890cb", "fields": { - "question": 362, - "contribution": 1825, - "answer": 5, - "count": 1 + "question": 328, + "contribution": 3463, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf50e70b-b255-453c-ab11-13b19e4fa585", + "pk": "a5c96b00-5658-4082-9167-be61f90c53d2", "fields": { - "question": 329, - "contribution": 1779, + "question": 320, + "contribution": 822, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf560875-a2d2-4f17-97a4-e9b3fa32e891", + "pk": "a5d0f58a-b401-4204-a3c8-f24ee8f32027", "fields": { - "question": 477, - "contribution": 1186, - "answer": 0, - "count": 21 + "question": 258, + "contribution": 3679, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf572378-a777-48ab-b3d0-57fb48e806c6", + "pk": "a5d8080a-5961-43a1-ae8a-3a132a09641e", "fields": { - "question": 320, - "contribution": 4138, - "answer": 5, - "count": 1 + "question": 337, + "contribution": 1748, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf594034-34d8-4900-858c-829f2e2cc18d", + "pk": "a5d8e130-1771-42e9-9594-efe2d5b362a2", "fields": { - "question": 337, - "contribution": 1644, - "answer": 1, - "count": 4 + "question": 360, + "contribution": 1806, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf5bccca-98bf-4daf-b30d-433f9867e0b8", + "pk": "a5e30bba-cc04-468f-b39c-4552f0443d05", "fields": { - "question": 354, - "contribution": 3546, - "answer": 3, - "count": 3 + "question": 428, + "contribution": 4156, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf9d8072-2714-4091-876b-8ca6d8d6590d", + "pk": "a5e9de61-640e-4894-a878-4b43a6961cd9", "fields": { - "question": 327, - "contribution": 1802, - "answer": 1, - "count": 7 + "question": 350, + "contribution": 3745, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf9dab7a-d5eb-4860-a7ee-a5b76551fe86", + "pk": "a6065e81-1a0f-4ab2-92ae-b05054e814cd", "fields": { - "question": 333, - "contribution": 4244, - "answer": 1, - "count": 2 + "question": 328, + "contribution": 1154, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bf9dad20-fb94-4f23-b81c-55deb60b499d", + "pk": "a64397c8-3bad-4b24-9f14-7f49fd6a37d6", "fields": { - "question": 323, - "contribution": 3462, - "answer": 1, + "question": 473, + "contribution": 1660, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfa2b724-6ead-46e3-997a-7c6859782f54", + "pk": "a644841f-5446-42d2-b0f6-0ae458ceb8b1", "fields": { - "question": 407, - "contribution": 3984, - "answer": 3, + "question": 348, + "contribution": 1880, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfa4de9e-34ef-4498-9ea4-5fbe9953c5c4", + "pk": "a645d893-f098-40ed-abb6-7fb35e2c5589", "fields": { - "question": 323, - "contribution": 3721, - "answer": 1, - "count": 5 + "question": 337, + "contribution": 3486, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfa54a6c-e392-4be1-b475-c954eced53fe", + "pk": "a6471578-cf52-48fe-8e8e-2a1140964e6e", "fields": { - "question": 353, - "contribution": 3516, + "question": 340, + "contribution": 3366, "answer": 1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfa5f245-7177-4470-b379-471dfed9b7ba", + "pk": "a649d9f3-9751-439d-99a2-08489d976c46", "fields": { "question": 255, - "contribution": 1837, - "answer": 3, + "contribution": 3739, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfa5fad7-5cd4-42d9-bf4a-fa457c394e22", + "pk": "a6519a63-f1d2-44b5-a60e-8e83a682119a", "fields": { - "question": 328, - "contribution": 3859, + "question": 329, + "contribution": 4152, "answer": 4, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfb07049-d66f-48bc-845b-b884165b6ea4", + "pk": "a65fc2f7-5ec5-4312-9112-f3368cf132f8", "fields": { - "question": 361, - "contribution": 1808, + "question": 319, + "contribution": 4118, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfb6deb5-7311-4169-becb-5cf72f9878a5", + "pk": "a66ba4af-b681-446c-b07d-5347698492b9", "fields": { - "question": 343, - "contribution": 4190, + "question": 326, + "contribution": 3883, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfb7124d-513c-41c4-8023-cc81975f215d", + "pk": "a66f0c2a-1966-4962-843c-7be4891fa7b5", "fields": { - "question": 327, - "contribution": 4101, - "answer": 4, - "count": 2 + "question": 367, + "contribution": 3434, + "answer": 5, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfbc620c-d831-4f1b-b1c1-1958a6552017", + "pk": "a6735e05-d2fa-4b8d-9514-69c2eb57a451", "fields": { - "question": 345, - "contribution": 1873, - "answer": 1, + "question": 331, + "contribution": 1612, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfbe4088-751f-4733-9c33-63edd847527f", + "pk": "a67d8d76-ecb5-440d-8895-dbc30abc11a2", "fields": { - "question": 337, - "contribution": 1662, - "answer": 1, - "count": 6 + "question": 394, + "contribution": 3711, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfc22891-38db-4013-8e59-a8350a7e0958", + "pk": "a68c1fe9-d32a-4478-843a-0391c7031924", "fields": { - "question": 325, - "contribution": 1154, - "answer": 2, - "count": 9 + "question": 257, + "contribution": 1612, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfc30d32-f947-41a6-8b65-a7fef802ed38", + "pk": "a68d2a49-d0f5-4fb7-92cc-74ac2c9fe3bc", "fields": { - "question": 379, - "contribution": 3711, - "answer": 2, - "count": 2 + "question": 473, + "contribution": 1726, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfd33251-ec11-4bd8-8e13-78be17036bd2", + "pk": "a6951d38-df5f-4e9c-b1c8-957e2bbdd5a4", "fields": { - "question": 321, - "contribution": 4128, - "answer": 5, - "count": 1 + "question": 349, + "contribution": 3728, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfd7b402-002b-45ef-89c6-976a7f8dab67", + "pk": "a69b3867-cce5-4388-ad7d-e6ad4ea9ffd1", "fields": { - "question": 338, - "contribution": 1640, - "answer": 5, - "count": 1 + "question": 362, + "contribution": 1826, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfd9fdde-ac33-45cd-9e48-769a57be3903", + "pk": "a69c072b-e0e9-4d78-b81a-de2db49f36d4", "fields": { - "question": 477, - "contribution": 4023, + "question": 316, + "contribution": 4028, "answer": 1, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfdc52a8-3f2b-4afb-a742-a60d130175e7", + "pk": "a6a15613-3198-4a2d-9e2c-37abc0c20abc", "fields": { - "question": 435, - "contribution": 4140, + "question": 388, + "contribution": 3755, "answer": 3, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfdeb275-d806-45ce-8fdf-8ea87dc818c6", + "pk": "a6a73aea-0724-4eca-8a17-c046585af8bb", "fields": { - "question": 329, - "contribution": 4117, + "question": 255, + "contribution": 880, "answer": 3, + "count": 9 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "a6b2467e-c8ed-47d5-a80f-c9316f90f25d", + "fields": { + "question": 459, + "contribution": 4073, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfe08173-d665-442b-a29a-dd529b5373f1", + "pk": "a6b9575f-4487-4bd6-a8e9-1c123ba51708", "fields": { - "question": 322, - "contribution": 3474, - "answer": 2, - "count": 4 + "question": 345, + "contribution": 1822, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfe2568a-12a7-48f1-a585-0e5c4fe8f597", + "pk": "a6bfc342-cde7-4150-9d00-c6305603cf2e", "fields": { "question": 473, - "contribution": 3645, + "contribution": 4116, "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfe3d964-5bcb-490a-af78-d68c04195366", + "pk": "a6c33dda-a180-4819-b238-88e5b501a403", "fields": { - "question": 315, - "contribution": 3725, + "question": 255, + "contribution": 4120, "answer": 1, - "count": 14 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bfeb0d2d-763c-4a1f-b5c9-787a145b5cbc", + "pk": "a6c6d7ca-f2dc-4a99-87d3-0345cda6504d", "fields": { - "question": 350, - "contribution": 788, - "answer": 3, - "count": 3 + "question": 320, + "contribution": 3434, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "bff50e88-d144-42b7-aea3-d1eabe5dcee4", + "pk": "a6c8b12a-440a-4257-81ca-ab04bd317965", "fields": { - "question": 316, - "contribution": 4138, - "answer": 3, - "count": 8 + "question": 328, + "contribution": 1669, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c00897df-6096-44f3-a8d5-bd67ab921fdb", + "pk": "a6d7795b-aaf2-46c1-95c0-f32065c4849d", "fields": { - "question": 359, - "contribution": 3929, + "question": 323, + "contribution": 3721, "answer": 2, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c01fa469-0cc5-41f1-80b4-560da88208dd", + "pk": "a6dd9a92-9feb-48bc-8a8f-d5b5192e8a24", "fields": { - "question": 335, - "contribution": 3592, - "answer": 3, - "count": 1 + "question": 259, + "contribution": 4138, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c0232554-ced2-437b-9e1d-cc37ed81e238", + "pk": "a6ecb837-9a85-4a98-bb03-4bc8c19ccf1d", "fields": { - "question": 331, - "contribution": 3462, - "answer": 0, - "count": 4 + "question": 346, + "contribution": 1873, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c036816f-baeb-48e6-9c12-bcd5c0107a1e", + "pk": "a6ee7255-4b3a-4721-b2ba-d3ced70504a6", "fields": { - "question": 343, - "contribution": 887, + "question": 325, + "contribution": 3726, "answer": 3, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c0372aeb-b250-4575-a7fd-268d1e1aefe1", + "pk": "a6f8c8a8-f5ff-4a4f-8f06-5893c1345723", "fields": { - "question": 370, - "contribution": 4279, + "question": 347, + "contribution": 1156, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c04799e2-f94d-4304-ad6e-5bd9426611c5", + "pk": "a70c20d2-748f-4af0-9ea8-bd8065d235f2", "fields": { - "question": 367, - "contribution": 3474, + "question": 346, + "contribution": 1824, "answer": 2, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c0489fec-1285-4859-910c-77586691cb3d", + "pk": "a722e7a0-20bc-4ee1-839d-e37daa17e0f5", "fields": { - "question": 433, - "contribution": 4090, - "answer": 4, - "count": 1 + "question": 349, + "contribution": 3518, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c04b6862-2581-4615-8772-ab284c6944c2", + "pk": "a72465c9-c368-467a-9b90-da7e86d7a398", "fields": { - "question": 327, - "contribution": 1780, - "answer": 1, - "count": 7 + "question": 340, + "contribution": 1644, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c04f335a-41a6-46fb-87cb-8f3dd6761e62", + "pk": "a72617f8-1dfd-48b6-acfb-e3fa2c7ccdce", "fields": { - "question": 347, - "contribution": 1205, - "answer": 2, + "question": 339, + "contribution": 3735, + "answer": 0, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c052b3dc-29fd-4dc2-9542-06d90623ab83", + "pk": "a728be9b-184d-4441-af02-060e745a210e", "fields": { - "question": 335, - "contribution": 4244, + "question": 348, + "contribution": 1922, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c056a870-620e-4b71-82f9-a0a13fdddb19", + "pk": "a73a27ec-695e-4c49-82db-4e396b969ffd", "fields": { "question": 473, - "contribution": 4116, + "contribution": 1656, "answer": 0, - "count": 5 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c05f3f32-7fe9-4bdd-b698-898fabb045be", + "pk": "a7480dc7-2911-484f-9fa4-f2cbb0341800", "fields": { - "question": 356, - "contribution": 3849, - "answer": 1, - "count": 6 + "question": 335, + "contribution": 4152, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c06303bc-9c2c-4eb0-9431-3521c5722fcc", + "pk": "a74ba136-b859-45be-b00e-fd8e553cf6d0", "fields": { - "question": 329, - "contribution": 4023, - "answer": 1, - "count": 3 + "question": 338, + "contribution": 3821, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c07365af-df78-466c-93d8-aee016fe7289", + "pk": "a74e197d-fae5-47d7-81b3-cb0a6986fbca", "fields": { - "question": 368, - "contribution": 4203, - "answer": 3, + "question": 477, + "contribution": 1669, + "answer": -1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c073b4a4-b544-43d9-b587-74c0fa3e17db", + "pk": "a751f251-9c53-4634-a18d-1d4f726d86ce", "fields": { - "question": 322, - "contribution": 908, + "question": 476, + "contribution": 3462, "answer": 2, - "count": 9 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c087bf8c-c9f3-4d06-b3e5-c4c36e5f51ae", + "pk": "a752f024-8046-4935-894f-d15d4f943d8e", "fields": { - "question": 348, - "contribution": 4095, - "answer": 1, - "count": 5 + "question": 345, + "contribution": 1880, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c088c135-655e-4941-a494-5a3f6b375761", + "pk": "a75354e8-613e-46ee-b559-fe45eaad4f09", "fields": { - "question": 325, - "contribution": 4153, + "question": 321, + "contribution": 908, "answer": 2, - "count": 2 + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c08a7b97-5868-405c-b3d9-711f0fa4fa0f", + "pk": "a76ceab1-cf0e-41f0-8345-7928ed52a3eb", "fields": { - "question": 368, - "contribution": 3423, - "answer": 5, - "count": 1 + "question": 341, + "contribution": 1734, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c092b586-e417-4a61-b4b0-aa2a3830d025", + "pk": "a76e84d1-15da-425a-aca7-a91101b5c60a", "fields": { - "question": 347, - "contribution": 3546, + "question": 315, + "contribution": 4118, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c09596bd-f1ea-4ef6-bdbe-aedd12dd6cdb", + "pk": "a774c44e-4a69-492e-b871-ea8199d30049", "fields": { - "question": 260, - "contribution": 3354, - "answer": 4, + "question": 325, + "contribution": 823, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c0a18b6a-27f7-493f-962c-cee7ca4276c5", + "pk": "a779f4dc-94b2-496c-988a-3a6e8e91189a", "fields": { - "question": 326, - "contribution": 1777, - "answer": 4, + "question": 340, + "contribution": 3404, + "answer": 2, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "a782f3bb-c2c3-4cdf-9049-341f90bcae34", + "fields": { + "question": 323, + "contribution": 4046, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c0a1ec6e-3faa-47eb-8487-5520b292885e", + "pk": "a7835112-0329-4182-a812-565c171863d7", "fields": { - "question": 355, - "contribution": 4223, - "answer": 1, - "count": 2 + "question": 255, + "contribution": 4128, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c0ae5761-d042-47ef-b7e8-3625c0e149ed", + "pk": "a788fdb4-01da-453f-a8d9-857bc29225ec", "fields": { - "question": 328, - "contribution": 1779, + "question": 262, + "contribution": 1612, "answer": 2, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c0bcd29d-c619-4197-9915-77e92deefa2b", + "pk": "a7944979-150f-42ec-9659-2c3d787c3fd5", "fields": { - "question": 321, - "contribution": 3422, + "question": 258, + "contribution": 4084, "answer": 5, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c0bd35d1-0aa9-4f8a-8e57-b80c0f982bc7", + "pk": "a79b6800-915d-4e1a-b7b6-f23cbf9950b6", "fields": { - "question": 321, - "contribution": 4120, - "answer": 1, - "count": 9 + "question": 328, + "contribution": 1802, + "answer": 4, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c0bd543f-157b-4c80-977b-c58f0a3fa068", + "pk": "a7af91bb-2e30-44ec-a023-fc0960d305fa", "fields": { - "question": 345, - "contribution": 3796, + "question": 258, + "contribution": 3462, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c0bfd8ec-7a05-4238-871d-6eb04e4a27e3", + "pk": "a7d03678-7b86-4dd2-860b-ccf104a4ba4a", "fields": { - "question": 357, - "contribution": 3608, - "answer": 2, - "count": 1 + "question": 322, + "contribution": 880, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c0c0b17a-5451-4f55-9371-115a1a852c3e", + "pk": "a7dd8f38-e945-425a-80ec-f06119d0a109", "fields": { - "question": 369, - "contribution": 3597, + "question": 368, + "contribution": 4153, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c0dbbab7-9e82-4162-b870-db972b703653", + "pk": "a7e59060-49c6-48ea-b5aa-c10975e615f8", "fields": { - "question": 345, - "contribution": 4189, - "answer": 2, - "count": 1 + "question": 357, + "contribution": 1776, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c0fb5ed7-1941-4b7e-bb4e-4a3f615ec71a", + "pk": "a7e98323-e31a-479e-b9ff-ce1ba25c2080", "fields": { - "question": 326, - "contribution": 3666, + "question": 320, + "contribution": 822, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1088a52-b73b-4281-86a1-2183be314373", + "pk": "a7fdfeb0-995e-4e6a-b891-8fbd8d7fc218", "fields": { - "question": 322, - "contribution": 3739, - "answer": 3, - "count": 4 + "question": 464, + "contribution": 3786, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1089aa6-8d61-4e43-b096-2625660b4197", + "pk": "a80cef7e-9372-4dcb-8513-d11052e30891", "fields": { - "question": 347, - "contribution": 1641, - "answer": 5, + "question": 467, + "contribution": 4115, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1091318-5db2-4e8e-9d8a-df20c189b0df", + "pk": "a8138d17-d198-494a-85ac-2b202d016dd4", "fields": { - "question": 315, - "contribution": 4120, - "answer": 1, - "count": 18 + "question": 368, + "contribution": 4203, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c10a9aa7-d0da-4353-87c1-1c358c4e34b5", + "pk": "a81c9dc3-174c-4160-bf2d-b310ed82ac24", "fields": { - "question": 316, - "contribution": 3665, - "answer": 1, - "count": 2 + "question": 319, + "contribution": 880, + "answer": 4, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c10ded09-420b-4f69-975e-1c071e489129", + "pk": "a82ccdf2-5e88-4fc0-9b77-42b4b88ed912", "fields": { - "question": 327, - "contribution": 1617, + "question": 432, + "contribution": 4052, "answer": 2, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1288dbc-e658-46bb-ac8c-0e6740ad3a40", + "pk": "a82dfb2a-0436-473f-89c9-233fc31c72d7", "fields": { - "question": 333, - "contribution": 3553, - "answer": 5, - "count": 1 + "question": 354, + "contribution": 3516, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c12ec123-92ba-4d09-9310-1a6bf23eb7f5", + "pk": "a830371c-1b99-4fd3-89c3-d6a9ec301ed6", "fields": { - "question": 347, - "contribution": 3608, - "answer": 2, + "question": 385, + "contribution": 3755, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c13159b7-269a-4058-98f4-75f621616291", + "pk": "a831a748-320f-467a-ad07-2fe0792a7201", "fields": { - "question": 353, - "contribution": 4268, + "question": 344, + "contribution": 3525, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c14b6e5e-522d-409b-8c84-6f02ca197424", + "pk": "a83323bb-359d-41fe-9c49-07303d9dd498", "fields": { - "question": 317, - "contribution": 1658, + "question": 262, + "contribution": 1837, + "answer": 3, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "a8348016-2e05-42bd-b976-20e12c001b75", + "fields": { + "question": 333, + "contribution": 1812, "answer": 2, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "a83daa83-81fa-44db-9253-26290caa5ec9", + "fields": { + "question": 452, + "contribution": 4185, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c153a5bf-2347-4ea1-be2e-c5068c103050", + "pk": "a842151e-dd65-4d6f-a3a7-1eb1ae5d6c53", "fields": { - "question": 257, - "contribution": 1634, - "answer": 2, - "count": 15 + "question": 366, + "contribution": 3552, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c154ba78-189b-46a3-a7de-d3d7381c39ae", + "pk": "a8463320-0ee0-4d5f-a638-8890d656f0f7", "fields": { - "question": 316, - "contribution": 884, - "answer": 3, + "question": 339, + "contribution": 804, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c15f76d0-1f77-400f-845a-0d3134461e6c", + "pk": "a8466a42-723f-48fc-ac3b-10ac9459a107", "fields": { - "question": 338, - "contribution": 3727, - "answer": 1, - "count": 5 + "question": 331, + "contribution": 4120, + "answer": 0, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c15ff040-adcb-4b16-b663-8fe345ea3494", + "pk": "a85237ed-3aff-49fa-94df-3ba18f98a8bf", "fields": { - "question": 363, - "contribution": 3651, + "question": 339, + "contribution": 3372, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1634089-a6a1-4a27-9bd9-d255ce3a14db", + "pk": "a859328b-a133-4c47-9768-824f00654afa", "fields": { - "question": 417, - "contribution": 4038, + "question": 472, + "contribution": 3372, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1644f09-d98f-4a5d-8609-a603a2cf3488", + "pk": "a859a121-87bd-449e-a1e8-e124f5b70649", "fields": { - "question": 257, - "contribution": 3739, - "answer": 3, - "count": 4 + "question": 327, + "contribution": 1776, + "answer": 1, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1711925-1457-4310-904e-bc1bde5f83c5", + "pk": "a85eac62-f146-4a4a-b643-92f351838288", "fields": { - "question": 332, - "contribution": 3552, - "answer": 3, - "count": 3 + "question": 376, + "contribution": 3781, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1732ee2-7663-4107-9855-98d3007581a5", + "pk": "a862e4ab-2c35-4723-b54f-c469d13adfd2", "fields": { - "question": 353, - "contribution": 1243, - "answer": 2, - "count": 1 + "question": 328, + "contribution": 1298, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c17883e3-f775-4390-a1b6-bd661cbae140", + "pk": "a867b91a-6857-4794-a02f-ee39bd4fa541", "fields": { - "question": 348, - "contribution": 4191, + "question": 379, + "contribution": 3775, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1867703-5224-46d5-8941-ca8306006d94", + "pk": "a87397bf-40f6-4332-bcb3-a52b0476b10b", "fields": { - "question": 344, - "contribution": 1809, - "answer": 2, - "count": 3 + "question": 317, + "contribution": 884, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c18b4e7e-c1f1-490f-93be-08fd5bd35950", + "pk": "a8791775-316c-4d0d-8b5b-26da23ad586c", "fields": { - "question": 320, - "contribution": 880, - "answer": 4, + "question": 336, + "contribution": 918, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c18c4b20-44e4-4aea-a400-c248a88768ed", + "pk": "a87ff5e5-a010-4ec4-af30-a21ea9743133", "fields": { - "question": 402, - "contribution": 4177, + "question": 347, + "contribution": 3822, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1a010fd-ad55-44a0-a620-956723e4e35a", + "pk": "a8844019-776a-4f15-a643-251bdb1e7317", "fields": { - "question": 344, - "contribution": 1207, - "answer": 1, - "count": 5 + "question": 260, + "contribution": 3354, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1a13aa9-b9bc-44ef-8858-63fcc6dc8be1", + "pk": "a8887142-1332-4573-b959-c33b789e1175", "fields": { - "question": 475, - "contribution": 3821, - "answer": 1, - "count": 1 + "question": 345, + "contribution": 1250, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1a1f174-93fe-4da5-be0e-f185d63ddd67", + "pk": "a88c837a-b4ac-4ece-bd37-7fe9ea8e88cf", "fields": { - "question": 333, - "contribution": 3932, - "answer": 3, - "count": 1 + "question": 477, + "contribution": 3589, + "answer": 0, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1ab789e-a77a-4ff9-9a36-7cce0e7ab735", + "pk": "a88cadc1-b454-44af-a4c3-1c336d1410e5", "fields": { - "question": 350, - "contribution": 832, - "answer": 1, - "count": 1 + "question": 337, + "contribution": 1694, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1ac0f41-81b3-4c5a-88bb-c5a54e95f1eb", + "pk": "a896db29-13d2-450d-bd34-39d2af0f9a6a", "fields": { - "question": 382, - "contribution": 3775, - "answer": -1, + "question": 327, + "contribution": 4152, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1ac7fb1-d9fc-41f5-a4d4-bcf6644103c5", + "pk": "a89b1c3d-911b-4fe5-80d2-524c88f35543", "fields": { - "question": 366, - "contribution": 3882, - "answer": 5, - "count": 2 + "question": 348, + "contribution": 4190, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1b180f1-fc70-47e4-a1a9-e8c8f573a1ef", + "pk": "a8a9e56e-25f6-4373-83de-ac0ca5ea79f3", "fields": { - "question": 400, - "contribution": 3646, - "answer": 5, + "question": 320, + "contribution": 3725, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1b5f274-11ef-452f-98a4-a7999b3587c7", + "pk": "a8b2adaa-4ffe-4b8d-94c4-823655ee4af1", "fields": { - "question": 329, - "contribution": 3435, - "answer": 3, - "count": 1 + "question": 347, + "contribution": 4223, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1bb9511-32d9-4cf2-a148-0507dada0ce9", + "pk": "a8b336ec-f5c2-4f2c-9121-099f0bcc92c1", "fields": { - "question": 368, - "contribution": 1777, - "answer": 2, - "count": 1 + "question": 341, + "contribution": 1662, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1bf44ad-cc65-483b-8788-08d2adf69cd3", + "pk": "a8d5b761-9451-41ce-899c-503b0f1da0f4", "fields": { - "question": 337, - "contribution": 3416, + "question": 344, + "contribution": 4146, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1e30665-e105-48db-9e58-3ba55e1089af", + "pk": "a8d660ad-2f82-4845-9bd4-c988105d3cb5", "fields": { - "question": 348, - "contribution": 869, - "answer": 1, - "count": 3 + "question": 262, + "contribution": 3354, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1ebc09f-2a75-4832-96b2-05c9411a5c4a", + "pk": "a8dbdba0-477a-4a68-8327-7c20b6df2427", "fields": { - "question": 369, - "contribution": 1806, - "answer": 5, - "count": 1 + "question": 316, + "contribution": 3665, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c1f47a52-184b-45bb-b801-44f87a7042ab", + "pk": "a8e917f9-28c1-44c4-93b5-760229496e90", "fields": { - "question": 371, - "contribution": 4154, + "question": 326, + "contribution": 3435, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c20d1b2e-463c-4f85-870a-13c75893546c", + "pk": "a8fdb41d-8cc3-4615-9524-d7164618d124", "fields": { - "question": 343, - "contribution": 1250, - "answer": 3, + "question": 340, + "contribution": 3745, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c21711d9-5bc1-4d1b-b211-754394cadc42", + "pk": "a9070514-30bf-4478-a0d7-9de8dad9e4e4", "fields": { - "question": 321, - "contribution": 1668, + "question": 361, + "contribution": 3651, "answer": 1, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c21bc2f4-d100-4832-adbd-cc3165f2bd0a", + "pk": "a90fa3c8-a8f8-4b0e-bccd-b4e6f3be53fb", "fields": { - "question": 344, - "contribution": 3895, + "question": 346, + "contribution": 3546, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c21c7993-4f01-4323-996f-873fbdf9d222", + "pk": "a91d47c7-a8b6-4823-a829-f2c1ccf2eef7", "fields": { - "question": 368, - "contribution": 1635, + "question": 344, + "contribution": 4129, "answer": 1, - "count": 15 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c22bb5df-018d-456a-adef-8bb41895898d", + "pk": "a91f1cf6-12af-456a-a793-13cc4ee6e9cf", "fields": { - "question": 329, - "contribution": 3391, - "answer": 3, - "count": 9 + "question": 343, + "contribution": 3796, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c22ddc5b-0123-4e30-be0a-2054fb5d9571", + "pk": "a9310d5a-8cd3-4aa1-bd9d-bab191cdf64b", "fields": { "question": 348, - "contribution": 3912, + "contribution": 1881, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c2346cf1-0ef9-46f7-9528-8dab6af67875", + "pk": "a9316279-ebfd-41bb-9a6d-6ddf99d70f7a", "fields": { - "question": 361, - "contribution": 3917, - "answer": 3, + "question": 460, + "contribution": 3786, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c239c133-c760-4487-913d-c5cf1efc7827", + "pk": "a934817e-56d0-4444-8739-15c035cb9d7f", "fields": { - "question": 457, - "contribution": 3786, - "answer": 2, - "count": 2 + "question": 477, + "contribution": 1798, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c246674a-c466-4095-bab7-a416e7951a3a", + "pk": "a939cfbe-5fe9-49ea-9378-9c421114c5d5", "fields": { - "question": 346, - "contribution": 1202, - "answer": 3, + "question": 260, + "contribution": 1724, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c24abc79-a4c9-478c-9983-8e87e5610d18", + "pk": "a942ed28-819f-4083-8d00-bb39b09ad718", "fields": { - "question": 345, - "contribution": 1204, + "question": 347, + "contribution": 3894, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c24b48d4-4db7-46fe-977c-8c7039e6b91c", + "pk": "a94957de-db89-4304-8498-3f5ff5759bbc", "fields": { - "question": 477, - "contribution": 1777, + "question": 327, + "contribution": 3680, "answer": 1, - "count": 3 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c24e3ca3-52f4-40c0-9dc6-1341848bd4ab", + "pk": "a9499c75-310c-4b8d-956d-6d6735afc00f", "fields": { - "question": 353, - "contribution": 3852, - "answer": 1, - "count": 6 + "question": 361, + "contribution": 1826, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c25381f7-12e2-44f7-9786-dfcdf119d451", + "pk": "a95a5b71-d829-477c-ae4d-20d76c172f19", "fields": { - "question": 262, - "contribution": 4022, + "question": 347, + "contribution": 3609, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c25a9c34-99fd-4ea9-a722-2fbfbc2bc469", + "pk": "a95c123a-2734-4957-b977-9bc33a685740", "fields": { - "question": 323, - "contribution": 1837, - "answer": 4, + "question": 331, + "contribution": 3739, + "answer": 0, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c26579ab-a556-46ce-a550-13535ef823ff", + "pk": "a987cd31-caef-4984-ae62-8c9c80a38c58", "fields": { - "question": 329, - "contribution": 1288, + "question": 337, + "contribution": 3735, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c265dcef-c072-4db9-ac5d-c85236983826", + "pk": "a995668a-0bcb-41a5-8c28-2c8ee686f76d", "fields": { - "question": 362, - "contribution": 3944, - "answer": 1, - "count": 1 + "question": 337, + "contribution": 3645, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c266136e-efc7-4c8f-88d7-c45fdef20984", + "pk": "a998ebb7-0e33-4e94-8352-88ba80d34dc4", "fields": { - "question": 341, - "contribution": 1656, - "answer": 2, - "count": 4 + "question": 328, + "contribution": 913, + "answer": 1, + "count": 30 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c26ed916-1183-4ebd-8d05-a374c99424c1", + "pk": "a9a9e2ad-7620-4109-a448-a02193974623", "fields": { - "question": 331, - "contribution": 3721, + "question": 316, + "contribution": 3739, "answer": 3, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c27a8892-199e-4140-9692-b669a902c11a", + "pk": "a9ad010e-a80e-4c92-a76f-b27160781c08", "fields": { - "question": 353, - "contribution": 1154, - "answer": 3, - "count": 2 + "question": 476, + "contribution": 3422, + "answer": 0, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c27deaaa-ec44-493e-a92d-09fe94edfce0", + "pk": "a9c17fdf-a0d9-404f-b5c3-6d23bdb52f27", "fields": { - "question": 344, - "contribution": 4003, + "question": 357, + "contribution": 3852, "answer": 1, - "count": 5 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c2830b12-384f-4085-901c-19c637eea463", + "pk": "a9c6c28e-a0f2-42b8-b30d-bb88464d9e12", "fields": { - "question": 258, - "contribution": 1680, - "answer": 2, - "count": 1 + "question": 323, + "contribution": 880, + "answer": 1, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c2867c4c-01cc-4b6b-99a9-1e151809a000", + "pk": "a9cc6bc9-4252-48ce-9539-63a799ec63f0", "fields": { - "question": 325, - "contribution": 885, - "answer": 3, - "count": 1 + "question": 371, + "contribution": 4156, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c2a14f25-decd-4f7f-8afd-3c474cef13e7", + "pk": "a9d0e3d0-5952-45a1-bb89-115dd52f0c9b", "fields": { - "question": 316, - "contribution": 4022, + "question": 344, + "contribution": 1202, "answer": 1, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c2a4ad82-2cb7-41b1-9d18-7f8909b2df3d", + "pk": "a9d29a02-2747-4a5f-b57a-455146d5cb84", "fields": { - "question": 255, - "contribution": 4120, + "question": 341, + "contribution": 3785, "answer": 2, - "count": 11 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c2a7b6c6-64c2-4b65-9ed1-653c966007e4", + "pk": "a9d53e05-933f-42cb-90b1-c1b96b1b58cf", "fields": { - "question": 331, - "contribution": 3474, - "answer": 0, - "count": 9 + "question": 329, + "contribution": 4117, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c2bc9087-9c66-42a5-98f1-b3180e7fa1ea", + "pk": "a9dd8749-8fb3-44a7-a228-cbe25d029dc6", "fields": { - "question": 473, - "contribution": 3721, - "answer": 0, - "count": 17 + "question": 344, + "contribution": 1828, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c2d59ecd-4a4f-4e73-ad02-24286d8de1f2", + "pk": "a9e0feea-9f7f-44b4-a564-1af5f0642320", "fields": { - "question": 354, - "contribution": 1243, - "answer": 2, - "count": 1 + "question": 329, + "contribution": 909, + "answer": 1, + "count": 27 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c30334a7-46d9-4256-a3c8-35bac1287e78", + "pk": "a9e8f000-07c9-4d16-b4c6-37e4f46cbe7d", "fields": { - "question": 339, - "contribution": 886, + "question": 355, + "contribution": 1776, "answer": 3, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c307910d-d52d-4f81-8efb-7f47f5cb9c73", + "pk": "a9e908c6-cdda-4010-9899-4db62a47e160", "fields": { - "question": 326, - "contribution": 909, + "question": 317, + "contribution": 4116, "answer": 1, - "count": 15 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c307a0eb-f752-4968-8dff-43ddd8de7df8", + "pk": "aa000131-fb9b-40da-b90c-7c486abe25ac", "fields": { - "question": 349, - "contribution": 3912, + "question": 327, + "contribution": 3666, "answer": 1, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c30930b9-83a7-42de-8799-bf7c20917a16", + "pk": "aa04fada-6327-4ff8-a266-3eddba4f3b10", "fields": { - "question": 401, - "contribution": 4177, - "answer": 2, - "count": 3 + "question": 477, + "contribution": 1777, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3093c4f-64e0-4b40-b9e3-177550b55f31", + "pk": "aa0627d2-89ac-4b90-a25e-99d5785dd82e", "fields": { - "question": 345, - "contribution": 3894, - "answer": 1, - "count": 6 + "question": 340, + "contribution": 1656, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c30aff7d-e4ae-4007-a677-db4b3b20e059", + "pk": "aa0c9ebc-f70e-43a8-8eaf-3d72cd72c024", "fields": { - "question": 476, - "contribution": 4084, + "question": 473, + "contribution": 1644, "answer": -1, - "count": 7 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "c312d9c3-b626-4b8c-a987-c13a5de0c35c", - "fields": { - "question": 349, - "contribution": 1860, - "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c312e2d5-2ccf-497d-8314-9502d09e1191", + "pk": "aa1ef4bc-df20-433a-a526-983d41ad163b", "fields": { - "question": 349, - "contribution": 3516, + "question": 473, + "contribution": 3434, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c31e6668-65d1-4725-a6e2-5037df1ce7fd", + "pk": "aa2ce664-7bd9-4ff4-be9b-8a93d4c1bf97", "fields": { - "question": 331, - "contribution": 1837, - "answer": 2, + "question": 477, + "contribution": 3726, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3235478-2c56-47cd-ac73-81f56ab744f0", + "pk": "aa2ce912-3ce4-4d53-94a8-56e6d8e7c290", "fields": { - "question": 329, - "contribution": 3684, - "answer": 3, - "count": 3 + "question": 323, + "contribution": 908, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c32377fd-8539-4819-a509-1d612818eaaa", + "pk": "aa35bcc4-6163-4380-aebf-53dee1af898e", "fields": { - "question": 385, - "contribution": 3775, - "answer": 1, - "count": 5 + "question": 356, + "contribution": 1782, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3295973-cb4b-42fd-82f0-a031fd052f40", + "pk": "aa367166-592a-45a2-8cc1-83d686664c1a", "fields": { - "question": 352, - "contribution": 4046, + "question": 322, + "contribution": 4128, "answer": 3, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c32e01e9-4bcb-44eb-9360-40fcecc53196", + "pk": "aa372025-5e39-4d5c-9faf-bd26a700c52c", "fields": { - "question": 361, - "contribution": 1810, - "answer": 1, - "count": 11 + "question": 257, + "contribution": 4120, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c33177f0-6ca2-4aef-a806-296c09f0e73d", + "pk": "aa47ef4e-4383-49ac-a1d1-afe9cb9ac315", "fields": { - "question": 327, - "contribution": 3395, + "question": 349, + "contribution": 3526, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c335abd3-5ca0-457a-a862-5401c94dd1a9", + "pk": "aa4b1ab1-9253-4e97-a76e-8879e0295958", "fields": { - "question": 321, - "contribution": 912, + "question": 328, + "contribution": 3722, "answer": 2, - "count": 14 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c33ed667-ec5f-471f-86b3-bcb900bb2dee", + "pk": "aa4f7fb9-6114-4d45-90d6-b2ba08822c89", "fields": { - "question": 325, - "contribution": 4203, - "answer": 1, - "count": 15 + "question": 320, + "contribution": 4120, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3416378-c7aa-48a7-9e8d-9a5c6541b335", + "pk": "aa514c51-f01e-426e-9b35-6944054a93a5", "fields": { - "question": 475, - "contribution": 4002, - "answer": -3, - "count": 1 + "question": 339, + "contribution": 3645, + "answer": 0, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c35e9aca-603c-4c36-bd56-16d0182df427", + "pk": "aa53521f-8971-4fd1-b424-b12f874fcb3d", "fields": { - "question": 353, - "contribution": 3712, + "question": 340, + "contribution": 862, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c365a6c4-80d5-4f9f-97f5-086d1c9bb5b6", + "pk": "aa63e42f-a6f6-437c-aa09-0f7bd30326b3", "fields": { - "question": 315, - "contribution": 1626, - "answer": 1, - "count": 11 + "question": 257, + "contribution": 4028, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3730c42-87e7-4ff3-89ea-1e84d6fd0405", + "pk": "aa66fdb6-453f-4a19-ba09-02dec2994e72", "fields": { - "question": 262, - "contribution": 836, + "question": 345, + "contribution": 4223, "answer": 1, - "count": 15 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "c37321aa-804c-4675-9ac4-6f7d1eeecac7", - "fields": { - "question": 322, - "contribution": 4128, - "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c38fcdc5-d62c-4b55-9cd1-547433e9a1f4", + "pk": "aa6a8a48-983c-4a0f-a851-9482439cdb58", "fields": { - "question": 403, - "contribution": 4177, - "answer": 4, - "count": 1 + "question": 390, + "contribution": 3775, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3a09533-5f06-44c4-b2cc-b059c82c37be", + "pk": "aa6edbc3-a640-439b-abc2-453e1711d359", "fields": { - "question": 477, - "contribution": 885, - "answer": -3, - "count": 1 + "question": 354, + "contribution": 1188, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3ac0462-1a27-4682-ab1e-ab4740295a3d", + "pk": "aa708ca4-f5ff-4f7b-9bc1-7d55b736f267", "fields": { - "question": 344, - "contribution": 1874, - "answer": 1, + "question": 341, + "contribution": 1748, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3ac1128-f457-4689-a70c-33a0959e2d12", + "pk": "aa77820d-f843-415d-9ecc-c3044d8d2445", "fields": { - "question": 322, - "contribution": 3665, + "question": 321, + "contribution": 1668, "answer": 3, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3af9ad9-feed-4093-8a3f-e958807a8072", + "pk": "aa7b986d-f6a6-41e3-9a93-1edf787259a5", "fields": { - "question": 349, - "contribution": 3890, - "answer": 1, - "count": 1 + "question": 319, + "contribution": 908, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3c576fb-2829-4fcd-b213-f2cc55eb591e", + "pk": "aa7efc76-1263-4355-858d-98b59a181028", "fields": { - "question": 475, - "contribution": 3645, - "answer": -3, - "count": 1 + "question": 477, + "contribution": 3556, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3d9596b-e481-4a77-90ea-0daadfe506ff", + "pk": "aa88b93d-b3e9-482c-b982-0bbe6ba297c6", "fields": { - "question": 320, - "contribution": 4028, - "answer": 3, - "count": 1 + "question": 477, + "contribution": 3519, + "answer": -2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3ec13bc-a868-42de-9402-7fc596caeba8", + "pk": "aa941fd4-27ca-44a2-b8ff-0ac9d250952d", "fields": { - "question": 339, - "contribution": 3735, - "answer": 1, + "question": 340, + "contribution": 4072, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3fc476f-3b73-42c0-b33a-70ee06332a9a", + "pk": "aaa218ef-c8c3-42ad-8e15-4fec5183026a", "fields": { - "question": 319, - "contribution": 1680, + "question": 428, + "contribution": 4244, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c3fed187-b27b-4840-953b-cbb2fcbdb7c7", + "pk": "aaa521a3-85ee-4917-9985-28b7067042e1", "fields": { - "question": 328, - "contribution": 3391, - "answer": 5, - "count": 14 + "question": 319, + "contribution": 822, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c401bc47-5a05-4f01-9e98-e37218d18ea9", + "pk": "aaa8f3e8-e486-4d97-97e9-91176fdbe80a", "fields": { - "question": 355, - "contribution": 4271, - "answer": 1, + "question": 362, + "contribution": 1826, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4079e98-a758-4815-b4bf-6dc3395390be", + "pk": "aaaf21ae-d217-498b-ab19-1372828c42e4", "fields": { - "question": 327, - "contribution": 823, - "answer": 2, - "count": 2 + "question": 320, + "contribution": 4022, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4185832-c58d-4c9c-8fc7-dfcaf4c03efe", + "pk": "aabe7f3b-0118-4ab4-a39c-2e47d168e9d2", "fields": { - "question": 477, - "contribution": 1154, + "question": 476, + "contribution": 4120, "answer": -2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4187e3f-7404-45bc-bfe3-90b354a19fa7", + "pk": "aac7d465-53e9-4a72-b70e-e96e6cf971bf", "fields": { - "question": 348, - "contribution": 3405, + "question": 337, + "contribution": 3645, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4193315-a534-4200-bf98-935cca77d30f", + "pk": "aac91981-3c1b-4963-8be7-5c75d9210269", "fields": { - "question": 326, - "contribution": 3684, + "question": 325, + "contribution": 1779, + "answer": 1, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "aacb496b-236c-4cdc-811d-eeffe3a8a8d9", + "fields": { + "question": 462, + "contribution": 3862, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4234a43-25c6-4f2e-9cd2-64b4a2ebe33e", + "pk": "aad585cc-c0e0-4867-9239-d7710aaf23cb", "fields": { - "question": 366, - "contribution": 4156, - "answer": 1, - "count": 10 + "question": 258, + "contribution": 4116, + "answer": 5, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c433a873-55d4-47ca-b7ae-7c7dce37a231", + "pk": "aadac35b-b209-459e-8089-3439855b0514", "fields": { - "question": 357, - "contribution": 3518, - "answer": 1, - "count": 4 + "question": 331, + "contribution": 3679, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4377bb8-206a-4eb0-9e19-6707938664bb", + "pk": "aae1b934-6d80-4cca-919a-788fd24f23f5", "fields": { - "question": 472, - "contribution": 886, - "answer": 5, - "count": 5 + "question": 346, + "contribution": 1869, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c439b47d-a486-4869-a9af-a87402282bd9", + "pk": "aae29c0c-12cb-4527-b77d-2d4f6246f625", "fields": { - "question": 331, - "contribution": 3721, - "answer": 0, - "count": 12 + "question": 328, + "contribution": 1778, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c44a4435-3a86-4b56-852c-158dd43afc00", + "pk": "aae6beb0-32c1-49bb-8c2e-8875b8783957", "fields": { - "question": 341, - "contribution": 4052, + "question": 347, + "contribution": 3935, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c44d7610-efed-4413-b6ae-d76d60d10ae6", + "pk": "aaeec410-ceaa-4ff0-bb9d-57158ffa565d", "fields": { - "question": 336, - "contribution": 832, + "question": 258, + "contribution": 3354, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c455e1fa-0226-40dc-9ee5-0787c57b2632", + "pk": "aaf916c4-e64f-4310-adeb-a4126fba0c4f", "fields": { - "question": 325, - "contribution": 1802, + "question": 258, + "contribution": 912, "answer": 1, - "count": 16 + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c45d9704-da05-4833-a72a-604a810dc6fb", + "pk": "aafea284-2137-4117-928c-f5a91e258ac3", "fields": { - "question": 345, - "contribution": 1156, - "answer": 1, + "question": 347, + "contribution": 4003, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c46892a6-3d0b-4090-9c25-8df9ba442c9d", + "pk": "ab010580-ef23-4312-9a7a-e8bb3a399fc0", "fields": { - "question": 344, - "contribution": 3704, - "answer": 2, - "count": 2 + "question": 326, + "contribution": 3740, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c46f87be-a9aa-4f7d-9e1b-756cf53f3aea", + "pk": "ab23362a-00cf-4431-9c0a-c3a67332d3e8", "fields": { - "question": 356, - "contribution": 3923, + "question": 321, + "contribution": 1658, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4743734-6660-46a8-8920-b45ab3531ec2", + "pk": "ab2c39e8-9a3c-4d4e-b91a-b8af2117da62", "fields": { - "question": 473, - "contribution": 1644, - "answer": 0, + "question": 356, + "contribution": 1253, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c47cb0ab-cce8-459e-ba93-7fada40da478", + "pk": "ab2fa6fa-e561-4282-b6de-79677f782bf2", "fields": { - "question": 347, - "contribution": 4129, + "question": 357, + "contribution": 1253, "answer": 1, - "count": 7 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c481cabf-6d74-453b-95e6-6ca22d1ed173", + "pk": "ab30443f-bbe1-489e-8547-2ff7758926c9", "fields": { - "question": 461, - "contribution": 4073, - "answer": 1, - "count": 1 + "question": 323, + "contribution": 4084, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c482e1a3-a7cd-4c81-976a-4c93e08fa899", + "pk": "ab395f68-9a91-4d29-ac51-a5763302c593", "fields": { - "question": 325, - "contribution": 1777, + "question": 260, + "contribution": 1668, "answer": 1, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c48576f3-e92c-45aa-b738-9b68c48f457f", + "pk": "ab461bb0-9203-40fe-91d6-6074a85110ed", "fields": { - "question": 359, - "contribution": 3942, - "answer": 3, - "count": 1 + "question": 345, + "contribution": 3728, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c491818d-b52c-49c8-993b-13e4786b230f", + "pk": "ab4d4b32-07ec-4cbc-8e73-66417ea3f082", "fields": { - "question": 345, - "contribution": 1809, - "answer": 3, - "count": 3 + "question": 344, + "contribution": 3405, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c49b65e8-3cd7-4bb9-8e3e-a9502778ce03", + "pk": "ab524649-a243-4804-9a10-719663ae9305", "fields": { - "question": 331, - "contribution": 3354, + "question": 322, + "contribution": 884, "answer": 1, - "count": 2 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c49b6b07-ceb0-4e8f-8817-a6608c3b35f0", + "pk": "ab5549cd-dc9c-4a0f-8f74-f31782623704", "fields": { - "question": 336, - "contribution": 3727, + "question": 349, + "contribution": 869, "answer": 1, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c49d52b8-b579-4313-85de-303dba48747f", + "pk": "ab5a5b5d-eaa7-4f5c-9bae-825be050e428", "fields": { - "question": 350, - "contribution": 832, - "answer": 4, + "question": 343, + "contribution": 3545, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4a05599-614a-4a13-8c8d-147d5be667a3", + "pk": "ab5ce175-a997-4750-8098-4adc01b529f0", "fields": { - "question": 328, - "contribution": 3391, - "answer": 4, - "count": 8 + "question": 344, + "contribution": 1842, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4a36669-e8e8-4f01-9ffc-b91ccc980403", + "pk": "ab5e1c04-4d3d-4f49-bcb4-e1f0390dbfb0", "fields": { - "question": 323, - "contribution": 3434, - "answer": 2, + "question": 319, + "contribution": 1634, + "answer": 5, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4a3f470-5cb1-4d34-ac22-d438c718fb71", + "pk": "ab62c1eb-54da-48c7-971c-0be5b4d1b4c9", "fields": { - "question": 354, - "contribution": 3528, - "answer": 1, - "count": 2 + "question": 257, + "contribution": 3406, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4ac18c4-7ec1-494c-b22a-62650d14dbfd", + "pk": "ab634964-3a7d-4c27-81c3-0432036c29ec", "fields": { - "question": 394, - "contribution": 3775, + "question": 322, + "contribution": 4128, "answer": 1, - "count": 4 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4ac5a84-aa40-4e0e-ae3e-dc19cf56cb6c", + "pk": "ab77f1bb-11b9-4c9f-a493-898a7901f90a", "fields": { - "question": 340, - "contribution": 788, - "answer": 4, + "question": 357, + "contribution": 1845, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4ac645d-72d8-46ef-bd84-73a3b40e1fa8", + "pk": "ab7b1bd2-e2ea-4acb-bd9b-eb4384d3a8ba", "fields": { - "question": 260, - "contribution": 4022, - "answer": 2, - "count": 2 + "question": 255, + "contribution": 3390, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4ac71b0-59ea-45ee-a0b9-23bd38a5b6f1", + "pk": "ab871949-9663-4d65-8fea-e7654b32b7b0", "fields": { - "question": 339, - "contribution": 862, - "answer": 0, - "count": 8 + "question": 333, + "contribution": 4154, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4b0ca80-5f7f-4995-ab0e-5caaaf571ae9", + "pk": "ab8e5411-6f66-4530-8369-ca9d899ed49c", "fields": { - "question": 262, - "contribution": 3474, - "answer": 1, - "count": 3 + "question": 349, + "contribution": 3607, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4b49e8a-24ec-4e93-8ed7-b9df0e07d418", + "pk": "ab9355c4-6f25-4257-b200-8cd30c6bff66", "fields": { - "question": 389, - "contribution": 3711, - "answer": 2, - "count": 2 + "question": 362, + "contribution": 1836, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4b9d9fc-0652-4a31-98b1-0391cb120b83", + "pk": "ab97330f-e18e-440f-969b-194aeb9e656e", "fields": { - "question": 257, - "contribution": 4138, - "answer": 2, - "count": 9 + "question": 371, + "contribution": 3551, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4be26a5-aaad-48a5-b38d-3a56b84f5508", + "pk": "ab9a8f56-7996-4d95-8cdf-401a8007e23f", "fields": { - "question": 345, - "contribution": 1641, - "answer": 5, - "count": 1 + "question": 338, + "contribution": 3795, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4c14d3b-2bdf-4b8b-8eaa-85a3a3a5a1aa", + "pk": "ab9b54d8-f2bc-4880-8207-025454d257b5", "fields": { - "question": 405, - "contribution": 3984, - "answer": 3, + "question": 346, + "contribution": 3525, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4c1d54d-d00d-4127-aa5d-adb804cb332e", + "pk": "aba1235a-dadf-4973-b5ea-b16122e11942", "fields": { - "question": 255, - "contribution": 3679, - "answer": 2, - "count": 5 + "question": 315, + "contribution": 1837, + "answer": 1, + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4c57945-5351-4b33-ba6e-77cf507f56a2", + "pk": "aba30df2-f809-4ecc-917d-1b9f2655c4a0", "fields": { - "question": 370, - "contribution": 3923, - "answer": 1, - "count": 2 + "question": 362, + "contribution": 3649, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4cea518-6ade-404c-a667-8eb8dcc6d303", + "pk": "aba4036e-68ad-40a0-81eb-267b82c6ab19", "fields": { - "question": 331, - "contribution": 3721, - "answer": 2, - "count": 2 + "question": 477, + "contribution": 3391, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4d22ea8-3079-43eb-a00d-6f2b36058dfa", + "pk": "aba5ea37-b597-4c54-82e5-3e9856dfab3b", "fields": { - "question": 339, - "contribution": 1694, - "answer": -1, - "count": 1 + "question": 353, + "contribution": 1783, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4d86fc7-5ed8-4ea0-8053-c5ae353bb4d9", + "pk": "abc12f93-969f-482b-a45d-b5d244ac44bd", "fields": { - "question": 317, - "contribution": 908, + "question": 345, + "contribution": 1874, "answer": 1, - "count": 30 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4e1a025-c168-4b17-8bcb-b5befedfb28d", + "pk": "abc2f9da-464a-425b-b657-98a0cb9bfe14", "fields": { - "question": 262, - "contribution": 3434, - "answer": 1, - "count": 3 + "question": 331, + "contribution": 1658, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4e54572-2dce-4949-95c1-c54beff86e68", + "pk": "abc67cb9-3378-43a4-b073-456839acb989", "fields": { - "question": 353, - "contribution": 3848, - "answer": 1, - "count": 4 + "question": 319, + "contribution": 3472, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4e7d3ab-1566-4ea7-b855-96bd9cfba2c7", + "pk": "abdc135b-b0bf-4500-bf01-ace9b347a47d", "fields": { - "question": 259, - "contribution": 3406, - "answer": 2, - "count": 4 + "question": 262, + "contribution": 3422, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4f51ccd-221f-4c07-b5e8-f4a8baf4c629", + "pk": "abea054b-477c-4f1b-8b01-431a57dfc351", "fields": { - "question": 336, - "contribution": 1200, + "question": 345, + "contribution": 1663, "answer": 2, - "count": 16 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4f6457f-434e-4022-af07-d78024734898", + "pk": "abeb4e6d-87d3-49c0-94a8-ef650ab575ae", "fields": { - "question": 317, - "contribution": 4046, + "question": 401, + "contribution": 3646, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c4fed75f-9094-4302-b0c7-20528e7856c9", + "pk": "abf38837-e4a8-43ed-8d91-7cf65100e12a", "fields": { - "question": 347, - "contribution": 1824, + "question": 325, + "contribution": 1288, "answer": 1, - "count": 5 + "count": 31 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c50fb38d-f095-436c-99b0-ff945d9970a5", + "pk": "ac08113d-de6b-4959-b914-3a8ebcd401d1", "fields": { - "question": 353, - "contribution": 3607, - "answer": 1, - "count": 3 + "question": 328, + "contribution": 3423, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c513b219-c9da-4810-ae03-34a843b75845", + "pk": "ac0ba487-7d6c-428a-b195-73e78b452f46", "fields": { - "question": 340, - "contribution": 1200, - "answer": 2, - "count": 6 + "question": 476, + "contribution": 3721, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c51c324e-9df1-4c95-aa83-b8c7541e03aa", + "pk": "ac0e82c5-86fb-4ab4-af51-df5663e1659f", "fields": { - "question": 258, + "question": 316, "contribution": 3665, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c526b5ef-24f8-460a-90ef-149ef0a1b5c2", + "pk": "ac1191e6-4e1f-4c0c-a0e9-3937452c2ac0", "fields": { - "question": 353, - "contribution": 3831, - "answer": 1, + "question": 344, + "contribution": 3515, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c528b4b3-bf0a-4a5b-aca2-a96b79806f6d", + "pk": "ac121720-8f87-4dc1-b4d3-e02032fb67af", "fields": { - "question": 257, - "contribution": 3394, - "answer": 2, + "question": 329, + "contribution": 3684, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5343ea4-9980-4b3d-9e25-f68bedf8b2b7", + "pk": "ac1d81f1-0520-43b4-8dfb-2ed254ed34d8", "fields": { - "question": 315, - "contribution": 884, - "answer": 4, + "question": 255, + "contribution": 836, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5346a91-2eac-4321-876e-8acaa3af2d31", + "pk": "ac23e5f2-2cd8-405d-bb2f-8c4ba54cae22", "fields": { - "question": 339, - "contribution": 832, - "answer": 0, - "count": 3 + "question": 353, + "contribution": 1244, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c540b881-b69d-42e8-bbe1-897a60b3c641", + "pk": "ac33e2b6-3239-4e6c-9e7e-f7d139accd99", "fields": { - "question": 325, - "contribution": 4117, - "answer": 2, - "count": 2 + "question": 340, + "contribution": 4094, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c547638f-7008-46ec-aea3-7a18bc624926", + "pk": "ac3449c8-5f9f-439f-8ba7-531cc91fac00", "fields": { - "question": 336, - "contribution": 3366, - "answer": 1, + "question": 353, + "contribution": 1849, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c54fb227-e41b-444c-8e72-a3acb0a0e0c1", + "pk": "ac3cf01c-1edc-4209-bf8e-e458446535ee", "fields": { - "question": 368, - "contribution": 3726, - "answer": 2, - "count": 3 + "question": 343, + "contribution": 1869, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c551a8cd-f736-402e-a6d1-bc5777f2bd89", + "pk": "ac428d07-e39a-4994-8305-8f79d27a9016", "fields": { - "question": 320, - "contribution": 884, + "question": 259, + "contribution": 1626, "answer": 1, - "count": 14 + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5527e00-a36b-4db1-a0cb-53cc60303b55", + "pk": "ac463454-5aed-4132-933a-bb0773007127", "fields": { - "question": 368, - "contribution": 4152, - "answer": 5, + "question": 395, + "contribution": 3755, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5578568-ee34-4715-aa30-d26b21b040f0", + "pk": "ac4b435e-841b-42ea-93dd-b9832ec92409", "fields": { - "question": 354, - "contribution": 3848, + "question": 394, + "contribution": 3755, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c576641e-d292-427e-8e8d-6a5e4af318ef", + "pk": "ac4f0bf9-80cd-478b-bf5e-3268897e78d1", "fields": { - "question": 345, - "contribution": 3879, + "question": 350, + "contribution": 3454, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c57ae43f-02f4-494b-bfd8-59143bac2760", + "pk": "ac58c82c-3861-402b-853e-c67917921d8e", "fields": { - "question": 472, - "contribution": 4120, + "question": 367, + "contribution": 3665, "answer": 1, - "count": 12 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5805434-0cf1-4a4f-9425-3f564a2ab299", + "pk": "ac5ab2fb-3856-4366-b7f0-03e168f7304b", "fields": { - "question": 359, - "contribution": 1806, + "question": 360, + "contribution": 3918, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c584f955-4bf0-453b-9d2c-3e4adf260a33", + "pk": "ac682408-2e61-4b2c-994d-b4930fa23505", "fields": { - "question": 472, - "contribution": 4100, - "answer": 1, - "count": 21 + "question": 476, + "contribution": 1612, + "answer": -1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c586c1bc-2060-43d2-a185-9319790eeb35", + "pk": "ac6a46dd-1f66-488d-9ed2-c32301a0b18d", "fields": { - "question": 477, - "contribution": 3722, - "answer": 0, - "count": 13 + "question": 339, + "contribution": 1640, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5909dc1-551f-4fa2-a6c9-acdb2f054a08", + "pk": "ac6fc9cc-8472-4254-9333-745f73833c9e", "fields": { - "question": 355, - "contribution": 3776, - "answer": 1, - "count": 6 + "question": 475, + "contribution": 862, + "answer": 0, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c59caef8-6cf3-4ee5-9e45-092548f1fd98", + "pk": "ac8d8c92-c113-4c78-95a2-39e1d0d48931", "fields": { - "question": 357, - "contribution": 3528, - "answer": 2, - "count": 2 + "question": 380, + "contribution": 3775, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5ad11e5-7867-4484-b5b2-cc2144eb37ba", + "pk": "aca87afe-c75e-4e55-9c0c-7d96ba84d451", "fields": { "question": 473, - "contribution": 3984, + "contribution": 3711, "answer": -2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5b2da74-bff9-4cac-9ade-e3abbabe0103", + "pk": "acac2a77-5751-43ac-b5ad-f0fd4088ac4a", "fields": { - "question": 476, - "contribution": 4022, - "answer": 0, - "count": 3 + "question": 329, + "contribution": 4203, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5bf824f-caab-43c2-8b17-fc2482cef4af", + "pk": "acb33f5d-09e7-42db-8d15-2b25fffb1988", "fields": { - "question": 367, - "contribution": 1724, + "question": 328, + "contribution": 837, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5cf1ed4-a6f4-4149-ac26-96634eb72017", + "pk": "acbfec97-a7fd-41fd-90fb-d26210e756c7", "fields": { - "question": 346, - "contribution": 3728, - "answer": 2, - "count": 2 + "question": 473, + "contribution": 894, + "answer": 0, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5df3c6f-3594-4d72-add8-5ed028cb0c04", + "pk": "acc8b680-4a9e-44e1-a340-e77e34d50715", "fields": { - "question": 320, - "contribution": 1634, + "question": 333, + "contribution": 3936, "answer": 4, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5e17096-61c5-4914-a0c9-5919ef16724b", + "pk": "accd4a63-5020-4e3a-a55f-8c1dcab8d943", "fields": { - "question": 258, - "contribution": 4116, - "answer": 2, + "question": 475, + "contribution": 3404, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5e9802e-c7f2-490b-8325-3214f354f260", + "pk": "acce716f-49a4-4345-b6c1-d8872b88b074", "fields": { - "question": 354, - "contribution": 3776, - "answer": 3, + "question": 476, + "contribution": 836, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5eafe8d-414e-4dc8-b793-467f0a3ef6e6", + "pk": "accf77dd-a674-49b2-810c-9e28f9ede2e5", "fields": { - "question": 368, - "contribution": 3435, - "answer": 2, - "count": 4 + "question": 338, + "contribution": 868, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5edbeda-a971-4d58-b4f5-bdf6eb7c1280", + "pk": "acd2b115-9c2d-40c1-952c-023a844ee721", "fields": { - "question": 477, - "contribution": 1154, - "answer": 0, - "count": 21 + "question": 355, + "contribution": 1785, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5f12967-f1dc-4f30-8dfe-273ba47566f5", + "pk": "acd2c054-e432-4b50-a10f-d80397912df3", "fields": { - "question": 346, - "contribution": 3528, - "answer": 4, - "count": 1 + "question": 344, + "contribution": 3912, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5f60391-f415-4fc0-bd26-6863ad77d1a2", + "pk": "acd37d00-c407-4682-ab6c-05f25c5854de", "fields": { - "question": 473, - "contribution": 1668, - "answer": 0, - "count": 6 + "question": 345, + "contribution": 3546, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c5fa9bb4-716d-485f-9950-e7a9bef0d857", + "pk": "ace881f0-4675-4fd5-82f2-3afd571ca5c3", "fields": { - "question": 367, - "contribution": 4128, - "answer": 2, - "count": 7 + "question": 344, + "contribution": 1869, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6077940-7442-4b49-a10b-81b22af73c40", + "pk": "acee4bfa-ce32-4ef3-9820-c91237fb75be", "fields": { - "question": 462, - "contribution": 4283, - "answer": 2, - "count": 2 + "question": 473, + "contribution": 3683, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c607ec46-c2e4-490a-8102-47b5b193c2e1", + "pk": "acf3e4f0-100f-45f8-9969-33de2042af07", "fields": { - "question": 255, - "contribution": 3474, - "answer": 1, - "count": 1 + "question": 325, + "contribution": 1186, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c60aacaa-cfad-4561-b81d-5928705b7af8", + "pk": "acf59787-14af-4135-8816-ad34e5880438", "fields": { - "question": 359, - "contribution": 3651, + "question": 346, + "contribution": 1250, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c60e6a98-b648-441a-9c66-8ae818f4e31c", + "pk": "acfa43ab-0f3f-4c6b-8591-0e631d444442", "fields": { - "question": 341, - "contribution": 3416, + "question": 262, + "contribution": 3721, "answer": 1, - "count": 3 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c615de04-3c2d-4139-8a08-a8ea8720e18b", + "pk": "acfbd1a4-bcb0-41d0-914d-8ae32aa52c02", "fields": { - "question": 472, - "contribution": 884, - "answer": 1, - "count": 9 + "question": 475, + "contribution": 3645, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c61fa41f-6659-4a97-bdee-ec7484893911", + "pk": "acfd3e26-baef-49c0-8c72-48053b5ddd29", "fields": { - "question": 338, - "contribution": 3508, + "question": 370, + "contribution": 4025, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c622de26-9855-4b3b-a1bb-00cebba79e3e", + "pk": "ad0b37a4-e618-4acc-b7f1-3efaee13b079", "fields": { - "question": 317, - "contribution": 1724, - "answer": 1, - "count": 2 + "question": 326, + "contribution": 3391, + "answer": 4, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c62966f5-6eb8-45cb-bb84-f5e02c5c9045", + "pk": "ad176b15-d819-4888-b1cc-7894c788fb41", "fields": { - "question": 433, - "contribution": 4090, + "question": 343, + "contribution": 1151, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c631ffa6-929b-4194-9bad-fd2aa75c1043", + "pk": "ad1b0df5-788b-4031-890f-02f01c2efd3a", "fields": { - "question": 353, - "contribution": 1187, - "answer": 1, - "count": 8 + "question": 258, + "contribution": 4100, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c635cf28-62cf-4ddd-a86a-1b5ad7182562", + "pk": "ad1e1574-4eb5-49ad-ba18-9ea594efc557", "fields": { - "question": 339, - "contribution": 918, - "answer": -1, - "count": 2 + "question": 328, + "contribution": 4203, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c639408c-a869-4e86-b507-7c52c769c5ba", + "pk": "ad20414e-a105-4f74-b999-c425af210b5c", "fields": { - "question": 355, - "contribution": 3848, + "question": 345, + "contribution": 1873, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c647e10e-b9d8-47c2-8e09-37e7ac4ebfee", + "pk": "ad216239-9a2c-4b20-bcf2-0709039e363c", "fields": { - "question": 476, - "contribution": 884, - "answer": 3, - "count": 2 + "question": 473, + "contribution": 1640, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6498b3d-82c2-45c1-9bed-8c51b51d6c42", + "pk": "ad241cd1-ad82-4d08-8cb4-bdeacbda06d5", "fields": { - "question": 368, - "contribution": 3530, + "question": 329, + "contribution": 1777, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c64996cf-aa7f-44c8-bae1-ba7279d5596e", + "pk": "ad314b67-c571-4d30-814e-1cb91942aaaa", "fields": { - "question": 354, - "contribution": 1844, - "answer": 1, + "question": 332, + "contribution": 3886, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6524cac-fdc1-4ba2-9e33-73571ab37250", + "pk": "ad524ee9-2e1a-42df-8150-763dd58bf7b2", "fields": { - "question": 477, - "contribution": 909, - "answer": -1, - "count": 6 + "question": 372, + "contribution": 3406, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c65776e5-3b83-49ea-98b9-8347b5b9c01e", + "pk": "ad55e4c5-a84c-4ec6-9c7c-7c108624979a", "fields": { - "question": 329, - "contribution": 3884, - "answer": 2, - "count": 4 + "question": 349, + "contribution": 1870, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6650ea7-4f81-4e0d-a7a9-c6ba5b311c5a", + "pk": "ad5b54bf-832b-4c67-ace0-9989495408b2", "fields": { - "question": 473, - "contribution": 4084, - "answer": 0, - "count": 26 + "question": 325, + "contribution": 881, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6670e96-444b-450d-8903-a770322db60b", + "pk": "ad6d7125-8fa2-4bb2-8973-b426891abfbc", "fields": { - "question": 367, - "contribution": 4100, - "answer": 2, + "question": 323, + "contribution": 3462, + "answer": 5, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "ad75286d-8340-4fe9-b7e1-9a78a7f5f357", + "fields": { + "question": 326, + "contribution": 3722, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c66725d9-071a-4f24-8b6c-3bc53f35aa07", + "pk": "ad7c6ebf-93f2-4a37-97e0-961bfe12bc7e", "fields": { - "question": 320, - "contribution": 864, + "question": 369, + "contribution": 1836, "answer": 1, - "count": 4 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c669ffa1-34d6-4553-84e8-1b96cf3c77ba", + "pk": "ad8a061a-4863-4311-9975-3a4b08b989ca", "fields": { - "question": 339, - "contribution": 3681, - "answer": 0, - "count": 2 + "question": 408, + "contribution": 4024, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c67218d6-931c-45d0-9073-7092b310e897", + "pk": "ad91a0dd-2d5f-4ccc-81c0-b37441829ede", "fields": { - "question": 323, - "contribution": 4084, - "answer": 2, - "count": 22 + "question": 322, + "contribution": 4028, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c675c077-4b66-49d1-9ff8-bfeaa71a2063", + "pk": "ad944fdb-0243-472f-a349-2046f1c6016c", "fields": { - "question": 346, - "contribution": 3546, - "answer": 2, - "count": 1 + "question": 458, + "contribution": 4283, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c676bd53-b825-4034-85a6-a9d2ec6f9a9e", + "pk": "ad96e894-4738-4ee7-afbe-247bf7c827fc", "fields": { - "question": 370, - "contribution": 3517, + "question": 323, + "contribution": 4084, "answer": 1, - "count": 4 + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c67d7446-ba99-4c1e-aa27-2543449fed46", + "pk": "ada4c6d8-349f-4bc4-a9ec-0aa9d06bc046", "fields": { - "question": 362, - "contribution": 1812, + "question": 400, + "contribution": 3646, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6843ad6-50d4-4c00-880f-9e5aedac3abf", + "pk": "adb193ce-28e7-49a3-a3ec-883c761c72cd", "fields": { - "question": 473, - "contribution": 858, - "answer": -2, - "count": 1 + "question": 321, + "contribution": 3434, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6854668-a966-4254-8712-64eecdea93f5", + "pk": "adb2b71f-29b3-4b10-9d83-fd19a7ae2792", "fields": { - "question": 338, - "contribution": 886, + "question": 323, + "contribution": 4046, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6916ee4-4cbf-45fb-958b-c6d1002ebe05", + "pk": "adbd8203-2af6-46f0-8c70-6e7f07969a93", "fields": { - "question": 477, - "contribution": 1288, - "answer": 3, + "question": 328, + "contribution": 3883, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c691ebeb-4cb0-4073-9040-33c34a8751ac", + "pk": "adc43a32-5223-4051-8fbf-e83c4ede6fbe", "fields": { - "question": 257, - "contribution": 862, - "answer": 1, - "count": 9 + "question": 473, + "contribution": 1702, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c69ff4f6-94b1-4f1f-b3d9-be6d3d861ae0", + "pk": "adce5172-40e4-4575-a872-9d4f91178168", "fields": { - "question": 351, - "contribution": 3466, - "answer": 3, + "question": 340, + "contribution": 3372, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6ad24fe-0c91-4a6d-904f-f7d66c6a4e37", + "pk": "add86bbc-c1a4-46d8-8a94-653cb1c26be5", "fields": { - "question": 259, - "contribution": 3679, - "answer": 1, - "count": 17 + "question": 257, + "contribution": 4052, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6c2858a-7fbb-4fdb-88ef-7235b077ee16", + "pk": "ade20193-8da8-430c-997b-bfb21af143a3", "fields": { - "question": 361, - "contribution": 3943, + "question": 371, + "contribution": 3553, "answer": 4, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6cb96e3-4646-4090-9ba8-270a274cd30b", + "pk": "ade89bac-e577-455b-9810-ef1d0e5216c6", "fields": { - "question": 323, - "contribution": 1837, + "question": 333, + "contribution": 3553, "answer": 3, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6cd6146-934f-4a28-87af-43a459c2a8fc", + "pk": "adfd54c4-93e4-4481-8901-c37b3f0397d9", "fields": { - "question": 357, - "contribution": 1776, + "question": 353, + "contribution": 3610, "answer": 1, - "count": 8 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6d620f9-7ebf-47c0-8642-7c53a950ce0a", + "pk": "ae043b31-00b6-41f7-ad68-ae15be3b2189", "fields": { - "question": 477, - "contribution": 3519, - "answer": -1, - "count": 6 + "question": 348, + "contribution": 919, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6e60f66-3298-4657-ad74-2ff2413e5c6c", + "pk": "ae0af521-3635-40f9-b3e2-98833fd652b9", "fields": { - "question": 405, - "contribution": 4024, + "question": 357, + "contribution": 3610, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6e852a1-ff73-4cc4-9075-dab8b48d7ff3", + "pk": "ae168c76-1944-485b-9021-8be514aa69a8", "fields": { - "question": 472, - "contribution": 1702, + "question": 320, + "contribution": 3721, "answer": 1, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6f37065-cbd3-4db7-b064-288bd7f4c1d6", + "pk": "ae265c00-855b-4ee5-a9e7-a2f577380329", "fields": { - "question": 477, - "contribution": 1776, + "question": 259, + "contribution": 1626, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6f5552f-284c-4bc7-bfe5-e1afe9e5d588", + "pk": "ae26df13-f14f-445e-a3a3-29ca014f74f1", "fields": { - "question": 363, - "contribution": 3653, - "answer": 5, + "question": 400, + "contribution": 4119, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6fb5cd9-ddf4-4444-8ead-90bf1888799c", + "pk": "ae30fc05-1c72-4ae7-84ad-ef71526ce464", "fields": { - "question": 315, - "contribution": 3739, + "question": 319, + "contribution": 908, "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6fb9fba-8f3d-4c45-93db-6ffdf633490a", + "pk": "ae34287f-53c0-4993-9300-01a7e2fb98d9", "fields": { - "question": 473, - "contribution": 3679, - "answer": -2, - "count": 1 + "question": 339, + "contribution": 804, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c6fbf0bb-ee6c-4bfe-8ec0-8bed4d594193", + "pk": "ae34a615-e0c6-4d63-af43-e9d3cf82168d", "fields": { - "question": 258, - "contribution": 3472, + "question": 328, + "contribution": 3407, "answer": 2, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c71837b0-e12c-4899-8f5c-02f14f82adf2", + "pk": "ae3c4c19-25ce-4106-9ace-6993ff103bd6", "fields": { - "question": 477, - "contribution": 1635, - "answer": 0, - "count": 18 + "question": 349, + "contribution": 4233, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c733a761-b3c3-4b6c-b63f-f776c4b92f75", + "pk": "ae3d4d4d-f2bb-4d56-a56d-9a01b8b6fb22", "fields": { - "question": 322, - "contribution": 908, - "answer": 4, - "count": 1 + "question": 475, + "contribution": 858, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7386daf-afef-4e27-ab62-46e97538e8a4", + "pk": "ae3f6866-8649-45d3-904a-bafc5d6e3462", "fields": { - "question": 380, - "contribution": 3711, + "question": 336, + "contribution": 3693, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7481520-f529-48f4-9bbc-8f56a4e31785", + "pk": "ae434751-655e-4a5a-a98f-5d05921dfed2", "fields": { - "question": 347, - "contribution": 919, + "question": 338, + "contribution": 1638, "answer": 1, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c74e0836-6564-4cef-95cc-d71549db458e", + "pk": "ae4942e8-c23e-43fe-8311-1e80ce1a6c60", "fields": { - "question": 260, - "contribution": 822, - "answer": 1, - "count": 5 + "question": 336, + "contribution": 3727, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c751a3af-def8-4425-a7cb-ac7ad86dad08", + "pk": "ae49fc90-b8b1-4393-a0c0-d442362e93ea", "fields": { - "question": 360, - "contribution": 1836, + "question": 343, + "contribution": 4188, "answer": 1, - "count": 10 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7614647-5140-489a-95ba-3b3dad9beeac", + "pk": "ae536c13-8b4e-4160-96c9-66a7ede6ac3f", "fields": { - "question": 367, - "contribution": 4046, + "question": 348, + "contribution": 3546, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7642309-35dc-40f5-8113-4bace9636d16", + "pk": "ae5c9d71-1150-47c3-930d-b9895e33d9fb", "fields": { - "question": 337, - "contribution": 1638, - "answer": 2, - "count": 4 + "question": 343, + "contribution": 4123, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7868a27-a09a-48f9-9725-25544aa9b447", + "pk": "ae5ca29f-6d71-4791-8bc0-bc12dbf5fa52", "fields": { - "question": 473, - "contribution": 4084, + "question": 325, + "contribution": 1635, "answer": 1, - "count": 8 + "count": 30 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c78938aa-7f74-4ad3-914f-6cb359163dec", + "pk": "ae5cca00-d5fa-4a5c-8bae-1c2577067b04", "fields": { - "question": 329, - "contribution": 3556, - "answer": 2, - "count": 9 + "question": 475, + "contribution": 4052, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c78b7d37-6637-4909-8023-a4969de263ca", + "pk": "ae63828a-f85b-4023-8714-1dccbdf4ffb9", "fields": { - "question": 472, - "contribution": 4094, - "answer": 5, - "count": 1 + "question": 345, + "contribution": 1881, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c78dd45a-7a2b-42f4-8cb2-a5e7c32c1ccd", + "pk": "ae6928c6-24ba-4845-a14c-d28a2f359358", "fields": { - "question": 357, - "contribution": 4268, + "question": 255, + "contribution": 1634, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c790dcf9-78dc-491a-b679-566998a62705", - "fields": { - "question": 319, - "contribution": 4084, - "answer": 4, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "c7977180-a8c3-4806-a2cc-90f60318b722", + "pk": "ae6b7594-f518-42ea-92d5-20e631646ba4", "fields": { - "question": 255, - "contribution": 1724, + "question": 351, + "contribution": 3735, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7984eb0-4a66-4567-b8b9-b78a9dd3f172", + "pk": "ae7ef0e2-0ce0-4b51-b793-6d2fd7ef517d", "fields": { - "question": 476, - "contribution": 3354, - "answer": -3, + "question": 322, + "contribution": 3725, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c79e02e0-f4e5-4352-be7e-8153a86aaa06", + "pk": "ae8c5762-f55a-40f8-80ce-044781630522", "fields": { - "question": 260, - "contribution": 1837, - "answer": 1, - "count": 21 + "question": 325, + "contribution": 1725, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c79ef94a-e8a8-479c-b402-36bb4fbe317f", + "pk": "ae93cde2-60b6-4508-9065-abf4bbc7a2e3", "fields": { - "question": 326, - "contribution": 1154, - "answer": 1, - "count": 14 + "question": 322, + "contribution": 3462, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7a40eec-8241-4624-afca-97acb4240018", + "pk": "aea1fc05-804a-424b-baec-7db4669a8aaf", "fields": { - "question": 355, - "contribution": 4270, + "question": 345, + "contribution": 3525, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7be5142-a5c0-49b8-bcae-08241489b8f4", + "pk": "aea2c4d2-edcc-47f7-8894-b0968ce66ea8", "fields": { - "question": 357, - "contribution": 1154, - "answer": 2, - "count": 11 + "question": 344, + "contribution": 1863, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7c8f417-f62b-4e81-9ad7-91d81295f288", + "pk": "aea5a7b4-eb05-4ab3-ac86-7c56cdda1dac", "fields": { - "question": 476, - "contribution": 3434, - "answer": -1, - "count": 7 + "question": 258, + "contribution": 836, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7cee528-0c46-4083-878b-64730f92739f", + "pk": "aeaa3c1a-e1e0-407b-bfb6-952b7472cf31", "fields": { - "question": 257, - "contribution": 3665, + "question": 363, + "contribution": 1799, "answer": 1, - "count": 9 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7d265db-e2e4-4d09-b167-e7eecde4cd05", + "pk": "aeae35f9-e183-4a72-9516-23e9c1884b60", "fields": { - "question": 343, - "contribution": 1205, - "answer": 1, - "count": 9 + "question": 368, + "contribution": 1779, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7d2c88a-fc45-4e5f-8c38-1a63e8f28039", + "pk": "aeb1cc70-06a5-4a3f-86a3-38dd4c351073", "fields": { - "question": 362, - "contribution": 3944, + "question": 258, + "contribution": 4116, "answer": 4, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7d5cf9f-7450-4d6d-b9c6-95c542783044", + "pk": "aeb34563-324c-45ff-87a7-64d328e9301f", "fields": { - "question": 360, - "contribution": 1825, - "answer": 3, + "question": 477, + "contribution": 1777, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7d98f9b-eea3-4cbf-ae3f-89103ed973fa", + "pk": "aeb7fa35-a485-4a52-a2cb-76dc8910880e", "fields": { - "question": 380, - "contribution": 3781, - "answer": 1, - "count": 3 + "question": 317, + "contribution": 3390, + "answer": 3, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7dd7225-345c-487b-ad11-1f59d60e2ce9", + "pk": "aeb8788f-d6f9-44b5-b41f-d9cf3673a336", "fields": { - "question": 317, - "contribution": 3725, - "answer": 3, - "count": 2 + "question": 338, + "contribution": 3745, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7de0252-1377-4ca0-9288-9b5030a61b54", + "pk": "aebaf32b-7984-4819-985d-78c32bfb470d", "fields": { - "question": 344, - "contribution": 1824, + "question": 320, + "contribution": 3422, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7e87304-fb42-4ad7-b33e-c408a845802f", + "pk": "aec7abc2-6ce6-479f-8004-25c86e8fa1f2", "fields": { - "question": 326, - "contribution": 1659, - "answer": 1, - "count": 14 + "question": 343, + "contribution": 1873, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7ecb010-e73e-47ff-9488-871b82385015", + "pk": "aec933d1-5640-4597-803f-36ded839e4de", "fields": { - "question": 347, - "contribution": 3607, - "answer": 1, - "count": 4 + "question": 315, + "contribution": 3354, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7f54106-b92b-4785-ac60-62297b20ec15", + "pk": "aeca035d-e5ab-45d2-ad30-352c99b13f02", "fields": { - "question": 367, - "contribution": 3474, + "question": 257, + "contribution": 3422, "answer": 1, - "count": 9 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c7fad5a7-fb86-4858-a425-bf88197f068f", + "pk": "aede52ce-2f52-443c-9993-07bc0ff73b93", "fields": { - "question": 332, - "contribution": 837, - "answer": 3, - "count": 1 + "question": 354, + "contribution": 1776, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8031297-eb0f-4872-ac1f-94cc3af3d3f4", + "pk": "aeec0968-01c5-4a5a-85ec-1cef66e30506", "fields": { - "question": 336, - "contribution": 3372, - "answer": 3, + "question": 326, + "contribution": 1669, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c818ce09-27ef-487c-8123-4618e02ad5aa", + "pk": "aeed1055-8f81-4246-90de-9da3f654e0d5", "fields": { - "question": 259, - "contribution": 4120, - "answer": 3, - "count": 1 + "question": 340, + "contribution": 3727, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c81ab43d-25ce-47bf-ba9e-9c0bf780d2f9", + "pk": "aefc10eb-1218-4f90-b9a7-ca54ff31cb50", "fields": { - "question": 328, - "contribution": 1617, - "answer": 2, - "count": 15 + "question": 361, + "contribution": 3653, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c81f014b-a059-4398-af7d-4d67aa3411f7", + "pk": "aefdbd1b-6e7a-4d34-b9a8-654c54ee97b9", "fields": { - "question": 338, - "contribution": 3723, + "question": 319, + "contribution": 3472, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c823712e-999a-48d6-af95-4e450b85816a", + "pk": "af04b89d-0203-4f1d-8c69-93891f0d79d4", "fields": { - "question": 336, - "contribution": 3372, + "question": 317, + "contribution": 3472, "answer": 2, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c826b4c0-9bcf-4fed-b320-b83d371e0fae", + "pk": "af14c5a1-84b5-4fcc-b413-ce5ad9d46fa2", "fields": { - "question": 354, - "contribution": 4223, - "answer": 1, + "question": 473, + "contribution": 4002, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8329a45-5128-4453-a8ec-6fd42b81a3fc", + "pk": "af14fdaa-0456-4049-a682-34c976e5898e", "fields": { - "question": 323, - "contribution": 3474, - "answer": 2, - "count": 8 + "question": 347, + "contribution": 1228, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8339f2f-60ec-4e2b-b719-4c81f7053c5e", + "pk": "af2092c3-7393-431d-8336-831bc57eef18", "fields": { - "question": 321, - "contribution": 884, - "answer": 3, - "count": 4 + "question": 315, + "contribution": 3354, + "answer": 1, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c842db8b-73b2-45b5-adb5-9a958b845b9e", + "pk": "af23254e-b9e4-4277-afe7-7338971424e5", "fields": { - "question": 473, - "contribution": 3745, - "answer": 0, + "question": 428, + "contribution": 4152, + "answer": 3, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c84ac41e-e9eb-4724-acc9-8ee7f3b3f33d", + "pk": "af256fbe-9726-4627-8d41-1f46dd3b19db", "fields": { - "question": 350, - "contribution": 3745, - "answer": 3, - "count": 1 + "question": 348, + "contribution": 1809, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c84c074e-d822-4af5-aac3-0db740527a02", + "pk": "af277124-f8ac-4510-8920-c87093a2848c", "fields": { - "question": 357, - "contribution": 4223, - "answer": 2, - "count": 1 + "question": 472, + "contribution": 4128, + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c84d0dcb-07df-41e3-9562-75e48f9dd996", + "pk": "af2ec644-9131-4620-8a77-80c55a8823df", "fields": { - "question": 356, - "contribution": 3782, - "answer": 1, - "count": 3 + "question": 384, + "contribution": 3755, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c84d3ec9-d9ca-4657-920e-84e94fa320f2", + "pk": "af304474-2de4-4268-b071-447c36eac0b5", "fields": { - "question": 348, - "contribution": 3528, - "answer": 2, - "count": 2 + "question": 335, + "contribution": 4152, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c84e076c-99c7-4b33-b7e1-2a5ff57116fa", + "pk": "af305eb2-8521-4f04-9934-6b243acc2bca", "fields": { - "question": 327, - "contribution": 909, + "question": 348, + "contribution": 1205, "answer": 1, - "count": 21 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c85980be-52e2-4ad6-9c40-cf58bed28bdb", + "pk": "af3567c3-6101-4e39-a83c-97084944f75f", "fields": { - "question": 319, - "contribution": 1668, + "question": 339, + "contribution": 1200, "answer": 1, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c85a86e5-227a-4fb0-9441-a8223b35cf1c", + "pk": "af3aafb8-bf72-458b-8d79-c7b65c1d78b7", "fields": { - "question": 350, - "contribution": 3693, + "question": 328, + "contribution": 1777, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c85e6b01-9944-4b66-976e-fc95f6ad4adf", + "pk": "af5b447d-59b3-4a36-a560-5d372a4160ad", "fields": { - "question": 333, - "contribution": 3592, + "question": 321, + "contribution": 1634, "answer": 2, - "count": 2 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8696f1a-7877-4ca1-8bb8-8eaff00b147f", + "pk": "af655087-bbeb-4a34-895f-d400b7292b00", "fields": { - "question": 476, - "contribution": 836, - "answer": -1, - "count": 2 + "question": 463, + "contribution": 3786, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c86b9d00-29f9-46a3-b1ea-d1e146bf9e2b", + "pk": "af675bdb-79ed-4945-9c04-b24abb504ea6", "fields": { - "question": 323, - "contribution": 3390, + "question": 259, + "contribution": 822, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c86cec49-4e14-45bb-a4e8-1bd4a92ae502", + "pk": "af6fdb9b-0aed-4167-af77-d70208ea2086", "fields": { - "question": 363, - "contribution": 1835, - "answer": 2, + "question": 475, + "contribution": 886, + "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c86d2967-cf14-4cfa-bac0-36102c42fdf6", + "pk": "af71aa5a-1d02-4c63-aa90-36e8c99908e4", "fields": { - "question": 328, - "contribution": 881, + "question": 343, + "contribution": 3609, "answer": 2, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c875fcbf-2a14-4aba-b64c-76daeeda6b7a", + "pk": "af79250c-54aa-40a7-bd42-9d651f33e4b9", "fields": { - "question": 475, - "contribution": 4094, - "answer": -3, + "question": 331, + "contribution": 3434, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c87acb16-f147-421e-bedc-32a236bb5815", + "pk": "af7c1824-411b-4cc7-9240-b651c908b19e", "fields": { - "question": 338, - "contribution": 3482, - "answer": 2, - "count": 1 + "question": 320, + "contribution": 3721, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c87bd180-1f28-4e2d-9778-f7b645c6d8a8", + "pk": "af7ed26c-9d9a-4dbb-a949-d3a5b768d29d", "fields": { - "question": 347, - "contribution": 4146, - "answer": 2, - "count": 1 + "question": 322, + "contribution": 3725, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c883fe24-5aba-426d-a356-401bb72583fd", + "pk": "af857bf6-7c99-401a-aec2-5a86d3bed568", "fields": { - "question": 350, - "contribution": 3466, + "question": 322, + "contribution": 3422, "answer": 2, - "count": 3 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8880cda-ec9b-44ba-87ee-c32bb7cb544a", + "pk": "af865713-32bd-40a8-b29d-48824d6f9978", "fields": { - "question": 336, - "contribution": 918, - "answer": 2, - "count": 4 + "question": 325, + "contribution": 3473, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c888ad0b-6b38-484a-9bb8-68fef849643f", + "pk": "af8b448e-1b79-4b3c-9fdc-b9e8ed75b5cb", "fields": { - "question": 316, - "contribution": 884, - "answer": 1, - "count": 21 + "question": 319, + "contribution": 4046, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8916274-cf4c-4413-87a3-177ff971b6d6", + "pk": "af8e3acc-b4c6-4131-99af-3c0702e20462", "fields": { - "question": 326, - "contribution": 1617, - "answer": 1, - "count": 24 + "question": 476, + "contribution": 822, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c89964a6-4eee-43c1-8932-a63c64f0e88f", + "pk": "af9729cd-62d6-4d93-b1ff-2b93ef9fb9ca", "fields": { - "question": 315, - "contribution": 884, + "question": 345, + "contribution": 1663, "answer": 1, - "count": 25 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c89ba96b-e312-458a-b88f-ae1dd16e565a", + "pk": "afa29fc9-94ef-4a1e-bb95-19e7ed33d396", "fields": { - "question": 472, - "contribution": 3406, - "answer": 1, - "count": 1 + "question": 328, + "contribution": 4203, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8a79065-8929-42e8-ac60-b86ac92b00aa", + "pk": "afa73fc0-85fa-49bf-8b61-09bfb70901e2", "fields": { - "question": 340, - "contribution": 4052, - "answer": 3, + "question": 319, + "contribution": 822, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8b561e8-0dae-4c71-afc4-ab5252200d40", + "pk": "afba544c-2fe0-4437-b754-b008b036cb31", "fields": { - "question": 320, - "contribution": 4040, - "answer": 5, + "question": 363, + "contribution": 3942, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8b5baf3-21dc-44c3-b544-eb48190dd0f7", + "pk": "afbf6eea-0cde-4430-9468-bf7dea96c396", "fields": { - "question": 344, - "contribution": 3960, - "answer": 1, + "question": 336, + "contribution": 1734, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8c5fb80-d303-4a6e-a850-edf9112c6557", + "pk": "afc84d0e-8bcb-42e5-a692-5458239727a9", "fields": { - "question": 260, - "contribution": 3721, - "answer": 2, - "count": 8 + "question": 326, + "contribution": 1777, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8c6c29c-d46d-45c9-88e0-a1b216f32b31", + "pk": "afed63ed-491a-4e0c-b207-18dcca91dedb", "fields": { - "question": 363, - "contribution": 1835, - "answer": 1, - "count": 8 + "question": 316, + "contribution": 3665, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8c93943-1422-46d5-a917-46ff2435beaf", + "pk": "aff1b9f4-44ad-4faf-b05b-81100f78245b", "fields": { - "question": 348, - "contribution": 1867, - "answer": 2, - "count": 1 + "question": 476, + "contribution": 4084, + "answer": 0, + "count": 29 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8cce2c9-934c-4c57-be82-49cd1f8d0f21", + "pk": "b0003f67-b6e6-41d3-80f2-759027b87c05", "fields": { "question": 258, "contribution": 4138, - "answer": 3, - "count": 3 + "answer": 2, + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8d3d586-abd6-487b-8269-3e495e009e46", + "pk": "b002f152-b685-469b-9fb9-a7f87b0e435e", "fields": { - "question": 338, - "contribution": 804, + "question": 257, + "contribution": 3679, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8dc9f5c-12b4-4937-8474-579ee77a6b99", + "pk": "b00d34e8-c0e9-4071-ac80-e77074729d1d", "fields": { - "question": 316, - "contribution": 1837, - "answer": 3, - "count": 2 + "question": 361, + "contribution": 1810, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8dd7c22-a47e-4ff9-8c21-ced5ddf7e8bd", + "pk": "b015ba2f-9ea9-43e3-862b-9a11d9505deb", "fields": { - "question": 475, - "contribution": 1726, - "answer": 0, + "question": 329, + "contribution": 3722, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8e25e7f-1539-45c1-be39-4663cd23766c", + "pk": "b02b4ce6-eddd-412e-9eeb-4ec9206c6519", "fields": { - "question": 357, - "contribution": 3975, - "answer": 2, + "question": 331, + "contribution": 3462, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8e652ff-611b-4f23-a681-aeec3e667bc1", + "pk": "b03b7bc0-caff-4f9f-89c3-616fb7b9d10c", "fields": { - "question": 355, - "contribution": 4232, - "answer": 1, - "count": 2 + "question": 473, + "contribution": 3645, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8ece5dc-a05a-43dc-b8c5-8dc9eff7fe80", + "pk": "b03c7550-fd3d-4cec-9888-740473c20676", "fields": { - "question": 333, - "contribution": 3551, + "question": 436, + "contribution": 4090, "answer": 3, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8f7b1da-24a7-4592-b412-393b86cecc18", + "pk": "b0478eb4-918a-4923-afa3-056a8f431424", "fields": { - "question": 372, - "contribution": 3735, - "answer": 2, - "count": 1 + "question": 368, + "contribution": 3885, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c8f9c0dd-cccf-430d-ba66-e9f2e42baa2d", + "pk": "b055337a-2fa8-4d94-9ca9-81030ebb52d1", "fields": { - "question": 329, - "contribution": 885, - "answer": 2, - "count": 2 + "question": 257, + "contribution": 822, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9019dd5-ab66-4e6b-99fc-247c59d8b367", + "pk": "b05c3778-6f05-40ad-bc8a-edf8bdc892d6", "fields": { - "question": 473, - "contribution": 880, - "answer": -2, - "count": 3 + "question": 363, + "contribution": 3916, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9082a10-a428-432f-95c3-e0a6bd72102a", + "pk": "b05f1c19-4624-4952-af2f-c926f62379f2", "fields": { - "question": 339, - "contribution": 3795, - "answer": -2, + "question": 348, + "contribution": 3606, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c91045de-f8d3-41df-8055-1162bcb9ad80", + "pk": "b06c80e4-b537-4eff-8d5f-a7a345a6253f", "fields": { - "question": 322, - "contribution": 1837, + "question": 325, + "contribution": 3722, "answer": 2, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "c91e6710-4333-4846-965d-b8eceda5b0d5", - "fields": { - "question": 473, - "contribution": 822, - "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c920a2a9-ec8f-4cf6-8d05-96b1a8771d4f", + "pk": "b0760844-acea-440f-a893-d24e7cd2d535", "fields": { - "question": 349, - "contribution": 1843, + "question": 361, + "contribution": 3942, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c928cede-b770-427c-a1f4-ff025dc244c9", + "pk": "b0916296-e9b5-4fda-8cfa-f46dd8da3c4b", "fields": { - "question": 374, - "contribution": 3711, - "answer": 2, - "count": 1 + "question": 343, + "contribution": 3451, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c933a8c2-36ff-47c4-bd6c-8595caed6367", + "pk": "b09da0fb-cec7-4387-9b0d-20c645ac573f", "fields": { - "question": 317, - "contribution": 3474, - "answer": 3, + "question": 347, + "contribution": 1749, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c93717f0-03c8-4b2b-ba9c-c2c9b7709a61", + "pk": "b0a32126-325b-421b-980c-648c0dd61a44", "fields": { - "question": 344, - "contribution": 3607, - "answer": 2, - "count": 3 + "question": 337, + "contribution": 1694, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c94219f2-edc0-40b5-9bad-7c0c9f564024", + "pk": "b0b8c0e1-8a51-446c-a660-1ff30f6081c1", "fields": { - "question": 357, - "contribution": 4025, - "answer": 2, - "count": 1 + "question": 349, + "contribution": 3515, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c944b269-a343-40a0-aa98-96755a434931", + "pk": "b0d5095b-95a2-419d-a792-77813ada0b9b", "fields": { - "question": 255, - "contribution": 4028, + "question": 348, + "contribution": 3545, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9455047-517b-4189-9e22-4cb6ae182f7e", + "pk": "b0db0472-805e-4dc8-bd1b-1545b13ffe39", "fields": { - "question": 345, - "contribution": 3935, - "answer": 2, + "question": 340, + "contribution": 1644, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c950525c-ba88-4a21-9e8f-5486b2cfc737", + "pk": "b0e253a8-4891-420e-9d6c-ad03157d3721", "fields": { - "question": 476, - "contribution": 4120, - "answer": 0, - "count": 19 + "question": 332, + "contribution": 4155, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c955a8cc-3fd7-460c-b68a-18d291ab5137", + "pk": "b0f0c01b-37c9-42d9-a916-28b8d58c41eb", "fields": { - "question": 331, - "contribution": 3721, - "answer": -1, - "count": 1 + "question": 333, + "contribution": 3932, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c957ee39-f12d-4c1c-8d52-9e86feb6d1f2", + "pk": "b0fda722-e8a4-465c-9fe4-1d2f53b9ca9b", "fields": { - "question": 370, - "contribution": 3776, + "question": 345, + "contribution": 4003, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c961070c-249a-4037-b2da-747507772b42", + "pk": "b1290660-f273-40f8-b845-13811850e9b6", "fields": { - "question": 360, - "contribution": 1825, - "answer": 4, - "count": 1 + "question": 326, + "contribution": 1802, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c972a6ab-914d-4d48-bac7-a648d2d44ff3", + "pk": "b13cdc00-05dd-46a2-afac-728e127e7cfd", "fields": { - "question": 355, - "contribution": 1242, + "question": 327, + "contribution": 3473, "answer": 1, - "count": 6 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c974ec40-12bd-46a8-a2f5-55a410b7b3f1", + "pk": "b140108b-3a3b-4dd5-8433-2b66fc9ad91a", "fields": { - "question": 433, - "contribution": 4008, - "answer": 1, - "count": 2 + "question": 370, + "contribution": 1845, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c97f72b2-3a0c-4606-92c0-1e2f1adc97e6", + "pk": "b142beaa-e9a4-490d-84bd-a4b4c005bcbc", "fields": { - "question": 257, - "contribution": 3721, - "answer": 2, - "count": 9 + "question": 473, + "contribution": 1634, + "answer": -3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9855be6-e40f-46ca-85c7-ac9c0d47c7ba", + "pk": "b143c6a2-82e3-4485-aa47-e5b991fa260f", "fields": { - "question": 372, - "contribution": 3440, - "answer": 3, - "count": 1 + "question": 333, + "contribution": 1217, + "answer": 1, + "count": 31 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9855d95-c1ba-43b7-91e3-dfe09cf1a899", + "pk": "b14b123d-66a5-4589-a68c-1725167ecd39", "fields": { - "question": 367, - "contribution": 4046, - "answer": 2, + "question": 475, + "contribution": 3372, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c985eae3-6529-4e56-b8dd-a5dfafdd9ee4", + "pk": "b15d8be8-2045-4255-8f16-50639f9ea5e7", "fields": { - "question": 343, - "contribution": 1249, + "question": 333, + "contribution": 4152, "answer": 1, - "count": 3 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c98bae92-00f2-4d2b-88cf-8b816a575156", + "pk": "b173523b-f4de-4957-8ca7-eff94ab08dbe", "fields": { - "question": 346, - "contribution": 1639, - "answer": 5, - "count": 1 + "question": 325, + "contribution": 3885, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c98dfc44-4c88-439b-a5f5-e57a8b7c0717", + "pk": "b1746d98-01c2-429c-9fb7-dbc0c47581ce", "fields": { - "question": 317, - "contribution": 3739, - "answer": 3, - "count": 4 + "question": 476, + "contribution": 3390, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c99987e6-b256-4115-b170-6a0b10acbf16", + "pk": "b17d057b-841d-40da-9b26-088576c60d23", "fields": { - "question": 371, - "contribution": 4154, - "answer": 5, + "question": 316, + "contribution": 4040, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c99f9c89-e18b-4f9d-8ee0-562ca97a9033", - "fields": { - "question": 323, - "contribution": 3679, - "answer": 5, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "c9a319de-e540-418c-9a0a-c6469dbf2285", + "pk": "b1802089-64f9-4f3c-b852-86e6a0c23891", "fields": { - "question": 352, - "contribution": 832, - "answer": 3, + "question": 319, + "contribution": 1724, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9a4c59f-0da5-406b-8c9e-3dae9a45715d", + "pk": "b1827cd2-57eb-4f15-b4ec-3894ed860839", "fields": { - "question": 316, - "contribution": 4028, - "answer": 3, - "count": 4 + "question": 349, + "contribution": 3610, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9ae8a75-524b-42cc-b331-ccaaa31e6649", + "pk": "b183359a-4c3c-4362-a88c-a833856d43c0", "fields": { "question": 360, - "contribution": 3649, - "answer": 2, - "count": 4 + "contribution": 3918, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9b18f11-ddd9-48f7-a103-05c8e9605f65", + "pk": "b18bb0cb-8bd0-4902-8844-b99f77895993", "fields": { - "question": 353, - "contribution": 1188, - "answer": 2, + "question": 414, + "contribution": 3984, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9bdde6a-573d-4263-b00d-d19ac8f268c1", + "pk": "b1959407-ee4e-490a-8d48-764594e9ea37", "fields": { - "question": 441, - "contribution": 4114, - "answer": 1, + "question": 347, + "contribution": 4189, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9bdeaca-0fa3-4338-bdf4-85866e48cd77", + "pk": "b1975167-b3c4-426e-86a1-3911ed2b86f5", "fields": { - "question": 352, - "contribution": 3745, - "answer": 1, - "count": 4 + "question": 335, + "contribution": 3553, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9da8ad2-fdb9-4b25-8103-4949aa681e3c", + "pk": "b1a00206-5b8e-40ff-bb8d-d6a7fde4307d", "fields": { - "question": 349, - "contribution": 3879, - "answer": 2, - "count": 1 + "question": 347, + "contribution": 3894, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9ed8731-44b2-4363-8226-a5ccbca4b459", + "pk": "b1a8a402-0080-4e65-b612-edbe53999379", "fields": { - "question": 258, - "contribution": 836, + "question": 371, + "contribution": 3882, "answer": 2, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9edbbf0-1d3a-4b97-9e05-3bf840080f84", + "pk": "b1aca4d2-9737-4259-b35c-0485bf18092c", "fields": { - "question": 315, - "contribution": 912, - "answer": 4, - "count": 4 + "question": 475, + "contribution": 858, + "answer": 0, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9edc345-d490-42ac-a171-53ac41847551", + "pk": "b1acecf1-a009-49fe-8222-c8e2b7a115b8", "fields": { - "question": 367, - "contribution": 4040, - "answer": 2, + "question": 336, + "contribution": 3482, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9f4e77d-62d9-4445-810b-faeafed1d53f", + "pk": "b1b200bf-361f-4277-b861-efa49303e1d1", "fields": { - "question": 338, - "contribution": 3727, - "answer": 5, - "count": 1 + "question": 328, + "contribution": 1154, + "answer": 4, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9f52c63-080e-4190-84be-f805b214610f", + "pk": "b1bb88df-dbeb-4b2e-a553-eb21d9d3ada0", "fields": { - "question": 377, - "contribution": 3775, + "question": 434, + "contribution": 4052, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "c9ffc3a2-ff8d-4529-8ec1-cd0196ceb8dd", + "pk": "b1c1b8a9-4fc0-4614-81e9-4439618be4d3", "fields": { - "question": 338, - "contribution": 1726, + "question": 346, + "contribution": 1249, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca04f3b6-756c-4172-b5ee-e2977cc7d733", + "pk": "b1c4f4bd-27c6-43f8-8fd4-1fbfd0750e2d", "fields": { - "question": 355, - "contribution": 1154, - "answer": 3, - "count": 6 + "question": 477, + "contribution": 823, + "answer": -1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca0a2adb-2979-4523-a1b5-434d21ed7e5c", + "pk": "b1dadf93-ca94-4b28-b11b-fa74e46fb846", "fields": { - "question": 348, - "contribution": 4192, - "answer": 2, + "question": 344, + "contribution": 3509, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca1d10eb-682c-4b3f-ae31-5c09de32c63a", + "pk": "b1e9a019-5898-4a16-9ed1-5b84a28db3f9", "fields": { - "question": 413, - "contribution": 3984, + "question": 349, + "contribution": 3704, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca279269-3d1f-42c2-837b-e4f4e7bca5b8", + "pk": "b1e9c7d4-9a40-41bf-9dc0-e59d01344f3c", "fields": { - "question": 345, - "contribution": 1204, - "answer": 3, - "count": 3 + "question": 340, + "contribution": 3645, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca2b27d9-f911-4505-a4cb-4a24a203a2c1", + "pk": "b1ee9dc5-23fa-40cf-ac76-8e78c4528555", "fields": { - "question": 347, - "contribution": 4187, + "question": 343, + "contribution": 4192, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca369ad3-3659-440f-bb84-3b265de14457", + "pk": "b1f29967-969e-4813-a69a-0185bacd2df3", "fields": { - "question": 345, - "contribution": 1246, - "answer": 3, - "count": 2 + "question": 354, + "contribution": 1776, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca3e019d-5d87-4acf-a6a7-3eb51b0b22e5", + "pk": "b2016fcb-17be-4842-8462-fe39ba997c15", "fields": { - "question": 331, - "contribution": 1612, - "answer": 3, - "count": 1 + "question": 257, + "contribution": 4118, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca3e4964-f913-4598-8397-093f7b681db9", + "pk": "b20ba6c2-df57-4a0a-8ae4-afdae9d017e8", "fields": { - "question": 472, - "contribution": 4140, + "question": 341, + "contribution": 1638, "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca403a21-f588-4a77-958a-e546cfa28626", - "fields": { - "question": 322, - "contribution": 3390, - "answer": 2, - "count": 8 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "ca447bd5-58d2-489a-9272-6f083f5e215a", + "pk": "b20d4e45-6457-4e1e-b514-010aa0dc42da", "fields": { - "question": 317, - "contribution": 4116, - "answer": 5, - "count": 1 + "question": 362, + "contribution": 3917, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca557ab6-eb9a-4db6-8cc4-2b651655b560", + "pk": "b21bb8d8-ce9d-4934-ab25-c6ad5f1dd61a", "fields": { - "question": 348, - "contribution": 3536, + "question": 344, + "contribution": 1249, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca670d49-1d7a-4d00-a247-b295cbe6bd2d", + "pk": "b21d2d36-b748-4d5c-b4c6-1d68fcd86bf0", "fields": { - "question": 320, - "contribution": 1724, - "answer": 3, - "count": 1 + "question": 335, + "contribution": 1812, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca6aa604-b2f8-441b-9c38-4f696eb0c44d", + "pk": "b23c3789-cd0d-4dbe-b51c-bdc754f07565", "fields": { - "question": 359, - "contribution": 1836, - "answer": 1, - "count": 8 + "question": 435, + "contribution": 4140, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca6be84a-fc45-40b7-8e10-ddb64941592c", + "pk": "b23c75f8-a01c-47ff-9fc6-065a1543b3a0", "fields": { - "question": 262, - "contribution": 3474, - "answer": 3, - "count": 3 + "question": 322, + "contribution": 3665, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca7100e7-702e-470b-92cb-1c5009c8b6c1", + "pk": "b242f71e-bde9-437e-9f9b-a76325953c88", "fields": { - "question": 257, - "contribution": 836, - "answer": 1, - "count": 15 + "question": 325, + "contribution": 3463, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca7b7196-a674-4644-8950-c7ca9e0de860", + "pk": "b249fc8a-f898-44d7-9fbf-c62f80e0236f", "fields": { - "question": 344, - "contribution": 1246, - "answer": 4, + "question": 348, + "contribution": 3704, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca80b775-f6e3-4031-8af4-f2b7ca3351fe", + "pk": "b25104a8-e305-44de-bef5-4b3be9c6f119", "fields": { - "question": 255, - "contribution": 4116, - "answer": 4, + "question": 328, + "contribution": 4101, + "answer": 3, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca85a103-056d-4e2e-864b-300afdecced3", + "pk": "b2549355-04a9-4ae7-b5cb-4cf7c2bfb8a5", "fields": { - "question": 339, - "contribution": 3751, - "answer": -2, - "count": 1 + "question": 477, + "contribution": 1725, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca8ec616-e08c-4899-9282-072c2e95dfcf", + "pk": "b25e6f4b-9e3d-495c-b2ad-0a1a0c7fa1ba", "fields": { - "question": 348, - "contribution": 3934, - "answer": 2, - "count": 1 + "question": 347, + "contribution": 1235, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca9a0841-00d0-426e-b99c-e6870d27d685", + "pk": "b2611627-abc1-447f-b5fd-8d8853e84cdd", "fields": { - "question": 338, - "contribution": 3723, - "answer": 2, - "count": 4 + "question": 349, + "contribution": 3610, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ca9e9483-ef8f-45b8-a3db-b0110d374ca5", + "pk": "b26ca43f-6ecd-4bd2-a8d9-a7b8c388e2e3", "fields": { - "question": 321, - "contribution": 864, + "question": 345, + "contribution": 1824, "answer": 1, - "count": 6 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "caa0c5ac-3dc0-4a95-95ae-b96ed232bdba", + "pk": "b272b96d-a667-4934-a9b3-05f2127f06e0", "fields": { - "question": 346, - "contribution": 3896, - "answer": 3, - "count": 2 + "question": 255, + "contribution": 4118, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "caa1d928-51a1-40cd-b2d4-8124b81bbb11", + "pk": "b272decb-1915-4543-b8fc-bc4d09b438f3", "fields": { - "question": 323, - "contribution": 862, - "answer": 1, - "count": 4 + "question": 339, + "contribution": 868, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "caa28355-1e9c-42fa-a33f-99bfc73785d5", + "pk": "b2847461-b072-44b3-b336-7899880f293b", "fields": { - "question": 363, - "contribution": 3943, + "question": 341, + "contribution": 1638, "answer": 4, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cabaa584-582e-4b23-a387-29cb62b19a0b", + "pk": "b28a5394-2fcd-4626-85e3-6cc6f75905d7", "fields": { - "question": 473, - "contribution": 880, - "answer": 2, + "question": 398, + "contribution": 3755, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cac4439c-a270-4b20-b965-86ce2cbc4a75", + "pk": "b28efabe-805f-49f2-8931-600bf9b22ff7", "fields": { - "question": 345, - "contribution": 3895, - "answer": 3, + "question": 344, + "contribution": 3518, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cac96077-0c04-47bf-88a1-f474d92c9676", + "pk": "b28fdbc0-fb76-4f6d-a730-1c7a7af08af5", "fields": { - "question": 321, - "contribution": 908, + "question": 353, + "contribution": 1256, "answer": 1, - "count": 15 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cad1af26-423f-4c56-8e96-50ffe4a5552d", + "pk": "b29092ea-3dab-47b4-b46f-54e4e6caf96c", "fields": { - "question": 347, - "contribution": 4021, - "answer": 1, + "question": 432, + "contribution": 4052, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cadec064-579b-46bd-b62e-9dad347d4ef3", + "pk": "b29117a4-6a2d-48d8-b4f0-2e23eac7582f", "fields": { - "question": 477, - "contribution": 1797, - "answer": -3, + "question": 368, + "contribution": 3391, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cae79afa-2882-4f74-ab29-e81a16b0e27d", + "pk": "b294d1c3-23ef-488b-b587-6fb5917e324e", "fields": { - "question": 322, - "contribution": 4116, - "answer": 4, - "count": 3 + "question": 359, + "contribution": 1826, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "caedf861-cdaa-4331-bafe-38e46986314e", + "pk": "b29f1ce5-ff46-4519-b505-526320b10bd8", "fields": { - "question": 255, - "contribution": 912, + "question": 359, + "contribution": 1836, "answer": 3, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "caf09f31-7d28-4c9e-89de-4fdfa325fe8f", + "pk": "b2a8a771-2e66-4290-9a5c-cc7be1e131d0", "fields": { - "question": 337, - "contribution": 1656, - "answer": 2, - "count": 4 + "question": 366, + "contribution": 4154, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cafa6d58-045e-4eba-bb4f-4304bd229ee8", + "pk": "b2b15042-6fe7-42ab-950a-2f260f94d6e9", "fields": { - "question": 356, - "contribution": 3847, + "question": 260, + "contribution": 4022, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb02e101-e3b8-44e0-9990-4def4fd786f9", + "pk": "b2c10d48-6b11-4046-b458-c8efd13f271d", "fields": { - "question": 327, - "contribution": 823, - "answer": 3, + "question": 475, + "contribution": 1638, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb09bfaa-6ede-4de5-a39c-12585322d914", + "pk": "b2cfee9e-aabf-4eee-b000-636042cc2b88", "fields": { - "question": 337, - "contribution": 894, + "question": 328, + "contribution": 881, "answer": 4, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb0a9ca5-4c50-493a-9718-d64d8e0f0983", + "pk": "b2d169ee-56eb-47fb-8d9c-7775a67aad1f", "fields": { - "question": 327, - "contribution": 1186, + "question": 335, + "contribution": 837, "answer": 2, - "count": 7 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb156c5c-ec73-48da-bc4c-81e59cd92907", + "pk": "b2dcbbbb-2d62-4e6e-a2a5-d1c783f4673d", "fields": { - "question": 346, - "contribution": 1822, - "answer": 3, - "count": 1 + "question": 255, + "contribution": 4138, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb1c06c3-0ef3-4856-b2b9-984fc9a382c7", + "pk": "b2e1f691-e346-42b1-add4-34599c8ee830", "fields": { - "question": 354, - "contribution": 1187, - "answer": 2, - "count": 2 + "question": 336, + "contribution": 3785, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb2511ed-b70a-4ecc-95ac-f9eaff9f4372", + "pk": "b2e9825d-9040-4dcc-87fa-378ac9b7b752", "fields": { - "question": 338, - "contribution": 3466, - "answer": 2, + "question": 326, + "contribution": 4203, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb464ca1-e035-422d-8120-c3a242bc500d", + "pk": "b2ea2297-3395-4a68-9035-2b256fcc163f", "fields": { - "question": 348, + "question": 346, "contribution": 3894, "answer": 1, "count": 6 @@ -69156,27747 +79723,26191 @@ }, { "model": "evaluation.ratinganswercounter", - "pk": "cb4c0ae3-7472-4f64-a02e-62e4e65556aa", + "pk": "b2f15c42-3719-4814-81ee-2f2267cb581e", "fields": { - "question": 344, - "contribution": 3367, - "answer": 1, + "question": 348, + "contribution": 1645, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb56836f-c122-456b-ba36-627195fab6ed", + "pk": "b2f250ad-c3fc-4329-8244-13d29dcf3d72", "fields": { - "question": 475, - "contribution": 3486, - "answer": -2, - "count": 1 + "question": 356, + "contribution": 1154, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb576e85-360d-46f9-add0-c8e7e073cfaf", + "pk": "b2fd63ff-dac7-4e97-8625-8cd6e11f2447", "fields": { "question": 322, - "contribution": 3474, - "answer": 4, - "count": 6 + "contribution": 4116, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb5b7e82-187d-4856-90f5-1c67b2b23299", + "pk": "b304696a-02d1-4af6-b7da-3091829fed5b", "fields": { - "question": 370, - "contribution": 3776, - "answer": 3, - "count": 2 + "question": 361, + "contribution": 1805, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb5c57fe-fdba-4a3b-9ffc-60ab2fe65211", + "pk": "b3128400-1f4b-419f-b543-3d157cc3b0ba", "fields": { - "question": 351, - "contribution": 3454, + "question": 323, + "contribution": 4118, + "answer": 1, + "count": 6 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "b3156a9d-98a5-43c5-b5a0-9602fbfb6f3d", + "fields": { + "question": 473, + "contribution": 4084, "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb6d251e-717c-4b49-96aa-8e7847104c06", + "pk": "b31a29a1-279a-4f79-9386-7d173663d8a0", "fields": { "question": 346, - "contribution": 919, + "contribution": 3608, "answer": 1, - "count": 8 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb73a94b-58ad-4025-a082-e46571420328", + "pk": "b32584ff-79ec-492f-9bd3-19c707eb9328", "fields": { - "question": 476, - "contribution": 3406, + "question": 329, + "contribution": 3680, "answer": 1, - "count": 1 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb7aacad-0f45-447f-be92-32d3c71b6b05", + "pk": "b328ef62-567d-41af-9ea0-a9a0d88618ca", "fields": { - "question": 345, - "contribution": 4189, + "question": 331, + "contribution": 1634, "answer": 1, - "count": 7 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb8a1891-0cac-4f95-b421-7061485fda06", + "pk": "b329f444-915b-4f50-bff6-67ec430fddb5", "fields": { - "question": 347, - "contribution": 1645, + "question": 325, + "contribution": 4117, "answer": 1, - "count": 2 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb8b62b6-01ed-47f2-8cba-5514e96bc6b6", + "pk": "b32fb1a6-d5fa-4aec-9e50-92254fd29ba0", "fields": { - "question": 343, - "contribution": 1809, + "question": 327, + "contribution": 1659, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb914825-ba91-4aa7-a252-4c65cd465dd3", + "pk": "b3416768-d930-443d-97c2-eb969c9d1fa2", "fields": { - "question": 327, - "contribution": 1776, - "answer": 2, - "count": 6 + "question": 368, + "contribution": 4047, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb93244c-3a14-4d54-999d-02a188fabb3b", + "pk": "b34824c1-5ef9-4ece-b22d-6e0696a0cb60", "fields": { - "question": 319, - "contribution": 4128, + "question": 332, + "contribution": 3882, "answer": 2, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb9c625f-956c-468a-a9c7-c681bc78cc06", + "pk": "b34badf0-085b-444b-a234-ddc0b1666689", "fields": { - "question": 319, - "contribution": 1634, - "answer": 3, - "count": 8 + "question": 327, + "contribution": 885, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb9dd940-b494-4cc2-8c29-35fbee0e097f", + "pk": "b3501e06-96a4-4d22-bff4-f77479ef1f54", "fields": { - "question": 347, - "contribution": 1809, - "answer": 2, - "count": 1 + "question": 316, + "contribution": 4116, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cb9ee5b8-507e-4983-a64f-bdc6c1af4790", + "pk": "b355921e-652b-4c38-9d15-e7b01d070366", "fields": { - "question": 355, - "contribution": 1785, - "answer": 1, - "count": 10 + "question": 361, + "contribution": 1827, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cba40ad9-075c-403f-90f1-81c9c1b4d7b9", + "pk": "b37ee809-9699-4229-9931-9efd1226a270", "fields": { - "question": 362, - "contribution": 1806, - "answer": 5, - "count": 2 + "question": 357, + "contribution": 3975, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cba55dd0-17c5-4bcc-9a82-1d2e464a1b64", + "pk": "b3822e7e-5a60-428a-96e6-d651bf573fdd", "fields": { - "question": 320, - "contribution": 880, - "answer": 3, - "count": 6 + "question": 349, + "contribution": 1249, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cbaf9b14-fb1d-4c39-9169-be143b6105d8", + "pk": "b3847aba-727f-4b94-a58b-ec3c05d869d8", "fields": { - "question": 319, - "contribution": 4128, - "answer": 5, - "count": 1 + "question": 477, + "contribution": 3884, + "answer": 0, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cbbc468f-d8e8-4d80-a967-f3c40b6a6d40", + "pk": "b387d1a8-6cae-4b45-ad42-663a7ae137d1", "fields": { - "question": 348, - "contribution": 3373, + "question": 322, + "contribution": 912, "answer": 2, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cbc6d7bd-9bc6-4be7-b80d-ba7368aeb1d1", + "pk": "b39dd080-d172-4e24-9897-ae60d34beca3", "fields": { - "question": 322, - "contribution": 3422, + "question": 338, + "contribution": 3404, "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cbca136e-f1fd-481c-bc91-dce771dab661", + "pk": "b3b1fe31-7169-446d-8fa1-9b2a2a50ce4c", "fields": { - "question": 368, - "contribution": 3883, - "answer": 1, + "question": 347, + "contribution": 1250, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cbce5622-05ef-448d-add5-d9c12fdd93e9", + "pk": "b3bc796a-0c0c-4caa-83eb-66a15d8020bd", "fields": { - "question": 460, - "contribution": 3453, - "answer": 1, - "count": 1 + "question": 316, + "contribution": 4116, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cbd3a304-188e-43f8-8f4a-55ecc446db1c", + "pk": "b3c0c285-168f-4673-834a-a51225321c8a", "fields": { - "question": 349, - "contribution": 3941, - "answer": 1, - "count": 3 + "question": 338, + "contribution": 1656, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cbe217c9-e1ca-4d60-b550-22b05df29ec1", + "pk": "b3d672f8-5049-4522-a1a4-b5f5309845a3", "fields": { - "question": 346, - "contribution": 1872, + "question": 316, + "contribution": 822, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cbf51f7d-ffe7-4c2b-9989-5b5f161bffff", + "pk": "b3dee237-6f6a-4a52-913d-3485d03564ad", "fields": { - "question": 371, - "contribution": 3595, - "answer": 2, - "count": 1 + "question": 327, + "contribution": 1681, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cbf9a4a0-dc4d-4b83-a279-385a1f295936", + "pk": "b3e69e3d-29d9-429f-b038-9a289b8d38fa", "fields": { - "question": 475, - "contribution": 840, + "question": 339, + "contribution": 3466, "answer": 0, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc0e6d9c-3ea4-49f6-ab45-560edad95a39", + "pk": "b3ec51b6-43aa-4eeb-b2ac-2f183c2f740b", "fields": { - "question": 346, - "contribution": 1922, + "question": 260, + "contribution": 884, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc12c468-83b8-4353-9c83-a9dd4d7e2163", + "pk": "b3f1de25-71d4-4c10-baf3-1edd5c62bf69", "fields": { - "question": 349, - "contribution": 1206, - "answer": 2, - "count": 2 + "question": 356, + "contribution": 3848, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc1bafc1-972c-4ae2-bf25-3cf8b27de4da", + "pk": "b3fbbeb0-f3ef-4df9-9bc8-0e7e74537a00", "fields": { - "question": 326, - "contribution": 3684, - "answer": 2, - "count": 3 + "question": 329, + "contribution": 1802, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc1d85da-63f4-4c0f-b722-045a56e1e666", + "pk": "b3ffad61-8b4d-4af8-9c08-d5ec9a4b12ab", "fields": { - "question": 475, - "contribution": 788, - "answer": 0, - "count": 4 + "question": 331, + "contribution": 4120, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc3231ac-b46b-4d5f-a3a4-adfece52b014", + "pk": "b4057db4-280f-4d8b-b185-3721114f38c7", "fields": { - "question": 335, - "contribution": 4155, - "answer": 2, - "count": 1 + "question": 343, + "contribution": 1824, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc3f5024-aaf4-4745-b877-b51ea4ddac7d", + "pk": "b409101c-359f-4332-aff4-e0503f078596", "fields": { - "question": 255, - "contribution": 3679, - "answer": 1, - "count": 19 + "question": 319, + "contribution": 4138, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc424025-1296-4938-9a04-749afd949048", + "pk": "b415ae6d-1b4c-44e0-891b-cd9d2e84a954", "fields": { - "question": 333, - "contribution": 3593, - "answer": 1, - "count": 3 + "question": 326, + "contribution": 3556, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc454d2f-f633-4fb0-86cb-680e7bc47bfd", + "pk": "b42bf48e-9ee4-4279-af3a-4f1e09aa414e", "fields": { - "question": 409, - "contribution": 3974, + "question": 476, + "contribution": 880, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc4e2a34-be35-4f23-8640-4f75c314f27e", + "pk": "b43d4446-8a0f-4ffa-8535-929c3c9ee5dd", "fields": { - "question": 356, - "contribution": 1782, - "answer": 3, - "count": 2 + "question": 316, + "contribution": 1626, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc504e0c-f9c6-4d08-bea7-ac4b38936b89", + "pk": "b4410778-503a-4bf8-a309-e8439d5fdb34", "fields": { - "question": 319, - "contribution": 4028, - "answer": 1, - "count": 10 + "question": 340, + "contribution": 832, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc5053c6-a173-4e2a-bc7f-acfaa7041b93", + "pk": "b4458277-26c0-48ec-9eda-97586f7f1244", "fields": { - "question": 346, - "contribution": 4003, - "answer": 2, - "count": 2 + "question": 403, + "contribution": 4177, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc548270-b9ac-4b1e-8220-b9d9e100d285", + "pk": "b45bace7-54a7-4ad2-aa1a-f7059e4b1cf4", "fields": { - "question": 354, - "contribution": 3607, + "question": 367, + "contribution": 4138, "answer": 2, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc58c3cd-e430-408f-b2d3-acdd3973feee", + "pk": "b462839e-2d2b-4bde-ba81-6cf9e3f64092", "fields": { - "question": 336, - "contribution": 3745, + "question": 355, + "contribution": 1845, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc5cc672-6db0-4e22-be0c-c63223156252", + "pk": "b47442f2-0815-47f7-b3e4-05b59a16818c", "fields": { - "question": 344, - "contribution": 3894, + "question": 472, + "contribution": 4128, "answer": 1, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc5d82c1-daba-45a4-b0ba-f88731790dfa", + "pk": "b487f1c1-9762-42f8-bbc4-45b8ce534142", "fields": { - "question": 348, - "contribution": 1867, - "answer": 1, - "count": 6 + "question": 344, + "contribution": 1246, + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc5dc04b-eb03-4b38-bda0-bf7b5d3cff0b", + "pk": "b4931606-cdb4-4141-a61b-f261c38194a7", "fields": { - "question": 349, - "contribution": 887, - "answer": 2, - "count": 2 + "question": 356, + "contribution": 1154, + "answer": 1, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc63054c-c7a1-49b0-a207-9b5be17adc45", + "pk": "b4a96602-8d81-480a-84db-b5defbcdfc49", "fields": { - "question": 347, - "contribution": 1749, - "answer": 3, - "count": 1 + "question": 335, + "contribution": 3553, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc660bfd-7f35-46df-ba20-85507a38390f", + "pk": "b4a9f2ee-05a5-4d6b-b355-54673ae75d00", "fields": { - "question": 332, - "contribution": 3631, - "answer": 2, - "count": 4 + "question": 344, + "contribution": 3912, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc6684d7-2674-4c44-afe1-9773320faf36", + "pk": "b4aa2823-d289-4576-94ed-a1e61730f29b", "fields": { - "question": 477, - "contribution": 4153, - "answer": 0, - "count": 21 + "question": 459, + "contribution": 3786, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc66e3d3-ac83-43d5-adae-3532d4ff2ed1", + "pk": "b4ad771a-adec-4629-b7ea-d226e16bd697", "fields": { - "question": 366, - "contribution": 3598, + "question": 477, + "contribution": 3556, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc7b28f5-7f1f-41b7-ae62-b4bf9902c85a", + "pk": "b4b22659-705c-45e7-92d0-15729641d423", "fields": { - "question": 319, + "question": 260, "contribution": 3474, - "answer": 3, - "count": 3 + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc7d1f19-35a0-4819-a7e3-c9b2e0154354", + "pk": "b4b61bef-5915-4be8-aada-80864046ffc6", "fields": { - "question": 329, - "contribution": 4047, - "answer": 2, - "count": 2 + "question": 332, + "contribution": 3552, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc8c1513-e075-429c-a93b-bd64f58ce386", + "pk": "b4b9bc84-c492-4f92-8574-4fe71119f904", "fields": { - "question": 255, - "contribution": 1668, + "question": 403, + "contribution": 3646, "answer": 1, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc8c869d-3697-43e9-806d-d7d7ff924e1f", - "fields": { - "question": 329, - "contribution": 1297, - "answer": 1, - "count": 9 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "cc94a31e-427b-4fa5-b792-0492a4f9d88a", + "pk": "b4c15522-5c4f-47c1-b353-d3fcae9c33ea", "fields": { - "question": 321, - "contribution": 3683, + "question": 377, + "contribution": 3755, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cc99b70b-73ee-40bf-a2bd-c46cdf80eb08", + "pk": "b4d40274-e507-4d6a-bf9d-7c2d04582072", "fields": { - "question": 353, - "contribution": 4223, + "question": 403, + "contribution": 4041, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ccacd036-3dc5-47f1-8be7-69ac768baccd", + "pk": "b4d85c8b-dae2-40f1-9f46-434afaa2eddc", "fields": { - "question": 354, - "contribution": 1849, - "answer": 2, + "question": 347, + "contribution": 1809, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ccb7cfa6-9fc2-46e5-8bb6-dec73cd23fa4", + "pk": "b4df6f82-fe1e-4a2e-ace7-e08cf91f70b9", "fields": { - "question": 325, - "contribution": 3680, + "question": 349, + "contribution": 1863, "answer": 1, - "count": 19 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ccbd5d7e-f8ce-4495-91f2-ba5bfa6e14b7", + "pk": "b4e670ba-5470-4dee-a0af-e307cf2d3cb0", "fields": { - "question": 345, - "contribution": 3516, - "answer": 1, - "count": 9 + "question": 349, + "contribution": 3607, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ccc5a7bb-c905-4374-b658-fb2e0496f873", + "pk": "b4e81ff9-0942-47f1-8fbd-fc2a005d0f26", "fields": { - "question": 357, - "contribution": 3834, - "answer": 1, - "count": 2 + "question": 344, + "contribution": 887, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ccdac5b1-1b9e-4733-b65c-9f866ea3c40e", + "pk": "b501d0d2-4d39-4a2b-812c-2c40c4176719", "fields": { - "question": 341, - "contribution": 3486, + "question": 327, + "contribution": 1798, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cce334e3-9c4e-469d-8627-412a4b191b46", + "pk": "b50566b3-f92f-4dba-9594-a117adbfa3c9", "fields": { - "question": 477, - "contribution": 3589, - "answer": 1, - "count": 2 + "question": 316, + "contribution": 3406, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cce761f5-1d90-41b8-b049-2057071fcf01", + "pk": "b505838f-76eb-4dbe-bfd3-87528e347863", "fields": { - "question": 258, - "contribution": 3422, - "answer": 1, - "count": 20 + "question": 367, + "contribution": 1724, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cce84205-ef42-46c7-9ff1-c74f534cddc0", + "pk": "b5103faf-9708-48b1-9768-2a5841313d01", "fields": { - "question": 473, - "contribution": 3434, - "answer": 2, - "count": 3 + "question": 316, + "contribution": 4084, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ccea0fa3-b1ea-4602-8b06-1ada58e4c109", + "pk": "b5131475-e964-4347-9729-4bcae0d2605b", "fields": { - "question": 321, - "contribution": 1680, + "question": 351, + "contribution": 864, "answer": 1, - "count": 3 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ccf575c2-52c4-428c-a5a0-99f1c2c2b29a", + "pk": "b519b960-092b-4286-a1b9-1898f380b478", "fields": { - "question": 260, - "contribution": 1668, - "answer": 2, + "question": 341, + "contribution": 4002, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ccfaec5c-dea0-48a9-b5ba-79c367d18553", + "pk": "b51d2f4b-ca90-467c-8f7f-16a09c2b6d77", "fields": { - "question": 361, - "contribution": 1803, + "question": 354, + "contribution": 1258, "answer": 1, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd0b6df8-5d87-4e7b-b36a-c272dea92ffa", + "pk": "b52b03f2-a86d-4b3b-981e-f75124278795", "fields": { - "question": 336, - "contribution": 1748, + "question": 346, + "contribution": 4123, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd1462a5-50da-4dd6-8adf-6950f5de6c3f", + "pk": "b53152eb-f24e-4daa-9a10-378853ef2e92", "fields": { - "question": 477, - "contribution": 1659, - "answer": -1, - "count": 3 + "question": 370, + "contribution": 3835, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd1709c0-9ed2-49a4-b74f-7b5656882956", + "pk": "b539ecf7-74f3-4338-a491-193c24709854", "fields": { - "question": 259, - "contribution": 3739, - "answer": 4, - "count": 2 + "question": 329, + "contribution": 881, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd27f49c-f69a-44b2-a37b-9679182df5db", + "pk": "b53fdfdb-bced-4a90-8617-828e589043fd", "fields": { - "question": 361, - "contribution": 1806, - "answer": 3, - "count": 1 + "question": 336, + "contribution": 1638, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd438587-d961-4e84-a3fc-7362b4b08cb8", + "pk": "b544f02b-fb58-42b1-b40a-dda1666ada9f", "fields": { - "question": 347, - "contribution": 1246, - "answer": 3, - "count": 2 + "question": 317, + "contribution": 4100, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd4b03fe-4990-4354-a690-d498a436a99c", + "pk": "b54c2f02-a67d-4b0e-8118-5070455e6c3d", "fields": { - "question": 348, - "contribution": 1641, - "answer": 5, - "count": 1 + "question": 322, + "contribution": 1612, + "answer": 3, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd4bef16-c146-49c9-9d34-a4b0b36bf0d2", + "pk": "b5542a49-0f2a-4bc8-a201-421090d30d1c", "fields": { - "question": 340, - "contribution": 1656, + "question": 329, + "contribution": 1154, "answer": 1, - "count": 9 + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd51ee5b-cbae-404e-8b0a-595499153487", + "pk": "b55ee41e-8d9e-412f-bdb7-5c0fe098cc8d", "fields": { - "question": 321, - "contribution": 4022, - "answer": 4, + "question": 383, + "contribution": 3711, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd52b0bc-688b-4cd7-9a05-c891f3e0b243", + "pk": "b56b56f3-2f2b-416c-9d70-b768af163046", "fields": { - "question": 319, - "contribution": 3394, + "question": 345, + "contribution": 3855, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd54fd4f-79af-4a20-8694-d4e42a0cd280", + "pk": "b56bcf24-1ff8-4681-95e6-011ab9ce70c6", "fields": { - "question": 401, - "contribution": 4177, - "answer": 3, - "count": 1 + "question": 329, + "contribution": 1186, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd5e9118-8821-412f-8d10-122ce8811c8f", + "pk": "b57f3dc0-2646-4ca0-a853-55b6aae639bc", "fields": { - "question": 356, - "contribution": 1845, - "answer": 1, + "question": 366, + "contribution": 4261, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd60baa5-3661-4caf-95c4-0cc63bc51c73", + "pk": "b57f4c11-bd50-479a-865b-bc3cdeb7bf50", "fields": { - "question": 328, - "contribution": 4152, - "answer": 2, - "count": 21 + "question": 472, + "contribution": 1634, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd628f78-8241-4944-ab53-593a4a095f1d", + "pk": "b5833778-bc7b-48c3-a5ba-a87bb859ff5d", "fields": { - "question": 339, - "contribution": 3727, - "answer": 0, - "count": 2 + "question": 340, + "contribution": 3735, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd633c11-9cab-4fe3-8cee-fef02e049fa1", + "pk": "b58c77a9-f9ea-49ee-a44f-41ac6ce388fc", "fields": { - "question": 322, - "contribution": 3434, - "answer": 1, - "count": 14 + "question": 362, + "contribution": 3920, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd778127-a276-4229-957f-979af3c6382d", + "pk": "b59ca70a-1574-4fed-bb14-cc40e3699bf9", "fields": { - "question": 417, - "contribution": 3984, + "question": 371, + "contribution": 4205, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cd91182f-e0de-456a-9be0-a6ff4ba7cdc2", + "pk": "b59ecd43-9d43-42b4-ac7f-01c4c5505d70", "fields": { - "question": 432, - "contribution": 4090, - "answer": 5, + "question": 343, + "contribution": 3610, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdacd906-f10c-4c1c-8ae0-9b45eb7d5923", + "pk": "b5ad6d01-e365-4ac4-898a-04156292cd31", "fields": { - "question": 325, - "contribution": 1635, - "answer": 3, - "count": 1 + "question": 345, + "contribution": 1922, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdb0b1cc-a0dd-4620-9c68-31feb0155cae", + "pk": "b5affa9f-f96a-4b14-bbf8-e0b306fa79d5", "fields": { - "question": 428, - "contribution": 4204, - "answer": 2, - "count": 1 + "question": 472, + "contribution": 3474, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdb23099-6519-4b96-854f-7c58024cff0b", + "pk": "b5bdf3d7-1cee-42bf-bacf-9e19731f738a", "fields": { - "question": 477, - "contribution": 3722, - "answer": 2, + "question": 363, + "contribution": 3942, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdb85d9f-c79c-4630-9e65-1780244fc0af", + "pk": "b5c8f5ce-ada5-4184-ba27-346257d79ecb", "fields": { - "question": 367, - "contribution": 1634, - "answer": 3, - "count": 3 + "question": 472, + "contribution": 4185, + "answer": 5, + "count": 28 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdbc579f-bc0f-47e3-bb9b-36c5c02c8bb9", + "pk": "b5ccd585-e487-4f4b-a1bb-10c92d3157db", "fields": { - "question": 343, - "contribution": 1868, - "answer": 1, - "count": 1 + "question": 463, + "contribution": 3862, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdbe668c-86a6-4821-885b-4acac06a94e6", + "pk": "b5d1b546-d9db-443a-bc9a-be4a4f00f4e4", "fields": { - "question": 323, - "contribution": 1658, - "answer": 3, + "question": 362, + "contribution": 1808, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdc28bfe-b011-40e3-9e6f-7defd445eb80", + "pk": "b5d547a7-9015-4a7c-8450-3ca822c459b8", "fields": { - "question": 326, - "contribution": 837, + "question": 258, + "contribution": 1837, "answer": 1, - "count": 17 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdc89f55-bd72-4e56-af35-813e1016e6e4", + "pk": "b5da3360-db39-4810-9950-06141bc6a1c3", "fields": { - "question": 326, - "contribution": 3463, - "answer": 2, + "question": 343, + "contribution": 3796, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdd2125d-01f0-49e2-b69c-b50a5e0459d5", - "fields": { - "question": 328, - "contribution": 1288, - "answer": 3, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "cdd4e018-cd77-43d7-876f-6ce6b321d11c", + "pk": "b5dfd6c3-da6f-4ff8-8484-6b3dbd93cd0c", "fields": { - "question": 343, - "contribution": 3405, + "question": 398, + "contribution": 3781, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdd71a89-b0ce-4013-9dc5-aa3dbd326965", + "pk": "b5e5fc8e-ccab-40f1-81ed-a10aba467383", "fields": { "question": 322, - "contribution": 822, - "answer": 2, - "count": 3 + "contribution": 3472, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdec3761-f65d-4da5-8881-bd8202b73811", + "pk": "b5f43cdb-5d58-4b8c-b0b5-43c433e3afc3", "fields": { - "question": 258, + "question": 257, "contribution": 1658, - "answer": 3, - "count": 1 + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdefb372-c0ce-4933-82ad-095ec7b64b81", + "pk": "b5f54d81-a475-4371-907d-24af65b1f7c0", "fields": { - "question": 349, - "contribution": 1749, - "answer": 2, - "count": 1 + "question": 328, + "contribution": 3519, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdf5d339-61ca-405b-bd59-6a4a11f3cd9b", + "pk": "b5f6d465-8b69-4b2a-aae8-e369315e188a", "fields": { - "question": 473, - "contribution": 3440, - "answer": -2, + "question": 347, + "contribution": 1881, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdf62445-9e5b-45a2-9b3b-8eaa11f9a13e", + "pk": "b5f76cd1-7a01-42d8-9c1c-4397604ad80e", "fields": { - "question": 359, - "contribution": 3920, + "question": 333, + "contribution": 4204, "answer": 1, - "count": 2 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdf71e48-8191-415f-b669-19d4c0780e8b", + "pk": "b5faf20d-a4ff-4205-8f7d-fa5970db7085", "fields": { - "question": 354, - "contribution": 3545, - "answer": 5, - "count": 1 + "question": 477, + "contribution": 823, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdf97720-dd55-4079-ae94-988d906640be", + "pk": "b602e259-128a-4ef2-af0e-7c6507641519", "fields": { - "question": 317, - "contribution": 4118, + "question": 321, + "contribution": 4084, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cdfd7f1e-765a-4fd1-ad75-5e38c7deb067", + "pk": "b61a134b-4b54-45ce-a61d-791b6087edd5", "fields": { - "question": 329, - "contribution": 1613, + "question": 257, + "contribution": 4116, "answer": 2, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce035059-4803-4dc4-9c18-9fe5dc3ae074", + "pk": "b61a1afc-b057-4c17-89d5-7b289bc48dc0", "fields": { - "question": 338, - "contribution": 886, + "question": 323, + "contribution": 4118, "answer": 2, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "ce1a5212-6225-4530-bd73-b1a92863a932", - "fields": { - "question": 260, - "contribution": 880, - "answer": 3, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce1a8833-1d8e-436e-b2d1-d074c40f1122", + "pk": "b62115b8-3d19-48e8-bae9-65c0bd1e5256", "fields": { - "question": 354, - "contribution": 3517, - "answer": 2, - "count": 2 + "question": 326, + "contribution": 4153, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce2602ce-20ca-46d6-b425-874d4d5e77e8", + "pk": "b632805f-b1e7-435e-8bad-c0d41cb86f14", "fields": { - "question": 347, - "contribution": 1204, - "answer": 1, + "question": 328, + "contribution": 1617, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce2c1f14-35a9-4696-9d83-de73008eb33c", + "pk": "b63e2f02-41e8-45de-bae9-6a90a4800684", "fields": { - "question": 350, - "contribution": 864, - "answer": 2, - "count": 2 + "question": 320, + "contribution": 3683, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce45b893-db7b-4b3c-af51-0fba246062d5", + "pk": "b642cb72-987a-4183-b0e5-8502c02fbc98", "fields": { - "question": 363, - "contribution": 1827, - "answer": 1, + "question": 355, + "contribution": 3545, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce542530-6ce6-4af8-bc32-8b8689b4453d", + "pk": "b643e69f-5e1f-4090-b8f4-567cce7a9f62", "fields": { "question": 345, - "contribution": 3896, - "answer": 1, - "count": 5 + "contribution": 3405, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce566596-34a9-4d1e-b299-b109ec8c2bab", + "pk": "b64ee278-4e69-4c37-84d5-e139f1f57dab", "fields": { - "question": 260, - "contribution": 884, - "answer": 4, - "count": 1 + "question": 407, + "contribution": 4038, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce57ef2d-3389-4c33-b7e3-eb24cda4125d", + "pk": "b657f277-915e-46fa-8614-566365886405", "fields": { - "question": 257, - "contribution": 3390, + "question": 323, + "contribution": 1658, "answer": 2, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce599e1f-e6ed-4169-9120-b8dd74d72e9b", + "pk": "b65b7f72-b84f-47c9-bc52-d6da5c646a91", "fields": { - "question": 475, - "contribution": 1662, - "answer": 0, - "count": 8 + "question": 255, + "contribution": 1634, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce59ecdc-1e15-4bfd-8f95-4cb038f19488", + "pk": "b65ef3d0-1932-499a-a1b6-0eb177491a46", "fields": { - "question": 329, - "contribution": 913, - "answer": 1, - "count": 31 + "question": 257, + "contribution": 4100, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce5c4887-c8f9-48d5-94ee-d4d8aaa04911", + "pk": "b662424c-e552-4e84-bdbf-e288e8191268", "fields": { - "question": 319, - "contribution": 3474, + "question": 359, + "contribution": 3944, "answer": 2, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce6230fa-83ad-4e6f-8449-fa658134767f", + "pk": "b66d9602-bdd4-46d5-84a4-c4f7e0f7f5bd", "fields": { - "question": 354, - "contribution": 4267, + "question": 472, + "contribution": 4020, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce6e6f17-ba10-4776-9125-60bf64a20cd5", + "pk": "b66e10c1-61ec-4619-b523-aba76c6ea459", "fields": { - "question": 260, - "contribution": 3406, + "question": 475, + "contribution": 918, "answer": 1, - "count": 8 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce7bfffd-0334-457d-92dd-2da654b36e4f", + "pk": "b66fa2fb-4f2a-409b-a2ab-e21fd18ab5a6", "fields": { - "question": 461, - "contribution": 4284, + "question": 317, + "contribution": 4084, "answer": 1, - "count": 2 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce8467e2-dc8c-4665-adaa-3747c0e26638", + "pk": "b6732f66-bcfd-4392-b443-ca154a31ebd7", "fields": { - "question": 326, - "contribution": 3355, - "answer": 1, - "count": 23 + "question": 331, + "contribution": 4084, + "answer": -1, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce8a15b0-c01e-449e-843d-0168ff46e599", + "pk": "b679812b-4386-4c33-acbc-a279d50bd243", "fields": { - "question": 347, - "contribution": 3515, + "question": 473, + "contribution": 1658, "answer": 1, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce8a5070-ff3b-4c0e-9bb3-a0534de48405", + "pk": "b67c525e-6960-4cbf-8d03-e2e4a07d0b99", "fields": { - "question": 321, - "contribution": 3474, - "answer": 4, + "question": 353, + "contribution": 4232, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ce9a2466-eff0-454e-91c4-fa97bf751b90", + "pk": "b6885906-4250-4ffd-adb7-bcee881131b0", "fields": { - "question": 326, - "contribution": 4085, + "question": 348, + "contribution": 3822, "answer": 3, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cea80709-91c0-41e5-8973-4f111d0281bd", + "pk": "b69b80e0-813e-4303-8ca2-a93f0ffb4ffa", "fields": { - "question": 347, - "contribution": 1206, + "question": 359, + "contribution": 3653, "answer": 2, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "ceaa7d80-6940-4415-b5f9-8c0f0b891b0c", - "fields": { - "question": 322, - "contribution": 1634, - "answer": 1, - "count": 18 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ceabb332-e708-4d46-9342-6348bf344513", + "pk": "b6a35a13-0038-4667-a881-4c1791903be7", "fields": { - "question": 347, - "contribution": 4192, + "question": 260, + "contribution": 3462, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ceaf743e-021b-4362-8344-01cda3bf8b4d", + "pk": "b6cd1f8e-1272-40c4-93d1-5e81c9fff047", "fields": { - "question": 360, - "contribution": 1810, - "answer": 5, + "question": 349, + "contribution": 4191, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cec07e12-8967-44a8-91b0-5c04e716b2af", + "pk": "b6d01475-e122-4ad9-a2db-f8c6ffd66596", "fields": { - "question": 328, - "contribution": 3423, - "answer": 5, + "question": 353, + "contribution": 3847, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cec5a1a1-928a-493a-9707-c515f2fa752f", + "pk": "b6d2458f-425f-44d1-8855-11b593648a32", "fields": { - "question": 360, - "contribution": 3929, - "answer": 1, - "count": 8 + "question": 328, + "contribution": 1777, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ced4609d-e326-4073-a643-9833f59a1723", + "pk": "b6d42a4a-b675-440e-8844-222cee55bd4d", "fields": { - "question": 477, - "contribution": 1288, - "answer": -2, - "count": 1 + "question": 352, + "contribution": 4046, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ced79fd8-5236-45ad-a555-702bbcd981bc", + "pk": "b6d5ea3a-8d41-4ffc-9a6a-ed2de55441d3", "fields": { - "question": 328, - "contribution": 3883, + "question": 353, + "contribution": 3975, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cef90069-d2d4-4e59-8da3-f9e84b1c511d", + "pk": "b6e38809-4f6f-4825-a333-77feebc7a7ca", "fields": { - "question": 341, - "contribution": 1640, - "answer": 5, - "count": 1 + "question": 477, + "contribution": 4101, + "answer": -1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cefa304f-10ee-4a90-9ffc-cd8648073531", + "pk": "b6e49a53-2fdd-4122-bfca-d5a4d7f9aa31", "fields": { - "question": 341, - "contribution": 3723, - "answer": 5, - "count": 1 + "question": 337, + "contribution": 1638, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf116b80-8acc-4332-919c-7d335d41f203", + "pk": "b6e5fd64-3b54-4df2-8960-3a58c82132d8", "fields": { - "question": 355, - "contribution": 3834, + "question": 356, + "contribution": 3848, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf1f1d90-5567-4768-8880-dc29d7d1bb36", + "pk": "b6e79ae2-f8e2-4185-b5b6-d57cfe33cf73", "fields": { - "question": 317, - "contribution": 4128, + "question": 321, + "contribution": 3679, "answer": 1, - "count": 8 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf278981-bb5a-441c-a96f-fa7ce59c92e0", + "pk": "b6eb3889-c7cd-4df4-863f-4eec9b028157", "fields": { - "question": 477, - "contribution": 1780, - "answer": 3, + "question": 362, + "contribution": 3893, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf306be4-20c8-46b6-87b6-ac117f4327a7", + "pk": "b70ce3ec-679e-4b98-b0b9-8e4c5d254f52", "fields": { - "question": 345, - "contribution": 1228, - "answer": 4, - "count": 2 + "question": 336, + "contribution": 3452, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf32d2b5-5417-4b02-95b5-0653d27dd167", + "pk": "b71bf720-47c6-489a-97bc-02b1196c68b3", "fields": { - "question": 367, - "contribution": 1634, - "answer": 5, - "count": 4 + "question": 339, + "contribution": 3450, + "answer": -2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf34fd3c-681c-42ff-9d24-9bd6c09bf203", + "pk": "b7273c15-330f-488d-91a9-b1140b67bf10", "fields": { - "question": 257, - "contribution": 1658, - "answer": 3, - "count": 4 + "question": 343, + "contribution": 3515, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf452a52-646d-47ab-9aa2-5affb997b9ac", + "pk": "b72985e1-e7fa-4ed3-83e0-ec5ea19471f6", "fields": { - "question": 258, - "contribution": 3434, - "answer": 5, - "count": 1 + "question": 378, + "contribution": 3781, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf5693d4-f187-4a04-af5b-80eafd1bd813", + "pk": "b72d61b1-3e27-450a-94ac-6ddb0daec226", "fields": { - "question": 320, - "contribution": 3354, + "question": 348, + "contribution": 3895, "answer": 2, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf574493-5dbb-4fce-b36c-452f9fb81051", + "pk": "b733c04e-20a0-41b9-9374-b53742d03262", "fields": { - "question": 354, - "contribution": 1849, - "answer": 3, + "question": 331, + "contribution": 3474, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf61d5f3-e77f-41ea-aa78-ae33ac3a5b2c", + "pk": "b73b395b-41a2-4df8-a5d4-8f171a97cab8", "fields": { - "question": 339, - "contribution": 89, - "answer": -1, + "question": 331, + "contribution": 884, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf721d88-0ff8-4456-b244-e9c599d302ee", + "pk": "b73fcb07-0d45-4c04-8198-e1113454f97a", "fields": { - "question": 347, - "contribution": 3546, - "answer": 4, + "question": 472, + "contribution": 3404, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf840e27-33b3-4f1c-8283-e2d39f5ee48b", + "pk": "b741e009-cd43-45ab-b126-ca7a6b606266", "fields": { - "question": 360, - "contribution": 1807, - "answer": 3, + "question": 363, + "contribution": 1806, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf852e55-c244-4697-a447-6564372b5140", + "pk": "b750d71e-5c7f-403c-bb36-8e92ec11261c", "fields": { - "question": 345, - "contribution": 1228, + "question": 477, + "contribution": 3423, "answer": 1, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf8ad414-af55-4872-8e1f-be5098df47c0", + "pk": "b7567479-3055-4d6d-a911-84d8138cfd63", "fields": { - "question": 355, - "contribution": 1154, + "question": 257, + "contribution": 4084, "answer": 5, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cf9432ad-78fc-4af4-89a6-daa8c30b7a42", + "pk": "b75b6248-eb7b-4cd5-aa0d-f61c832e2803", "fields": { - "question": 262, - "contribution": 3390, - "answer": 2, - "count": 13 + "question": 472, + "contribution": 4008, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cfabb3c3-8094-4387-a053-a882cd99a088", + "pk": "b75bbeda-3001-48bd-aa20-ec7bd80b6a29", "fields": { - "question": 258, - "contribution": 4022, - "answer": 2, - "count": 1 + "question": 1, + "contribution": 4303, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cfbbb5da-9114-4eca-8320-ebf7b205c056", + "pk": "b76fcdc6-2f17-41d5-9fc0-856f419a8b77", "fields": { - "question": 354, - "contribution": 3782, - "answer": 1, - "count": 2 + "question": 326, + "contribution": 3722, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cfc314ba-0ccc-44b6-9218-71b274777c02", + "pk": "b7735a31-7b67-4ce9-8060-b371eec48f0b", "fields": { - "question": 473, - "contribution": 1656, - "answer": 2, - "count": 1 + "question": 321, + "contribution": 3665, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cfc3edec-41b7-41b7-9d09-3095017a2654", + "pk": "b773e85e-114e-42ca-a641-5cc16fc8a7d1", "fields": { - "question": 354, - "contribution": 3518, - "answer": 1, - "count": 4 + "question": 337, + "contribution": 3404, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cfcbc6f8-0093-43a2-9db2-efe38de8b4a9", + "pk": "b7746279-bbe7-41c0-acde-827e4e2df1d9", "fields": { - "question": 361, - "contribution": 3921, - "answer": 1, - "count": 2 + "question": 341, + "contribution": 1748, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cfcd7ea2-1773-4d22-a119-879ca05974fc", + "pk": "b776d1ee-d842-4433-99f0-0e79b0c9754e", "fields": { - "question": 331, - "contribution": 3390, - "answer": 1, - "count": 2 + "question": 384, + "contribution": 3781, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cfd70e52-86d1-468b-819d-485433a54e03", + "pk": "b7887f37-4959-449b-a9c4-5773e4ea8082", "fields": { - "question": 363, - "contribution": 1826, - "answer": 1, + "question": 347, + "contribution": 1246, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cfe710bc-efc1-4374-bac0-cfc54f3cd065", + "pk": "b78ed73f-9079-47d7-b566-2712f5b9b60c", "fields": { - "question": 437, - "contribution": 4052, - "answer": 2, - "count": 2 + "question": 332, + "contribution": 3552, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cff1a173-6013-4579-adff-636049b8f2f3", + "pk": "b798437e-cb70-460c-861a-76629d6b77be", "fields": { - "question": 349, - "contribution": 3545, - "answer": 5, - "count": 1 + "question": 475, + "contribution": 3454, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "cff2d60f-dc08-4817-9369-91369d75c141", + "pk": "b7a2eed6-e67e-4dce-9386-f889b4240f1f", "fields": { - "question": 347, - "contribution": 1880, + "question": 362, + "contribution": 3648, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d02b4d59-09c3-4752-be71-95568c6b71fc", + "pk": "b7a3b812-aacc-4029-b81b-ff6ad616f438", "fields": { - "question": 323, - "contribution": 3665, - "answer": 2, - "count": 3 + "question": 349, + "contribution": 3895, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d02c55e7-bcf5-4e37-994b-449d9c666af5", + "pk": "b7a61e13-a0c0-40e4-8de5-9ae5bf4a37ce", "fields": { - "question": 359, - "contribution": 1804, + "question": 339, + "contribution": 918, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d033f3ec-3c15-4679-a4ed-fc2b6f6a5570", + "pk": "b7b06eef-1fbc-4f0a-a958-a89bd29229ae", "fields": { - "question": 476, - "contribution": 4084, - "answer": -3, - "count": 1 + "question": 363, + "contribution": 1804, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d045244c-c5c1-41b9-a2c0-15eb963dde42", + "pk": "b7b572cb-c596-4921-aafc-23eeae4df2f1", "fields": { - "question": 343, - "contribution": 3528, - "answer": 2, - "count": 3 + "question": 335, + "contribution": 4152, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d049ea5d-672e-497e-8a5d-4fe88424fbd5", + "pk": "b7bb35ea-3422-45d0-8fab-213892f49359", "fields": { - "question": 326, - "contribution": 4085, - "answer": 2, - "count": 17 + "question": 316, + "contribution": 3679, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d04d8885-9278-4375-a908-ca2b73bb45d9", + "pk": "b7bde7fc-6c27-4499-a5a2-ab39dede8cdd", "fields": { - "question": 319, - "contribution": 3725, - "answer": 2, - "count": 18 + "question": 337, + "contribution": 3372, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d04daec9-eedf-4786-b896-00e661793def", + "pk": "b7c835cf-a669-40dc-85f1-716c95c509ce", "fields": { - "question": 259, - "contribution": 1724, - "answer": 2, + "question": 321, + "contribution": 4084, + "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d05211db-b8e2-4ba6-8b71-dfb6000bcbb6", + "pk": "b7cb0821-b96c-4f70-9266-dd585c726901", "fields": { - "question": 345, - "contribution": 3822, + "question": 369, + "contribution": 1835, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d05c9bb9-1b9b-4b4c-aced-7f0c3c08321c", + "pk": "b7cd1a08-fabe-430d-a57f-c104d8b67256", "fields": { - "question": 340, - "contribution": 3404, + "question": 257, + "contribution": 4084, "answer": 4, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d068c3f3-3f47-4c41-9120-2a7fedbc5b2e", + "pk": "b7d0a3fa-847a-4197-9500-d6460309a81d", "fields": { - "question": 259, - "contribution": 3354, + "question": 323, + "contribution": 4040, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d07f3fcf-8d95-4f40-91e2-acd3b5cab88e", + "pk": "b7dbc8b9-91af-4ed5-bb3f-9305ac3a25a6", "fields": { - "question": 316, - "contribution": 908, + "question": 473, + "contribution": 804, + "answer": -2, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "b7fe842d-964a-4f23-baa9-fd60ac8209a0", + "fields": { + "question": 349, + "contribution": 1695, "answer": 5, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d07f88c8-ccad-4df2-9ff6-1b3bda5b33ea", + "pk": "b7fe8493-a92c-42d6-b7a4-e8ff574d95d5", "fields": { - "question": 359, - "contribution": 3647, - "answer": 1, - "count": 3 + "question": 336, + "contribution": 1640, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d082df3a-7a26-4760-85a2-ff07a5b89f8a", + "pk": "b8108854-59b0-43bf-b229-e828c3cf8661", "fields": { - "question": 357, - "contribution": 3847, - "answer": 1, + "question": 345, + "contribution": 1205, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d08858f7-0d6b-4cbc-b85c-5f4e2a89ffee", + "pk": "b811339d-9ac3-498a-9582-2311fa3719d5", "fields": { - "question": 255, - "contribution": 3725, - "answer": 1, - "count": 22 + "question": 359, + "contribution": 3648, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d09697d1-3512-47a5-be59-1ab17a5cb52e", + "pk": "b818c0f4-5a6d-4f62-bf4d-b1927876495d", "fields": { - "question": 340, - "contribution": 1702, + "question": 360, + "contribution": 1836, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0a1fab1-12ab-4b00-90f3-0d88784344b2", + "pk": "b8215fce-a434-41a6-b7c0-bbbfa7c55b55", "fields": { - "question": 255, - "contribution": 4138, + "question": 349, + "contribution": 3509, "answer": 1, - "count": 12 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0a3e4c4-7f62-4c0a-af1b-b7d2e081267f", + "pk": "b8271aad-1d9e-49d5-9b9f-80807f57f32f", "fields": { - "question": 328, - "contribution": 881, - "answer": 3, - "count": 8 + "question": 323, + "contribution": 3434, + "answer": 1, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0a46559-de3f-46d3-9bdd-14fa6e2bc036", + "pk": "b8392d7b-e3c7-4c33-bfa3-1e01e1d8d3d5", "fields": { - "question": 337, - "contribution": 3486, + "question": 260, + "contribution": 1626, + "answer": 5, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "b83d1df3-e858-4b95-972f-9d4d826434c7", + "fields": { + "question": 346, + "contribution": 1228, "answer": 4, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0b5ab67-b31d-41ac-8b98-669827a250cf", + "pk": "b8483f80-5e4d-46cc-ac4d-9e9631a1e4e6", "fields": { - "question": 345, - "contribution": 1860, + "question": 346, + "contribution": 1661, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0bc110e-6b3c-4c90-8b36-0f11ce7d0efc", + "pk": "b84ee5a5-9f70-44eb-936b-32bd0765b859", "fields": { - "question": 368, - "contribution": 3859, - "answer": 1, - "count": 15 + "question": 354, + "contribution": 3528, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0c19a57-3998-4b95-bdc0-2a0c5af5429d", + "pk": "b85890da-a08a-4bb7-a9b2-eb52387a20f3", "fields": { - "question": 345, - "contribution": 1645, + "question": 341, + "contribution": 1726, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0d2e7e0-2f2a-45a4-930e-4b96d2920a46", + "pk": "b85c21a2-64bc-46f1-a6cc-95d98a668b1a", "fields": { - "question": 357, - "contribution": 3516, + "question": 348, + "contribution": 3526, "answer": 1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0d4e22d-2bcf-4049-b1d9-5167c3eabc02", + "pk": "b85f1b1c-3ef7-4fba-b6bb-6aa124ac6da4", "fields": { - "question": 262, - "contribution": 4138, - "answer": 2, - "count": 9 + "question": 368, + "contribution": 3391, + "answer": 5, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0d5321e-690b-41ac-9305-d4e8fc5d0855", + "pk": "b85fb0db-42b0-4f8c-87cb-be9068d45d6a", "fields": { - "question": 343, - "contribution": 3896, - "answer": 1, - "count": 6 + "question": 428, + "contribution": 4156, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0d6b305-08be-40f1-b03c-34824402f083", + "pk": "b8642aa1-8b53-47fb-a8a5-7a04a7354820", "fields": { - "question": 320, - "contribution": 4118, + "question": 361, + "contribution": 3917, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0d909cc-8dc5-4e0f-bcf5-065578711c03", + "pk": "b86f8c4b-83e3-491b-9c02-b5eb7cabfa3e", "fields": { - "question": 343, - "contribution": 4187, + "question": 329, + "contribution": 3589, "answer": 1, - "count": 9 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0df252e-60e9-4b2d-9202-2c8ff890076b", + "pk": "b87305d8-4a53-46fe-b735-7d55d54122de", "fields": { - "question": 344, - "contribution": 4188, - "answer": 2, - "count": 3 + "question": 315, + "contribution": 3422, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0e043d6-2675-47a4-b771-9fd6b0d78d50", + "pk": "b87b3c68-39c4-4cc1-99fa-72d88ef89bc8", "fields": { - "question": 356, - "contribution": 3610, - "answer": 2, - "count": 1 + "question": 473, + "contribution": 1694, + "answer": -2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0eb76cd-3a77-4cf3-a1af-daf3e8db83dd", + "pk": "b8813928-9890-4dd8-828e-59b4fc194224", "fields": { - "question": 338, - "contribution": 788, - "answer": 4, - "count": 2 + "question": 328, + "contribution": 4085, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0ee76fa-9c7a-4432-899f-7d0afaf3b7bb", + "pk": "b8856a25-dfb1-4975-a50f-50866531ecc2", "fields": { - "question": 354, - "contribution": 4243, - "answer": 1, + "question": 322, + "contribution": 3406, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0f342c1-0104-49d6-873a-51ff47503f35", + "pk": "b8874d51-4a70-4e9f-8448-553c6969db9d", "fields": { - "question": 321, - "contribution": 1724, + "question": 327, + "contribution": 913, "answer": 1, - "count": 3 + "count": 35 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0f9f1a1-54e6-4901-9cd0-bb188cafdf82", + "pk": "b88b9041-2f06-4934-b61e-7a7a30a0cb3f", "fields": { - "question": 477, - "contribution": 3407, + "question": 333, + "contribution": 3881, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d0fcd663-8145-488d-9999-333a095700cc", + "pk": "b88f13bf-98b8-4f2d-a0fe-6e7d40e10e0f", "fields": { - "question": 341, - "contribution": 1660, + "question": 437, + "contribution": 4008, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1083eed-da15-4fe8-8185-d552938b531b", + "pk": "b8966323-b718-4772-9f49-89343012d265", "fields": { - "question": 328, - "contribution": 1154, - "answer": 1, - "count": 8 + "question": 317, + "contribution": 4120, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1088f75-8e5a-4da0-a0ec-7e6ff53ad6b6", + "pk": "b89eb413-64ab-48cf-9b97-2a6c38f4dbcc", "fields": { - "question": 337, - "contribution": 840, - "answer": 2, - "count": 1 + "question": 315, + "contribution": 4084, + "answer": 3, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d10bdde2-6e44-46fc-8d28-ec79fd5984f3", + "pk": "b8b236ad-ff95-426a-96ca-6cd10ffbb205", "fields": { - "question": 347, - "contribution": 1202, + "question": 348, + "contribution": 1809, "answer": 1, - "count": 9 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d10f26a4-2ddb-467e-b703-2d7393274287", + "pk": "b8b3bb76-b3a8-4069-963b-0ac4d561bc6f", "fields": { - "question": 321, - "contribution": 822, - "answer": 2, - "count": 3 + "question": 325, + "contribution": 4153, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1193695-92ad-43bb-b5fb-21dc8c9c93c3", + "pk": "b8b777b2-884a-4b26-8b4d-67285273b458", "fields": { "question": 349, - "contribution": 3546, - "answer": 5, - "count": 2 + "contribution": 1250, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d11976d9-1ef2-4ee5-b62c-398858f0dbf7", + "pk": "b8c2e095-120a-40ed-8e8d-256da9243d1b", "fields": { - "question": 360, - "contribution": 3920, - "answer": 2, - "count": 2 + "question": 259, + "contribution": 3406, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d125962b-7362-4bb9-bb2a-b87dab5e8fe2", + "pk": "b8c8e6bf-f8a2-4ffb-bf61-a31d90396be1", "fields": { - "question": 257, - "contribution": 880, - "answer": 3, + "question": 315, + "contribution": 3721, + "answer": 2, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d12f8e25-914e-47f3-b4ac-98622b50e00a", + "pk": "b8c8f661-5a99-4742-b001-10db1dd5b825", "fields": { - "question": 476, - "contribution": 3434, - "answer": 0, - "count": 26 + "question": 348, + "contribution": 3608, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d13737da-2e18-4f97-b6ac-8e1d19355e0c", + "pk": "b8dc9294-4c25-4ace-b771-08b412b2e9e6", "fields": { - "question": 363, - "contribution": 1827, - "answer": 2, - "count": 1 + "question": 260, + "contribution": 884, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d13936d0-3e22-4710-9790-41d1b0933ac2", + "pk": "b8dcd4a6-d2d6-422b-83b9-dd1bb25935b3", "fields": { - "question": 341, - "contribution": 4052, - "answer": 5, + "question": 348, + "contribution": 1873, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d139e1e7-bffa-4e04-ae0f-b34d0541f97a", + "pk": "b8e7c2d2-e4e8-4384-a742-3b3f7979591d", "fields": { - "question": 341, - "contribution": 3703, + "question": 428, + "contribution": 4155, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d13bea5b-a4e8-4309-bb2c-0b579c09ca68", + "pk": "b8f32ead-2438-47ed-b723-58ea8cc657ba", "fields": { - "question": 351, - "contribution": 3406, - "answer": 3, - "count": 1 + "question": 475, + "contribution": 832, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1480524-2d2f-48b5-891e-474831203828", + "pk": "b9030fde-9e1c-4510-910a-006f221fc607", "fields": { - "question": 337, - "contribution": 3759, + "question": 359, + "contribution": 3649, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d14bef9c-1107-4311-ba99-010ea5c99e44", + "pk": "b9031b0f-666a-4d21-b2fe-c254a36017a2", "fields": { - "question": 476, - "contribution": 3679, - "answer": -1, - "count": 4 + "question": 473, + "contribution": 1638, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d14dc42a-0864-4fad-b1ac-09852eb33122", + "pk": "b903e152-c195-4c99-8ceb-6302f67a074c", "fields": { - "question": 339, - "contribution": 3685, - "answer": 1, - "count": 1 + "question": 367, + "contribution": 3390, + "answer": 4, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d152f45a-532b-4bc1-9bb1-29796c15e668", + "pk": "b935e63a-f97a-4d15-98ab-c1168df5557a", "fields": { - "question": 340, - "contribution": 3703, - "answer": 2, + "question": 344, + "contribution": 1202, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1681ea8-ece3-4c78-98bf-922a7b7de003", + "pk": "b937dce1-1a22-44a0-8b24-b74a32852307", "fields": { - "question": 339, - "contribution": 1662, + "question": 359, + "contribution": 1812, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d172090a-214b-44ec-b04e-f12140c28e79", + "pk": "b93a2700-9063-416b-ac58-b69030563aa7", "fields": { - "question": 476, - "contribution": 884, - "answer": 1, - "count": 4 + "question": 325, + "contribution": 3355, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d172c453-f143-4ae4-842d-47add6513808", + "pk": "b93bb958-128f-4799-8eb1-2e767b9843c5", "fields": { - "question": 339, - "contribution": 1702, - "answer": 0, + "question": 473, + "contribution": 1668, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1891bcf-c82d-4a7f-a79a-0ff6dbfb1981", + "pk": "b93d6e7b-f3ef-4996-aa42-3443a5d7bd15", "fields": { - "question": 357, - "contribution": 3849, + "question": 363, + "contribution": 1825, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d194b3cd-1c3f-4254-8e21-6049906f7431", + "pk": "b93da477-75b0-4789-b232-b04c33f3b3d0", "fields": { - "question": 327, - "contribution": 909, - "answer": 3, - "count": 4 + "question": 333, + "contribution": 1282, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1aaf7d2-ea6e-4613-8d38-a98a23c5c5fc", + "pk": "b942895d-1f39-4f1c-9f05-0e3bb778b71f", "fields": { - "question": 317, - "contribution": 908, - "answer": 2, + "question": 361, + "contribution": 1812, + "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1ab796d-ee73-4ab2-a999-ac69a0a1b7e9", + "pk": "b9463c44-f5c6-4efe-b9e2-bb2f032b4c3e", "fields": { - "question": 260, - "contribution": 1634, + "question": 363, + "contribution": 1804, "answer": 2, - "count": 7 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1b17c32-0872-405e-9aa1-fd6668ceaf2c", + "pk": "b948ef0e-e8e5-4e26-84a7-44bbdf0d28bb", "fields": { - "question": 347, - "contribution": 1842, - "answer": 4, + "question": 349, + "contribution": 4123, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1c3441e-9e39-4a93-8783-902c5598a135", + "pk": "b94e34fc-9714-4420-b64a-f9938925604a", "fields": { "question": 326, - "contribution": 3391, - "answer": 2, - "count": 3 + "contribution": 1669, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1ca2057-4da8-4619-9933-dd8455995ea5", + "pk": "b9502a75-65f8-4e71-8975-05f888f96c5e", "fields": { - "question": 348, - "contribution": 3941, - "answer": 1, - "count": 3 + "question": 260, + "contribution": 3406, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1cc6e61-23f7-4b43-a347-180717586c58", + "pk": "b951aeae-0594-4e62-bb92-96cd3451d28a", "fields": { - "question": 401, - "contribution": 4148, - "answer": 1, - "count": 24 + "question": 351, + "contribution": 3466, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1d3066b-99d9-4777-add6-490aa1503efb", + "pk": "b956c0df-26bb-4a5c-bd7b-52abb227188a", "fields": { - "question": 322, - "contribution": 4084, - "answer": 3, - "count": 4 + "question": 326, + "contribution": 1635, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1da2158-0ae5-4912-9f30-a71ffc5e5d48", + "pk": "b968b95c-9128-4d91-98d4-fb027e470b04", "fields": { - "question": 372, - "contribution": 3745, + "question": 346, + "contribution": 1860, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1ec929f-e9e4-4014-abbf-46a4a754589e", + "pk": "b96cd174-9016-4f6f-91b6-fcabb9f91508", "fields": { - "question": 348, - "contribution": 3608, - "answer": 1, - "count": 4 + "question": 322, + "contribution": 4046, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1edd638-e853-4c79-a09f-1faea3fc63a4", + "pk": "b977f2a1-2eb0-4e19-98f2-a4ba6c07031f", "fields": { - "question": 355, - "contribution": 4228, + "question": 321, + "contribution": 4116, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1f5bbb0-a334-4706-923c-800100053f7a", + "pk": "b978f150-835a-412e-b7d6-06d069bea368", "fields": { - "question": 397, - "contribution": 3775, - "answer": 1, - "count": 6 + "question": 326, + "contribution": 885, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1faf5d8-52ca-419a-b217-ddc7fbf0f1fa", + "pk": "b97b6702-7d9c-47a5-adf4-334d6d36c0d7", "fields": { - "question": 321, - "contribution": 884, - "answer": 1, - "count": 16 + "question": 326, + "contribution": 3740, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d1fd3681-3c27-4c51-ac8e-aa98f12db3e0", + "pk": "b97beb85-d5d2-4875-b4ff-488d377e4a4b", "fields": { - "question": 349, - "contribution": 1250, - "answer": 1, - "count": 3 + "question": 322, + "contribution": 3683, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2071ca6-c1b1-40cc-89d1-c641fec88177", + "pk": "b97dccc9-47db-46f8-b50b-1dd2dba9b229", "fields": { - "question": 338, - "contribution": 3416, - "answer": 1, - "count": 2 + "question": 315, + "contribution": 1668, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d208e039-5515-4aa4-b965-78c946e66b97", + "pk": "b981ac4e-f6e1-4326-9647-495acc9b8806", "fields": { - "question": 337, - "contribution": 3727, - "answer": 2, + "question": 321, + "contribution": 3406, + "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d20e622a-d22d-44ba-bfac-496da7e7bfd3", + "pk": "b9870535-c440-4943-b23e-8945ac3d38ab", "fields": { - "question": 351, - "contribution": 3735, + "question": 336, + "contribution": 868, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2148bb1-24fa-4c5c-8e04-c8696a0ecd28", + "pk": "b9909959-351e-4e3c-a4fe-7f8fab969b65", "fields": { - "question": 322, - "contribution": 3472, - "answer": 2, - "count": 5 + "question": 359, + "contribution": 1806, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2150efb-2553-42af-8cdc-963868195106", + "pk": "b9adca69-9055-40c9-a5f5-a2c146d6014a", "fields": { - "question": 363, - "contribution": 1826, - "answer": 5, - "count": 1 + "question": 338, + "contribution": 3645, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d21d47a1-f261-4e1c-bbd6-50c4f0cc5fc7", + "pk": "b9bbc2ae-b0f3-4caf-817f-b6f246cf6baf", "fields": { - "question": 333, - "contribution": 4154, + "question": 325, + "contribution": 1617, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d227fc3d-b27d-43be-93f4-abd0d93a5d59", + "pk": "b9be3bf9-6eb9-4608-b145-f10868d7d237", "fields": { - "question": 338, - "contribution": 1200, - "answer": 3, + "question": 345, + "contribution": 1203, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d22a7ad3-6d4e-4238-8959-a2cbdec0b509", + "pk": "b9c54e1d-8baf-4580-9d44-a874a0208423", "fields": { "question": 473, - "contribution": 4100, - "answer": 0, - "count": 18 + "contribution": 3440, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d231a1af-01c1-46d4-9c95-44aae0d83684", + "pk": "b9cd3db7-914d-48e7-82d8-8b01acb25e02", "fields": { - "question": 323, - "contribution": 3683, - "answer": 3, - "count": 1 + "question": 477, + "contribution": 4117, + "answer": -2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d25daba5-ace9-4719-9f0a-39d3b3262e73", + "pk": "b9d7a75e-880a-43f1-ad7c-da7e91b20b17", "fields": { - "question": 323, - "contribution": 3406, - "answer": 1, + "question": 336, + "contribution": 3404, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d26fb395-1477-4dd6-bbed-a56b9f845719", + "pk": "b9dbef94-53c9-4335-973b-5050ef041f9d", "fields": { - "question": 473, - "contribution": 3406, - "answer": -1, - "count": 1 + "question": 344, + "contribution": 4190, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d272cd7d-6dc5-4784-9217-7efceef2c858", + "pk": "b9dd3c9b-7bd0-4278-8ff6-3a14e4a8edc2", "fields": { - "question": 340, - "contribution": 3723, + "question": 335, + "contribution": 3631, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2762cf4-fff8-4c0d-bae2-228cbdadb66f", + "pk": "b9dde3dd-f047-492e-87d9-bfbed4b7f780", "fields": { - "question": 258, - "contribution": 1626, - "answer": 5, - "count": 2 + "question": 354, + "contribution": 3834, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d276bc4e-a8b4-43c5-9c54-4d7a7d17bc75", + "pk": "b9eb42f1-d200-4879-8e58-bac340648e7f", "fields": { - "question": 317, - "contribution": 1837, - "answer": 3, - "count": 1 + "question": 315, + "contribution": 908, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2771174-9ea8-4fec-af6b-57103e52b805", + "pk": "b9f3a767-b08d-486f-8c00-2282868613d2", "fields": { - "question": 475, - "contribution": 804, - "answer": 0, - "count": 2 + "question": 363, + "contribution": 3929, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d27a7228-8d2e-4092-952c-8c4b77808326", + "pk": "b9f63362-cbb7-4bed-9063-0c4f8e44f236", "fields": { - "question": 329, - "contribution": 1776, - "answer": 1, - "count": 15 + "question": 333, + "contribution": 4154, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d27b4191-0657-42f5-a655-43994804f341", + "pk": "b9f83968-88b9-4035-b36a-5a7a2f8a65af", "fields": { - "question": 326, - "contribution": 1777, + "question": 344, + "contribution": 3941, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2904266-d9a8-4566-8791-89fb79d6aeed", + "pk": "ba0e03a0-5b45-402f-bd1f-c6a9a1685380", "fields": { - "question": 457, - "contribution": 4283, - "answer": 3, - "count": 1 + "question": 343, + "contribution": 1809, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2978328-92ae-441b-b87d-6bf4e105e141", + "pk": "ba1f87e3-5940-43ce-b80c-9b92c3703acb", "fields": { - "question": 322, - "contribution": 3394, + "question": 316, + "contribution": 4046, "answer": 1, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2adeea2-187a-43b8-90f2-cf0398c87ed8", + "pk": "ba26dca1-2dca-47e2-9392-8d8a2d5bccbf", "fields": { - "question": 351, - "contribution": 3394, - "answer": 3, - "count": 1 + "question": 326, + "contribution": 4152, + "answer": 1, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2b180da-76c0-496b-a59d-5006e14598a3", + "pk": "ba2a0f5f-6f08-435f-8c0f-d9ef02dce408", "fields": { - "question": 355, - "contribution": 3546, + "question": 353, + "contribution": 3849, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2b759d8-6014-46fa-a6e7-93f735a21f5e", + "pk": "ba331072-e615-43c9-80ec-606379d8d949", "fields": { - "question": 329, - "contribution": 1613, + "question": 325, + "contribution": 823, "answer": 1, - "count": 24 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2b920b0-7d43-4939-b65b-038009cb4399", + "pk": "ba34d2ff-fd87-4502-8808-c4e0fef4aa3e", "fields": { - "question": 349, - "contribution": 1228, - "answer": 1, - "count": 2 + "question": 347, + "contribution": 3900, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2c479b7-300c-4119-87f0-11061a1372d9", + "pk": "ba365365-c6c3-46e6-9c91-711b0c932cd0", "fields": { - "question": 472, - "contribution": 3795, + "question": 337, + "contribution": 1640, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2ee22ca-12c1-4fff-a14f-5a29e28ddf72", + "pk": "ba3704f7-2632-4126-a70d-e283e96ce9cc", "fields": { - "question": 319, - "contribution": 4138, + "question": 337, + "contribution": 3751, "answer": 1, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2ee9645-c28c-4727-b0f1-8b28e378904d", + "pk": "ba3c4ab1-aa16-41d0-a237-19cbbfb5ff7d", "fields": { - "question": 262, - "contribution": 884, - "answer": 3, - "count": 2 + "question": 332, + "contribution": 4152, + "answer": 1, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2f9b647-201d-411a-b2b4-e7b0aef53e03", + "pk": "ba53b7be-9cde-447a-9adf-fd70e6ad9c6d", "fields": { - "question": 322, - "contribution": 1668, - "answer": 1, + "question": 338, + "contribution": 3645, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2fa0eb1-a499-4b77-ae6f-4aa4021781b0", + "pk": "ba588867-0f5e-4da5-bd28-5165d2e3cda3", "fields": { - "question": 473, - "contribution": 3394, - "answer": -1, + "question": 329, + "contribution": 913, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d2fb85c4-b863-48f0-81a4-18465b8b3a61", + "pk": "ba5903aa-276b-49a7-82aa-f762cc0e6176", "fields": { - "question": 361, - "contribution": 3919, + "question": 326, + "contribution": 3473, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d300354c-05d0-4afd-96d8-e082e49051e7", + "pk": "ba5b6b4b-b4ae-43f0-9168-f9db5af415dc", "fields": { - "question": 339, - "contribution": 3508, - "answer": -2, + "question": 356, + "contribution": 4268, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d30628dd-8391-4452-b680-c924c31e9c84", + "pk": "ba60ebcd-0732-42e9-baf7-e1f80a745f0e", "fields": { - "question": 336, - "contribution": 840, - "answer": 3, + "question": 432, + "contribution": 4052, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d306850a-a688-46da-bca9-3c71bb68ee28", + "pk": "ba67cc8c-c623-4b75-b521-6788091169dd", "fields": { - "question": 477, - "contribution": 4152, + "question": 344, + "contribution": 1881, "answer": 1, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "d316c90c-70f5-4723-a525-5c6c81ffd24c", - "fields": { - "question": 353, - "contribution": 3609, - "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d31adbc5-58a4-45ba-b0bb-156626f11248", + "pk": "ba7640e4-196a-46b9-b300-8498891d0822", "fields": { - "question": 262, - "contribution": 3721, - "answer": 2, + "question": 335, + "contribution": 3631, + "answer": 4, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d31cc4fe-b3a2-4489-b3f0-9bc0c23e6758", + "pk": "ba764220-bfbe-43dc-b452-7aa3f0b9c03d", "fields": { "question": 325, - "contribution": 913, - "answer": 1, - "count": 36 + "contribution": 823, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d31e0147-222a-42ad-8116-8eb885779f05", + "pk": "ba8c7261-6d94-4bf8-bdc0-73dffb49dac7", "fields": { - "question": 316, - "contribution": 3462, - "answer": 5, + "question": 344, + "contribution": 1867, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d325ba00-f4bd-4f19-ab3f-5fec51acc7cf", + "pk": "ba9375e8-5a8e-4744-8066-b699df7c1a50", "fields": { - "question": 260, - "contribution": 1634, - "answer": 3, - "count": 5 + "question": 328, + "contribution": 4023, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d339efcd-cea5-4ac3-9846-d135626d23d8", + "pk": "ba946f42-3182-4ec7-8e4e-7417f5b7f590", "fields": { - "question": 316, - "contribution": 3721, - "answer": 1, - "count": 7 + "question": 476, + "contribution": 3679, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d33cf5b7-ca76-47dc-bf37-5fa7ba68ab27", + "pk": "ba9e24db-d369-4079-a16b-cf097a0c7b1d", "fields": { - "question": 347, - "contribution": 1661, - "answer": 4, - "count": 1 + "question": 354, + "contribution": 1266, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d341ea81-a8a4-4c43-982b-b0e2627d0a85", + "pk": "baa5ade1-c4e4-45b8-94e9-d334db3b44cf", "fields": { - "question": 345, - "contribution": 3518, + "question": 329, + "contribution": 3407, "answer": 1, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d343767a-87e6-4684-9c91-7a8d5e1ac632", + "pk": "baa8dc67-10e4-42d8-a1d6-8d938e6cc3c5", "fields": { - "question": 347, - "contribution": 1872, - "answer": 1, - "count": 2 + "question": 329, + "contribution": 1778, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d353eefd-a1a7-4fba-abe5-b7a040b71849", + "pk": "bab033dd-9435-478c-bd94-faa5e77a5f4b", "fields": { - "question": 335, - "contribution": 4205, - "answer": 4, + "question": 346, + "contribution": 1749, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d3564813-87ab-423b-b7e9-12d13581e86d", + "pk": "bab5d67c-eb5a-4ca7-bec7-11685f2c5701", "fields": { - "question": 477, - "contribution": 4152, - "answer": 0, - "count": 28 + "question": 320, + "contribution": 3434, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d35a8724-a199-4df9-b45f-99ede1639a45", + "pk": "bab62ffd-2d29-4bfc-8825-b76041ddc79a", "fields": { - "question": 370, - "contribution": 1782, + "question": 321, + "contribution": 4128, "answer": 1, - "count": 7 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d36cd702-a71b-4cac-a3f8-f7785f597f78", + "pk": "baba1d15-f2e3-4acd-a368-128060949c35", "fields": { - "question": 340, - "contribution": 3416, - "answer": 2, + "question": 343, + "contribution": 3899, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d37f4ef8-79b0-4d9e-a028-d87c9937bc21", + "pk": "babc29e1-2491-4d77-9af5-25a16d991031", "fields": { - "question": 346, - "contribution": 841, + "question": 476, + "contribution": 1668, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d383cb8a-d3d5-4cbb-acdd-1246e21c05f0", + "pk": "babc302d-3d83-4876-aac5-34b4cd13c24a", "fields": { - "question": 333, - "contribution": 4244, + "question": 348, + "contribution": 1843, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d3980ee0-94de-45f6-b9d1-71ca1a74cfc4", + "pk": "babf1a75-0a3a-4cdf-af8d-a5ddf68f14db", "fields": { - "question": 319, - "contribution": 1837, - "answer": 4, - "count": 1 + "question": 258, + "contribution": 3665, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d3b87f8a-71ff-43fe-ac45-7059aa64d7a0", + "pk": "bac09a23-7ba1-4c2e-8751-2eefe9fa3f7e", "fields": { - "question": 368, - "contribution": 4153, + "question": 347, + "contribution": 3515, + "answer": 2, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "bacdff1c-3ccf-4f4b-b08a-7bc261e2090d", + "fields": { + "question": 356, + "contribution": 3609, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d3cdc284-554c-4e7b-b180-44f9b34f610f", + "pk": "bad7bcc5-1b56-4797-ab45-e2b3fd31021c", "fields": { - "question": 315, - "contribution": 3739, - "answer": 4, - "count": 1 + "question": 346, + "contribution": 3895, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d3d5cc95-c929-4a53-8ab5-3d9003ba62ab", + "pk": "baf123d0-d451-4e21-ad35-bd47d5d62bfa", "fields": { - "question": 472, - "contribution": 1200, - "answer": 1, - "count": 13 + "question": 348, + "contribution": 3546, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d3dbb20a-6864-4602-91ee-11632d9096c6", + "pk": "baf2de47-bcc8-48c3-a244-df3c6ce88571", "fields": { - "question": 344, - "contribution": 3728, + "question": 345, + "contribution": 1157, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d3e74ab0-8e66-4c76-aef0-33aa0032deab", + "pk": "baf64d79-a5c6-4ca5-a67f-62d286e73aab", "fields": { - "question": 319, - "contribution": 1626, + "question": 257, + "contribution": 880, "answer": 2, - "count": 7 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d3f3e367-011f-4154-ad6e-918c31668727", + "pk": "bb0470aa-4f8c-460a-a9f8-f23bf515ae94", "fields": { - "question": 258, - "contribution": 4046, + "question": 336, + "contribution": 868, "answer": 1, - "count": 8 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d3f9fe98-ffca-4eb9-87e4-2611e58264a4", + "pk": "bb056f37-7923-4db9-8309-d51704ff5d73", "fields": { - "question": 361, - "contribution": 1804, - "answer": 2, - "count": 1 + "question": 340, + "contribution": 4072, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d3fa619d-5444-4156-b498-deac05e715eb", + "pk": "bb09f0d3-863c-45fb-8f0f-6600c592db2b", "fields": { - "question": 328, - "contribution": 1681, + "question": 326, + "contribution": 1725, "answer": 1, - "count": 5 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d40ab4c7-b35a-4037-adb2-bc9df8ab4793", + "pk": "bb0be6a6-6c6e-46f3-a196-5c5e2bae3d2d", "fields": { - "question": 315, - "contribution": 912, - "answer": 3, - "count": 1 + "question": 326, + "contribution": 3680, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d4142c19-d982-4f44-befd-4512268f3766", + "pk": "bb0fb973-7805-4a0b-868a-b02a065e1ea2", "fields": { - "question": 361, - "contribution": 1799, - "answer": 5, + "question": 328, + "contribution": 3859, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d4160b1e-9f5a-4e01-8306-9a15a6394895", + "pk": "bb12896d-79d8-49bf-a59a-6eb4a02d285e", "fields": { - "question": 329, - "contribution": 3395, - "answer": 2, - "count": 1 + "question": 322, + "contribution": 3679, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d41f52f7-7689-4dc3-a465-84b503d9ca00", + "pk": "bb1adc07-021f-4acb-b173-881994394f03", "fields": { - "question": 351, - "contribution": 3466, + "question": 371, + "contribution": 1884, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d43bfd16-4978-4fa9-92b1-ce67240495a8", + "pk": "bb1becf6-1187-4a1f-a9f4-b95e352ea6f0", "fields": { - "question": 354, - "contribution": 4268, + "question": 362, + "contribution": 3921, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d43ecb1f-61ec-4758-8dff-93cac8e49b3a", + "pk": "bb2a16be-a0a3-4cdf-a1ec-cc737ff3553f", "fields": { - "question": 347, - "contribution": 1867, - "answer": 4, + "question": 369, + "contribution": 1836, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d44a529c-51e3-43f2-8ea9-b26957d38ca0", + "pk": "bb424e14-b72a-4767-92f8-47e6d5e07ebf", "fields": { - "question": 347, - "contribution": 1822, - "answer": 1, - "count": 4 + "question": 477, + "contribution": 3556, + "answer": 0, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d44c5161-35de-436f-9e48-07d077b45cbe", + "pk": "bb464ae4-791a-41ab-85f9-f93ea5a8f639", "fields": { - "question": 317, - "contribution": 4028, - "answer": 2, - "count": 6 + "question": 363, + "contribution": 3652, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d44ca843-242b-4dc9-a386-07d261410ce9", + "pk": "bb50c140-eca2-468f-9579-8b41dd8f59ce", "fields": { - "question": 347, - "contribution": 887, - "answer": 2, - "count": 2 + "question": 475, + "contribution": 1638, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d450d764-7395-4407-a0c6-1b7261f5f48b", + "pk": "bb6590cc-7f42-427f-a499-926c7fb6933c", "fields": { - "question": 352, - "contribution": 3745, - "answer": 2, + "question": 368, + "contribution": 3883, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d45601e3-11b5-44f1-b3d6-1e8b8eee16dd", + "pk": "bb72404e-ca03-432f-b025-e7e5e756a607", "fields": { - "question": 361, - "contribution": 3652, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 881, + "answer": 0, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d45e67bb-4976-40d4-a1fc-fe2e703811ae", + "pk": "bb82af2d-f00c-45fc-a08d-af85078f47d8", "fields": { - "question": 335, - "contribution": 3595, + "question": 361, + "contribution": 3597, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d464b5ce-2d73-4f40-9f11-678c89dda45a", + "pk": "bb88225b-c329-4117-8fef-e7d41ba04894", "fields": { - "question": 333, - "contribution": 3881, + "question": 326, + "contribution": 913, "answer": 1, - "count": 7 + "count": 28 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d46e43a8-327d-4a4a-9214-73cefc30e007", + "pk": "bb918eb2-e5ba-40f5-96f0-9056be7ae4a9", "fields": { - "question": 255, - "contribution": 3434, - "answer": 2, - "count": 10 + "question": 341, + "contribution": 1640, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d47b607f-bcb4-4186-a7d3-50adbe0043a0", + "pk": "bb9360f6-bf5a-4a3e-9840-46efdeb0bbb8", "fields": { - "question": 326, - "contribution": 1779, + "question": 338, + "contribution": 4122, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d498f0ff-9daf-4852-8e58-85a7a55c1f79", + "pk": "bb964316-107d-4c15-99f2-e048d11aa6f2", "fields": { - "question": 258, - "contribution": 4120, - "answer": 3, - "count": 3 + "question": 371, + "contribution": 4155, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d49afcfb-7c8a-4ec8-9f69-dabd35bc0dcd", + "pk": "bb997ca1-a01f-4c47-a3d9-d253c2fd649e", "fields": { - "question": 473, - "contribution": 4052, - "answer": 0, + "question": 476, + "contribution": 3390, + "answer": -2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d4ac0fe9-b29c-4670-99ec-353d88a4e991", + "pk": "bb9eceff-04f7-460f-95cb-25686344a494", "fields": { - "question": 452, - "contribution": 4185, - "answer": 2, - "count": 6 + "question": 369, + "contribution": 3649, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d4ac98f6-6e64-4953-aaa5-2b578969fdd9", + "pk": "bba11e3e-bd84-46ae-acdb-acdad65911ea", "fields": { - "question": 262, - "contribution": 1634, - "answer": 4, - "count": 2 + "question": 367, + "contribution": 3406, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d4af4814-278d-4b8f-bcff-62c089495c6c", + "pk": "bba31069-875b-45cd-9c90-fd4bfc7ca55d", "fields": { - "question": 327, - "contribution": 3884, - "answer": 1, - "count": 7 + "question": 408, + "contribution": 3984, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d4cd3f97-05d6-441f-b91a-c8efe88e41c2", + "pk": "bba5be61-04dc-4aef-9d41-4f673177b28f", "fields": { - "question": 332, - "contribution": 3592, - "answer": 3, - "count": 1 + "question": 428, + "contribution": 4261, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d4d721b3-b774-4efd-9552-d2b1a488c6bc", + "pk": "bbb0f541-f55f-4fb3-aebc-3c2cffec4381", "fields": { - "question": 370, - "contribution": 4223, + "question": 321, + "contribution": 822, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d505d8bd-e2fc-4827-a502-45d4abf80032", + "pk": "bbb42476-5b07-440a-81af-809e53aafa91", "fields": { - "question": 344, - "contribution": 1228, - "answer": 3, - "count": 3 + "question": 347, + "contribution": 3895, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d506db58-b2c3-448b-b8c9-164399ef5432", + "pk": "bbbe7db8-1c53-4adf-9bb6-3a0296e5ecbb", "fields": { - "question": 322, - "contribution": 4138, - "answer": 4, - "count": 6 + "question": 348, + "contribution": 3545, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d50b53e2-a8cb-4b4c-b4bb-807d5fc55f19", + "pk": "bbbee02c-f555-4ca6-95bf-fd34f237655d", "fields": { - "question": 344, - "contribution": 841, + "question": 316, + "contribution": 1668, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d50e5ad2-e404-4126-8c98-34cdf6b80eb5", + "pk": "bbcdc6ea-f585-4e96-8564-8cc0bf1b0365", "fields": { - "question": 319, - "contribution": 3434, - "answer": 3, - "count": 5 + "question": 344, + "contribution": 3451, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d512d418-6221-41f0-adb0-8ad5dafb04bf", + "pk": "bbd6c8d4-44c7-401e-a282-739318437f96", "fields": { - "question": 323, - "contribution": 908, - "answer": 4, - "count": 4 + "question": 476, + "contribution": 880, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d51352e0-bd8a-4609-a226-74a9c264cb56", + "pk": "bbd6e1d8-d5f9-453c-a8e4-5989bd6e11c7", "fields": { - "question": 337, - "contribution": 1726, - "answer": 2, + "question": 323, + "contribution": 4128, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d517200c-b006-450a-b1c8-6a0c8ec2dcda", + "pk": "bbd92d33-3f8c-4d1d-8f0c-47b93865573a", "fields": { - "question": 367, - "contribution": 4120, + "question": 326, + "contribution": 1186, "answer": 2, - "count": 6 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d5188ddd-6e77-4bf0-a4a0-cd8f2155fbc3", + "pk": "bbe20a2b-6849-444f-8bcd-5858f6f664be", "fields": { - "question": 473, - "contribution": 880, - "answer": 0, - "count": 19 + "question": 361, + "contribution": 1826, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d51c8710-fafe-4acd-bc9e-ea9a271c817a", + "pk": "bbf32495-de35-4776-b73b-72acd127bb5c", "fields": { - "question": 343, - "contribution": 1843, - "answer": 1, + "question": 255, + "contribution": 4120, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d51e6e11-03b5-4c22-b816-52c3030feab4", + "pk": "bbf52d8f-9319-4752-b40d-13f51f9c5c64", "fields": { - "question": 473, - "contribution": 4094, - "answer": -2, - "count": 1 + "question": 262, + "contribution": 3721, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d53240e1-61c1-4c03-a90b-21b36fafdbdc", + "pk": "bbfd3b6c-abf2-4e89-a33a-35569d7d0d9b", "fields": { - "question": 317, - "contribution": 3394, - "answer": 1, - "count": 1 + "question": 255, + "contribution": 4116, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d53ec863-d01b-464c-9c7f-bce759006b08", + "pk": "bbfdc903-5e2c-44f8-a3e1-0b83a58b1134", "fields": { - "question": 473, - "contribution": 826, - "answer": 0, + "question": 350, + "contribution": 4046, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d5433155-34fc-4085-9847-22b377f6a584", + "pk": "bbfe08e5-88d2-4782-99ee-1675757be7b4", "fields": { - "question": 349, - "contribution": 1645, + "question": 348, + "contribution": 3960, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d546875d-6a86-4aa2-aba2-5e7dc8898832", - "fields": { - "question": 473, - "contribution": 3474, - "answer": 0, - "count": 11 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "d56fcc34-7200-460a-bc94-52170349bf27", + "pk": "bc04ec67-3849-4ef4-b45a-3567e1df2f10", "fields": { - "question": 343, - "contribution": 1206, - "answer": 1, - "count": 7 + "question": 396, + "contribution": 3775, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d5770965-f3e5-41c5-a311-2c2cbb879154", + "pk": "bc07a553-bb60-4350-9402-91e773e3684b", "fields": { - "question": 258, - "contribution": 3394, - "answer": 2, - "count": 2 + "question": 367, + "contribution": 3721, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d585f6cf-85d1-4f35-97be-e8bd74d428b6", + "pk": "bc0878cb-8c86-4529-a9f8-212eaff833c9", "fields": { - "question": 344, - "contribution": 4129, - "answer": 2, - "count": 5 + "question": 369, + "contribution": 3916, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d586c8ce-8d2c-4d06-9725-59a20da2212a", + "pk": "bc095aba-43df-417f-bf56-78ac66194000", "fields": { - "question": 316, - "contribution": 1668, + "question": 348, + "contribution": 3509, "answer": 1, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d5a04d01-3fb9-48d9-89cb-ce676efffcb7", + "pk": "bc0acafc-3338-4065-b2c0-1c57692cdeb0", "fields": { - "question": 473, - "contribution": 1668, - "answer": -1, - "count": 1 + "question": 452, + "contribution": 4185, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d5b50799-1467-4e74-bf32-16ef8379a390", + "pk": "bc12510c-e398-4df2-8c63-05a36e334e80", "fields": { - "question": 339, - "contribution": 3486, - "answer": 0, - "count": 8 + "question": 337, + "contribution": 3440, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d5c0824e-4678-42c8-80dc-226ebf429569", + "pk": "bc19b12d-5bd4-4495-8559-de9845338ded", "fields": { - "question": 344, - "contribution": 3517, + "question": 388, + "contribution": 3775, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d5ca42a9-85b5-47c2-b738-ce784a8f2e96", + "pk": "bc25c09d-a58e-4f88-8a96-ef016f5b1842", "fields": { - "question": 347, - "contribution": 3728, - "answer": 4, - "count": 3 + "question": 338, + "contribution": 894, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d5cb42ca-1a3b-491c-bfae-61208c7b3676", + "pk": "bc263266-d6ba-4f93-966a-1b5db4f72f0c", "fields": { - "question": 319, - "contribution": 912, - "answer": 4, - "count": 2 + "question": 329, + "contribution": 1154, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d5de5360-ccd3-4a09-abbd-05b6f360617d", + "pk": "bc26c591-e5d8-4834-a40b-2f6fa1731c5e", "fields": { - "question": 352, - "contribution": 3440, + "question": 385, + "contribution": 3781, "answer": 2, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "d605e09c-4dbb-4ee1-af32-c3d9fffbc529", - "fields": { - "question": 328, - "contribution": 3589, - "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d607ae1a-249e-4698-a42a-913d61e2006e", + "pk": "bc328b68-fff6-4006-980e-706ca8029ea9", "fields": { - "question": 472, - "contribution": 3390, - "answer": 1, - "count": 9 + "question": 368, + "contribution": 1613, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d60c181a-b24b-44f2-b2dd-329d72109dc0", + "pk": "bc37b166-fdb0-40b5-a717-822c6d8ede29", "fields": { - "question": 475, - "contribution": 4072, - "answer": -1, + "question": 361, + "contribution": 3929, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d60f0f97-cb4d-4143-b51b-a99311830550", + "pk": "bc38ba77-ec30-45b8-b138-9d04343c7188", "fields": { "question": 333, - "contribution": 3882, - "answer": 1, - "count": 7 + "contribution": 1283, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d60fffd2-f8da-493d-9d79-fe9b31f8e880", + "pk": "bc3e5870-0afa-4af5-b8e5-3fb4fc5d8876", "fields": { - "question": 473, - "contribution": 3406, - "answer": 0, - "count": 7 + "question": 340, + "contribution": 3466, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d61320bf-3859-476d-8197-17670937f807", + "pk": "bc482bf5-71fb-4c30-9dea-4adb88762166", "fields": { - "question": 344, - "contribution": 841, + "question": 326, + "contribution": 3391, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d61e3c2b-6cab-44c1-ab62-b277c3c145fa", + "pk": "bc508b45-b6f9-4bcb-acdc-6ec3d76005c8", "fields": { - "question": 473, - "contribution": 3721, - "answer": -3, + "question": 336, + "contribution": 3466, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6310e07-5aff-4a17-a023-8eb50cae90a0", + "pk": "bc61d825-022b-4531-93a5-e6724ce2c959", "fields": { - "question": 368, - "contribution": 3684, - "answer": 2, - "count": 3 + "question": 366, + "contribution": 4155, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d636798a-7295-4f92-b3dd-fee69d4f949f", + "pk": "bc62b727-08fa-4b9f-a6a1-cc28a2c501c5", "fields": { - "question": 356, - "contribution": 1844, + "question": 369, + "contribution": 3942, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d63df857-44f9-4042-8517-0d73654d71f5", + "pk": "bc6c1e7d-c815-47d6-af83-de35fc537233", "fields": { - "question": 348, - "contribution": 1870, - "answer": 1, + "question": 357, + "contribution": 1781, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d64612cf-0777-48b4-b2ec-37fa3733e0e7", + "pk": "bc72c7f9-5ec3-4121-a229-18b786269263", "fields": { - "question": 339, - "contribution": 3727, - "answer": -2, - "count": 2 + "question": 315, + "contribution": 3665, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d64c236f-a044-43c9-9577-5c0f2496b6d4", + "pk": "bc944ba4-5390-405a-bcfe-317659b7eacf", "fields": { - "question": 336, - "contribution": 3450, - "answer": 2, + "question": 332, + "contribution": 4152, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d668964f-ff48-4877-997c-1bb023db4c2e", - "fields": { - "question": 255, - "contribution": 3354, - "answer": 1, - "count": 21 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "d678b681-f50e-45dc-b19b-53cecca54e37", + "pk": "bc986b33-8fff-4593-adec-659f94643065", "fields": { - "question": 348, - "contribution": 1922, - "answer": 2, + "question": 371, + "contribution": 3592, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d68cb140-6976-4ba5-955f-cd73611c11fa", + "pk": "bc9fb1d6-1ea5-497e-9522-7074efb496d1", "fields": { - "question": 339, - "contribution": 1660, + "question": 326, + "contribution": 3473, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6901683-104d-4049-9692-9e0efb563ccb", + "pk": "bca0af4c-cae1-4bad-880a-41a80cf4dae9", "fields": { - "question": 428, - "contribution": 4154, - "answer": 1, + "question": 343, + "contribution": 1246, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6973f7c-b0c2-4337-ba05-656f48fec910", + "pk": "bca16055-4f6d-4bb1-b6f0-ff00c1afe5c1", "fields": { "question": 328, - "contribution": 3684, + "contribution": 3473, "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d69acfee-5306-4735-a511-542d01cbb0a0", + "pk": "bca87c66-adc6-415b-aff6-7ec70d005db6", "fields": { - "question": 319, - "contribution": 4046, + "question": 258, + "contribution": 1634, "answer": 3, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d69d8f6e-bad9-493a-891a-0fcdd2093c1d", + "pk": "bcacc7b8-d4e8-4116-b049-81518c6a9030", "fields": { - "question": 322, - "contribution": 3725, - "answer": 3, - "count": 11 + "question": 321, + "contribution": 4116, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d69d9b0a-3253-4f29-86d2-5d14a7f3e3c4", + "pk": "bcb2aea1-2d1e-4164-8bcf-fd2b43071101", "fields": { - "question": 477, - "contribution": 3519, - "answer": -3, - "count": 3 + "question": 354, + "contribution": 1257, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d69f19db-bd72-48e6-a3cf-8bd9345bde32", + "pk": "bcb8d23a-7bbd-4afb-a41b-472b9201fd99", "fields": { - "question": 332, - "contribution": 4156, - "answer": 3, - "count": 1 + "question": 473, + "contribution": 3683, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6a01d10-9480-4186-af71-6e281fc1daa8", + "pk": "bcb9ddef-56eb-494d-91f8-173983f0795e", "fields": { - "question": 328, - "contribution": 885, + "question": 348, + "contribution": 3545, "answer": 3, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "d6a1b028-675b-4ef1-8f97-9f8b9de5cf98", - "fields": { - "question": 376, - "contribution": 3775, - "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6a4494c-5139-416c-be37-be7ba67fefea", + "pk": "bcccf51c-a308-4158-86f6-846f653c7911", "fields": { - "question": 432, - "contribution": 4140, - "answer": 2, + "question": 340, + "contribution": 3681, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6a4c174-4b2f-45cf-b087-866a8ee527e1", + "pk": "bcd79416-23dd-43ef-bb8e-cf86750986ff", "fields": { - "question": 345, - "contribution": 3912, + "question": 315, + "contribution": 1612, "answer": 3, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6a50149-f6f3-4004-a777-68df80d87e17", + "pk": "bcd95fe2-8006-444c-9351-be18a4925e84", "fields": { - "question": 332, - "contribution": 4205, + "question": 338, + "contribution": 3759, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6aee417-230f-4add-a9f2-d47ff4ba2935", + "pk": "bce70647-76a0-4cba-89f2-e87ae40135e8", "fields": { - "question": 340, - "contribution": 1694, + "question": 323, + "contribution": 1634, "answer": 3, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "d6afdf8e-9464-46f6-8553-76d5a4d7ccfe", - "fields": { - "question": 317, - "contribution": 822, - "answer": 4, - "count": 1 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6b668c1-73cc-40a6-8a0f-309d91b11554", + "pk": "bce85886-f4a5-4e74-b23c-529922c269c2", "fields": { - "question": 475, - "contribution": 3681, - "answer": 0, + "question": 333, + "contribution": 4155, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6c6b463-0282-40f7-a32d-ef195d16ea3f", + "pk": "bce97ac6-d62e-40ba-bfe0-960232d2b08b", "fields": { - "question": 339, - "contribution": 3785, - "answer": 2, - "count": 1 + "question": 262, + "contribution": 4022, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6cc2204-ef97-4a76-b011-7ee359db4ae0", + "pk": "bd04b4d9-d166-469a-a677-d9c7d21e240e", "fields": { - "question": 345, - "contribution": 4187, + "question": 348, + "contribution": 4146, "answer": 1, - "count": 9 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6d090a5-b345-4612-b817-c83efb2b44d0", + "pk": "bd0c2a73-1754-4de9-bc66-a743c23edf5b", "fields": { - "question": 361, - "contribution": 1836, + "question": 320, + "contribution": 3474, "answer": 5, - "count": 1 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "d6e6956a-e744-4e60-bc45-be2372363742", - "fields": { - "question": 349, - "contribution": 1828, - "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6edbd5b-0f95-4587-a6bd-70443c06e8e2", + "pk": "bd150239-1838-4e34-8589-914414359b80", "fields": { - "question": 407, - "contribution": 3974, + "question": 344, + "contribution": 3516, "answer": 1, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6f93431-a50e-4fa6-90f9-7310ed5d79f3", + "pk": "bd15165a-d18f-433c-9413-512e8029d82f", "fields": { - "question": 322, + "question": 315, "contribution": 4116, - "answer": 1, - "count": 3 + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6fc9d95-4d7f-4f6e-a32c-91a53706ceaa", + "pk": "bd1b04ef-adcb-4cb0-96b0-177bd1f2211f", "fields": { - "question": 315, - "contribution": 3422, - "answer": 1, - "count": 18 + "question": 259, + "contribution": 3390, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6fd4a25-eb92-4ed1-9ab4-0c403c86e436", + "pk": "bd1cc1b1-2302-4e45-bec8-436cda7e2e4b", "fields": { - "question": 322, - "contribution": 4046, - "answer": 2, - "count": 4 + "question": 255, + "contribution": 4022, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d6ff3dd3-ce2a-4674-b585-c22898bffb25", + "pk": "bd206176-be4c-4b3c-be0b-3a45c8306e19", "fields": { - "question": 349, - "contribution": 4129, + "question": 344, + "contribution": 1873, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d7049e54-3a31-4025-8b49-411800dcf945", + "pk": "bd257408-67e1-422d-812f-3d803abb8b18", "fields": { - "question": 338, - "contribution": 1734, - "answer": 2, - "count": 1 + "question": 328, + "contribution": 1186, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d7134b4a-fd30-4c1e-ab4f-636b2d079c54", + "pk": "bd37f8d8-5d9d-4a4a-ad41-944c670bea42", "fields": { - "question": 260, - "contribution": 3354, + "question": 366, + "contribution": 3552, "answer": 1, - "count": 13 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d73b699e-54d1-4c65-ba71-f21a752266c6", + "pk": "bd430304-af07-44c1-bf4f-9f7d4b73b34d", "fields": { - "question": 340, - "contribution": 3785, + "question": 337, + "contribution": 3454, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d74b116c-e6d0-40f9-b28e-c51fda47fbf7", + "pk": "bd4ac986-eb2e-45a2-afa4-43eceefd4b07", "fields": { - "question": 326, - "contribution": 4203, + "question": 346, + "contribution": 1735, "answer": 2, - "count": 8 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d7566353-ba34-472c-a0ba-2770c06c3d05", + "pk": "bd4df250-c0eb-4f2d-87cd-f79c2e65f93b", "fields": { - "question": 368, - "contribution": 3722, - "answer": 1, - "count": 7 + "question": 383, + "contribution": 3781, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d7570114-3b1d-4e02-b004-e54c707ad865", + "pk": "bd4fdaa3-6b9a-409a-8668-0e65c9b03065", "fields": { - "question": 343, - "contribution": 1228, - "answer": 1, - "count": 4 + "question": 326, + "contribution": 1287, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d75b2567-6647-4858-bc36-c4807a3d8ded", + "pk": "bd6c5de3-d326-4e07-9898-5adfa0211290", "fields": { - "question": 370, - "contribution": 4244, - "answer": 1, - "count": 3 + "question": 428, + "contribution": 4205, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d75eef60-6daa-4d76-b6de-c9ab5505343f", + "pk": "bd6cd7d7-27f8-4e4c-9297-372c049d9cb6", "fields": { - "question": 357, - "contribution": 1776, - "answer": 2, - "count": 2 + "question": 348, + "contribution": 1205, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d77286f6-9adf-4dea-bb6d-e4130a6dbf4e", + "pk": "bd7976c3-fd9d-46dd-9fe4-77381c9d17d9", "fields": { - "question": 355, - "contribution": 3712, - "answer": 1, - "count": 2 + "question": 337, + "contribution": 1694, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d7775f8e-d09d-4dce-89fb-afa7b6121c10", + "pk": "bd860cb5-6054-4712-9ef5-d59ce2027330", "fields": { - "question": 329, - "contribution": 3726, + "question": 348, + "contribution": 4187, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d77fc902-b9e0-4be9-9f42-efc9b05e86f4", + "pk": "bd93602d-5b92-4226-bb8c-d93cc99d3c17", "fields": { - "question": 473, - "contribution": 836, - "answer": 0, - "count": 18 + "question": 257, + "contribution": 3679, + "answer": 1, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d78566a2-a21a-4ca3-a72b-3c8212d1b983", + "pk": "bd94c8b6-ab7a-4d74-a135-0d7ad94b5c39", "fields": { - "question": 337, - "contribution": 918, - "answer": 3, - "count": 1 + "question": 359, + "contribution": 3916, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d7888ced-8fa4-49a7-a608-42c7c8db87fb", + "pk": "bd95c0ae-3477-4953-8fcb-80ddd231f4ba", "fields": { - "question": 316, - "contribution": 3739, - "answer": 5, - "count": 1 + "question": 317, + "contribution": 1634, + "answer": 1, + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d7915c65-080a-4668-ab08-61231e535f3a", + "pk": "bd9920d3-b6b2-41e7-9c1a-609c082d3b1a", "fields": { - "question": 258, - "contribution": 1626, - "answer": 2, - "count": 12 + "question": 473, + "contribution": 3474, + "answer": -1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d7bc455c-a2c7-425d-8b4d-1c4bdb0378ce", + "pk": "bd99d291-63ee-4bdc-a969-36c890ff885a", "fields": { "question": 339, - "contribution": 3466, + "contribution": 3486, "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d7bcd785-0af0-4c14-8b79-1088945831a5", + "pk": "bd9ac961-8607-493b-959f-50f77daf4561", "fields": { - "question": 477, - "contribution": 909, - "answer": 3, + "question": 460, + "contribution": 4283, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d7c5418e-5800-4641-bd24-1feb4d361af1", + "pk": "bda21ff8-805e-4037-90eb-e6280aebb25c", "fields": { - "question": 338, - "contribution": 3450, + "question": 344, + "contribution": 4123, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d7f5310c-c8c9-40b7-ad64-03cb86c3ce78", + "pk": "bdb7a152-65bb-4bf7-9af3-fda198631077", "fields": { - "question": 351, - "contribution": 3745, + "question": 329, + "contribution": 4101, "answer": 2, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d7f5f088-a23a-4e8c-ab8d-60e15ec4283a", + "pk": "bdbbfbd0-4923-431c-9be7-5d289405321d", "fields": { - "question": 352, - "contribution": 804, + "question": 333, + "contribution": 4205, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d80af689-a366-4101-b730-fed08ce323e4", + "pk": "bdc02092-b80b-4bca-ada9-1ec98d01ab01", "fields": { - "question": 355, - "contribution": 1154, - "answer": 4, + "question": 475, + "contribution": 1660, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d81111a4-6482-4d05-9e1b-a611c236daf5", + "pk": "bdc2d59f-aec6-4c9e-bf0b-e5e5ce6ad852", "fields": { - "question": 360, - "contribution": 1808, - "answer": 5, - "count": 1 + "question": 370, + "contribution": 3546, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d818356c-6a81-4831-a29e-b4ba27a3d3fc", + "pk": "bdd69f31-c226-434d-ba08-97dd80ad4851", "fields": { - "question": 258, - "contribution": 1680, + "question": 346, + "contribution": 1867, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d81d1b0f-3b82-4c4f-b87c-45f34c0f439d", + "pk": "bddaa4d2-a3ac-47a6-9883-5e0ad38bdbee", "fields": { - "question": 476, - "contribution": 1626, - "answer": -3, - "count": 1 + "question": 332, + "contribution": 3593, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d81e5b1c-4e75-43df-90b1-a416997eb0e3", + "pk": "bddcb921-46e2-4b84-b466-eb6efcf0a20a", "fields": { - "question": 317, - "contribution": 822, - "answer": 5, - "count": 2 + "question": 350, + "contribution": 4046, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8227c39-656a-4f76-8c7b-19a0d11398b4", + "pk": "bddec8dc-f7a3-4386-a607-a9bc2076d81a", "fields": { - "question": 331, - "contribution": 884, - "answer": 0, - "count": 31 + "question": 369, + "contribution": 1835, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d822f03a-2606-4070-abd3-81de67cb81cb", + "pk": "bde5b6ac-0e84-4b78-b4fe-9fc929e91505", "fields": { - "question": 323, - "contribution": 3422, - "answer": 5, - "count": 5 + "question": 315, + "contribution": 822, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8238ee9-21fc-458a-8011-6bb35745370c", + "pk": "bde639e2-fcc0-4a69-9516-ff8fc7ab962d", "fields": { - "question": 355, - "contribution": 1845, - "answer": 4, - "count": 1 + "question": 257, + "contribution": 912, + "answer": 1, + "count": 37 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d83074d4-0260-4cd6-b153-8383ef4a230d", + "pk": "bdee2ef5-ca84-4bec-bf35-c71a379c41b7", "fields": { - "question": 258, - "contribution": 4084, - "answer": 2, - "count": 16 + "question": 345, + "contribution": 3545, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8314d09-7835-4dae-8652-f3dd197748ef", + "pk": "bdfc6f4d-98bc-46e4-868b-7510f0f3ff25", "fields": { - "question": 458, - "contribution": 3786, + "question": 472, + "contribution": 4072, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8361c82-719d-4d75-b69b-cc616ae700e3", + "pk": "be00fe50-c240-4595-b0ef-16e8488b363e", "fields": { - "question": 255, - "contribution": 4128, + "question": 322, + "contribution": 1612, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8388d9a-5caf-4687-91d0-e2fb63f194c1", + "pk": "be022d63-2a89-4c3c-b696-0bd4c708b31d", "fields": { - "question": 323, - "contribution": 862, - "answer": 2, + "question": 328, + "contribution": 3556, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d84a06a2-8121-4dec-abfb-bf3477df031e", + "pk": "be1bf1e5-2e0e-4e3c-bf0f-a79cbba0cb97", "fields": { - "question": 476, - "contribution": 4084, - "answer": 1, - "count": 9 + "question": 340, + "contribution": 1200, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d84ba2df-3a69-4d74-80f6-e0e5a7c4ba2e", + "pk": "be1c6674-d929-49d8-99f1-072cfbd43490", "fields": { - "question": 362, - "contribution": 3921, - "answer": 1, - "count": 2 + "question": 347, + "contribution": 4190, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d84c1909-b69d-4451-a9fb-eb0750bfd1f1", + "pk": "be27907b-2983-4911-ba7a-96925751ad60", "fields": { - "question": 260, - "contribution": 3390, - "answer": 5, - "count": 10 + "question": 345, + "contribution": 3895, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8576e24-f143-40fd-9da4-2366c4142855", + "pk": "be27affc-0a42-46da-b35f-a4c51a168c4d", "fields": { - "question": 361, - "contribution": 3649, + "question": 327, + "contribution": 1797, "answer": 1, - "count": 7 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8581aa0-89f4-4061-9e3c-54e32817d351", + "pk": "be317cbd-4d6e-4c3d-8be9-19fb98e3ad9a", "fields": { - "question": 338, - "contribution": 3486, - "answer": 1, - "count": 3 + "question": 327, + "contribution": 885, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8644b66-11c5-40c3-9a8b-3f33157a1b23", + "pk": "be371cda-0440-4701-9b3a-76142127b7a9", "fields": { - "question": 338, - "contribution": 1734, - "answer": 1, + "question": 461, + "contribution": 4141, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8647c86-bc3c-4ef6-b386-9e7e2b522033", + "pk": "be3accbf-fb2f-4640-b17a-84ff3babc689", "fields": { - "question": 346, - "contribution": 4191, - "answer": 1, + "question": 400, + "contribution": 4148, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d87385c6-a6f9-4dc0-b52d-31b445b20dc5", + "pk": "be4094b2-45db-473b-a3e3-af6995208968", "fields": { - "question": 323, - "contribution": 1634, + "question": 341, + "contribution": 4020, "answer": 4, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d873cb34-e87a-49c8-be40-dcc8c285e3d6", + "pk": "be495693-4ea4-4d0e-bab7-10b70328efac", "fields": { - "question": 362, - "contribution": 1835, + "question": 327, + "contribution": 4117, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d87ea2d7-8a7b-4353-9892-cdc0e3fe6c6f", + "pk": "be4b50b4-5970-476a-9c84-cd4de985bd15", "fields": { - "question": 325, - "contribution": 837, - "answer": 2, + "question": 322, + "contribution": 3354, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d87f0ffa-4f3e-4e90-a0c7-f25c28a2c4ff", + "pk": "be57a6a3-2b6f-4ae5-b784-65b931447350", "fields": { - "question": 338, - "contribution": 4094, - "answer": 2, - "count": 1 + "question": 472, + "contribution": 3711, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d887026e-1164-4119-8711-84948a30bcec", + "pk": "be62a0e8-d7f5-45fa-b8e1-eb4678c7033c", "fields": { - "question": 348, - "contribution": 1824, - "answer": 1, - "count": 5 + "question": 321, + "contribution": 3434, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8872d7b-263c-481d-966e-042db260e714", + "pk": "be677645-df11-4517-ba0c-c578c292ce98", "fields": { - "question": 320, - "contribution": 3474, - "answer": 3, - "count": 4 + "question": 472, + "contribution": 3422, + "answer": 5, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d89163aa-6286-4b93-837d-ff6bb8c7b0aa", + "pk": "be6cff95-c558-4e2b-a262-981d5fd8fdb4", "fields": { - "question": 336, - "contribution": 4122, + "question": 473, + "contribution": 884, + "answer": 0, + "count": 29 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "be763909-eef1-48c4-bd8c-f29feaa482ed", + "fields": { + "question": 477, + "contribution": 1298, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d89e197d-a8fa-47ab-a7b9-0edac33ea60c", + "pk": "be7aa331-9c96-454a-8efc-07ba858fa8e9", "fields": { - "question": 355, - "contribution": 3608, - "answer": 4, + "question": 260, + "contribution": 822, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d89e731f-8ff3-4fde-9f0e-c821add16640", + "pk": "be8613a5-d38a-4105-884d-7d8d8376c6ab", "fields": { - "question": 327, - "contribution": 1779, + "question": 366, + "contribution": 4155, "answer": 3, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8ab272f-cf93-4349-915c-78981998341d", + "pk": "be895156-ec78-4ebf-afbb-93e42292a3ee", "fields": { - "question": 476, - "contribution": 3462, - "answer": 0, - "count": 4 + "question": 356, + "contribution": 1776, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8b44c95-9499-487c-942b-eb6ee07dd0a8", + "pk": "be9467bf-11dd-44b3-a197-021a1907f829", "fields": { - "question": 353, - "contribution": 3516, - "answer": 2, - "count": 2 + "question": 331, + "contribution": 1634, + "answer": 0, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8ba7929-a6b1-4cb8-bf24-b7b3c4207d5f", + "pk": "be94d171-ca17-41be-b335-9ec9dc00c9f4", "fields": { - "question": 472, - "contribution": 880, - "answer": 1, - "count": 20 + "question": 335, + "contribution": 3552, + "answer": 3, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8c9427c-d925-4d12-844f-23099acadd84", + "pk": "be9765c7-b390-4a04-bca1-7f26c30feb79", "fields": { - "question": 339, - "contribution": 3404, + "question": 348, + "contribution": 3890, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8d16ff1-2a41-4f0e-8466-43e77138c9ec", + "pk": "be989072-4b6e-4b45-90d9-fe8781efc78f", "fields": { - "question": 347, - "contribution": 3609, - "answer": 1, - "count": 5 + "question": 260, + "contribution": 4138, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8d47ee5-8774-43e0-9e5d-70531ca7d349", + "pk": "be9f9ac8-edec-43d3-8b10-12ea5de908b3", "fields": { - "question": 327, - "contribution": 4117, + "question": 473, + "contribution": 3725, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8d54055-48b7-47e3-a0a5-c302dd64d889", + "pk": "bead8669-381b-4d35-b6a4-3c2a817d3f80", "fields": { - "question": 317, + "question": 262, "contribution": 880, - "answer": 1, - "count": 11 + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8d9e934-73df-4f9f-b3ea-4076188b9249", + "pk": "beaf140c-8ec0-46cd-83c7-4b6b3301bc10", "fields": { - "question": 335, - "contribution": 3594, - "answer": 1, - "count": 1 + "question": 328, + "contribution": 1635, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8db5191-ea83-4669-aff0-490ecea1de7b", + "pk": "beaf6629-8e02-42b6-aef2-b3ae2b199c05", "fields": { - "question": 323, - "contribution": 864, - "answer": 1, - "count": 2 + "question": 346, + "contribution": 1851, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8dcfb72-977e-4574-8256-57e0365c7da7", + "pk": "beb00baf-300c-472b-978e-b3c3acc9f9d3", "fields": { - "question": 329, - "contribution": 4153, - "answer": 1, - "count": 8 + "question": 315, + "contribution": 836, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8e48911-05a2-4827-bd99-b26a986b996d", + "pk": "beb8ad6a-5864-435e-8440-7fc6cba8676d", "fields": { - "question": 359, - "contribution": 3943, - "answer": 3, - "count": 1 + "question": 367, + "contribution": 3422, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8e65afd-fe39-4f26-b18a-8977d2e6761f", + "pk": "bebae17d-2b97-4867-b2a0-2e37c2ea80b3", "fields": { - "question": 321, - "contribution": 1837, + "question": 435, + "contribution": 4008, "answer": 2, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d8f5752d-a00c-4cff-888c-1611bc5e8dfc", + "pk": "bebb006d-4145-4816-8eb5-1a8e7638d5cb", "fields": { - "question": 369, - "contribution": 1808, + "question": 317, + "contribution": 884, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d90082dd-9041-4ffe-8037-405c0c3e03fc", + "pk": "bec7e663-7d52-4007-82c8-08b8babcccd1", "fields": { - "question": 323, - "contribution": 3721, + "question": 340, + "contribution": 3404, "answer": 5, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9068db1-b3d7-4ae1-9165-df83eae02753", + "pk": "bed8932c-c2c7-482a-8781-71b141d8f9e9", "fields": { - "question": 412, - "contribution": 3984, - "answer": 2, - "count": 1 + "question": 255, + "contribution": 3665, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d909cfdf-0a0c-4262-b3d2-86cfc557e623", + "pk": "bee2b18b-5996-473b-becc-d6e9ca83a05a", "fields": { - "question": 344, - "contribution": 1842, - "answer": 3, - "count": 1 + "question": 315, + "contribution": 4118, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d90b81d0-76b1-41ec-9250-1b3fd1be3784", + "pk": "bef05d20-8280-4578-9fb6-876aaaa421a1", "fields": { - "question": 476, - "contribution": 3721, - "answer": -1, - "count": 3 + "question": 338, + "contribution": 3382, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d91206f7-49a4-4d1d-b52b-65d93a060de3", + "pk": "bef9f842-562b-48fb-9e78-80a2658d3861", "fields": { - "question": 260, - "contribution": 3474, - "answer": 3, - "count": 5 + "question": 335, + "contribution": 4152, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9155174-8e31-4872-a512-703aaf72460e", + "pk": "beff3682-ae89-4b1b-8eee-3926cbc7e935", "fields": { - "question": 348, - "contribution": 841, - "answer": 1, - "count": 4 + "question": 347, + "contribution": 1881, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d91ee046-62a8-4d8c-88e3-936c93c06b62", + "pk": "bf0ef5d9-d96c-4205-8c2f-0b2328f1d195", "fields": { - "question": 325, - "contribution": 881, + "question": 315, + "contribution": 4084, "answer": 1, - "count": 21 + "count": 24 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d92a2cdc-ee1b-4a7c-b407-07c05651f8ae", + "pk": "bf2a9115-6557-45aa-8c47-4ea004ccf213", "fields": { - "question": 476, - "contribution": 884, + "question": 331, + "contribution": 1724, "answer": 0, - "count": 25 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "d937ded9-cd0a-469b-a653-7f5075f2266d", - "fields": { - "question": 320, - "contribution": 3472, - "answer": 3, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d93968ce-925a-4afe-b6a0-885561405c5e", + "pk": "bf3547ff-7e29-43e2-aaa6-176ea735e5bc", "fields": { - "question": 344, - "contribution": 1235, + "question": 341, + "contribution": 3382, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d941392b-e7b1-4226-b24c-665231e776a4", + "pk": "bf428259-9e6b-4e09-9fe6-7cbc82d2e60b", "fields": { - "question": 476, - "contribution": 3679, - "answer": 0, - "count": 18 + "question": 315, + "contribution": 3472, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9454438-3f97-4f27-92ed-c4c55d5e46bf", + "pk": "bf45f3c9-f75b-4888-b3c3-013357cc1438", "fields": { - "question": 472, - "contribution": 4138, + "question": 323, + "contribution": 3472, "answer": 1, - "count": 19 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9567186-15af-4ecd-98b7-31f5a987ce82", + "pk": "bf4df3af-27eb-4a8a-8bf7-ccf247bd7b41", "fields": { - "question": 329, - "contribution": 3519, - "answer": 2, - "count": 6 + "question": 362, + "contribution": 1825, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d95a3647-2f82-438e-9f5b-59d634a9173c", + "pk": "bf50e70b-b255-453c-ab11-13b19e4fa585", "fields": { - "question": 319, - "contribution": 1724, + "question": 329, + "contribution": 1779, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d95bda35-a761-461f-91b3-b3239072b92f", + "pk": "bf560875-a2d2-4f17-97a4-e9b3fa32e891", "fields": { - "question": 344, - "contribution": 3516, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 1186, + "answer": 0, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d95d99bd-0c84-42d8-a75b-79485e4f05b5", + "pk": "bf572378-a777-48ab-b3d0-57fb48e806c6", "fields": { - "question": 325, - "contribution": 1778, - "answer": 2, - "count": 2 + "question": 320, + "contribution": 4138, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d96cbebb-b5c9-443b-9561-5e042f5473e2", + "pk": "bf594034-34d8-4900-858c-829f2e2cc18d", "fields": { - "question": 321, - "contribution": 880, + "question": 337, + "contribution": 1644, "answer": 1, - "count": 14 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d97e0ee5-6795-48cd-bbbb-9145935c3cf5", + "pk": "bf5bccca-98bf-4daf-b30d-433f9867e0b8", "fields": { - "question": 344, - "contribution": 4123, + "question": 354, + "contribution": 3546, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d98ef5c5-2736-4db1-9e92-eaec4bb8630c", + "pk": "bf9d8072-2714-4091-876b-8ca6d8d6590d", "fields": { - "question": 328, - "contribution": 837, + "question": 327, + "contribution": 1802, "answer": 1, - "count": 11 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9a80d75-aa1d-42ed-b01d-b8ee43173040", + "pk": "bf9dab7a-d5eb-4860-a7ee-a5b76551fe86", "fields": { - "question": 344, - "contribution": 4192, + "question": 333, + "contribution": 4244, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9a813d4-e956-44ee-abf6-a4bda7a56b28", + "pk": "bf9dad20-fb94-4f23-b81c-55deb60b499d", "fields": { - "question": 380, - "contribution": 3775, + "question": 323, + "contribution": 3462, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9ab1d00-203e-4ba8-9b67-99a9f35cd43a", + "pk": "bfa2b724-6ead-46e3-997a-7c6859782f54", "fields": { - "question": 416, + "question": 407, "contribution": 3984, - "answer": 2, - "count": 2 + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9ad5f25-babe-441c-beea-51f796f3d229", + "pk": "bfa4de9e-34ef-4498-9ea4-5fbe9953c5c4", "fields": { - "question": 477, - "contribution": 4085, - "answer": 3, - "count": 1 + "question": 323, + "contribution": 3721, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9b00ad9-aba5-4a35-ba96-4d5d28d354dd", + "pk": "bfa54a6c-e392-4be1-b475-c954eced53fe", "fields": { - "question": 347, - "contribution": 4234, + "question": 353, + "contribution": 3516, "answer": 1, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9ba86a1-74be-459e-b0cd-404d5ca786ff", + "pk": "bfa5f245-7177-4470-b379-471dfed9b7ba", "fields": { - "question": 348, - "contribution": 1151, - "answer": 1, - "count": 4 + "question": 255, + "contribution": 1837, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9bc0f81-8f3d-4d07-8871-0f8f33d20471", + "pk": "bfa5fad7-5cd4-42d9-bf4a-fa457c394e22", "fields": { - "question": 329, - "contribution": 3423, - "answer": 2, - "count": 4 + "question": 328, + "contribution": 3859, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9c0173f-fb55-4352-8001-fb189f80c591", + "pk": "bfb07049-d66f-48bc-845b-b884165b6ea4", "fields": { - "question": 332, - "contribution": 3598, + "question": 361, + "contribution": 1808, "answer": 1, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9cb75be-898c-4036-bc7a-dd3caa068b5b", + "pk": "bfb6deb5-7311-4169-becb-5cf72f9878a5", "fields": { - "question": 328, - "contribution": 3740, + "question": 343, + "contribution": 4190, + "answer": 2, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "bfb7124d-513c-41c4-8023-cc81975f215d", + "fields": { + "question": 327, + "contribution": 4101, "answer": 4, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9e814e1-4f88-4458-97bd-06fcb5fd1069", + "pk": "bfbc620c-d831-4f1b-b1c1-1958a6552017", "fields": { - "question": 359, - "contribution": 1806, - "answer": 5, + "question": 345, + "contribution": 1873, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9e99a65-2c20-4893-b340-52d4071e1679", + "pk": "bfbe4088-751f-4733-9c33-63edd847527f", "fields": { - "question": 317, - "contribution": 1668, - "answer": 5, - "count": 1 + "question": 337, + "contribution": 1662, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9ea4663-b882-402b-b1f3-d36f179f55a4", + "pk": "bfc22891-38db-4013-8e59-a8350a7e0958", "fields": { - "question": 367, - "contribution": 1626, - "answer": 4, - "count": 1 + "question": 325, + "contribution": 1154, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9f299c2-1aa9-4f26-8ac9-7295e09b2945", + "pk": "bfc30d32-f947-41a6-8b65-a7fef802ed38", "fields": { - "question": 351, - "contribution": 826, + "question": 379, + "contribution": 3711, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "d9f6b425-dc32-4e56-9474-4a9f1ca4aba7", + "pk": "bfd33251-ec11-4bd8-8e13-78be17036bd2", "fields": { - "question": 348, - "contribution": 3516, - "answer": 1, - "count": 13 + "question": 321, + "contribution": 4128, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da011d79-7a0c-4e4e-b610-6e99da3184ef", + "pk": "bfd7b402-002b-45ef-89c6-976a7f8dab67", "fields": { - "question": 475, - "contribution": 3745, - "answer": 0, - "count": 3 + "question": 338, + "contribution": 1640, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da3491aa-d4e8-42b4-9812-a16fe92205c5", + "pk": "bfd9fdde-ac33-45cd-9e48-769a57be3903", "fields": { - "question": 326, - "contribution": 3883, + "question": 477, + "contribution": 4023, "answer": 1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da3be54b-7086-4b0f-a64c-a988058979b7", + "pk": "bfdc52a8-3f2b-4afb-a742-a60d130175e7", "fields": { - "question": 344, - "contribution": 3728, - "answer": 2, + "question": 435, + "contribution": 4140, + "answer": 3, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da40f495-e46e-4d0d-aaba-f78c1326835e", + "pk": "bfdeb275-d806-45ce-8fdf-8ea87dc818c6", "fields": { - "question": 476, - "contribution": 822, - "answer": -1, + "question": 329, + "contribution": 4117, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da420adc-f065-4d32-b8af-fca3746e202b", + "pk": "bfe08173-d665-442b-a29a-dd529b5373f1", "fields": { - "question": 360, - "contribution": 1827, - "answer": 3, - "count": 2 + "question": 322, + "contribution": 3474, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da4be0eb-003e-4c75-9835-bf841c0ace65", + "pk": "bfe2568a-12a7-48f1-a585-0e5c4fe8f597", "fields": { - "question": 476, - "contribution": 3721, - "answer": 2, + "question": 473, + "contribution": 3645, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da6cfb45-0996-45ad-8274-b1c41c412919", + "pk": "bfe3d964-5bcb-490a-af78-d68c04195366", "fields": { - "question": 356, - "contribution": 1776, - "answer": 4, - "count": 2 + "question": 315, + "contribution": 3725, + "answer": 1, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da701210-056a-4d41-a52d-e5046b32c762", + "pk": "bfeb0d2d-763c-4a1f-b5c9-787a145b5cbc", "fields": { - "question": 343, - "contribution": 1809, + "question": 350, + "contribution": 788, "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da7b93ea-1d8e-4edf-954e-4dcd7277edfd", + "pk": "bff50e88-d144-42b7-aea3-d1eabe5dcee4", "fields": { - "question": 262, - "contribution": 3462, - "answer": 5, - "count": 1 + "question": 316, + "contribution": 4138, + "answer": 3, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da8226ed-e445-4c9f-891e-db27cec8aae8", + "pk": "c00897df-6096-44f3-a8d5-bd67ab921fdb", "fields": { - "question": 349, - "contribution": 1661, - "answer": 1, - "count": 2 + "question": 359, + "contribution": 3929, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da86696f-29ae-4abf-b306-f8d5549fef10", + "pk": "c01fa469-0cc5-41f1-80b4-560da88208dd", "fields": { - "question": 368, - "contribution": 4152, - "answer": 2, - "count": 14 + "question": 335, + "contribution": 3592, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da94017c-a32f-4a7d-84df-9a6bbead46b4", + "pk": "c0232554-ced2-437b-9e1d-cc37ed81e238", "fields": { - "question": 315, - "contribution": 4116, - "answer": 4, + "question": 331, + "contribution": 3462, + "answer": 0, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da99daba-9c9f-4d43-8834-a613f6a3327f", + "pk": "c036816f-baeb-48e6-9c12-bcd5c0107a1e", "fields": { - "question": 336, - "contribution": 3703, + "question": 343, + "contribution": 887, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "da9b7002-1aaf-4c39-a502-3a25b93b00e5", + "pk": "c0372aeb-b250-4575-a7fd-268d1e1aefe1", "fields": { - "question": 331, - "contribution": 1626, + "question": 370, + "contribution": 4279, "answer": 3, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "daa60930-d8e6-4e12-8465-6b6175ec2b74", + "pk": "c04799e2-f94d-4304-ad6e-5bd9426611c5", "fields": { - "question": 476, - "contribution": 1837, - "answer": 1, - "count": 3 + "question": 367, + "contribution": 3474, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dab46987-17ce-48bf-aabe-e0156660b1fd", + "pk": "c0489fec-1285-4859-910c-77586691cb3d", "fields": { - "question": 434, + "question": 433, "contribution": 4090, "answer": 4, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dacd90d7-43f1-4c01-afea-0ec4d8c6f7be", + "pk": "c04b6862-2581-4615-8772-ab284c6944c2", "fields": { - "question": 339, - "contribution": 1694, - "answer": 3, - "count": 1 + "question": 327, + "contribution": 1780, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "daf049da-26c9-42af-a969-d79d4da657d3", + "pk": "c04f335a-41a6-46fb-87cb-8f3dd6761e62", "fields": { "question": 347, - "contribution": 1863, - "answer": 1, - "count": 1 + "contribution": 1205, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "daf918d2-d0d0-4ef6-bb1a-c5f87f4ff20f", + "pk": "c052b3dc-29fd-4dc2-9542-06d90623ab83", "fields": { - "question": 328, - "contribution": 1725, + "question": 335, + "contribution": 4244, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "daf9ed76-d7aa-400d-bca7-4f2a1179f6c7", + "pk": "c056a870-620e-4b71-82f9-a0a13fdddb19", "fields": { - "question": 477, - "contribution": 885, - "answer": -2, - "count": 3 + "question": 473, + "contribution": 4116, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dafc5154-15a9-443b-bc03-6bee5bc0c56b", + "pk": "c05f3f32-7fe9-4bdd-b698-898fabb045be", "fields": { - "question": 255, - "contribution": 4138, - "answer": 2, - "count": 16 + "question": 356, + "contribution": 3849, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db051f90-0bee-4c49-9443-f76d10701cd1", + "pk": "c06303bc-9c2c-4eb0-9431-3521c5722fcc", "fields": { - "question": 319, - "contribution": 4128, - "answer": 4, - "count": 4 + "question": 329, + "contribution": 4023, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db0fbdee-bf3b-4a73-adc9-9dd178a6d26c", + "pk": "c07365af-df78-466c-93d8-aee016fe7289", "fields": { - "question": 322, - "contribution": 4118, + "question": 368, + "contribution": 4203, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db1ad810-992c-4ee1-bff6-debdbfa8eefc", + "pk": "c073b4a4-b544-43d9-b587-74c0fa3e17db", "fields": { - "question": 356, - "contribution": 1785, + "question": 322, + "contribution": 908, "answer": 2, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db1aed96-eb3a-4650-9cb4-243a09f5c942", + "pk": "c087bf8c-c9f3-4d06-b3e5-c4c36e5f51ae", "fields": { - "question": 477, - "contribution": 3722, - "answer": -1, - "count": 7 + "question": 348, + "contribution": 4095, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db20c112-6669-49e3-ad1e-d8854196d2d5", + "pk": "c088c135-655e-4941-a494-5a3f6b375761", "fields": { - "question": 473, - "contribution": 3739, - "answer": -1, + "question": 325, + "contribution": 4153, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db2802ef-fbae-4b0f-8e41-2818f16a9210", + "pk": "c08a7b97-5868-405c-b3d9-711f0fa4fa0f", "fields": { "question": 368, - "contribution": 3680, - "answer": 2, - "count": 2 + "contribution": 3423, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db2b8cfd-7743-4da8-b926-21377cea4d8b", + "pk": "c092b586-e417-4a61-b4b0-aa2a3830d025", "fields": { - "question": 345, - "contribution": 3608, - "answer": 2, + "question": 347, + "contribution": 3546, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db2f818f-8b4c-41b5-b40b-da32e0e33694", + "pk": "c09596bd-f1ea-4ef6-bdbe-aedd12dd6cdb", "fields": { - "question": 327, - "contribution": 885, - "answer": 1, - "count": 27 + "question": 260, + "contribution": 3354, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db33260b-802e-4893-88fd-d7ce0d1b4da8", + "pk": "c0a18b6a-27f7-493f-962c-cee7ca4276c5", "fields": { - "question": 367, - "contribution": 3725, - "answer": 3, - "count": 4 + "question": 326, + "contribution": 1777, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db33eb95-0226-41e8-bba2-ede24c22f20f", + "pk": "c0a1ec6e-3faa-47eb-8487-5520b292885e", "fields": { - "question": 473, - "contribution": 3723, - "answer": 0, - "count": 4 + "question": 355, + "contribution": 4223, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db36055e-1130-45a9-9303-7858e8c93c0f", + "pk": "c0ae5761-d042-47ef-b7e8-3625c0e149ed", "fields": { - "question": 473, - "contribution": 3404, - "answer": 3, + "question": 328, + "contribution": 1779, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db442666-8333-4c81-834c-e72299a1c14a", + "pk": "c0bcd29d-c619-4197-9915-77e92deefa2b", "fields": { - "question": 355, - "contribution": 3610, - "answer": 1, - "count": 3 + "question": 321, + "contribution": 3422, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db4a7624-a869-4bef-8637-d22c9df8487a", + "pk": "c0bd35d1-0aa9-4f8a-8e57-b80c0f982bc7", "fields": { - "question": 260, - "contribution": 1658, + "question": 321, + "contribution": 4120, "answer": 1, - "count": 11 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db4ae6f7-7bd1-4761-8d13-699dfe966191", + "pk": "c0bd543f-157b-4c80-977b-c58f0a3fa068", "fields": { - "question": 401, - "contribution": 4148, + "question": 345, + "contribution": 3796, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db5eb4db-dbbe-4f49-b6ec-1f9caf707da8", + "pk": "c0bfd8ec-7a05-4238-871d-6eb04e4a27e3", "fields": { - "question": 323, - "contribution": 3474, - "answer": 3, - "count": 3 + "question": 357, + "contribution": 3608, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db60a78d-8f55-4b89-be64-52061606b42e", + "pk": "c0c0b17a-5451-4f55-9371-115a1a852c3e", "fields": { "question": 369, - "contribution": 3917, - "answer": 1, - "count": 3 + "contribution": 3597, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db639bf2-f77f-47c3-9da0-4dc6d764f5fd", + "pk": "c0dbbab7-9e82-4162-b870-db972b703653", "fields": { - "question": 475, - "contribution": 1694, - "answer": -2, + "question": 345, + "contribution": 4189, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db642d2c-c49f-4d64-ab3e-71a89d532952", + "pk": "c0fb5ed7-1941-4b7e-bb4e-4a3f615ec71a", "fields": { - "question": 356, - "contribution": 3545, - "answer": 3, - "count": 2 + "question": 326, + "contribution": 3666, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db6b23a4-1069-4181-8113-65d1a53fd449", + "pk": "c1088a52-b73b-4281-86a1-2183be314373", "fields": { - "question": 332, - "contribution": 1812, - "answer": 1, - "count": 3 + "question": 322, + "contribution": 3739, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db72d845-bd9f-4b53-9952-adf8ec07292a", + "pk": "c1089aa6-8d61-4e43-b096-2625660b4197", "fields": { - "question": 370, - "contribution": 4267, - "answer": 1, + "question": 347, + "contribution": 1641, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db775b0e-4581-4c8c-84c8-094749cf4e80", + "pk": "c1091318-5db2-4e8e-9d8a-df20c189b0df", "fields": { - "question": 346, - "contribution": 3528, - "answer": 3, - "count": 2 + "question": 315, + "contribution": 4120, + "answer": 1, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db7b3166-6088-46c2-b46b-dbabe7847349", + "pk": "c10a9aa7-d0da-4353-87c1-1c358c4e34b5", "fields": { - "question": 350, - "contribution": 4022, - "answer": 4, - "count": 1 + "question": 316, + "contribution": 3665, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db7dca60-0402-4699-a352-74d00d43e2e0", + "pk": "c10ded09-420b-4f69-975e-1c071e489129", "fields": { - "question": 372, - "contribution": 3454, - "answer": 3, - "count": 2 + "question": 327, + "contribution": 1617, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db852bf8-875c-4ae8-9739-da1cf25745a7", + "pk": "c1288dbc-e658-46bb-ac8c-0e6740ad3a40", "fields": { - "question": 357, - "contribution": 1785, - "answer": 3, + "question": 333, + "contribution": 3553, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db8546a3-02f3-4e64-901e-d6102f54bbce", + "pk": "c12ec123-92ba-4d09-9310-1a6bf23eb7f5", "fields": { - "question": 349, - "contribution": 4187, + "question": 347, + "contribution": 3608, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db889dd9-3eb6-4c97-a96a-b6b2051abdd8", + "pk": "c13159b7-269a-4058-98f4-75f621616291", "fields": { - "question": 477, - "contribution": 4117, - "answer": -3, - "count": 4 + "question": 353, + "contribution": 4268, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db92c947-4ea3-4d37-9126-f5651ab620f5", + "pk": "c14b6e5e-522d-409b-8c84-6f02ca197424", "fields": { - "question": 329, - "contribution": 4117, - "answer": 4, - "count": 3 + "question": 317, + "contribution": 1658, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db93646f-9e4d-4f3f-97df-a68ebacd06cf", + "pk": "c153a5bf-2347-4ea1-be2e-c5068c103050", "fields": { - "question": 379, - "contribution": 3755, + "question": 257, + "contribution": 1634, "answer": 2, - "count": 1 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db9583c5-368f-40b4-8bf5-4872203450fc", + "pk": "c154ba78-189b-46a3-a7de-d3d7381c39ae", "fields": { - "question": 367, - "contribution": 3679, + "question": 316, + "contribution": 884, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "db9778a4-e8e7-4a51-84f5-27f872d9d344", + "pk": "c15f76d0-1f77-400f-845a-0d3134461e6c", "fields": { - "question": 327, - "contribution": 881, - "answer": 3, - "count": 7 + "question": 338, + "contribution": 3727, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dba45efa-837d-4001-b983-27e2187734b8", + "pk": "c15ff040-adcb-4b16-b663-8fe345ea3494", "fields": { - "question": 260, - "contribution": 3739, - "answer": 4, + "question": 363, + "contribution": 3651, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dba556e8-175e-43a5-b1d1-aea44d33ba01", + "pk": "c1634089-a6a1-4a27-9bd9-d255ce3a14db", "fields": { - "question": 317, - "contribution": 4120, - "answer": 2, - "count": 8 + "question": 417, + "contribution": 4038, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dba627e0-8bd2-428d-b9c7-abdfe764116e", + "pk": "c1644f09-d98f-4a5d-8609-a603a2cf3488", "fields": { - "question": 328, - "contribution": 3463, - "answer": 5, - "count": 2 + "question": 257, + "contribution": 3739, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dbb3ad9e-8c87-47a2-96ec-2e84e13537bd", + "pk": "c1711925-1457-4310-904e-bc1bde5f83c5", "fields": { - "question": 371, - "contribution": 3936, - "answer": 1, + "question": 332, + "contribution": 3552, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dbb71d4b-5b00-4b5a-957b-09b500fbb5c3", + "pk": "c1732ee2-7663-4107-9855-98d3007581a5", "fields": { - "question": 361, - "contribution": 1810, - "answer": 5, + "question": 353, + "contribution": 1243, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dbb865ab-c3c8-4fab-9233-a3027a679fb3", + "pk": "c17883e3-f775-4390-a1b6-bd661cbae140", "fields": { - "question": 319, - "contribution": 4084, - "answer": 5, - "count": 4 + "question": 348, + "contribution": 4191, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dbbf43be-63ec-4a4b-9f14-2d90d52f1d53", + "pk": "c1867703-5224-46d5-8941-ca8306006d94", "fields": { - "question": 345, - "contribution": 1639, - "answer": 5, - "count": 1 + "question": 344, + "contribution": 1809, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dbd05742-7494-4cfd-8ee9-20cc633856c5", + "pk": "c18b4e7e-c1f1-490f-93be-08fd5bd35950", "fields": { - "question": 327, - "contribution": 4085, - "answer": 3, + "question": 320, + "contribution": 880, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dbd38f7a-4f4d-4f4d-afca-ef2b17382ad8", + "pk": "c18c4b20-44e4-4aea-a400-c248a88768ed", "fields": { - "question": 340, - "contribution": 894, + "question": 402, + "contribution": 4177, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dbde1fb8-4961-4fd4-bd79-27673b6d4f18", + "pk": "c1a010fd-ad55-44a0-a620-956723e4e35a", "fields": { - "question": 319, - "contribution": 3434, + "question": 344, + "contribution": 1207, "answer": 1, - "count": 20 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dbe9efa2-6ef3-42b7-ab3c-59695e624fed", + "pk": "c1a13aa9-b9bc-44ef-8858-63fcc6dc8be1", "fields": { - "question": 339, - "contribution": 1644, + "question": 475, + "contribution": 3821, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dbeb36ba-8413-4bde-be5c-0b648b1358e2", + "pk": "c1a1f174-93fe-4da5-be0e-f185d63ddd67", "fields": { - "question": 343, - "contribution": 4129, - "answer": 4, + "question": 333, + "contribution": 3932, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dbed9926-5ba4-488b-a3c1-2c360f41b447", + "pk": "c1ab789e-a77a-4ff9-9a36-7cce0e7ab735", "fields": { - "question": 354, - "contribution": 4278, + "question": 350, + "contribution": 832, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dbf612f4-45bc-4466-91cd-2aec9f28800b", + "pk": "c1ac0f41-81b3-4c5a-88bb-c5a54e95f1eb", "fields": { - "question": 329, - "contribution": 3726, - "answer": 1, - "count": 20 + "question": 382, + "contribution": 3775, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc039cb1-3d3d-4aa0-8bd1-22518532d44d", + "pk": "c1ac7fb1-d9fc-41f5-a4d4-bcf6644103c5", "fields": { - "question": 338, - "contribution": 862, - "answer": 1, - "count": 7 + "question": 366, + "contribution": 3882, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc0b6b3c-2818-4845-bcc8-f02c721994d4", + "pk": "c1b180f1-fc70-47e4-a1a9-e8c8f573a1ef", "fields": { - "question": 360, - "contribution": 3648, - "answer": 2, + "question": 400, + "contribution": 3646, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc0d4040-49a1-44b3-a5b0-48ffee3754f8", + "pk": "c1b5f274-11ef-452f-98a4-a7999b3587c7", "fields": { - "question": 357, - "contribution": 3834, + "question": 329, + "contribution": 3435, + "answer": 3, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "c1bb9511-32d9-4cf2-a148-0507dada0ce9", + "fields": { + "question": 368, + "contribution": 1777, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc23e743-7c3f-406f-be24-c4869f908471", + "pk": "c1bf44ad-cc65-483b-8788-08d2adf69cd3", "fields": { - "question": 472, - "contribution": 1644, - "answer": 5, + "question": 337, + "contribution": 3416, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc363237-25ce-4af6-8038-d5cf6af4a9da", + "pk": "c1e30665-e105-48db-9e58-3ba55e1089af", "fields": { - "question": 362, - "contribution": 1812, - "answer": 5, - "count": 1 + "question": 348, + "contribution": 869, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc40a440-6046-4c0e-af6b-327f4480037f", + "pk": "c1ebc09f-2a75-4832-96b2-05c9411a5c4a", "fields": { - "question": 315, - "contribution": 4084, - "answer": 4, - "count": 2 + "question": 369, + "contribution": 1806, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc49db44-9948-43c4-b98b-2332985e0dcc", + "pk": "c1f47a52-184b-45bb-b801-44f87a7042ab", "fields": { - "question": 322, - "contribution": 822, - "answer": 3, - "count": 3 + "question": 371, + "contribution": 4154, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc4fbdf7-ff55-4a5b-b3f0-a10aecae98d8", + "pk": "c20d1b2e-463c-4f85-870a-13c75893546c", "fields": { - "question": 316, - "contribution": 3474, + "question": 343, + "contribution": 1250, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc5aa98b-4440-4cdc-9e13-839bf018d694", + "pk": "c21711d9-5bc1-4d1b-b211-754394cadc42", "fields": { - "question": 259, - "contribution": 4022, + "question": 321, + "contribution": 1668, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc623469-a6da-4139-a069-f98545a828e3", + "pk": "c21bc2f4-d100-4832-adbd-cc3165f2bd0a", "fields": { "question": 344, - "contribution": 3546, + "contribution": 3895, "answer": 3, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc69fb0d-9912-4ac1-bfac-9ad257156eba", + "pk": "c21c7993-4f01-4323-996f-873fbdf9d222", "fields": { - "question": 353, - "contribution": 3545, - "answer": 5, - "count": 1 + "question": 368, + "contribution": 1635, + "answer": 1, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc6f1a54-e652-4b99-bfaa-7dce579593bc", + "pk": "c22bb5df-018d-456a-adef-8bb41895898d", "fields": { - "question": 372, - "contribution": 3745, + "question": 329, + "contribution": 3391, "answer": 3, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc745b26-4f3f-4adc-97aa-3d05b51ae2cf", + "pk": "c22ddc5b-0123-4e30-be0a-2054fb5d9571", "fields": { - "question": 366, - "contribution": 3936, - "answer": 3, - "count": 4 + "question": 348, + "contribution": 3912, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc81f4cf-6462-42a1-945a-f86241f14dc3", + "pk": "c2346cf1-0ef9-46f7-9528-8dab6af67875", "fields": { - "question": 335, - "contribution": 3595, - "answer": 1, + "question": 361, + "contribution": 3917, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc8317ff-9ef5-4112-889f-784aa86c0bd9", + "pk": "c239c133-c760-4487-913d-c5cf1efc7827", "fields": { - "question": 316, - "contribution": 4028, + "question": 457, + "contribution": 3786, "answer": 2, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc84dfef-9fd2-4e08-b957-98c6e9cd999b", + "pk": "c246674a-c466-4095-bab7-a416e7951a3a", "fields": { - "question": 476, - "contribution": 3422, - "answer": 2, + "question": 346, + "contribution": 1202, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc86d7f4-6d5d-435a-b814-56d96f1c7098", + "pk": "c24abc79-a4c9-478c-9983-8e87e5610d18", "fields": { - "question": 368, - "contribution": 1802, - "answer": 5, - "count": 4 + "question": 345, + "contribution": 1204, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc8ab0e8-7b7c-4f3e-9bbe-90dc00023c88", + "pk": "c24b48d4-4db7-46fe-977c-8c7039e6b91c", "fields": { - "question": 345, - "contribution": 3610, + "question": 477, + "contribution": 1777, "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc91bdd1-c866-4f52-97ba-760ffe0a87b4", + "pk": "c24e3ca3-52f4-40c0-9dc6-1341848bd4ab", "fields": { - "question": 321, - "contribution": 4100, - "answer": 4, - "count": 2 + "question": 353, + "contribution": 3852, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc96e89c-be90-4379-8fbd-872a44554add", + "pk": "c25381f7-12e2-44f7-9786-dfcdf119d451", "fields": { - "question": 317, - "contribution": 1634, + "question": 262, + "contribution": 4022, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc984e97-1c0c-4da5-b7ca-5b562d99e8ff", + "pk": "c25a9c34-99fd-4ea9-a722-2fbfbc2bc469", "fields": { - "question": 353, - "contribution": 3834, - "answer": 2, + "question": 323, + "contribution": 1837, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dc9f63e2-84f4-4be8-b3c2-f39829271457", + "pk": "c26579ab-a556-46ce-a550-13535ef823ff", "fields": { - "question": 339, - "contribution": 868, - "answer": -1, + "question": 329, + "contribution": 1288, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dca9bd38-f2c5-44d8-a284-513f65af8e7f", + "pk": "c265dcef-c072-4db9-ac5d-c85236983826", "fields": { - "question": 370, - "contribution": 4227, + "question": 362, + "contribution": 3944, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcaee0f9-8957-4f99-a6ed-5d2d26c718de", + "pk": "c266136e-efc7-4c8f-88d7-c45fdef20984", "fields": { - "question": 363, - "contribution": 3944, - "answer": 4, - "count": 1 + "question": 341, + "contribution": 1656, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcaf30b6-9864-4547-97de-8e16ca50d5fd", + "pk": "c26ed916-1183-4ebd-8d05-a374c99424c1", "fields": { - "question": 476, - "contribution": 836, - "answer": 0, - "count": 16 + "question": 331, + "contribution": 3721, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcc34360-0624-44da-92dc-d932153d0512", + "pk": "c27a8892-199e-4140-9692-b669a902c11a", "fields": { - "question": 346, - "contribution": 3546, - "answer": 4, - "count": 1 + "question": 353, + "contribution": 1154, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcc5b77e-ebbc-46b9-bf1d-2c1d9ddf8170", + "pk": "c27deaaa-ec44-493e-a92d-09fe94edfce0", "fields": { "question": 344, - "contribution": 4187, - "answer": 2, - "count": 2 + "contribution": 4003, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcc817a3-6316-49a3-bcb0-1f784928a650", + "pk": "c2830b12-384f-4085-901c-19c637eea463", "fields": { - "question": 366, - "contribution": 4152, - "answer": 4, + "question": 258, + "contribution": 1680, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcccc1b9-21d2-4b5d-8b63-dad35352ae58", + "pk": "c2867c4c-01cc-4b6b-99a9-1e151809a000", "fields": { - "question": 477, - "contribution": 913, - "answer": -1, - "count": 11 + "question": 325, + "contribution": 885, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcd62c9d-476c-41b4-9ef7-75ce66c89e7d", + "pk": "c2a14f25-decd-4f7f-8afd-3c474cef13e7", "fields": { - "question": 321, - "contribution": 4028, - "answer": 3, - "count": 2 + "question": 316, + "contribution": 4022, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcdbde57-5182-4951-9f42-e36427de2b0b", + "pk": "c2a4ad82-2cb7-41b1-9d18-7f8909b2df3d", "fields": { - "question": 321, - "contribution": 3725, - "answer": 3, - "count": 5 + "question": 255, + "contribution": 4120, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcdffc9a-93d6-45de-842d-ed0fa3a0d15b", + "pk": "c2a7b6c6-64c2-4b65-9ed1-653c966007e4", "fields": { - "question": 473, - "contribution": 4002, + "question": 331, + "contribution": 3474, "answer": 0, - "count": 3 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dce69b94-7c0a-4487-b40b-3473774edac7", + "pk": "c2bc9087-9c66-42a5-98f1-b3180e7fa1ea", "fields": { - "question": 315, + "question": 473, "contribution": 3721, - "answer": 3, - "count": 1 + "answer": 0, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dce875e2-6708-444e-87a5-de7140496166", + "pk": "c2d59ecd-4a4f-4e73-ad02-24286d8de1f2", "fields": { - "question": 366, - "contribution": 4155, + "question": 354, + "contribution": 1243, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dce8a477-1a49-420d-ab4a-fcf3f0c73aaa", + "pk": "c30334a7-46d9-4256-a3c8-35bac1287e78", "fields": { - "question": 322, - "contribution": 1837, - "answer": 1, - "count": 26 + "question": 339, + "contribution": 886, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dceb5f5b-0cdd-47e8-b2fa-5b49cc56c8cd", + "pk": "c307910d-d52d-4f81-8efb-7f47f5cb9c73", "fields": { - "question": 372, - "contribution": 3440, - "answer": 4, - "count": 1 + "question": 326, + "contribution": 909, + "answer": 1, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcedb09b-b7eb-4bc9-911e-15b7de5ee52f", + "pk": "c307a0eb-f752-4968-8dff-43ddd8de7df8", "fields": { - "question": 262, - "contribution": 3474, - "answer": 4, + "question": 349, + "contribution": 3912, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcf6288a-47de-4a77-9719-697b8874a46b", + "pk": "c30930b9-83a7-42de-8799-bf7c20917a16", "fields": { - "question": 320, - "contribution": 836, - "answer": 3, + "question": 401, + "contribution": 4177, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcf96fa7-c761-423b-ac31-7ffa5cd58547", + "pk": "c3093c4f-64e0-4b40-b9e3-177550b55f31", "fields": { - "question": 328, - "contribution": 3859, + "question": 345, + "contribution": 3894, "answer": 1, - "count": 19 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcfd3337-c7e3-4bdf-af3d-d5bf061fa441", + "pk": "c30aff7d-e4ae-4007-a677-db4b3b20e059", "fields": { - "question": 343, - "contribution": 3516, - "answer": 2, - "count": 2 + "question": 476, + "contribution": 4084, + "answer": -1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dcfef9cd-efc6-4989-bb78-aaa0b2699c1d", + "pk": "c312d9c3-b626-4b8c-a987-c13a5de0c35c", "fields": { - "question": 367, - "contribution": 4116, + "question": 349, + "contribution": 1860, "answer": 1, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd08da6e-125d-462b-8700-a2259be2a9ae", + "pk": "c312e2d5-2ccf-497d-8314-9502d09e1191", "fields": { - "question": 336, - "contribution": 788, - "answer": 2, + "question": 349, + "contribution": 3516, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd11205d-f864-46a0-b29c-86d7b2add86f", + "pk": "c31e6668-65d1-4725-a6e2-5037df1ce7fd", "fields": { - "question": 257, - "contribution": 4046, - "answer": 3, + "question": 331, + "contribution": 1837, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd137ccf-4b67-4b02-9bf9-a63686247888", + "pk": "c3235478-2c56-47cd-ac73-81f56ab744f0", "fields": { - "question": 356, - "contribution": 1189, - "answer": 1, - "count": 4 + "question": 329, + "contribution": 3684, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd143333-2308-4009-ac07-e0eb9f6696a5", + "pk": "c32377fd-8539-4819-a509-1d612818eaaa", "fields": { - "question": 374, - "contribution": 3711, + "question": 385, + "contribution": 3775, "answer": 1, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd170721-84d1-4823-aa9d-ffdc4f2a00b2", + "pk": "c3295973-cb4b-42fd-82f0-a031fd052f40", "fields": { - "question": 473, - "contribution": 4094, - "answer": -1, - "count": 2 + "question": 352, + "contribution": 4046, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd1e08be-4cd7-403e-a9f9-c3a90aadabdc", + "pk": "c32e01e9-4bcb-44eb-9360-40fcecc53196", "fields": { - "question": 368, - "contribution": 3589, + "question": 361, + "contribution": 1810, "answer": 1, - "count": 5 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd2bc406-051f-46e1-93cd-3a0f90323b72", + "pk": "c33177f0-6ca2-4aef-a806-296c09f0e73d", "fields": { - "question": 383, - "contribution": 3711, + "question": 327, + "contribution": 3395, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd2fc48c-8ec3-4095-a4a4-6ecd7dca8e60", + "pk": "c335abd3-5ca0-457a-a862-5401c94dd1a9", "fields": { - "question": 332, - "contribution": 3932, + "question": 321, + "contribution": 912, "answer": 2, - "count": 4 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd369d37-4daa-4ed9-b281-d864c7df7303", + "pk": "c33ed667-ec5f-471f-86b3-bcb900bb2dee", "fields": { - "question": 346, - "contribution": 3899, - "answer": 4, + "question": 325, + "contribution": 4203, + "answer": 1, + "count": 15 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "c3416378-c7aa-48a7-9e8d-9a5c6541b335", + "fields": { + "question": 475, + "contribution": 4002, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd44664f-8dd5-4e68-944c-81ae703a64df", + "pk": "c35e9aca-603c-4c36-bd56-16d0182df427", "fields": { - "question": 332, - "contribution": 837, + "question": 353, + "contribution": 3712, "answer": 1, - "count": 17 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd4c06e9-4cf9-491c-9e04-18fccd7d5f1b", + "pk": "c365a6c4-80d5-4f9f-97f5-086d1c9bb5b6", "fields": { - "question": 339, - "contribution": 3416, - "answer": 0, - "count": 5 + "question": 315, + "contribution": 1626, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd5251ae-b9cd-4eaf-b5c4-52a49b52621b", + "pk": "c3730c42-87e7-4ff3-89ea-1e84d6fd0405", "fields": { - "question": 319, - "contribution": 4100, - "answer": 2, + "question": 262, + "contribution": 836, + "answer": 1, "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd5861af-ff41-4f35-89dc-c08b0e5ce4a2", + "pk": "c37321aa-804c-4675-9ac4-6f7d1eeecac7", "fields": { - "question": 344, - "contribution": 1828, - "answer": 1, + "question": 322, + "contribution": 4128, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd5d2b16-4f8d-4b03-8654-22a4b06553f7", + "pk": "c38fcdc5-d62c-4b55-9cd1-547433e9a1f4", "fields": { - "question": 433, - "contribution": 4140, + "question": 403, + "contribution": 4177, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd5f2b4e-465d-4bca-b63b-1426f712b06e", + "pk": "c3a09533-5f06-44c4-b2cc-b059c82c37be", "fields": { - "question": 319, - "contribution": 3422, - "answer": 2, - "count": 7 + "question": 477, + "contribution": 885, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd645db1-01bc-40b1-80fa-f7d8fc808311", + "pk": "c3ac0462-1a27-4682-ab1e-ab4740295a3d", "fields": { - "question": 340, - "contribution": 3440, + "question": 344, + "contribution": 1874, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd6f50ea-e47f-425d-8ab1-07c4198e40e6", + "pk": "c3ac1128-f457-4689-a70c-33a0959e2d12", "fields": { - "question": 350, - "contribution": 790, - "answer": 1, - "count": 2 + "question": 322, + "contribution": 3665, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd73fb32-9df0-4327-a879-f26e49d13f02", + "pk": "c3af9ad9-feed-4093-8a3f-e958807a8072", "fields": { "question": 349, - "contribution": 4223, + "contribution": 3890, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dd904ac5-90b3-4c00-967f-09ceee2b136f", + "pk": "c3c576fb-2829-4fcd-b213-f2cc55eb591e", "fields": { - "question": 457, - "contribution": 4091, - "answer": 1, + "question": 475, + "contribution": 3645, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dda477ef-1c61-466e-9007-571b02d2415f", + "pk": "c3d9596b-e481-4a77-90ea-0daadfe506ff", "fields": { - "question": 332, - "contribution": 3593, - "answer": 2, - "count": 5 + "question": 320, + "contribution": 4028, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dda5dee3-bf96-4ea8-966d-f4b13ea050b5", + "pk": "c3ec13bc-a868-42de-9402-7fc596caeba8", "fields": { - "question": 369, - "contribution": 3943, - "answer": 4, + "question": 339, + "contribution": 3735, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ddb66edf-3bd0-4acf-a640-a4a93a7231e3", + "pk": "c3fc476f-3b73-42c0-b33a-70ee06332a9a", "fields": { - "question": 326, - "contribution": 3883, - "answer": 3, - "count": 1 + "question": 319, + "contribution": 1680, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ddba0e34-5673-4377-ac26-eba8d5dce4cc", + "pk": "c3fed187-b27b-4840-953b-cbb2fcbdb7c7", "fields": { - "question": 436, - "contribution": 4140, - "answer": 3, - "count": 4 + "question": 328, + "contribution": 3391, + "answer": 5, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ddc10697-a97c-40b9-93c6-32a13acb67d1", + "pk": "c401bc47-5a05-4f01-9e98-e37218d18ea9", "fields": { - "question": 346, - "contribution": 4129, - "answer": 2, - "count": 4 + "question": 355, + "contribution": 4271, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ddc10d53-d127-4730-957b-596fa94dedf7", + "pk": "c4079e98-a758-4815-b4bf-6dc3395390be", "fields": { - "question": 319, - "contribution": 836, - "answer": 1, - "count": 12 + "question": 327, + "contribution": 823, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ddc12541-3f1a-451e-b94a-32fd84924059", + "pk": "c4185832-c58d-4c9c-8fc7-dfcaf4c03efe", "fields": { - "question": 472, - "contribution": 3472, - "answer": 1, - "count": 6 + "question": 477, + "contribution": 1154, + "answer": -2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ddc9f952-7bbe-4e06-808a-1d016a76db8f", + "pk": "c4187e3f-7404-45bc-bfe3-90b354a19fa7", "fields": { - "question": 320, - "contribution": 1626, - "answer": 1, - "count": 2 + "question": 348, + "contribution": 3405, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ddd2f3e1-307a-4c9c-bf90-aa7bb765fd34", + "pk": "c4193315-a534-4200-bf98-935cca77d30f", "fields": { - "question": 320, - "contribution": 1837, - "answer": 1, - "count": 12 + "question": 326, + "contribution": 3684, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dddbfb34-02ab-4560-a762-d4f640c9e6dd", + "pk": "c4234a43-25c6-4f2e-9cd2-64b4a2ebe33e", "fields": { - "question": 260, - "contribution": 3434, - "answer": 5, - "count": 1 + "question": 366, + "contribution": 4156, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ddea26e7-d804-47aa-a727-1c2a79b35e9f", + "pk": "c433a873-55d4-47ca-b7ae-7c7dce37a231", "fields": { - "question": 356, - "contribution": 4266, + "question": 357, + "contribution": 3518, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ddee01cc-9496-465d-8b56-7e7eddebf6d1", + "pk": "c4377bb8-206a-4eb0-9e19-6707938664bb", "fields": { - "question": 336, - "contribution": 3404, - "answer": 4, - "count": 2 + "question": 472, + "contribution": 886, + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ddef5e86-9499-411e-9a41-6b14e3268ad1", + "pk": "c439b47d-a486-4869-a9af-a87402282bd9", "fields": { - "question": 339, - "contribution": 804, + "question": 331, + "contribution": 3721, "answer": 0, - "count": 1 + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ddf09e76-9651-47cc-a96c-4be23bf87e8f", + "pk": "c44a4435-3a86-4b56-852c-158dd43afc00", "fields": { - "question": 316, - "contribution": 1626, - "answer": 4, - "count": 7 + "question": 341, + "contribution": 4052, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ddf42252-573b-4329-ac06-23b8c6a0783c", + "pk": "c44d7610-efed-4413-b6ae-d76d60d10ae6", "fields": { - "question": 347, - "contribution": 3487, - "answer": 1, + "question": 336, + "contribution": 832, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de0913ae-6d0a-4f4c-874d-ef20a703f2e6", + "pk": "c455e1fa-0226-40dc-9ee5-0787c57b2632", "fields": { - "question": 371, - "contribution": 3922, + "question": 325, + "contribution": 1802, "answer": 1, - "count": 2 + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de126591-e115-4a30-8b05-2456da2e775f", + "pk": "c45d9704-da05-4833-a72a-604a810dc6fb", "fields": { - "question": 348, - "contribution": 1880, - "answer": 3, - "count": 1 + "question": 345, + "contribution": 1156, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de18abed-c407-473e-a592-82164247e85e", + "pk": "c46892a6-3d0b-4090-9c25-8df9ba442c9d", "fields": { - "question": 371, - "contribution": 4154, + "question": 344, + "contribution": 3704, "answer": 2, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de1d4948-5db8-4b8d-907b-c08943b4ed05", + "pk": "c46f87be-a9aa-4f7d-9e1b-756cf53f3aea", "fields": { - "question": 347, - "contribution": 3941, + "question": 356, + "contribution": 3923, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de23e5ec-9213-44f9-8f05-1fc3c881c4cf", + "pk": "c4743734-6660-46a8-8920-b45ab3531ec2", "fields": { - "question": 475, - "contribution": 1200, - "answer": 3, + "question": 473, + "contribution": 1644, + "answer": 0, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de2f234b-9cf5-4728-94bd-151f5a897600", + "pk": "c47cb0ab-cce8-459e-ba93-7fada40da478", "fields": { - "question": 344, - "contribution": 1202, - "answer": 3, - "count": 2 + "question": 347, + "contribution": 4129, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de3095e2-38b5-484d-96a6-be38bcf3fe9b", + "pk": "c481cabf-6d74-453b-95e6-6ca22d1ed173", "fields": { - "question": 356, - "contribution": 1784, + "question": 461, + "contribution": 4073, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de337cb9-7f0d-48e3-8787-9c7d2a5b4e2e", + "pk": "c482e1a3-a7cd-4c81-976a-4c93e08fa899", "fields": { - "question": 321, - "contribution": 1634, - "answer": 4, + "question": 325, + "contribution": 1777, + "answer": 1, + "count": 7 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "c48576f3-e92c-45aa-b738-9b68c48f457f", + "fields": { + "question": 359, + "contribution": 3942, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de3a4af7-e43e-47b2-93c4-6a4a95d4be1e", + "pk": "c491818d-b52c-49c8-993b-13e4786b230f", "fields": { - "question": 320, - "contribution": 3406, - "answer": 1, + "question": 345, + "contribution": 1809, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de3f7676-7300-4a3e-8659-aa9f7b5059c2", + "pk": "c49b65e8-3cd7-4bb9-8e3e-a9502778ce03", "fields": { - "question": 473, - "contribution": 3422, - "answer": 0, - "count": 11 + "question": 331, + "contribution": 3354, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de501253-7fe1-4167-bda9-aa3897907210", + "pk": "c49b6b07-ceb0-4e8f-8817-a6608c3b35f0", "fields": { - "question": 255, - "contribution": 3665, - "answer": 2, - "count": 2 + "question": 336, + "contribution": 3727, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de50eba1-4fb8-46c8-82e9-6e95f2bfb3e2", + "pk": "c49d52b8-b579-4313-85de-303dba48747f", "fields": { - "question": 347, - "contribution": 1246, + "question": 350, + "contribution": 832, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de576342-875c-4b9c-b6e0-b45c50ad25ee", + "pk": "c4a05599-614a-4a13-8c8d-147d5be667a3", "fields": { - "question": 255, - "contribution": 3422, - "answer": 1, + "question": 328, + "contribution": 3391, + "answer": 4, "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de585900-978f-47e2-b529-2c19e4a8473c", + "pk": "c4a36669-e8e8-4f01-9ffc-b91ccc980403", "fields": { - "question": 371, - "contribution": 3886, + "question": 323, + "contribution": 3434, "answer": 2, - "count": 2 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de632ade-1899-4920-b4d3-ddc09b0595b8", + "pk": "c4a3f470-5cb1-4d34-ac22-d438c718fb71", "fields": { - "question": 322, - "contribution": 908, - "answer": 3, - "count": 4 + "question": 354, + "contribution": 3528, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de65e4f6-53b3-43c8-9591-d529c370c386", + "pk": "c4ac18c4-7ec1-494c-b22a-62650d14dbfd", "fields": { - "question": 336, - "contribution": 4122, + "question": 394, + "contribution": 3775, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de6bad0f-a332-45fa-aab8-8716ca9fc438", + "pk": "c4ac5a84-aa40-4e0e-ae3e-dc19cf56cb6c", "fields": { - "question": 351, - "contribution": 4046, - "answer": 2, - "count": 3 + "question": 340, + "contribution": 788, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de893752-0c78-4417-be57-b13c088f6597", + "pk": "c4ac645d-72d8-46ef-bd84-73a3b40e1fa8", "fields": { - "question": 438, - "contribution": 4090, - "answer": 1, - "count": 1 + "question": 260, + "contribution": 4022, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de89f10e-0b1c-45d9-951e-8a42b7323b35", + "pk": "c4ac71b0-59ea-45ee-a0b9-23bd38a5b6f1", "fields": { - "question": 346, - "contribution": 3518, - "answer": 2, - "count": 1 + "question": 339, + "contribution": 862, + "answer": 0, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de93df25-63e0-4f26-8a2a-0777f653be56", + "pk": "c4b0ca80-5f7f-4995-ab0e-5caaaf571ae9", "fields": { - "question": 353, - "contribution": 1776, - "answer": 4, - "count": 1 + "question": 262, + "contribution": 3474, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "de9af2da-af06-4b83-bf38-8f3ee5caf267", + "pk": "c4b49e8a-24ec-4e93-8ed7-b9df0e07d418", "fields": { - "question": 339, - "contribution": 832, - "answer": 1, - "count": 1 + "question": 389, + "contribution": 3711, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dea8fa8d-ccec-48ca-8a4c-418512b54d11", + "pk": "c4b9d9fc-0652-4a31-98b1-0391cb120b83", "fields": { - "question": 341, - "contribution": 1694, - "answer": 1, - "count": 1 + "question": 257, + "contribution": 4138, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dea94389-e7e7-4d67-ae1d-805f8536eb45", + "pk": "c4be26a5-aaad-48a5-b38d-3a56b84f5508", "fields": { - "question": 346, - "contribution": 4129, - "answer": 3, - "count": 6 + "question": 345, + "contribution": 1641, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "deb20488-0ed3-435f-8129-5d444d4c4599", + "pk": "c4c14d3b-2bdf-4b8b-8eaa-85a3a3a5a1aa", "fields": { - "question": 321, - "contribution": 3665, - "answer": 2, - "count": 3 + "question": 405, + "contribution": 3984, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "deb51454-461d-47c5-82c1-cdc0e4c9100e", + "pk": "c4c1d54d-d00d-4127-aa5d-adb804cb332e", "fields": { - "question": 356, - "contribution": 3607, + "question": 255, + "contribution": 3679, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "debeb684-c5be-499f-b796-19c11bf5352f", + "pk": "c4c57945-5351-4b33-ba6e-77cf507f56a2", "fields": { - "question": 338, - "contribution": 788, + "question": 370, + "contribution": 3923, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dec93b38-5c1d-49fb-9279-e56be5724fa5", + "pk": "c4cea518-6ade-404c-a667-8eb8dcc6d303", "fields": { - "question": 462, - "contribution": 4283, - "answer": 5, - "count": 1 + "question": 331, + "contribution": 3721, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ded869e2-23f1-4436-a527-925808cb3724", + "pk": "c4d22ea8-3079-43eb-a00d-6f2b36058dfa", "fields": { - "question": 368, - "contribution": 3395, - "answer": 1, - "count": 2 + "question": 339, + "contribution": 1694, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dee3af82-8406-42d4-90ae-f29ec800d926", + "pk": "c4d86fc7-5ed8-4ea0-8053-c5ae353bb4d9", "fields": { - "question": 453, - "contribution": 4185, + "question": 317, + "contribution": 908, "answer": 1, - "count": 24 + "count": 30 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dee774b7-17c6-4c61-a7a6-71b31cab4039", + "pk": "c4e1a025-c168-4b17-8bcb-b5befedfb28d", "fields": { - "question": 340, - "contribution": 3727, - "answer": 3, - "count": 2 + "question": 262, + "contribution": 3434, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dee7d321-9ca4-45b2-9c9a-ce4badb5400f", + "pk": "c4e54572-2dce-4949-95c1-c54beff86e68", "fields": { - "question": 323, - "contribution": 880, - "answer": 2, - "count": 13 + "question": 353, + "contribution": 3848, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "deebd232-8f65-415f-bbc3-35571ca2a6e5", + "pk": "c4e7d3ab-1566-4ea7-b855-96bd9cfba2c7", "fields": { - "question": 328, - "contribution": 1617, - "answer": 3, - "count": 2 + "question": 259, + "contribution": 3406, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "deec8ae6-ccd1-4004-a622-fc34a520fca8", + "pk": "c4f51ccd-221f-4c07-b5e8-f4a8baf4c629", "fields": { - "question": 315, - "contribution": 4028, + "question": 336, + "contribution": 1200, "answer": 2, - "count": 7 + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df03e64d-250c-4754-b0fa-c373d6a2e14f", + "pk": "c4f6457f-434e-4022-af07-d78024734898", "fields": { - "question": 345, - "contribution": 3899, - "answer": 2, + "question": 317, + "contribution": 4046, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df054716-1b98-4933-9339-243705d84fcd", + "pk": "c4fed75f-9094-4302-b0c7-20528e7856c9", "fields": { - "question": 316, - "contribution": 3462, - "answer": 3, - "count": 2 + "question": 347, + "contribution": 1824, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df0c9df3-8843-457c-b3dc-11c4f51e5a52", + "pk": "c50fb38d-f095-436c-99b0-ff945d9970a5", "fields": { - "question": 476, - "contribution": 884, - "answer": -1, - "count": 5 + "question": 353, + "contribution": 3607, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df0db562-807b-4dca-b5d1-fb5d0d15ec57", + "pk": "c513b219-c9da-4810-ae03-34a843b75845", "fields": { - "question": 367, - "contribution": 3679, + "question": 340, + "contribution": 1200, "answer": 2, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df1f37d7-f43f-4368-a09a-037bd769255e", + "pk": "c51c324e-9df1-4c95-aa83-b8c7541e03aa", "fields": { - "question": 319, - "contribution": 3683, + "question": 258, + "contribution": 3665, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df220b5d-dd90-4bbe-aa68-99e2e1686916", + "pk": "c526b5ef-24f8-460a-90ef-149ef0a1b5c2", "fields": { - "question": 325, - "contribution": 1776, + "question": 353, + "contribution": 3831, + "answer": 1, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "c528b4b3-bf0a-4a5b-aca2-a96b79806f6d", + "fields": { + "question": 257, + "contribution": 3394, "answer": 2, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df2667f4-b938-4591-a8da-e11453ea67dc", + "pk": "c5343ea4-9980-4b3d-9e25-f68bedf8b2b7", "fields": { - "question": 369, - "contribution": 1803, - "answer": 1, - "count": 4 + "question": 315, + "contribution": 884, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df2b8663-2c82-4295-9b8c-bd8079bc45b6", + "pk": "c5346a91-2eac-4321-876e-8acaa3af2d31", "fields": { - "question": 368, - "contribution": 3355, - "answer": 1, - "count": 10 + "question": 339, + "contribution": 832, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df39f2fc-2384-494e-9c02-e101bce71ba2", + "pk": "c540b881-b69d-42e8-bbe1-897a60b3c641", "fields": { - "question": 338, - "contribution": 3416, + "question": 325, + "contribution": 4117, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df3acce5-b04b-4198-b587-8a2b3620055a", + "pk": "c547638f-7008-46ec-aea3-7a18bc624926", "fields": { - "question": 363, - "contribution": 3944, + "question": 336, + "contribution": 3366, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df3ceaea-9d5e-4a47-aafa-cbb8dba5000a", + "pk": "c54fb227-e41b-444c-8e72-a3acb0a0e0c1", "fields": { "question": 368, - "contribution": 3722, - "answer": 5, - "count": 1 + "contribution": 3726, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df3e9336-78a9-4034-908f-6bba0f3ffa1b", + "pk": "c551a8cd-f736-402e-a6d1-bc5777f2bd89", "fields": { - "question": 346, - "contribution": 1663, + "question": 320, + "contribution": 884, "answer": 1, - "count": 7 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df429f4e-e51d-4c4c-a33f-e279cbe2c78f", + "pk": "c5527e00-a36b-4db1-a0cb-53cc60303b55", "fields": { - "question": 357, - "contribution": 3545, - "answer": 2, - "count": 4 + "question": 368, + "contribution": 4152, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df439c61-0e3b-4c7e-a6cb-22f8d5e086af", + "pk": "c5578568-ee34-4715-aa30-d26b21b040f0", "fields": { - "question": 321, - "contribution": 3739, - "answer": 4, + "question": 354, + "contribution": 3848, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df5a0254-658e-4109-9ca0-29961be75959", + "pk": "c576641e-d292-427e-8e8d-6a5e4af318ef", "fields": { - "question": 368, - "contribution": 1617, - "answer": 2, - "count": 5 + "question": 345, + "contribution": 3879, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df5de3db-811c-4a51-b10d-752cc88ad1a9", + "pk": "c57ae43f-02f4-494b-bfd8-59143bac2760", "fields": { - "question": 329, - "contribution": 1802, - "answer": 5, - "count": 3 + "question": 472, + "contribution": 4120, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df60feca-c95f-4c67-9d4a-3d68d4f8d967", + "pk": "c5805434-0cf1-4a4f-9425-3f564a2ab299", "fields": { "question": 359, - "contribution": 1835, - "answer": 1, - "count": 10 + "contribution": 1806, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df6821a3-5ed7-4b12-b144-178dd94a0ba8", + "pk": "c584f955-4bf0-453b-9d2c-3e4adf260a33", "fields": { - "question": 368, - "contribution": 1635, - "answer": 2, - "count": 6 + "question": 472, + "contribution": 4100, + "answer": 1, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df7ad6be-1db3-42ca-a5f3-f99fdb581f1c", + "pk": "c586c1bc-2060-43d2-a185-9319790eeb35", "fields": { - "question": 257, - "contribution": 1837, - "answer": 2, - "count": 6 + "question": 477, + "contribution": 3722, + "answer": 0, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df874a6c-a8b1-43f4-8829-4c57e73f2401", + "pk": "c5909dc1-551f-4fa2-a6c9-acdb2f054a08", "fields": { - "question": 349, - "contribution": 1873, + "question": 355, + "contribution": 3776, "answer": 1, - "count": 1 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df94dc53-a6b4-4acc-947b-cfcef6481cdb", + "pk": "c59caef8-6cf3-4ee5-9e45-092548f1fd98", "fields": { - "question": 320, - "contribution": 1634, + "question": 357, + "contribution": 3528, "answer": 2, - "count": 13 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df957f72-a166-42ea-99ff-f34a4314ed97", + "pk": "c5ad11e5-7867-4484-b5b2-cc2144eb37ba", "fields": { - "question": 327, - "contribution": 1669, - "answer": 1, - "count": 8 + "question": 473, + "contribution": 3984, + "answer": -2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df96a383-9ec3-497c-9243-37f670b33d3d", + "pk": "c5b2da74-bff9-4cac-9ade-e3abbabe0103", "fields": { - "question": 339, - "contribution": 840, - "answer": -1, - "count": 2 + "question": 476, + "contribution": 4022, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df9b0e0a-5896-4172-8eb3-e0167afd4dc5", + "pk": "c5bf824f-caab-43c2-8b17-fc2482cef4af", "fields": { - "question": 371, - "contribution": 3553, + "question": 367, + "contribution": 1724, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "df9ed6b0-6e6d-499e-8d4a-a27eda97141c", + "pk": "c5cf1ed4-a6f4-4149-ac26-96634eb72017", "fields": { - "question": 331, - "contribution": 3422, - "answer": -1, - "count": 11 + "question": 346, + "contribution": 3728, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dfa472a5-854e-424b-b598-057feec7c51c", + "pk": "c5df3c6f-3594-4d72-add8-5ed028cb0c04", "fields": { - "question": 341, - "contribution": 3681, - "answer": 1, - "count": 2 + "question": 320, + "contribution": 1634, + "answer": 4, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dfaa4dec-f715-4876-b727-bf3a2488bd27", + "pk": "c5e17096-61c5-4914-a0c9-5919ef16724b", "fields": { - "question": 340, - "contribution": 3745, - "answer": 1, - "count": 4 + "question": 258, + "contribution": 4116, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dfacfa72-f30f-465d-b53f-6ce21d84b5fb", + "pk": "c5e9802e-c7f2-490b-8325-3214f354f260", "fields": { - "question": 335, - "contribution": 3552, - "answer": 5, + "question": 354, + "contribution": 3776, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dfb58489-81ff-4a38-8948-88d546c321fd", + "pk": "c5eafe8d-414e-4dc8-b793-467f0a3ef6e6", "fields": { - "question": 262, - "contribution": 884, + "question": 368, + "contribution": 3435, "answer": 2, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dfc886e4-91a4-4de3-9317-bf358d0472aa", + "pk": "c5edbeda-a971-4d58-b4f5-bdf6eb7c1280", "fields": { - "question": 326, - "contribution": 1287, - "answer": 2, - "count": 7 + "question": 477, + "contribution": 1154, + "answer": 0, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dfd6cad9-bf13-4fcc-b8a3-01e5c64df168", + "pk": "c5f12967-f1dc-4f30-8dfe-273ba47566f5", "fields": { - "question": 432, - "contribution": 3976, - "answer": 3, + "question": 346, + "contribution": 3528, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dfe3db5f-41fb-42a0-85e0-c0f4286eb1cb", + "pk": "c5f60391-f415-4fc0-bd26-6863ad77d1a2", "fields": { - "question": 346, - "contribution": 841, - "answer": 2, - "count": 2 + "question": 473, + "contribution": 1668, + "answer": 0, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dfe8a451-7ce6-4c1b-8728-76c7efdab233", + "pk": "c5fa9bb4-716d-485f-9950-e7a9bef0d857", "fields": { - "question": 323, + "question": 367, "contribution": 4128, - "answer": 5, - "count": 1 + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "dfff0d87-df1c-45e0-9dc7-01cd70fd39ba", + "pk": "c6077940-7442-4b49-a10b-81b22af73c40", "fields": { - "question": 333, - "contribution": 3551, + "question": 462, + "contribution": 4283, "answer": 2, - "count": 12 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e000ccec-64db-45e5-8a4e-40ef090e436c", + "pk": "c607ec46-c2e4-490a-8102-47b5b193c2e1", "fields": { - "question": 325, - "contribution": 3355, + "question": 255, + "contribution": 3474, "answer": 1, - "count": 22 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e00442e9-c30f-4191-91bf-65dac6317722", + "pk": "c60aacaa-cfad-4561-b81d-5928705b7af8", "fields": { - "question": 340, - "contribution": 832, + "question": 359, + "contribution": 3651, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e012ddc3-e00a-433a-b6f7-1cb8b8ab38f3", + "pk": "c60e6a98-b648-441a-9c66-8ae818f4e31c", "fields": { - "question": 315, - "contribution": 3354, - "answer": 2, - "count": 4 + "question": 341, + "contribution": 3416, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0134f65-b5e7-4ccd-a26b-a9edbfb4afa1", + "pk": "c615de04-3c2d-4139-8a08-a8ea8720e18b", "fields": { - "question": 322, - "contribution": 912, - "answer": 3, - "count": 13 + "question": 472, + "contribution": 884, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e013f39c-3df1-458c-a4ae-ff6abac3591b", + "pk": "c61fa41f-6659-4a97-bdee-ec7484893911", "fields": { - "question": 323, - "contribution": 3679, - "answer": 3, - "count": 6 + "question": 338, + "contribution": 3508, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e020ca70-d92b-4de8-bccb-111823006acd", + "pk": "c622de26-9855-4b3b-a1bb-00cebba79e3e", "fields": { - "question": 331, - "contribution": 822, - "answer": -3, - "count": 1 + "question": 317, + "contribution": 1724, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0346429-a125-4c24-a958-30dd8575b264", + "pk": "c62966f5-6eb8-45cb-bb84-f5e02c5c9045", "fields": { - "question": 477, - "contribution": 885, - "answer": -1, - "count": 4 + "question": 433, + "contribution": 4090, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e035a62c-2b08-460f-80ab-936b843b1c3a", + "pk": "c631ffa6-929b-4194-9bad-fd2aa75c1043", "fields": { - "question": 316, - "contribution": 3721, - "answer": 5, - "count": 3 + "question": 353, + "contribution": 1187, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e036dc5c-3718-4b06-9503-00fae5f1a271", + "pk": "c635cf28-62cf-4ddd-a86a-1b5ad7182562", "fields": { - "question": 319, - "contribution": 3394, - "answer": 1, + "question": 339, + "contribution": 918, + "answer": -1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e05e8165-7118-4c29-8064-95c2194b9904", + "pk": "c639408c-a869-4e86-b507-7c52c769c5ba", "fields": { - "question": 323, - "contribution": 836, - "answer": 1, - "count": 13 + "question": 355, + "contribution": 3848, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0602bc5-cf93-4b95-936e-29fbab5ee98b", + "pk": "c647e10e-b9d8-47c2-8e09-37e7ac4ebfee", "fields": { - "question": 321, + "question": 476, "contribution": 884, - "answer": 2, - "count": 10 + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e08d9f55-6516-435e-85f2-2db3a8410a5b", + "pk": "c6498b3d-82c2-45c1-9bed-8c51b51d6c42", "fields": { - "question": 331, - "contribution": 1626, + "question": 368, + "contribution": 3530, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e08f71ad-f7cc-4e43-be72-f90c3b2708c3", + "pk": "c64996cf-aa7f-44c8-bae1-ba7279d5596e", "fields": { - "question": 369, - "contribution": 3929, + "question": 354, + "contribution": 1844, "answer": 1, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e090b077-2e29-4e62-96d9-16b98044dd09", + "pk": "c6524cac-fdc1-4ba2-9e33-73571ab37250", "fields": { - "question": 368, - "contribution": 1776, - "answer": 2, - "count": 5 + "question": 477, + "contribution": 909, + "answer": -1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e094273e-e04f-475c-a259-91fc08c6a96f", + "pk": "c65776e5-3b83-49ea-98b9-8347b5b9c01e", "fields": { - "question": 340, - "contribution": 3382, - "answer": 1, - "count": 1 + "question": 329, + "contribution": 3884, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0b1dad8-77f4-4655-a3e7-ee8bfe530196", + "pk": "c6650ea7-4f81-4e0d-a7a9-c6ba5b311c5a", "fields": { - "question": 337, - "contribution": 3821, - "answer": 1, - "count": 2 + "question": 473, + "contribution": 4084, + "answer": 0, + "count": 26 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0b55408-4f3c-44b2-aa9d-ba3cf9a76070", + "pk": "c6670e96-444b-450d-8903-a770322db60b", "fields": { - "question": 348, - "contribution": 3855, - "answer": 1, + "question": 367, + "contribution": 4100, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0b6b717-3eae-4a98-9a25-4c8100f0eb4f", + "pk": "c66725d9-071a-4f24-8b6c-3bc53f35aa07", "fields": { - "question": 473, - "contribution": 1640, - "answer": 0, - "count": 2 + "question": 320, + "contribution": 864, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0b8a904-f5b6-4076-abf2-281dd0a79907", + "pk": "c669ffa1-34d6-4553-84e8-1b96cf3c77ba", "fields": { - "question": 325, - "contribution": 3722, - "answer": 4, - "count": 1 + "question": 339, + "contribution": 3681, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0bc6bf2-de61-495c-840a-e8ef4cbf7a9e", + "pk": "c67218d6-931c-45d0-9073-7092b310e897", "fields": { - "question": 346, - "contribution": 3855, - "answer": 1, - "count": 5 + "question": 323, + "contribution": 4084, + "answer": 2, + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0d0cb48-c2df-4f1e-8ca1-cea678a51c2e", + "pk": "c675c077-4b66-49d1-9ff8-bfeaa71a2063", "fields": { - "question": 347, - "contribution": 1860, + "question": 346, + "contribution": 3546, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0d2c120-c7a8-440d-856b-627a747f5eb1", + "pk": "c676bd53-b825-4034-85a6-a9d2ec6f9a9e", "fields": { - "question": 337, - "contribution": 918, + "question": 370, + "contribution": 3517, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0e1a7f7-bfa5-4598-810b-2b574b2a8ada", + "pk": "c67d7446-ba99-4c1e-aa27-2543449fed46", "fields": { - "question": 257, - "contribution": 4116, - "answer": 5, - "count": 5 + "question": 362, + "contribution": 1812, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0e23d6d-33d1-424f-a973-d88e20590171", + "pk": "c6843ad6-50d4-4c00-880f-9e5aedac3abf", "fields": { - "question": 329, - "contribution": 909, - "answer": 3, + "question": 473, + "contribution": 858, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0e45d5e-1051-43c3-9be2-991018d6b8b1", + "pk": "c6854668-a966-4254-8712-64eecdea93f5", "fields": { - "question": 345, - "contribution": 3609, - "answer": 3, + "question": 338, + "contribution": 886, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0e5a3c5-347d-44c2-8776-9c4376bd4699", + "pk": "c6916ee4-4cbf-45fb-958b-c6d1002ebe05", "fields": { - "question": 258, - "contribution": 884, + "question": 477, + "contribution": 1288, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e0ed127e-dfa2-4f3c-a707-cef1b37c9c8e", - "fields": { - "question": 335, - "contribution": 3551, - "answer": 3, - "count": 10 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "e0fe93ea-c94a-4185-aefc-178464d7936c", + "pk": "c691ebeb-4cb0-4073-9040-33c34a8751ac", "fields": { - "question": 321, - "contribution": 3422, - "answer": 3, - "count": 6 + "question": 257, + "contribution": 862, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e10aaa04-e1ee-40e3-a400-69d316684cb9", + "pk": "c69ff4f6-94b1-4f1f-b3d9-be6d3d861ae0", "fields": { - "question": 354, - "contribution": 3847, + "question": 351, + "contribution": 3466, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1194af5-7b37-493d-9e40-9f74a4b07f92", + "pk": "c6ad24fe-0c91-4a6d-904f-f7d66c6a4e37", "fields": { - "question": 347, - "contribution": 4189, + "question": 259, + "contribution": 3679, "answer": 1, - "count": 4 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e11a1dc5-1ccd-41b9-a6b3-c21b6ca3daa7", + "pk": "c6c2858a-7fbb-4fdb-88ef-7235b077ee16", "fields": { - "question": 428, - "contribution": 4154, - "answer": 5, + "question": 361, + "contribution": 3943, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e11fb408-0941-4608-92fd-c1029735b922", + "pk": "c6cb96e3-4646-4090-9ba8-270a274cd30b", "fields": { - "question": 477, - "contribution": 909, - "answer": -3, + "question": 323, + "contribution": 1837, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e120cab5-56a0-41b4-9e4e-7214397041c4", + "pk": "c6cd6146-934f-4a28-87af-43a459c2a8fc", "fields": { - "question": 354, - "contribution": 3609, + "question": 357, + "contribution": 1776, "answer": 1, - "count": 3 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e121a470-7f0c-44b4-997d-0a264ee3b69f", + "pk": "c6d620f9-7ebf-47c0-8642-7c53a950ce0a", "fields": { "question": 477, - "contribution": 1635, + "contribution": 3519, "answer": -1, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "e12d7582-d39b-45f7-bdc1-2f89a3077de1", - "fields": { - "question": 476, - "contribution": 4120, - "answer": -3, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "e12e421f-65fd-4698-bfaf-14485fc0281d", - "fields": { - "question": 367, - "contribution": 3739, - "answer": 2, - "count": 4 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1326246-c4e0-4a0f-8d34-39f287ca7371", + "pk": "c6e60f66-3298-4657-ad74-2ff2413e5c6c", "fields": { - "question": 345, - "contribution": 3822, + "question": 405, + "contribution": 4024, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1391f53-4df1-4095-8b42-4ff2cae5d14e", + "pk": "c6e852a1-ff73-4cc4-9075-dab8b48d7ff3", "fields": { - "question": 255, - "contribution": 3472, + "question": 472, + "contribution": 1702, "answer": 1, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e13b75c7-bbec-4109-a1f0-eb65bcde9103", + "pk": "c6f37065-cbd3-4db7-b064-288bd7f4c1d6", "fields": { - "question": 473, - "contribution": 3679, - "answer": 1, - "count": 2 + "question": 477, + "contribution": 1776, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e13c5d00-56ac-4803-9ecf-396ee24d559e", + "pk": "c6f5552f-284c-4bc7-bfe5-e1afe9e5d588", "fields": { - "question": 356, - "contribution": 3518, - "answer": 1, - "count": 4 + "question": 363, + "contribution": 3653, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e14128d3-8243-4ac1-b7bd-bf07c2054dc4", + "pk": "c6fb5cd9-ddf4-4444-8ead-90bf1888799c", "fields": { - "question": 327, - "contribution": 3556, - "answer": 2, - "count": 6 + "question": 315, + "contribution": 3739, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e142dedd-4fe2-455b-94d8-897ad3206464", + "pk": "c6fb9fba-8f3d-4c45-93db-6ffdf633490a", "fields": { "question": 473, - "contribution": 3486, - "answer": 2, + "contribution": 3679, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e143b323-a14d-41c4-990a-5efd6e3f6cb0", + "pk": "c6fbf0bb-ee6c-4bfe-8ec0-8bed4d594193", "fields": { - "question": 326, - "contribution": 1780, + "question": 258, + "contribution": 3472, "answer": 2, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "e154a236-c166-457b-a065-b94392a192c6", - "fields": { - "question": 352, - "contribution": 804, - "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e157563a-2cd5-4e6d-a607-bd2897a8de56", + "pk": "c71837b0-e12c-4899-8f5c-02f14f82adf2", "fields": { - "question": 473, - "contribution": 4052, - "answer": 3, - "count": 1 + "question": 477, + "contribution": 1635, + "answer": 0, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1644339-9031-4a22-8ed8-0fd1c82c0b24", + "pk": "c733a761-b3c3-4b6c-b63f-f776c4b92f75", "fields": { - "question": 339, - "contribution": 3727, - "answer": -3, + "question": 322, + "contribution": 908, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1647893-fd01-4e95-bda9-1baa478f122a", + "pk": "c7386daf-afef-4e27-ab62-46e97538e8a4", "fields": { - "question": 316, - "contribution": 1612, - "answer": 4, - "count": 2 + "question": 380, + "contribution": 3711, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1662928-2f63-42f9-a0c8-a4a745951fc1", + "pk": "c7481520-f529-48f4-9bbc-8f56a4e31785", "fields": { - "question": 477, - "contribution": 4152, - "answer": 2, - "count": 6 + "question": 347, + "contribution": 919, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e179e1e7-bd39-4b6a-952b-0bfea57e0b08", + "pk": "c74e0836-6564-4cef-95cc-d71549db458e", "fields": { - "question": 477, - "contribution": 3395, - "answer": 0, - "count": 3 + "question": 260, + "contribution": 822, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e18788f9-06da-41dd-a81a-de337fde2c40", + "pk": "c751a3af-def8-4425-a7cb-ac7ad86dad08", "fields": { - "question": 257, - "contribution": 3739, + "question": 360, + "contribution": 1836, "answer": 1, - "count": 1 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e196ffc4-113e-49ef-acbf-eb6490741e28", + "pk": "c7614647-5140-489a-95ba-3b3dad9beeac", "fields": { - "question": 362, - "contribution": 1836, + "question": 367, + "contribution": 4046, "answer": 1, - "count": 6 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1a0cc45-61cb-40cd-8395-5a56d9b5f30f", + "pk": "c7642309-35dc-40f5-8113-4bace9636d16", "fields": { - "question": 351, - "contribution": 3466, + "question": 337, + "contribution": 1638, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1a9fb99-5bbf-4fe9-8a21-2f3dc975fadd", + "pk": "c7868a27-a09a-48f9-9725-25544aa9b447", "fields": { - "question": 337, - "contribution": 1660, + "question": 473, + "contribution": 4084, "answer": 1, - "count": 4 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1af745d-acda-435a-aebb-d43794924a6a", + "pk": "c78938aa-7f74-4ad3-914f-6cb359163dec", "fields": { - "question": 371, - "contribution": 4261, - "answer": 1, - "count": 6 + "question": 329, + "contribution": 3556, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1b2fc8d-32ce-4e20-b116-81403fbe9cc2", + "pk": "c78b7d37-6637-4909-8023-a4969de263ca", "fields": { - "question": 320, - "contribution": 3434, - "answer": 3, - "count": 4 + "question": 472, + "contribution": 4094, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1c17360-01a4-4bec-b5f4-6af6036c6f7c", + "pk": "c78dd45a-7a2b-42f4-8cb2-a5e7c32c1ccd", "fields": { - "question": 473, - "contribution": 3354, - "answer": -2, + "question": 357, + "contribution": 4268, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1d21d35-544e-4bce-ab3c-b1576ae62ddb", + "pk": "c790dcf9-78dc-491a-b679-566998a62705", "fields": { "question": 319, - "contribution": 4116, - "answer": 1, + "contribution": 4084, + "answer": 4, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1e077e2-819f-44d7-ac82-7b7207c52528", + "pk": "c7977180-a8c3-4806-a2cc-90f60318b722", "fields": { - "question": 325, - "contribution": 1298, + "question": 255, + "contribution": 1724, "answer": 1, - "count": 8 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1e1323e-58d2-4013-ac2e-9fa6069ef05e", + "pk": "c7984eb0-4a66-4567-b8b9-b78a9dd3f172", "fields": { - "question": 345, - "contribution": 3941, - "answer": 1, + "question": 476, + "contribution": 3354, + "answer": -3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e1f69188-5c46-4fbc-b788-f88f1b930ebc", + "pk": "c79e02e0-f4e5-4352-be7e-8153a86aaa06", "fields": { - "question": 385, - "contribution": 3711, - "answer": 2, - "count": 1 + "question": 260, + "contribution": 1837, + "answer": 1, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e20a3922-7617-439c-a535-9710d27d929c", + "pk": "c79ef94a-e8a8-479c-b402-36bb4fbe317f", "fields": { - "question": 332, - "contribution": 3922, + "question": 326, + "contribution": 1154, "answer": 1, - "count": 3 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e21245d4-17b3-44cc-8979-a70e72a8ad0c", + "pk": "c7a40eec-8241-4624-afca-97acb4240018", "fields": { - "question": 370, - "contribution": 3528, - "answer": 2, - "count": 2 + "question": 355, + "contribution": 4270, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2142100-d17a-41b5-a696-655f8a02d6f8", + "pk": "c7be5142-a5c0-49b8-bcae-08241489b8f4", "fields": { - "question": 327, - "contribution": 3391, - "answer": 4, - "count": 5 + "question": 357, + "contribution": 1154, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e223d3f4-3664-43e7-ba0e-b5c813e8a1bc", + "pk": "c7c8f417-f62b-4e81-9ad7-91d81295f288", "fields": { - "question": 317, - "contribution": 3354, - "answer": 2, - "count": 11 + "question": 476, + "contribution": 3434, + "answer": -1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e224e176-2765-41c6-bb88-0068cd526aad", + "pk": "c7cee528-0c46-4083-878b-64730f92739f", "fields": { - "question": 367, - "contribution": 1612, - "answer": 4, - "count": 4 + "question": 257, + "contribution": 3665, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e22749ee-dc83-49ee-9c94-9ac5b44206d6", + "pk": "c7d265db-e2e4-4d09-b167-e7eecde4cd05", "fields": { - "question": 363, - "contribution": 3919, + "question": 343, + "contribution": 1205, "answer": 1, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e228fe2f-23de-4cda-8d17-ee6632b86353", + "pk": "c7d2c88a-fc45-4e5f-8c38-1a63e8f28039", "fields": { - "question": 349, - "contribution": 3935, + "question": 362, + "contribution": 3944, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e22ad3fc-9def-4f8d-ac1f-ee00bd64d4fe", + "pk": "c7d5cf9f-7450-4d6d-b9c6-95c542783044", "fields": { - "question": 316, - "contribution": 836, + "question": 360, + "contribution": 1825, "answer": 3, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "e238e85f-cd07-42c5-ae58-7f5f80f4b617", - "fields": { - "question": 473, - "contribution": 3390, - "answer": -2, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e23c0940-a4b7-45df-aaa9-60f00fce546c", + "pk": "c7d98f9b-eea3-4cbf-ae3f-89103ed973fa", "fields": { - "question": 360, - "contribution": 1804, - "answer": 2, - "count": 1 + "question": 380, + "contribution": 3781, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2427113-88fe-4adf-8b11-7c2e8cbc157a", + "pk": "c7dd7225-345c-487b-ad11-1f59d60e2ce9", "fields": { - "question": 258, - "contribution": 3721, + "question": 317, + "contribution": 3725, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e256a007-a574-4940-b9f0-1b1adb51cde3", + "pk": "c7de0252-1377-4ca0-9288-9b5030a61b54", "fields": { - "question": 476, - "contribution": 1612, - "answer": 0, - "count": 16 + "question": 344, + "contribution": 1824, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2627198-f6d5-4fec-a945-1000ab53dc43", + "pk": "c7e87304-fb42-4ad7-b33e-c408a845802f", "fields": { - "question": 369, - "contribution": 1826, + "question": 326, + "contribution": 1659, "answer": 1, - "count": 3 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2666b01-2e3c-4e38-bc7f-8a818dbf6f79", + "pk": "c7ecb010-e73e-47ff-9488-871b82385015", "fields": { - "question": 462, - "contribution": 3453, + "question": 347, + "contribution": 3607, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e269ec41-ecb0-4407-873a-b36cfac357fd", + "pk": "c7f54106-b92b-4785-ac60-62297b20ec15", "fields": { - "question": 262, - "contribution": 1626, - "answer": 3, - "count": 5 + "question": 367, + "contribution": 3474, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2749115-0e78-4605-835b-fda5a98c6201", + "pk": "c7fad5a7-fb86-4858-a425-bf88197f068f", "fields": { - "question": 320, - "contribution": 1837, - "answer": 4, + "question": 332, + "contribution": 837, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e280751f-9eee-40ab-af5d-e49ddc08ca5c", + "pk": "c8031297-eb0f-4872-ac1f-94cc3af3d3f4", "fields": { - "question": 461, - "contribution": 4283, + "question": 336, + "contribution": 3372, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e28203d4-6458-41d4-9776-baac2f861600", + "pk": "c818ce09-27ef-487c-8123-4618e02ad5aa", "fields": { - "question": 257, - "contribution": 3422, + "question": 259, + "contribution": 4120, "answer": 3, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e28dad64-9eb4-49c3-98f5-228ea25e4eed", + "pk": "c81ab43d-25ce-47bf-ba9e-9c0bf780d2f9", "fields": { - "question": 322, - "contribution": 3354, - "answer": 1, - "count": 17 + "question": 328, + "contribution": 1617, + "answer": 2, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e29772a1-1972-467b-b969-9741225b7e18", + "pk": "c81f014b-a059-4398-af7d-4d67aa3411f7", "fields": { - "question": 328, - "contribution": 3680, - "answer": 5, - "count": 1 + "question": 338, + "contribution": 3723, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2a81bf8-ca7b-4202-851d-23673d80084e", + "pk": "c823712e-999a-48d6-af95-4e450b85816a", "fields": { - "question": 350, - "contribution": 3745, - "answer": 1, - "count": 2 + "question": 336, + "contribution": 3372, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2ab5d74-adcf-4b67-a1e5-e6240a925a26", + "pk": "c826b4c0-9bcf-4fed-b320-b83d371e0fae", "fields": { - "question": 346, - "contribution": 1204, + "question": 354, + "contribution": 4223, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2ac6ef0-2cec-423e-a7cf-6dd652dfa876", + "pk": "c8329a45-5128-4453-a8ec-6fd42b81a3fc", "fields": { - "question": 472, - "contribution": 1200, - "answer": 5, - "count": 21 + "question": 323, + "contribution": 3474, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2b2c2e2-39ff-4c17-9401-869e937a6c5e", + "pk": "c8339f2f-60ec-4e2b-b719-4c81f7053c5e", "fields": { - "question": 388, - "contribution": 3711, - "answer": 1, - "count": 1 + "question": 321, + "contribution": 884, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2bfdeb7-7ad6-44e6-a166-a4233310f4ee", + "pk": "c842db8b-73b2-45b5-adb5-9a958b845b9e", "fields": { - "question": 360, - "contribution": 1812, - "answer": 1, - "count": 1 + "question": 473, + "contribution": 3745, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2c12c48-31d6-450e-a74d-15f5e1cdf875", + "pk": "c84ac41e-e9eb-4724-acc9-8ee7f3b3f33d", "fields": { - "question": 327, - "contribution": 1778, - "answer": 1, - "count": 5 + "question": 350, + "contribution": 3745, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2c675e8-ed2a-4e07-bc10-637ce08ff337", + "pk": "c84c074e-d822-4af5-aac3-0db740527a02", "fields": { - "question": 353, - "contribution": 1242, + "question": 357, + "contribution": 4223, + "answer": 2, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "c84d0dcb-07df-41e3-9562-75e48f9dd996", + "fields": { + "question": 356, + "contribution": 3782, "answer": 1, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2d766d2-13b6-4105-9588-4290ec83511c", + "pk": "c84d3ec9-d9ca-4657-920e-84e94fa320f2", "fields": { - "question": 477, - "contribution": 3519, - "answer": 0, - "count": 7 + "question": 348, + "contribution": 3528, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2e9a8fd-7e66-4bf3-9caa-769a82f9e14a", + "pk": "c84e076c-99c7-4b33-b7e1-2a5ff57116fa", "fields": { - "question": 344, - "contribution": 3896, + "question": 327, + "contribution": 909, "answer": 1, - "count": 4 + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2f08d1c-d09a-4e8b-8b9c-b48ecb5fdf1b", + "pk": "c85980be-52e2-4ad6-9c40-cf58bed28bdb", "fields": { - "question": 337, - "contribution": 1640, - "answer": 2, - "count": 2 + "question": 319, + "contribution": 1668, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e2f9468a-58db-454c-a32b-f06ad94a5632", + "pk": "c85a86e5-227a-4fb0-9441-a8223b35cf1c", "fields": { - "question": 335, - "contribution": 3886, - "answer": 3, + "question": 350, + "contribution": 3693, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3005000-40f9-4ae3-b712-bf0bd04d3d05", + "pk": "c85e6b01-9944-4b66-976e-fc95f6ad4adf", "fields": { - "question": 473, - "contribution": 3440, - "answer": 0, + "question": 333, + "contribution": 3592, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e304735e-4cca-4e6a-b5c8-dc258b249483", + "pk": "c8696f1a-7877-4ca1-8bb8-8eaff00b147f", "fields": { - "question": 347, - "contribution": 1880, - "answer": 3, + "question": 476, + "contribution": 836, + "answer": -1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e308187b-cdef-4d9d-a414-769f350bcb1a", + "pk": "c86b9d00-29f9-46a3-b1ea-d1e146bf9e2b", "fields": { - "question": 459, - "contribution": 4283, - "answer": 3, - "count": 1 + "question": 323, + "contribution": 3390, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e31bc267-735b-4ab2-854b-bcf75d2d3951", + "pk": "c86cec49-4e14-45bb-a4e8-1bd4a92ae502", "fields": { - "question": 367, - "contribution": 3422, - "answer": 3, - "count": 4 + "question": 363, + "contribution": 1835, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e329095a-f34b-48e0-a25c-30743436174d", + "pk": "c86d2967-cf14-4cfa-bac0-36102c42fdf6", "fields": { - "question": 332, - "contribution": 3631, - "answer": 1, - "count": 13 + "question": 328, + "contribution": 881, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e329fda1-faf5-4688-8c4c-963ea88c11cd", + "pk": "c875fcbf-2a14-4aba-b64c-76daeeda6b7a", "fields": { - "question": 326, - "contribution": 909, - "answer": 2, - "count": 11 + "question": 475, + "contribution": 4094, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3353c01-aff4-4282-8c89-067c74149d7e", + "pk": "c87acb16-f147-421e-bedc-32a236bb5815", "fields": { - "question": 473, - "contribution": 3725, - "answer": 1, - "count": 5 + "question": 338, + "contribution": 3482, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e33780ee-336a-4d0e-9312-15cde5724377", + "pk": "c87bd180-1f28-4e2d-9778-f7b645c6d8a8", "fields": { - "question": 320, - "contribution": 3462, - "answer": 5, + "question": 347, + "contribution": 4146, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e33a1bd9-865a-4043-ad74-56b55fb630cb", + "pk": "c883fe24-5aba-426d-a356-401bb72583fd", "fields": { - "question": 336, - "contribution": 1644, - "answer": 1, + "question": 350, + "contribution": 3466, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3402343-cdf4-4b39-89a8-19c59c65faaa", + "pk": "c8880cda-ec9b-44ba-87ee-c32bb7cb544a", "fields": { - "question": 349, - "contribution": 3545, + "question": 336, + "contribution": 918, "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e34b0efc-907f-4620-9418-a94c828dc7db", + "pk": "c888ad0b-6b38-484a-9bb8-68fef849643f", "fields": { - "question": 356, - "contribution": 3975, + "question": 316, + "contribution": 884, "answer": 1, - "count": 2 + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e34fcf4d-4dd8-4753-a867-30e0598ab401", + "pk": "c8916274-cf4c-4413-87a3-177ff971b6d6", "fields": { - "question": 353, - "contribution": 4025, + "question": 326, + "contribution": 1617, "answer": 1, - "count": 1 + "count": 24 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e354010a-e1a3-4c2c-b0d5-44ae5dba91bc", + "pk": "c89964a6-4eee-43c1-8932-a63c64f0e88f", "fields": { - "question": 475, - "contribution": 1702, - "answer": -2, - "count": 2 + "question": 315, + "contribution": 884, + "answer": 1, + "count": 25 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3727b96-b22d-4a42-bbc6-d3ea21e186fc", + "pk": "c89ba96b-e312-458a-b88f-ae1dd16e565a", "fields": { - "question": 329, - "contribution": 3423, + "question": 472, + "contribution": 3406, "answer": 1, - "count": 17 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e376fd3e-faf8-4f47-9717-68a23de7c994", + "pk": "c8a79065-8929-42e8-ac60-b86ac92b00aa", "fields": { - "question": 257, - "contribution": 4116, + "question": 340, + "contribution": 4052, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e37e17e6-9ab1-438b-bf53-b250f7431961", + "pk": "c8b561e8-0dae-4c71-afc4-ab5252200d40", "fields": { - "question": 322, - "contribution": 3721, + "question": 320, + "contribution": 4040, "answer": 5, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e38985a4-c64e-4ceb-a42c-9af429cde158", + "pk": "c8b5baf3-21dc-44c3-b544-eb48190dd0f7", "fields": { - "question": 345, - "contribution": 3545, - "answer": 5, + "question": 344, + "contribution": 3960, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e390546d-5ba9-4fac-8ddf-9eaddb76f1f8", + "pk": "c8c5fb80-d303-4a6e-a850-edf9112c6557", "fields": { - "question": 345, - "contribution": 4129, + "question": 260, + "contribution": 3721, "answer": 2, - "count": 3 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3906076-57e3-454c-8634-f2d63545d003", + "pk": "c8c6c29c-d46d-45c9-88e0-a1b216f32b31", "fields": { - "question": 331, - "contribution": 1612, + "question": 363, + "contribution": 1835, + "answer": 1, + "count": 8 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "c8c93943-1422-46d5-a917-46ff2435beaf", + "fields": { + "question": 348, + "contribution": 1867, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e394dfa2-ea66-4df1-b596-f89058fa7e8e", + "pk": "c8cce2c9-934c-4c57-be82-49cd1f8d0f21", "fields": { - "question": 382, - "contribution": 3775, - "answer": 0, - "count": 5 + "question": 258, + "contribution": 4138, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e395d1c4-f44d-4b8f-87ea-a25078088f2c", + "pk": "c8d3d586-abd6-487b-8269-3e495e009e46", "fields": { - "question": 385, - "contribution": 3775, - "answer": 2, - "count": 1 + "question": 338, + "contribution": 804, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e39dd783-1853-40fe-9b6d-246abe84dea3", + "pk": "c8dc9f5c-12b4-4937-8474-579ee77a6b99", "fields": { - "question": 329, - "contribution": 3473, + "question": 316, + "contribution": 1837, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e39f97e7-dadd-44fc-90ac-02ad3ca49c33", + "pk": "c8dd7c22-a47e-4ff9-8c21-ced5ddf7e8bd", "fields": { - "question": 317, - "contribution": 3679, - "answer": 4, - "count": 4 + "question": 475, + "contribution": 1726, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3a7f500-c7d7-4c6d-85c2-8d61aa9870d9", + "pk": "c8e25e7f-1539-45c1-be39-4663cd23766c", "fields": { - "question": 349, - "contribution": 4003, - "answer": 3, + "question": 357, + "contribution": 3975, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3b58c56-72c8-4af9-817a-df6821f810ac", + "pk": "c8e652ff-611b-4f23-a681-aeec3e667bc1", "fields": { - "question": 331, - "contribution": 1612, - "answer": 0, - "count": 19 + "question": 355, + "contribution": 4232, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3b71b02-66b5-41e7-a91e-9fd51a340b94", + "pk": "c8ece5dc-a05a-43dc-b8c5-8dc9eff7fe80", "fields": { - "question": 257, - "contribution": 3406, - "answer": 1, + "question": 333, + "contribution": 3551, + "answer": 3, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3bcb103-dcb3-40a9-981d-2c75a6219b1a", + "pk": "c8f7b1da-24a7-4592-b412-393b86cecc18", "fields": { - "question": 343, - "contribution": 887, + "question": 372, + "contribution": 3735, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3c95e20-a339-4102-a33f-f7658f9d8293", + "pk": "c8f9c0dd-cccf-430d-ba66-e9f2e42baa2d", "fields": { - "question": 322, - "contribution": 3683, - "answer": 4, + "question": 329, + "contribution": 885, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3d2162d-9bd0-488a-a3b1-defae8cabba7", + "pk": "c9019dd5-ab66-4e6b-99fc-247c59d8b367", "fields": { - "question": 449, - "contribution": 4185, - "answer": 1, - "count": 26 + "question": 473, + "contribution": 880, + "answer": -2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3d654a2-861a-4a7a-b6b2-677209f83b5c", + "pk": "c9082a10-a428-432f-95c3-e0a6bd72102a", "fields": { - "question": 349, - "contribution": 1203, - "answer": 1, + "question": 339, + "contribution": 3795, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3d7a5e1-fc00-406d-b4de-8d89398a9228", + "pk": "c91045de-f8d3-41df-8055-1162bcb9ad80", "fields": { - "question": 346, - "contribution": 1207, - "answer": 1, + "question": 322, + "contribution": 1837, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3da87ee-7b19-42e6-8358-3c7329db8e9d", + "pk": "c91e6710-4333-4846-965d-b8eceda5b0d5", "fields": { - "question": 322, - "contribution": 3422, - "answer": 5, - "count": 7 + "question": 473, + "contribution": 822, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3dc3435-84d1-49e7-9031-f528351037e8", + "pk": "c920a2a9-ec8f-4cf6-8d05-96b1a8771d4f", "fields": { - "question": 329, - "contribution": 3726, - "answer": 2, - "count": 4 + "question": 349, + "contribution": 1843, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e3f14775-c30a-4721-974e-28b7f0750229", + "pk": "c928cede-b770-427c-a1f4-ff025dc244c9", "fields": { - "question": 476, - "contribution": 1837, - "answer": -2, + "question": 374, + "contribution": 3711, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e405d736-abf4-4a93-89a0-e0959b116dbf", + "pk": "c933a8c2-36ff-47c4-bd6c-8595caed6367", "fields": { - "question": 398, - "contribution": 3711, + "question": 317, + "contribution": 3474, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e415b102-a9b6-45c7-98d2-0eb387b80dc4", + "pk": "c93717f0-03c8-4b2b-ba9c-c2c9b7709a61", "fields": { - "question": 368, - "contribution": 3423, - "answer": 3, + "question": 344, + "contribution": 3607, + "answer": 2, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "c94219f2-edc0-40b5-9bad-7c0c9f564024", + "fields": { + "question": 357, + "contribution": 4025, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e41e827d-3cc9-40de-97c1-cc7740337ad2", + "pk": "c944b269-a343-40a0-aa98-96755a434931", "fields": { - "question": 343, - "contribution": 3606, - "answer": 1, + "question": 255, + "contribution": 4028, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4399abe-d753-4c40-a69e-e0348dfa5173", + "pk": "c9455047-517b-4189-9e22-4cb6ae182f7e", "fields": { - "question": 326, - "contribution": 1797, - "answer": 1, - "count": 4 + "question": 345, + "contribution": 3935, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e43a3678-11ed-4c86-ae2a-9c37ff6250cd", + "pk": "c950525c-ba88-4a21-9e8f-5486b2cfc737", "fields": { - "question": 320, + "question": 476, + "contribution": 4120, + "answer": 0, + "count": 19 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "c955a8cc-3fd7-460c-b68a-18d291ab5137", + "fields": { + "question": 331, "contribution": 3721, - "answer": 4, - "count": 9 + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e451c0be-8e11-4205-92f2-fdc3923575da", + "pk": "c957ee39-f12d-4c1c-8d52-9e86feb6d1f2", "fields": { - "question": 348, - "contribution": 4189, + "question": 370, + "contribution": 3776, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e458841f-851f-41b3-b57b-28e63a5e6556", + "pk": "c961070c-249a-4037-b2da-747507772b42", "fields": { - "question": 259, - "contribution": 3390, - "answer": 1, - "count": 11 + "question": 360, + "contribution": 1825, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e459b08f-76ea-4e5c-beb0-a9622631e5ac", + "pk": "c972a6ab-914d-4d48-bac7-a648d2d44ff3", "fields": { - "question": 333, - "contribution": 3566, + "question": 355, + "contribution": 1242, "answer": 1, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e45bd84b-9106-4415-b41b-d0c5c0efbdfe", + "pk": "c974ec40-12bd-46a8-a2f5-55a410b7b3f1", "fields": { - "question": 477, - "contribution": 1802, - "answer": 0, - "count": 15 + "question": 433, + "contribution": 4008, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e45cf01d-ac79-4fd9-ada5-90b8df2844db", + "pk": "c97f72b2-3a0c-4606-92c0-1e2f1adc97e6", "fields": { - "question": 337, - "contribution": 1644, - "answer": 3, - "count": 1 + "question": 257, + "contribution": 3721, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e468e7cb-577b-4293-85d7-af066bb740d8", + "pk": "c9855be6-e40f-46ca-85c7-ac9c0d47c7ba", "fields": { - "question": 325, - "contribution": 1297, - "answer": 1, - "count": 9 + "question": 372, + "contribution": 3440, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e468f626-c7d7-42f4-a278-003682c87081", + "pk": "c9855d95-c1ba-43b7-91e3-dfe09cf1a899", "fields": { - "question": 353, - "contribution": 1189, + "question": 367, + "contribution": 4046, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e472859e-fcdf-47fc-8bd1-ab37a2be688d", + "pk": "c985eae3-6529-4e56-b8dd-a5dfafdd9ee4", "fields": { - "question": 349, - "contribution": 1246, - "answer": 5, - "count": 2 + "question": 343, + "contribution": 1249, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4756fce-1a6a-45d0-bb72-e7bfcb9ce696", + "pk": "c98bae92-00f2-4d2b-88cf-8b816a575156", "fields": { - "question": 476, - "contribution": 3422, - "answer": -2, + "question": 346, + "contribution": 1639, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4769c28-d467-40d0-828c-19dbed4e1d24", + "pk": "c98dfc44-4c88-439b-a5f5-e57a8b7c0717", "fields": { - "question": 371, - "contribution": 3552, + "question": 317, + "contribution": 3739, "answer": 3, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4822602-a300-4ae0-896b-de754fa75efd", + "pk": "c99987e6-b256-4115-b170-6a0b10acbf16", "fields": { - "question": 461, - "contribution": 4141, - "answer": 1, - "count": 6 + "question": 371, + "contribution": 4154, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e48d3c9c-0973-4f7b-9838-3fcd89127390", + "pk": "c99f9c89-e18b-4f9d-8ee0-562ca97a9033", "fields": { - "question": 339, - "contribution": 3795, - "answer": 0, - "count": 1 + "question": 323, + "contribution": 3679, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e491af9b-a880-40db-bc4a-067a3522672a", + "pk": "c9a319de-e540-418c-9a0a-c6469dbf2285", "fields": { - "question": 355, - "contribution": 3849, - "answer": 1, - "count": 5 + "question": 352, + "contribution": 832, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e49f3b82-cde4-4e72-990a-9c1184c7a85d", + "pk": "c9a4c59f-0da5-406b-8c9e-3dae9a45715d", "fields": { - "question": 343, - "contribution": 3822, - "answer": 1, - "count": 1 + "question": 316, + "contribution": 4028, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4a06aa3-ac83-4a0e-968a-d84365502838", + "pk": "c9ae8a75-524b-42cc-b331-ccaaa31e6649", "fields": { - "question": 337, - "contribution": 858, - "answer": 1, + "question": 360, + "contribution": 3649, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4a90aed-997f-4a60-bbaa-8bb7537d2ada", + "pk": "c9b18f11-ddd9-48f7-a103-05c8e9605f65", "fields": { - "question": 339, - "contribution": 1200, - "answer": -3, - "count": 2 + "question": 353, + "contribution": 1188, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4b4936a-efd0-4e93-b224-05eaabd198c6", + "pk": "c9bdde6a-573d-4263-b00d-d19ac8f268c1", "fields": { - "question": 317, - "contribution": 1612, + "question": 441, + "contribution": 4114, "answer": 1, - "count": 19 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4bd51a5-f00e-4c2b-9b11-79e040719389", + "pk": "c9bdeaca-0fa3-4338-bdf4-85866e48cd77", "fields": { - "question": 350, - "contribution": 3440, - "answer": 5, - "count": 1 + "question": 352, + "contribution": 3745, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4bd5944-c1c2-489f-99df-7c92cae17a02", + "pk": "c9da8ad2-fdb9-4b25-8103-4949aa681e3c", "fields": { - "question": 339, - "contribution": 1748, - "answer": -1, - "count": 2 + "question": 349, + "contribution": 3879, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4d78ccc-bf2c-4242-8df3-b0adc6fae2f2", + "pk": "c9ed8731-44b2-4363-8226-a5ccbca4b459", "fields": { "question": 258, - "contribution": 3679, - "answer": 4, - "count": 1 + "contribution": 836, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4dcd728-71df-40c0-ab04-a555fc870630", + "pk": "c9edbbf0-1d3a-4b97-9e05-3bf840080f84", "fields": { - "question": 333, - "contribution": 4205, + "question": 315, + "contribution": 912, "answer": 4, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4e07e61-d007-4c37-bb45-177a8cf362a2", + "pk": "c9edc345-d490-42ac-a171-53ac41847551", "fields": { - "question": 343, - "contribution": 1828, - "answer": 1, - "count": 2 + "question": 367, + "contribution": 4040, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4e11c9e-da77-479d-9267-de767103be2c", + "pk": "c9f4e77d-62d9-4445-810b-faeafed1d53f", "fields": { - "question": 315, - "contribution": 4120, - "answer": 2, - "count": 8 + "question": 338, + "contribution": 3727, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4e589e1-486f-45ef-98ae-f50bcca63ab3", + "pk": "c9f52c63-080e-4190-84be-f805b214610f", "fields": { - "question": 343, - "contribution": 3894, - "answer": 1, - "count": 6 + "question": 377, + "contribution": 3775, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4ea24fd-875f-48ab-81b2-ece98f1e0b1b", + "pk": "c9ffc3a2-ff8d-4529-8ec1-cd0196ceb8dd", "fields": { - "question": 354, - "contribution": 1849, - "answer": 1, + "question": 338, + "contribution": 1726, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4f1f708-92db-42d8-86e0-4d28d91f3056", + "pk": "ca04f3b6-756c-4172-b5ee-e2977cc7d733", "fields": { - "question": 475, - "contribution": 840, - "answer": -1, - "count": 1 + "question": 355, + "contribution": 1154, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e4f2a6db-ea5a-416e-8f2a-adceef1ea516", + "pk": "ca0a2adb-2979-4523-a1b5-434d21ed7e5c", "fields": { - "question": 375, - "contribution": 3781, + "question": 348, + "contribution": 4192, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e50511ef-5af0-44dc-a6fa-f550312bb252", + "pk": "ca1d10eb-682c-4b3f-ae31-5c09de32c63a", "fields": { - "question": 355, - "contribution": 1860, - "answer": 1, - "count": 4 + "question": 413, + "contribution": 3984, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e509659b-ce48-492b-9029-faa8f3893fd5", + "pk": "ca279269-3d1f-42c2-837b-e4f4e7bca5b8", "fields": { - "question": 341, - "contribution": 1710, - "answer": 1, - "count": 2 + "question": 345, + "contribution": 1204, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e51db683-029d-4d73-bd4f-f7f5575e9176", + "pk": "ca2b27d9-f911-4505-a4cb-4a24a203a2c1", "fields": { - "question": 338, - "contribution": 840, + "question": 347, + "contribution": 4187, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e51ef5f4-d0ff-4766-9d80-44c1edb2d20e", + "pk": "ca369ad3-3659-440f-bb84-3b265de14457", "fields": { - "question": 343, - "contribution": 1873, - "answer": 1, + "question": 345, + "contribution": 1246, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e52cebb4-7c74-4a67-a689-cf6f3515d325", + "pk": "ca3e019d-5d87-4acf-a6a7-3eb51b0b22e5", "fields": { - "question": 472, - "contribution": 3785, - "answer": 1, + "question": 331, + "contribution": 1612, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e532ea77-444b-472f-8495-d002d1e86320", + "pk": "ca3e4964-f913-4598-8397-093f7b681db9", "fields": { - "question": 337, - "contribution": 832, - "answer": 3, - "count": 1 + "question": 472, + "contribution": 4140, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e534a46b-c80b-41a8-81aa-2df2b12ddc67", + "pk": "ca403a21-f588-4a77-958a-e546cfa28626", "fields": { - "question": 371, - "contribution": 3598, - "answer": 1, - "count": 2 + "question": 322, + "contribution": 3390, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e541d146-19fd-47b9-a0ff-3b4a03f89956", + "pk": "ca447bd5-58d2-489a-9272-6f083f5e215a", "fields": { - "question": 316, - "contribution": 4084, + "question": 317, + "contribution": 4116, "answer": 5, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5430d66-1656-47b9-b0cb-0b8369485b71", + "pk": "ca557ab6-eb9a-4db6-8cc4-2b651655b560", "fields": { - "question": 355, - "contribution": 1188, - "answer": 2, + "question": 348, + "contribution": 3536, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5453eee-540b-44bf-9296-9af972f465ad", + "pk": "ca670d49-1d7a-4d00-a247-b295cbe6bd2d", "fields": { - "question": 347, - "contribution": 1228, + "question": 320, + "contribution": 1724, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e55332ae-18ba-40b6-bc2a-6bc68f8bfb42", + "pk": "ca6aa604-b2f8-441b-9c38-4f696eb0c44d", "fields": { - "question": 370, - "contribution": 1776, - "answer": 3, - "count": 2 + "question": 359, + "contribution": 1836, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e559d6d2-70ce-4fdb-b03c-cc97b6a8ddbb", + "pk": "ca6be84a-fc45-40b7-8e10-ddb64941592c", "fields": { - "question": 475, - "contribution": 1640, - "answer": -2, - "count": 1 + "question": 262, + "contribution": 3474, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5681033-ef1d-446e-b8d1-daf971a25a33", + "pk": "ca7100e7-702e-470b-92cb-1c5009c8b6c1", "fields": { - "question": 338, - "contribution": 3466, + "question": 257, + "contribution": 836, "answer": 1, - "count": 1 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5716c2d-f5bf-4002-ba2d-3c303190b219", + "pk": "ca7b7196-a674-4644-8950-c7ca9e0de860", "fields": { - "question": 338, - "contribution": 868, - "answer": 1, - "count": 4 + "question": 344, + "contribution": 1246, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5755d9c-af86-4fee-99ae-71720a38a136", + "pk": "ca80b775-f6e3-4031-8af4-f2b7ca3351fe", "fields": { - "question": 371, - "contribution": 3552, - "answer": 2, + "question": 255, + "contribution": 4116, + "answer": 4, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5780a71-bba1-4cce-8958-1d033d9143a7", + "pk": "ca85a103-056d-4e2e-864b-300afdecced3", "fields": { - "question": 349, - "contribution": 3704, - "answer": 1, - "count": 2 + "question": 339, + "contribution": 3751, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e583fb12-81ed-44aa-b239-85c589d133b8", + "pk": "ca8ec616-e08c-4899-9282-072c2e95dfcf", "fields": { - "question": 329, - "contribution": 1780, - "answer": 3, + "question": 348, + "contribution": 3934, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e58cc27e-0b1b-48b7-9be0-fd399c49a541", + "pk": "ca9a0841-00d0-426e-b99c-e6870d27d685", "fields": { - "question": 346, - "contribution": 4233, - "answer": 1, - "count": 3 + "question": 338, + "contribution": 3723, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e58ed861-c821-47fd-9279-ca5eb64177e6", + "pk": "ca9e9483-ef8f-45b8-a3db-b0110d374ca5", "fields": { - "question": 315, - "contribution": 884, - "answer": 2, + "question": 321, + "contribution": 864, + "answer": 1, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e58fdf0f-9e77-43ec-90bb-52f77dc511f3", + "pk": "caa0c5ac-3dc0-4a95-95ae-b96ed232bdba", "fields": { - "question": 331, - "contribution": 3474, + "question": 346, + "contribution": 3896, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e592173d-f294-4a6b-aac0-817b8714b31e", + "pk": "caa1d928-51a1-40cd-b2d4-8124b81bbb11", "fields": { - "question": 345, - "contribution": 4021, + "question": 323, + "contribution": 862, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e593b886-17aa-4624-9ed2-a9c7bfe70897", + "pk": "caa28355-1e9c-42fa-a33f-99bfc73785d5", "fields": { - "question": 344, - "contribution": 1151, - "answer": 1, - "count": 3 + "question": 363, + "contribution": 3943, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e59564af-9f7f-49a3-97e4-5831026a413a", + "pk": "cabaa584-582e-4b23-a387-29cb62b19a0b", "fields": { - "question": 329, - "contribution": 3680, + "question": 473, + "contribution": 880, "answer": 2, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e59e0965-ce15-42f0-9b9e-f886b0bef4b6", + "pk": "cac4439c-a270-4b20-b965-86ce2cbc4a75", "fields": { - "question": 347, - "contribution": 3822, + "question": 345, + "contribution": 3895, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5a0ab3f-6dfe-4498-819c-7a336a8b0018", + "pk": "cac96077-0c04-47bf-88a1-f474d92c9676", "fields": { - "question": 262, - "contribution": 4120, + "question": 321, + "contribution": 908, "answer": 1, - "count": 20 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5a30a71-ac25-4d64-8e51-ade5416e4330", + "pk": "cad1af26-423f-4c56-8e96-50ffe4a5552d", "fields": { - "question": 258, - "contribution": 3725, - "answer": 3, - "count": 2 + "question": 347, + "contribution": 4021, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5a4204e-70d6-4db9-bffd-2498959f3eb2", + "pk": "cadec064-579b-46bd-b62e-9dad347d4ef3", "fields": { "question": 477, - "contribution": 3884, - "answer": 1, + "contribution": 1797, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5aa106f-0989-4aac-838e-284eda99720f", + "pk": "cae79afa-2882-4f74-ab29-e81a16b0e27d", "fields": { - "question": 357, - "contribution": 1782, + "question": 322, + "contribution": 4116, "answer": 4, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "e5b37d50-27a8-4cfd-a544-0fe2f038e262", - "fields": { - "question": 368, - "contribution": 1802, - "answer": 1, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5c6326e-26ae-44e5-9d25-db692669a071", + "pk": "caedf861-cdaa-4331-bafe-38e46986314e", "fields": { - "question": 341, - "contribution": 3404, + "question": 255, + "contribution": 912, "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5ca5c65-1a26-41c2-9a07-d6f367e15dc3", + "pk": "caf09f31-7d28-4c9e-89de-4fdfa325fe8f", "fields": { - "question": 372, - "contribution": 4046, + "question": 337, + "contribution": 1656, "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5dc3b4a-a49f-4c21-9524-fd0adffd3ab1", + "pk": "cafa6d58-045e-4eba-bb4f-4304bd229ee8", "fields": { - "question": 463, - "contribution": 4283, - "answer": 1, - "count": 2 + "question": 356, + "contribution": 3847, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5ee1541-a85c-4c6b-80e2-b24cd22b80b5", + "pk": "cb02e101-e3b8-44e0-9990-4def4fd786f9", "fields": { - "question": 360, - "contribution": 3647, - "answer": 1, - "count": 1 + "question": 327, + "contribution": 823, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5ee62fd-7d7b-4715-9c87-afbe56b0da7e", + "pk": "cb09bfaa-6ede-4de5-a39c-12585322d914", "fields": { - "question": 315, - "contribution": 4128, - "answer": 5, + "question": 337, + "contribution": 894, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5f1e0f7-bc5d-4809-bafd-aa449a6aeb2c", + "pk": "cb0a9ca5-4c50-493a-9718-d64d8e0f0983", "fields": { - "question": 355, - "contribution": 1784, + "question": 327, + "contribution": 1186, "answer": 2, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "e5f5dd4d-25f3-4e13-9590-a95c574e0a3b", - "fields": { - "question": 352, - "contribution": 3394, - "answer": 1, - "count": 3 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e5fc009a-fe3a-4572-a39c-a2e75d092e3e", + "pk": "cb156c5c-ec73-48da-bc4c-81e59cd92907", "fields": { - "question": 319, - "contribution": 3679, - "answer": 4, + "question": 346, + "contribution": 1822, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6092d33-58ff-4917-931e-aff8086e61ad", + "pk": "cb1c06c3-0ef3-4856-b2b9-984fc9a382c7", "fields": { - "question": 315, - "contribution": 1634, + "question": 354, + "contribution": 1187, "answer": 2, - "count": 7 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e60e044e-e279-4c54-8781-7407d90ceb70", + "pk": "cb2511ed-b70a-4ecc-95ac-f9eaff9f4372", "fields": { - "question": 344, - "contribution": 1749, + "question": 338, + "contribution": 3466, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6202712-b7ab-4539-8d1c-a21db1561395", + "pk": "cb464ca1-e035-422d-8120-c3a242bc500d", "fields": { - "question": 359, - "contribution": 3650, - "answer": 4, - "count": 1 + "question": 348, + "contribution": 3894, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e622596c-80cf-466d-9b11-b9a25de07606", + "pk": "cb4c0ae3-7472-4f64-a02e-62e4e65556aa", "fields": { - "question": 323, - "contribution": 3683, - "answer": 4, + "question": 344, + "contribution": 3367, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6288e5f-9899-4b9a-9f06-ca0968395ed9", + "pk": "cb56836f-c122-456b-ba36-627195fab6ed", "fields": { - "question": 315, - "contribution": 1668, - "answer": 1, - "count": 8 + "question": 475, + "contribution": 3486, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e62d1bb8-e99c-466a-b676-9c2b8bc825b1", + "pk": "cb576e85-360d-46f9-add0-c8e7e073cfaf", "fields": { - "question": 317, - "contribution": 3679, - "answer": 2, + "question": 322, + "contribution": 3474, + "answer": 4, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e62f7cda-b97c-472d-8434-de58858a2ed3", + "pk": "cb5b7e82-187d-4856-90f5-1c67b2b23299", "fields": { - "question": 258, - "contribution": 912, - "answer": 5, - "count": 1 + "question": 370, + "contribution": 3776, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e63af94d-924d-415b-99d0-9d6623ec2190", + "pk": "cb5c57fe-fdba-4a3b-9ffc-60ab2fe65211", "fields": { - "question": 329, - "contribution": 837, - "answer": 4, - "count": 2 + "question": 351, + "contribution": 3454, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e63b6d81-0dc4-485d-9e09-a3d207bbec39", + "pk": "cb6d251e-717c-4b49-96aa-8e7847104c06", "fields": { - "question": 316, - "contribution": 3721, - "answer": 3, - "count": 6 + "question": 346, + "contribution": 919, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e63cd497-b7d7-4707-a904-2f2c3a13ad66", + "pk": "cb73a94b-58ad-4025-a082-e46571420328", "fields": { - "question": 331, - "contribution": 3474, - "answer": -3, + "question": 476, + "contribution": 3406, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e64cb9f6-5e16-41a2-b51a-ccebb3b441c5", + "pk": "cb7aacad-0f45-447f-be92-32d3c71b6b05", "fields": { - "question": 325, - "contribution": 4152, - "answer": 3, - "count": 1 + "question": 345, + "contribution": 4189, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6551838-b17e-419a-84b0-b10a3771da7d", + "pk": "cb8a1891-0cac-4f95-b421-7061485fda06", "fields": { - "question": 475, - "contribution": 3482, + "question": 347, + "contribution": 1645, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e656ae32-063c-4c1e-bba9-d41312cd787a", + "pk": "cb8b62b6-01ed-47f2-8cba-5514e96bc6b6", "fields": { - "question": 341, - "contribution": 3723, + "question": 343, + "contribution": 1809, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e659e30d-61fa-4d05-98a3-87129bf82158", + "pk": "cb914825-ba91-4aa7-a252-4c65cd465dd3", "fields": { - "question": 259, - "contribution": 1634, - "answer": 5, - "count": 5 + "question": 327, + "contribution": 1776, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e65c76fb-94dc-44bc-9244-8a709ea6d3a5", + "pk": "cb93244c-3a14-4d54-999d-02a188fabb3b", "fields": { "question": 319, - "contribution": 880, - "answer": 1, + "contribution": 4128, + "answer": 2, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e66a2bb5-fd53-4a52-88e4-9d10d4effe14", - "fields": { - "question": 473, - "contribution": 3472, - "answer": 1, - "count": 3 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "e66b4f5b-e69c-404b-8c02-4db826396a55", + "pk": "cb9c625f-956c-468a-a9c7-c681bc78cc06", "fields": { - "question": 368, - "contribution": 4117, + "question": 319, + "contribution": 1634, "answer": 3, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e676bdba-a6c6-4663-871e-03eb8e8c97bc", + "pk": "cb9dd940-b494-4cc2-8c29-35fbee0e097f", "fields": { - "question": 369, - "contribution": 3929, - "answer": 3, + "question": 347, + "contribution": 1809, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6825153-3f29-4cb0-a721-eb231d46ff36", + "pk": "cb9ee5b8-507e-4983-a64f-bdc6c1af4790", "fields": { "question": 355, - "contribution": 3782, + "contribution": 1785, "answer": 1, - "count": 1 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e683a296-bd07-484f-b57a-e74a1c4d959e", + "pk": "cba40ad9-075c-403f-90f1-81c9c1b4d7b9", "fields": { - "question": 323, - "contribution": 1626, - "answer": 3, - "count": 9 + "question": 362, + "contribution": 1806, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e68f19cb-e969-48ce-9b67-dafc01b26659", + "pk": "cba55dd0-17c5-4bcc-9a82-1d2e464a1b64", "fields": { - "question": 346, - "contribution": 4192, - "answer": 1, - "count": 4 + "question": 320, + "contribution": 880, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e694318c-4cc5-457c-946f-f11e4e9de906", + "pk": "cbaf9b14-fb1d-4c39-9169-be143b6105d8", "fields": { - "question": 340, - "contribution": 868, - "answer": 1, - "count": 3 + "question": 319, + "contribution": 4128, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e69b46a4-7267-472a-bc54-ec194d6de6be", + "pk": "cbbc468f-d8e8-4d80-a967-f3c40b6a6d40", "fields": { - "question": 360, - "contribution": 3597, - "answer": 3, + "question": 348, + "contribution": 3373, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e69bd3b5-09c8-4829-9494-1da960fb1a48", + "pk": "cbc6d7bd-9bc6-4be7-b80d-ba7368aeb1d1", "fields": { - "question": 347, - "contribution": 3941, + "question": 322, + "contribution": 3422, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6a4e92a-880e-40c9-bfdb-4a76d17fabe1", + "pk": "cbca136e-f1fd-481c-bc91-dce771dab661", "fields": { - "question": 344, - "contribution": 3822, + "question": 368, + "contribution": 3883, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6a99b86-fbe8-477e-8f1e-13eb13c8cb6c", + "pk": "cbce5622-05ef-448d-add5-d9c12fdd93e9", "fields": { - "question": 331, - "contribution": 1724, + "question": 460, + "contribution": 3453, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6ae3403-ab55-4819-a9f1-6f735130a4c8", + "pk": "cbd3a304-188e-43f8-8f4a-55ecc446db1c", "fields": { - "question": 323, - "contribution": 3354, + "question": 349, + "contribution": 3941, "answer": 1, - "count": 12 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6ae59b6-bdfb-4969-8814-9b1f02b5942e", + "pk": "cbe217c9-e1ca-4d60-b550-22b05df29ec1", "fields": { - "question": 357, - "contribution": 1845, - "answer": 1, + "question": 346, + "contribution": 1872, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6b96d9a-5a9a-44fc-a0cb-c79ced20860e", + "pk": "cbf51f7d-ffe7-4c2b-9989-5b5f161bffff", "fields": { - "question": 346, - "contribution": 1880, - "answer": 4, - "count": 2 + "question": 371, + "contribution": 3595, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6c785dc-214e-4131-aab0-ddb80289f9d7", + "pk": "cbf9a4a0-dc4d-4b83-a279-385a1f295936", "fields": { - "question": 262, - "contribution": 884, - "answer": 4, - "count": 1 + "question": 475, + "contribution": 840, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6dc9907-f15f-42c2-a89c-6f6dcd82f59b", + "pk": "cc0e6d9c-3ea4-49f6-ab45-560edad95a39", "fields": { - "question": 333, - "contribution": 3631, + "question": 346, + "contribution": 1922, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6e6f74e-036f-43fa-a5a1-249e8e4d7941", + "pk": "cc12c468-83b8-4353-9c83-a9dd4d7e2163", "fields": { - "question": 353, - "contribution": 3528, + "question": 349, + "contribution": 1206, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6e70f1c-c830-45be-9aab-606ca2764adc", + "pk": "cc1bafc1-972c-4ae2-bf25-3cf8b27de4da", "fields": { - "question": 363, - "contribution": 1836, - "answer": 5, - "count": 1 + "question": 326, + "contribution": 3684, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6e81a0c-db16-49dd-9092-f4998a90139d", + "pk": "cc1d85da-63f4-4c0f-b722-045a56e1e666", "fields": { - "question": 257, - "contribution": 4128, - "answer": 5, - "count": 1 + "question": 475, + "contribution": 788, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6fa3e73-26b3-48f6-9bd7-a22181d48d2c", + "pk": "cc3231ac-b46b-4d5f-a3a4-adfece52b014", "fields": { - "question": 473, - "contribution": 4008, - "answer": 0, + "question": 335, + "contribution": 4155, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6fa3f36-c0b2-45cf-b2d6-feb329fd1728", + "pk": "cc3f5024-aaf4-4745-b877-b51ea4ddac7d", "fields": { - "question": 333, - "contribution": 3552, - "answer": 3, - "count": 5 + "question": 255, + "contribution": 3679, + "answer": 1, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6fa781b-fff5-46ea-b3a2-53958a78c424", + "pk": "cc424025-1296-4938-9a04-749afd949048", "fields": { - "question": 366, - "contribution": 3551, - "answer": 2, - "count": 8 + "question": 333, + "contribution": 3593, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e6ffa8bd-57f2-443f-8259-16ea09f55008", + "pk": "cc454d2f-f633-4fb0-86cb-680e7bc47bfd", "fields": { - "question": 345, - "contribution": 3528, + "question": 409, + "contribution": 3974, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7061d50-5c51-4b21-a8a9-1b7a0aa1b56b", + "pk": "cc4e2a34-be35-4f23-8640-4f75c314f27e", "fields": { - "question": 257, - "contribution": 4120, + "question": 356, + "contribution": 1782, "answer": 3, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "e711f676-a887-4c2c-97d3-4ad578db5386", - "fields": { - "question": 349, - "contribution": 3796, - "answer": 4, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e712aa43-3d85-4be7-a786-2cecb679f3b5", + "pk": "cc504e0c-f9c6-4d08-bea7-ac4b38936b89", "fields": { - "question": 260, - "contribution": 3474, + "question": 319, + "contribution": 4028, "answer": 1, - "count": 5 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7185c60-693e-48f2-b43a-8807d6c6bfb8", + "pk": "cc5053c6-a173-4e2a-bc7f-acfaa7041b93", "fields": { - "question": 347, - "contribution": 3728, - "answer": 1, + "question": 346, + "contribution": 4003, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7210fff-67cc-48f6-811b-c4a09a0d4273", + "pk": "cc548270-b9ac-4b1e-8220-b9d9e100d285", "fields": { - "question": 475, - "contribution": 3372, - "answer": -3, - "count": 2 + "question": 354, + "contribution": 3607, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7231b9e-f2e6-47b1-8aef-e923542ed9e5", + "pk": "cc58c3cd-e430-408f-b2d3-acdd3973feee", "fields": { - "question": 255, - "contribution": 4046, - "answer": 3, + "question": 336, + "contribution": 3745, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7273410-fc1a-431e-a032-89ced221b27e", + "pk": "cc5cc672-6db0-4e22-be0c-c63223156252", "fields": { - "question": 368, - "contribution": 3680, - "answer": 5, - "count": 2 + "question": 344, + "contribution": 3894, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e728c92c-4141-4a45-982d-659270d4fc7e", + "pk": "cc5d82c1-daba-45a4-b0ba-f88731790dfa", "fields": { - "question": 328, - "contribution": 1154, - "answer": 2, - "count": 12 + "question": 348, + "contribution": 1867, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e73eea6d-cbe7-479a-9701-69266186c880", + "pk": "cc5dc04b-eb03-4b38-bda0-bf7b5d3cff0b", "fields": { - "question": 367, - "contribution": 1634, + "question": 349, + "contribution": 887, "answer": 2, - "count": 10 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "e746711f-2515-4ad2-bd0b-7cfa26aa4f78", - "fields": { - "question": 317, - "contribution": 912, - "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e747cc55-8229-482b-b46e-81f6650f9b45", + "pk": "cc63054c-c7a1-49b0-a207-9b5be17adc45", "fields": { - "question": 383, - "contribution": 3775, - "answer": 1, + "question": 347, + "contribution": 1749, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e749a0ab-9bbe-4116-b12f-722f4f0c725e", + "pk": "cc660bfd-7f35-46df-ba20-85507a38390f", "fields": { - "question": 375, - "contribution": 3775, - "answer": 1, - "count": 3 + "question": 332, + "contribution": 3631, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e74fb6e3-f1f4-4b96-b229-0cb5a524c559", + "pk": "cc6684d7-2674-4c44-afe1-9773320faf36", "fields": { - "question": 323, - "contribution": 3434, - "answer": 5, - "count": 1 + "question": 477, + "contribution": 4153, + "answer": 0, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e75444a0-daef-470f-80d5-053dbcaa3a2f", + "pk": "cc66e3d3-ac83-43d5-adae-3532d4ff2ed1", "fields": { - "question": 349, - "contribution": 1151, - "answer": 1, - "count": 3 + "question": 366, + "contribution": 3598, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e756aa9d-8af4-4c4d-9c16-0b3404284f41", + "pk": "cc7b28f5-7f1f-41b7-ae62-b4bf9902c85a", "fields": { - "question": 346, - "contribution": 3373, - "answer": 2, + "question": 319, + "contribution": 3474, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7637cc1-67cc-4e34-8c8a-bcf99145c5ac", + "pk": "cc7d1f19-35a0-4819-a7e3-c9b2e0154354", "fields": { - "question": 359, - "contribution": 1836, + "question": 329, + "contribution": 4047, "answer": 2, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7639ce8-cb81-4a5c-aa30-182a9cb4e219", + "pk": "cc8c1513-e075-429c-a93b-bd64f58ce386", "fields": { - "question": 262, - "contribution": 3462, - "answer": 3, - "count": 2 + "question": 255, + "contribution": 1668, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e76687b3-d411-4395-9473-44071f5d9eb1", + "pk": "cc8c869d-3697-43e9-806d-d7d7ff924e1f", "fields": { - "question": 317, - "contribution": 3665, - "answer": 2, - "count": 4 + "question": 329, + "contribution": 1297, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e76802b5-92d8-4591-bce8-2fa1dd75f025", + "pk": "cc94a31e-427b-4fa5-b792-0492a4f9d88a", "fields": { - "question": 333, - "contribution": 3592, - "answer": 5, - "count": 1 + "question": 321, + "contribution": 3683, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7842ad0-1f39-44a8-be5d-9438fed3e79d", + "pk": "cc99b70b-73ee-40bf-a2bd-c46cdf80eb08", "fields": { - "question": 362, - "contribution": 3650, + "question": 353, + "contribution": 4223, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e78a88a2-8443-45e5-aee6-0c778b761d39", + "pk": "ccacd036-3dc5-47f1-8be7-69ac768baccd", "fields": { - "question": 472, - "contribution": 3472, - "answer": 5, + "question": 354, + "contribution": 1849, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7997e2b-abf7-4f3e-90fd-9dda4d22de02", + "pk": "ccb7cfa6-9fc2-46e5-8bb6-dec73cd23fa4", "fields": { - "question": 336, - "contribution": 3416, + "question": 325, + "contribution": 3680, "answer": 1, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "e7a6ae1d-b50b-46c1-b472-f7fe886d22bb", - "fields": { - "question": 315, - "contribution": 908, - "answer": 4, - "count": 3 + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7b19705-57a9-4198-bf9b-9d7155530a89", + "pk": "ccbd5d7e-f8ce-4495-91f2-ba5bfa6e14b7", "fields": { - "question": 259, - "contribution": 880, - "answer": 2, - "count": 4 + "question": 345, + "contribution": 3516, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7c780c7-1e67-4932-97ab-ff3bd99dd221", + "pk": "ccc5a7bb-c905-4374-b658-fb2e0496f873", "fields": { - "question": 340, - "contribution": 4052, + "question": 357, + "contribution": 3834, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7d64ad1-3f61-453b-a98f-0f5857cbbb2e", + "pk": "ccdac5b1-1b9e-4733-b65c-9f866ea3c40e", "fields": { - "question": 339, - "contribution": 788, - "answer": -2, + "question": 341, + "contribution": 3486, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7d7ccc5-78c7-4513-893c-4c4335a678b9", + "pk": "cce334e3-9c4e-469d-8627-412a4b191b46", "fields": { - "question": 329, - "contribution": 1802, + "question": 477, + "contribution": 3589, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7e41b38-c2aa-416f-abf5-5e8e201e3cf8", + "pk": "cce761f5-1d90-41b8-b049-2057071fcf01", "fields": { - "question": 357, - "contribution": 1154, - "answer": 3, - "count": 8 + "question": 258, + "contribution": 3422, + "answer": 1, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7e535cf-1852-47a1-b9bb-697fcee1128e", + "pk": "cce84205-ef42-46c7-9ff1-c74f534cddc0", "fields": { - "question": 367, - "contribution": 4022, + "question": 473, + "contribution": 3434, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7ef0035-8b80-4581-8ca6-8c5e41babd89", + "pk": "ccea0fa3-b1ea-4602-8b06-1ada58e4c109", "fields": { - "question": 349, - "contribution": 1205, + "question": 321, + "contribution": 1680, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7f1795a-6557-4dad-8a2d-e153b2819b0f", + "pk": "ccf575c2-52c4-428c-a5a0-99f1c2c2b29a", "fields": { - "question": 322, - "contribution": 836, + "question": 260, + "contribution": 1668, "answer": 2, - "count": 8 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7f6494d-2216-4af5-9110-31e9de2b4de3", + "pk": "ccfaec5c-dea0-48a9-b5ba-79c367d18553", "fields": { - "question": 349, - "contribution": 1250, - "answer": 2, - "count": 1 + "question": 361, + "contribution": 1803, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e7fb293c-ff33-4d83-8c73-fb8bd0c8c5f1", + "pk": "cd0b6df8-5d87-4e7b-b36a-c272dea92ffa", "fields": { - "question": 317, - "contribution": 4040, + "question": 336, + "contribution": 1748, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e80203b5-65a6-4091-a4d3-15815ce4fc12", + "pk": "cd1462a5-50da-4dd6-8adf-6950f5de6c3f", "fields": { - "question": 463, - "contribution": 4283, - "answer": 2, - "count": 1 + "question": 477, + "contribution": 1659, + "answer": -1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8032cb6-5a60-43dd-bfc1-4f3faf5c1f34", + "pk": "cd1709c0-9ed2-49a4-b74f-7b5656882956", "fields": { - "question": 354, - "contribution": 3776, - "answer": 2, - "count": 1 + "question": 259, + "contribution": 3739, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e80661f0-c8cc-4547-9db6-f7a93d5802d9", + "pk": "cd27f49c-f69a-44b2-a37b-9679182df5db", "fields": { - "question": 344, - "contribution": 1843, - "answer": 4, + "question": 361, + "contribution": 1806, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e80d9225-4155-4611-a32f-a34446a45cac", + "pk": "cd438587-d961-4e84-a3fc-7362b4b08cb8", "fields": { - "question": 335, - "contribution": 3936, + "question": 347, + "contribution": 1246, "answer": 3, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e816d719-9272-4dcb-a560-26a136fd857c", + "pk": "cd4b03fe-4990-4354-a690-d498a436a99c", "fields": { - "question": 356, - "contribution": 3516, - "answer": 3, + "question": 348, + "contribution": 1641, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e82558ca-7a3f-4a9a-b823-7b9fd5838cc7", + "pk": "cd4bef16-c146-49c9-9d34-a4b0b36bf0d2", "fields": { - "question": 362, - "contribution": 1804, + "question": 340, + "contribution": 1656, "answer": 1, "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e828e7ac-013e-4237-9128-469bada91ea9", + "pk": "cd51ee5b-cbae-404e-8b0a-595499153487", "fields": { - "question": 316, - "contribution": 822, + "question": 321, + "contribution": 4022, "answer": 4, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8415ae2-9658-465a-b42c-828d62680172", + "pk": "cd52b0bc-688b-4cd7-9a05-c891f3e0b243", "fields": { - "question": 257, - "contribution": 1626, + "question": 319, + "contribution": 3394, + "answer": 2, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "cd54fd4f-79af-4a20-8694-d4e42a0cd280", + "fields": { + "question": 401, + "contribution": 4177, "answer": 3, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e84b2bea-d7ed-4355-a189-71b35b9cb4b1", + "pk": "cd5e9118-8821-412f-8d10-122ce8811c8f", "fields": { - "question": 260, - "contribution": 822, - "answer": 2, + "question": 356, + "contribution": 1845, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8574011-e2f8-4575-a05d-04a253579926", + "pk": "cd60baa5-3661-4caf-95c4-0cc63bc51c73", "fields": { - "question": 321, - "contribution": 4118, - "answer": 1, - "count": 4 + "question": 328, + "contribution": 4152, + "answer": 2, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e859f940-48e7-4f43-9188-9ddbac18ad55", + "pk": "cd628f78-8241-4944-ab53-593a4a095f1d", "fields": { - "question": 262, - "contribution": 3721, - "answer": 4, - "count": 4 + "question": 339, + "contribution": 3727, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e85ba9f7-b9bd-403b-92b1-1e91d9c90e92", + "pk": "cd633c11-9cab-4fe3-8cee-fef02e049fa1", "fields": { - "question": 348, - "contribution": 1873, + "question": 322, + "contribution": 3434, "answer": 1, - "count": 1 + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e860552d-e426-473a-8f42-51146446679c", + "pk": "cd778127-a276-4229-957f-979af3c6382d", "fields": { - "question": 338, - "contribution": 3404, + "question": 417, + "contribution": 3984, "answer": 4, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e861d16c-c9ba-4af1-a382-de2b3b68299d", + "pk": "cd91182f-e0de-456a-9be0-a6ff4ba7cdc2", "fields": { - "question": 341, - "contribution": 3450, - "answer": 2, - "count": 2 + "question": 432, + "contribution": 4090, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e86744e5-1fc9-43c6-a053-4d9a9c3c2b5e", + "pk": "cdacd906-f10c-4c1c-8ae0-9b45eb7d5923", "fields": { - "question": 335, - "contribution": 3631, + "question": 325, + "contribution": 1635, "answer": 3, - "count": 10 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e868278b-1a99-4324-80fe-e6b5155ff278", + "pk": "cdb0b1cc-a0dd-4620-9c68-31feb0155cae", "fields": { - "question": 345, - "contribution": 3515, - "answer": 1, - "count": 6 + "question": 428, + "contribution": 4204, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e86b1ce9-11ea-461b-a95d-7789124aa6a3", + "pk": "cdb23099-6519-4b96-854f-7c58024cff0b", "fields": { - "question": 317, - "contribution": 908, - "answer": 5, - "count": 4 + "question": 477, + "contribution": 3722, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e87418b1-15f6-43d0-a256-b83e5b94b2c6", + "pk": "cdb85d9f-c79c-4630-9e65-1780244fc0af", "fields": { - "question": 327, - "contribution": 3423, + "question": 367, + "contribution": 1634, "answer": 3, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e874ac4b-4f13-49b0-8257-41e8749b6aba", + "pk": "cdbc579f-bc0f-47e3-bb9b-36c5c02c8bb9", "fields": { - "question": 473, - "contribution": 4120, - "answer": -2, - "count": 2 + "question": 343, + "contribution": 1868, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e87fafdf-0b02-45e6-a265-4e9b5bcec421", + "pk": "cdbe668c-86a6-4821-885b-4acac06a94e6", "fields": { - "question": 368, - "contribution": 3680, - "answer": 4, - "count": 3 + "question": 323, + "contribution": 1658, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8888937-fc5a-4428-83b4-543a5c1461aa", + "pk": "cdc28bfe-b011-40e3-9e6f-7defd445eb80", "fields": { - "question": 317, - "contribution": 4138, - "answer": 3, - "count": 1 + "question": 326, + "contribution": 837, + "answer": 1, + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e893886d-d1a4-4753-9848-d96d492c029c", + "pk": "cdc89f55-bd72-4e56-af35-813e1016e6e4", "fields": { - "question": 262, - "contribution": 3406, - "answer": 1, - "count": 8 + "question": 326, + "contribution": 3463, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e894163e-07f7-4f3e-8254-5de7e24bf1df", + "pk": "cdd2125d-01f0-49e2-b69c-b50a5e0459d5", "fields": { - "question": 340, - "contribution": 3466, + "question": 328, + "contribution": 1288, "answer": 3, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e89489b1-ea16-4d77-adbc-5251a9a5bb50", + "pk": "cdd4e018-cd77-43d7-876f-6ce6b321d11c", "fields": { - "question": 346, - "contribution": 3939, + "question": 343, + "contribution": 3405, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e89a0ebb-bfc7-43c8-b75d-e5bcec181ed9", + "pk": "cdd71a89-b0ce-4013-9dc5-aa3dbd326965", "fields": { - "question": 315, - "contribution": 3390, - "answer": 5, - "count": 6 + "question": 322, + "contribution": 822, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8a6d6b0-f435-4822-a319-2477b835a7eb", + "pk": "cdec3761-f65d-4da5-8881-bd8202b73811", "fields": { - "question": 372, - "contribution": 4046, - "answer": 1, - "count": 4 + "question": 258, + "contribution": 1658, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8ac34ec-d507-4652-b635-0129f72cdb38", + "pk": "cdefb372-c0ce-4933-82ad-095ec7b64b81", "fields": { - "question": 361, - "contribution": 1836, - "answer": 1, - "count": 9 + "question": 349, + "contribution": 1749, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8aca503-ebd7-4180-a6fc-3ce4c2b29833", + "pk": "cdf5d339-61ca-405b-bd59-6a4a11f3cd9b", "fields": { - "question": 367, - "contribution": 4116, - "answer": 4, - "count": 2 + "question": 473, + "contribution": 3440, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8aeb6f6-ad90-40e0-9acd-939c3025ae76", + "pk": "cdf62445-9e5b-45a2-9b3b-8eaa11f9a13e", "fields": { - "question": 367, - "contribution": 4128, - "answer": 5, - "count": 1 + "question": 359, + "contribution": 3920, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8b026c3-b1db-43d0-9e5d-98084b6d3650", + "pk": "cdf71e48-8191-415f-b669-19d4c0780e8b", "fields": { - "question": 326, - "contribution": 3726, + "question": 354, + "contribution": 3545, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8b3708c-2550-4106-a441-287ba5bdd300", + "pk": "cdf97720-dd55-4079-ae94-988d906640be", "fields": { - "question": 347, - "contribution": 1863, - "answer": 2, - "count": 2 + "question": 317, + "contribution": 4118, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8bac4c2-228b-4413-8e6f-363a250d6bf9", + "pk": "cdfd7f1e-765a-4fd1-ad75-5e38c7deb067", "fields": { - "question": 473, - "contribution": 880, - "answer": 1, - "count": 1 + "question": 329, + "contribution": 1613, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8dafa7f-8f80-4e2a-a9cd-3ed4cda0b412", + "pk": "ce035059-4803-4dc4-9c18-9fe5dc3ae074", "fields": { - "question": 349, - "contribution": 1863, + "question": 338, + "contribution": 886, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8df1d31-87a4-42e9-a471-65de935f0e4b", + "pk": "ce1a5212-6225-4530-bd73-b1a92863a932", "fields": { - "question": 262, - "contribution": 4084, + "question": 260, + "contribution": 880, "answer": 3, - "count": 5 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8e9107c-61ab-4e2c-8407-a1c1b06f6aed", + "pk": "ce1a8833-1d8e-436e-b2d1-d074c40f1122", "fields": { - "question": 359, - "contribution": 3919, - "answer": 1, + "question": 354, + "contribution": 3517, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8e9a98d-fd73-42f5-b1af-463e455cde29", + "pk": "ce2602ce-20ca-46d6-b425-874d4d5e77e8", "fields": { - "question": 401, - "contribution": 4119, + "question": 347, + "contribution": 1204, "answer": 1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8ebe3c5-06c2-4ce5-ab22-9879162ca1f1", + "pk": "ce2c1f14-35a9-4696-9d83-de73008eb33c", "fields": { - "question": 370, - "contribution": 1781, + "question": 350, + "contribution": 864, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8efefd6-5dba-4f44-b78d-401b1d0c8d61", + "pk": "ce45b893-db7b-4b3c-af51-0fba246062d5", "fields": { - "question": 257, - "contribution": 1634, - "answer": 4, + "question": 363, + "contribution": 1827, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8faafa0-c930-4c3b-9454-06a98ea91f87", + "pk": "ce542530-6ce6-4af8-bc32-8b8689b4453d", "fields": { - "question": 357, - "contribution": 1786, + "question": 345, + "contribution": 3896, "answer": 1, - "count": 4 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8fb1177-acd4-4063-9267-9b63bb1d698e", + "pk": "ce566596-34a9-4d1e-b299-b109ec8c2bab", "fields": { - "question": 339, - "contribution": 826, - "answer": 0, - "count": 2 + "question": 260, + "contribution": 884, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8fb7d6b-4b1f-4f32-acb4-81a4db3fe7fd", + "pk": "ce57ef2d-3389-4c33-b7e3-eb24cda4125d", "fields": { - "question": 316, - "contribution": 4120, - "answer": 4, - "count": 3 + "question": 257, + "contribution": 3390, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8fbacd2-f10d-4769-a127-9bfc00091d1f", + "pk": "ce599e1f-e6ed-4169-9120-b8dd74d72e9b", "fields": { - "question": 339, - "contribution": 4052, + "question": 475, + "contribution": 1662, "answer": 0, - "count": 2 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e8fdb690-8b43-4e4d-9582-0d4ca331c995", + "pk": "ce59ecdc-1e15-4bfd-8f95-4cb038f19488", "fields": { - "question": 258, - "contribution": 836, + "question": 329, + "contribution": 913, "answer": 1, - "count": 13 + "count": 31 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e900af57-d8a5-4f37-8a96-2b72813f63ab", + "pk": "ce5c4887-c8f9-48d5-94ee-d4d8aaa04911", "fields": { - "question": 322, - "contribution": 4120, + "question": 319, + "contribution": 3474, "answer": 2, - "count": 10 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e901f160-28e9-4cd2-9a07-1209ac3668cd", + "pk": "ce6230fa-83ad-4e6f-8449-fa658134767f", "fields": { - "question": 377, - "contribution": 3775, + "question": 354, + "contribution": 4267, "answer": 1, - "count": 4 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e90c3250-40a3-48e3-acc1-4d2ee8408042", + "pk": "ce6e6f17-ba10-4776-9125-60bf64a20cd5", "fields": { - "question": 331, - "contribution": 4120, - "answer": 2, - "count": 6 + "question": 260, + "contribution": 3406, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9109f68-563d-464a-a280-e920c75945cc", + "pk": "ce7bfffd-0334-457d-92dd-2da654b36e4f", "fields": { - "question": 371, - "contribution": 3566, + "question": 461, + "contribution": 4284, "answer": 1, - "count": 8 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e913916b-355a-46be-9148-9f823649dcb3", + "pk": "ce8467e2-dc8c-4665-adaa-3747c0e26638", "fields": { - "question": 322, - "contribution": 908, - "answer": 5, - "count": 2 + "question": 326, + "contribution": 3355, + "answer": 1, + "count": 23 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e919b280-ff66-4fe9-bb58-ab4c86dc6e66", + "pk": "ce8a15b0-c01e-449e-843d-0168ff46e599", "fields": { - "question": 477, - "contribution": 3722, - "answer": -3, - "count": 1 + "question": 347, + "contribution": 3515, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e91d01ef-c927-47cb-bda5-39f6090cb33b", + "pk": "ce8a5070-ff3b-4c0e-9bb3-a0534de48405", "fields": { - "question": 434, - "contribution": 4140, - "answer": 3, - "count": 1 + "question": 321, + "contribution": 3474, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e92347fe-4cea-45c4-b028-838e505d3d73", + "pk": "ce9a2466-eff0-454e-91c4-fa97bf751b90", "fields": { - "question": 457, - "contribution": 4141, - "answer": 2, - "count": 1 + "question": 326, + "contribution": 4085, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e92407b2-8cf6-4075-880e-0d1bae5ebe8a", + "pk": "cea80709-91c0-41e5-8973-4f111d0281bd", "fields": { - "question": 372, - "contribution": 3693, + "question": 347, + "contribution": 1206, "answer": 2, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e92df1e8-b58b-4644-aaa6-af10769520dc", + "pk": "ceaa7d80-6940-4415-b5f9-8c0f0b891b0c", "fields": { - "question": 355, - "contribution": 1266, + "question": 322, + "contribution": 1634, "answer": 1, - "count": 2 + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e92e6503-fc9d-43ce-87af-d1d0605b6cd8", + "pk": "ceabb332-e708-4d46-9342-6348bf344513", "fields": { - "question": 338, - "contribution": 3745, - "answer": 3, - "count": 1 + "question": 347, + "contribution": 4192, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e933a80c-a334-4852-b7de-67de05f47f46", + "pk": "ceaf743e-021b-4362-8344-01cda3bf8b4d", "fields": { - "question": 317, - "contribution": 880, - "answer": 2, - "count": 10 + "question": 360, + "contribution": 1810, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e93ad69f-4ed3-4f49-ba7b-a701e0b21053", + "pk": "cec07e12-8967-44a8-91b0-5c04e716b2af", "fields": { - "question": 344, - "contribution": 3451, - "answer": 4, - "count": 2 + "question": 328, + "contribution": 3423, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e93f05aa-e1b4-4ad0-a760-61a243bb3806", + "pk": "cec5a1a1-928a-493a-9707-c515f2fa752f", "fields": { - "question": 341, - "contribution": 3466, - "answer": 2, - "count": 1 + "question": 360, + "contribution": 3929, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e93f4a82-e25d-4a57-a64a-9eeb674ad70f", + "pk": "ced4609d-e326-4073-a643-9833f59a1723", "fields": { - "question": 354, - "contribution": 4039, - "answer": 1, + "question": 477, + "contribution": 1288, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e94603ae-9aeb-4d34-8135-a552be46f89d", + "pk": "ced79fd8-5236-45ad-a555-702bbcd981bc", "fields": { - "question": 473, - "contribution": 3486, + "question": 328, + "contribution": 3883, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e94f99b3-b331-4e92-9e93-70fa9eddebf1", + "pk": "cef90069-d2d4-4e59-8da3-f9e84b1c511d", "fields": { - "question": 327, - "contribution": 4085, - "answer": 4, + "question": 341, + "contribution": 1640, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e957813a-11c7-4d74-bccd-a43602852209", + "pk": "cefa304f-10ee-4a90-9ffc-cd8648073531", "fields": { - "question": 477, - "contribution": 3355, - "answer": 0, - "count": 21 + "question": 341, + "contribution": 3723, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9679c05-1ddc-4bf3-9e04-94d833f78662", + "pk": "cf116b80-8acc-4332-919c-7d335d41f203", "fields": { - "question": 259, - "contribution": 3390, - "answer": 5, + "question": 355, + "contribution": 3834, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e96e46b0-69ea-41ea-8889-ef77a65b8762", + "pk": "cf1f1d90-5567-4768-8880-dc29d7d1bb36", "fields": { - "question": 472, - "contribution": 3683, + "question": 317, + "contribution": 4128, "answer": 1, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e971a733-078e-419b-a4f1-1e83a459f6ca", + "pk": "cf278981-bb5a-441c-a96f-fa7ce59c92e0", "fields": { - "question": 258, - "contribution": 4138, - "answer": 1, - "count": 15 + "question": 477, + "contribution": 1780, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e97830cf-b71a-410c-ac93-d7445d3eb616", + "pk": "cf306be4-20c8-46b6-87b6-ac117f4327a7", "fields": { - "question": 354, - "contribution": 4268, + "question": 345, + "contribution": 1228, "answer": 4, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9810157-6942-4d5c-8500-bf870571e3ad", + "pk": "cf32d2b5-5417-4b02-95b5-0653d27dd167", "fields": { - "question": 349, - "contribution": 4192, - "answer": 2, - "count": 1 + "question": 367, + "contribution": 1634, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9814705-c15d-4cc4-b8fc-90c9e7a3454c", + "pk": "cf34fd3c-681c-42ff-9d24-9bd6c09bf203", "fields": { - "question": 341, - "contribution": 3759, - "answer": 2, - "count": 1 + "question": 257, + "contribution": 1658, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e98e5c01-82a5-4ea4-ba4d-80fc55862473", + "pk": "cf452a52-646d-47ab-9aa2-5affb997b9ac", "fields": { - "question": 366, - "contribution": 3881, - "answer": 2, - "count": 3 + "question": 258, + "contribution": 3434, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e99179a7-c070-49f7-96da-6fb451ce47a4", + "pk": "cf5693d4-f187-4a04-af5b-80eafd1bd813", "fields": { - "question": 457, - "contribution": 4141, - "answer": 1, + "question": 320, + "contribution": 3354, + "answer": 2, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e993f79c-8d9a-41d5-89fe-ac56d6c59771", + "pk": "cf574493-5dbb-4fce-b36c-452f9fb81051", "fields": { - "question": 477, - "contribution": 3463, + "question": 354, + "contribution": 1849, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e99de299-ca04-4247-9a70-3666bead5155", + "pk": "cf61d5f3-e77f-41ea-aa78-ae33ac3a5b2c", "fields": { - "question": 341, - "contribution": 3727, - "answer": 2, + "question": 339, + "contribution": 89, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9a183ac-20d8-4b2d-98e5-b5870cd30696", + "pk": "cf721d88-0ff8-4456-b244-e9c599d302ee", "fields": { - "question": 348, - "contribution": 1822, - "answer": 1, - "count": 3 + "question": 347, + "contribution": 3546, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9a925f8-3f39-4a38-8594-15379b013ab2", + "pk": "cf840e27-33b3-4f1c-8283-e2d39f5ee48b", "fields": { - "question": 329, - "contribution": 4101, + "question": 360, + "contribution": 1807, "answer": 3, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9aa77e7-de0a-40bb-b763-6e5da452d962", + "pk": "cf852e55-c244-4697-a447-6564372b5140", "fields": { - "question": 369, - "contribution": 1807, - "answer": 5, + "question": 345, + "contribution": 1228, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9aee183-f072-45cc-98f3-e4514c007135", + "pk": "cf8ad414-af55-4872-8e1f-be5098df47c0", "fields": { - "question": 360, - "contribution": 3648, - "answer": 3, - "count": 1 + "question": 355, + "contribution": 1154, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9bad428-3708-4df4-9897-fe30f4950616", + "pk": "cf9432ad-78fc-4af4-89a6-daa8c30b7a42", "fields": { - "question": 338, - "contribution": 3508, - "answer": 4, - "count": 1 + "question": 262, + "contribution": 3390, + "answer": 2, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9be06c0-c4a1-4420-8654-db280e564cbc", + "pk": "cfabb3c3-8094-4387-a053-a882cd99a088", "fields": { - "question": 367, - "contribution": 1612, - "answer": 3, - "count": 6 + "question": 258, + "contribution": 4022, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9c0ab40-6ad9-43ab-97ad-b52c09e138f4", + "pk": "cfbbb5da-9114-4eca-8320-ebf7b205c056", "fields": { - "question": 259, - "contribution": 3434, - "answer": 5, - "count": 1 + "question": 354, + "contribution": 3782, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9da372e-80ff-4e03-99b8-3c81f5d557ba", + "pk": "cfc314ba-0ccc-44b6-9218-71b274777c02", "fields": { - "question": 363, - "contribution": 3893, + "question": 473, + "contribution": 1656, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9db553b-589e-4146-919c-115ad7632942", + "pk": "cfc3edec-41b7-41b7-9d09-3095017a2654", "fields": { - "question": 477, - "contribution": 1186, - "answer": -3, - "count": 3 + "question": 354, + "contribution": 3518, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9e115ee-9d78-45c5-ba38-021c28c8feb7", + "pk": "cfcbc6f8-0093-43a2-9db2-efe38de8b4a9", "fields": { - "question": 345, - "contribution": 4191, - "answer": 2, + "question": 361, + "contribution": 3921, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9e139b6-8685-4435-916c-4bf695369b88", + "pk": "cfcd7ea2-1773-4d22-a119-879ca05974fc", "fields": { - "question": 356, - "contribution": 1266, + "question": 331, + "contribution": 3390, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9e6481b-c8fa-4569-a551-1d943fdebb70", + "pk": "cfd70e52-86d1-468b-819d-485433a54e03", "fields": { - "question": 321, - "contribution": 4120, - "answer": 2, - "count": 14 + "question": 363, + "contribution": 1826, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9e96ce2-cfef-4cf0-840f-244c03abcdb7", + "pk": "cfe710bc-efc1-4374-bac0-cfc54f3cd065", "fields": { - "question": 262, - "contribution": 3739, + "question": 437, + "contribution": 4052, "answer": 2, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9ea4377-c31c-4f5f-aa44-5cccdaef73b3", + "pk": "cff1a173-6013-4579-adff-636049b8f2f3", "fields": { - "question": 367, - "contribution": 1626, - "answer": 3, - "count": 4 + "question": 349, + "contribution": 3545, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9f53392-b6c7-4847-8667-95f269eba7d9", + "pk": "cff2d60f-dc08-4817-9369-91369d75c141", "fields": { - "question": 357, - "contribution": 3546, - "answer": 3, + "question": 347, + "contribution": 1880, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "e9fd5d58-41e1-4856-bfc5-3cc8f8c2ca00", + "pk": "d02b4d59-09c3-4752-be71-95568c6b71fc", "fields": { - "question": 414, - "contribution": 4038, - "answer": 1, - "count": 2 + "question": 323, + "contribution": 3665, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea088bff-4627-43c0-99e4-c0f73758bd5b", + "pk": "d02c55e7-bcf5-4e37-994b-449d9c666af5", "fields": { - "question": 477, - "contribution": 4152, - "answer": -1, - "count": 4 + "question": 359, + "contribution": 1804, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea10a6a8-90bb-4458-a3fb-0914e348e219", + "pk": "d033f3ec-3c15-4679-a4ed-fc2b6f6a5570", "fields": { - "question": 317, - "contribution": 4116, - "answer": 4, - "count": 2 + "question": 476, + "contribution": 4084, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea1eea39-3317-4cac-8e1d-34cc0efcd0a6", + "pk": "d045244c-c5c1-41b9-a2c0-15eb963dde42", "fields": { - "question": 347, - "contribution": 3939, + "question": 343, + "contribution": 3528, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea260c62-f908-4594-b1ff-84e7eaf0b530", + "pk": "d049ea5d-672e-497e-8a5d-4fe88424fbd5", "fields": { - "question": 327, - "contribution": 1154, + "question": 326, + "contribution": 4085, "answer": 2, - "count": 6 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea2bbcf0-9770-4124-929f-93b29b3d81fd", + "pk": "d04d8885-9278-4375-a908-ca2b73bb45d9", "fields": { - "question": 323, + "question": 319, "contribution": 3725, "answer": 2, - "count": 6 + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea36ad07-89f4-4c4d-afcc-02894916608c", + "pk": "d04daec9-eedf-4786-b896-00e661793def", "fields": { - "question": 327, - "contribution": 3885, + "question": 259, + "contribution": 1724, "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea583dd0-592f-4351-94e6-226b681df34d", + "pk": "d05211db-b8e2-4ba6-8b71-dfb6000bcbb6", "fields": { - "question": 323, - "contribution": 4116, - "answer": 5, + "question": 345, + "contribution": 3822, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea5c259f-456f-450c-8c5b-4e8539437861", + "pk": "d05c9bb9-1b9b-4b4c-aced-7f0c3c08321c", "fields": { - "question": 327, - "contribution": 1186, + "question": 340, + "contribution": 3404, + "answer": 4, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "d068c3f3-3f47-4c41-9120-2a7fedbc5b2e", + "fields": { + "question": 259, + "contribution": 3354, "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea604031-9e8d-4c42-8b86-9d885de1a0e0", + "pk": "d07f3fcf-8d95-4f40-91e2-acd3b5cab88e", "fields": { - "question": 348, - "contribution": 919, + "question": 316, + "contribution": 908, + "answer": 5, + "count": 4 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "d07f88c8-ccad-4df2-9ff6-1b3bda5b33ea", + "fields": { + "question": 359, + "contribution": 3647, "answer": 1, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea61695a-1d78-49a3-810e-94bafa4eb650", + "pk": "d082df3a-7a26-4760-85a2-ff07a5b89f8a", "fields": { "question": 357, - "contribution": 3546, - "answer": 2, - "count": 3 + "contribution": 3847, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea61b378-6f68-4db0-b419-91eb97e7933e", + "pk": "d08858f7-0d6b-4cbc-b85c-5f4e2a89ffee", "fields": { - "question": 368, - "contribution": 1659, + "question": 255, + "contribution": 3725, "answer": 1, - "count": 9 + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea6aa47c-5955-4017-9ddf-8e0df0711c54", + "pk": "d09697d1-3512-47a5-be59-1ab17a5cb52e", "fields": { - "question": 476, - "contribution": 4084, + "question": 340, + "contribution": 1702, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea76280d-e4f4-43a1-9d27-aef4239396aa", + "pk": "d0a1fab1-12ab-4b00-90f3-0d88784344b2", "fields": { - "question": 475, - "contribution": 3450, + "question": 255, + "contribution": 4138, "answer": 1, - "count": 1 + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea78b6ce-bc7d-4806-8942-279c6da49837", + "pk": "d0a3e4c4-7f62-4c0a-af1b-b7d2e081267f", "fields": { - "question": 340, - "contribution": 1638, - "answer": 2, - "count": 6 + "question": 328, + "contribution": 881, + "answer": 3, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea7bc899-77d9-465c-86f4-0e11e1f49915", + "pk": "d0a46559-de3f-46d3-9bdd-14fa6e2bc036", "fields": { - "question": 366, - "contribution": 3631, + "question": 337, + "contribution": 3486, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea7e4009-cffc-40eb-9821-9b29aa5e9e23", + "pk": "d0b5ab67-b31d-41ac-8b98-669827a250cf", "fields": { - "question": 347, - "contribution": 3517, + "question": 345, + "contribution": 1860, "answer": 1, - "count": 5 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea8129b7-d40b-4f55-b1b0-c384a436018a", + "pk": "d0bc110e-6b3c-4c90-8b36-0f11ce7d0efc", "fields": { - "question": 258, - "contribution": 822, + "question": 368, + "contribution": 3859, "answer": 1, - "count": 5 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea81877e-73e9-483f-b087-30abd1a72895", + "pk": "d0c19a57-3998-4b95-bdc0-2a0c5af5429d", "fields": { - "question": 340, - "contribution": 1200, - "answer": 4, + "question": 345, + "contribution": 1645, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea8b3611-5faa-4839-aaab-a7eea61097d0", + "pk": "d0d2e7e0-2f2a-45a4-930e-4b96d2920a46", "fields": { - "question": 347, - "contribution": 3606, - "answer": 3, - "count": 3 + "question": 357, + "contribution": 3516, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ea9f56d7-fb3b-48e5-9727-af9850b836e9", + "pk": "d0d4e22d-2bcf-4049-b1d9-5167c3eabc02", "fields": { - "question": 345, - "contribution": 1246, + "question": 262, + "contribution": 4138, + "answer": 2, + "count": 9 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "d0d5321e-690b-41ac-9305-d4e8fc5d0855", + "fields": { + "question": 343, + "contribution": 3896, "answer": 1, - "count": 3 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eaa0f004-3c6b-43a7-acef-a183c4f00d2e", + "pk": "d0d6b305-08be-40f1-b03c-34824402f083", "fields": { - "question": 332, - "contribution": 3551, - "answer": 3, - "count": 1 + "question": 320, + "contribution": 4118, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eaa49619-3569-4360-b5d9-829340a020e7", + "pk": "d0d909cc-8dc5-4e0f-bcf5-065578711c03", "fields": { - "question": 336, - "contribution": 1702, - "answer": 3, - "count": 1 + "question": 343, + "contribution": 4187, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eaa86949-6d9f-4a9a-bb16-26afc751f349", + "pk": "d0df252e-60e9-4b2d-9202-2c8ff890076b", "fields": { - "question": 437, - "contribution": 4140, - "answer": 3, - "count": 1 + "question": 344, + "contribution": 4188, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eab2d2d2-8556-4550-a004-1da7725aba24", + "pk": "d0e043d6-2675-47a4-b771-9fd6b0d78d50", "fields": { - "question": 349, - "contribution": 4189, - "answer": 4, + "question": 356, + "contribution": 3610, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eab9a153-7036-49c5-b538-d40d69c67b7c", + "pk": "d0eb76cd-3a77-4cf3-a1af-daf3e8db83dd", "fields": { - "question": 360, - "contribution": 1835, - "answer": 3, - "count": 1 + "question": 338, + "contribution": 788, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eac3a9c2-3ab2-4c35-87b9-0bbba863e1e0", + "pk": "d0ee76fa-9c7a-4432-899f-7d0afaf3b7bb", "fields": { - "question": 344, - "contribution": 3934, + "question": 354, + "contribution": 4243, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ead186aa-5aa6-4219-9291-924aead0d57a", + "pk": "d0f342c1-0104-49d6-873a-51ff47503f35", "fields": { - "question": 473, - "contribution": 3685, - "answer": -1, - "count": 1 + "question": 321, + "contribution": 1724, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ead3e11d-d2c8-45f1-81be-63060d8adef7", + "pk": "d0f9f1a1-54e6-4901-9cd0-bb188cafdf82", "fields": { - "question": 349, - "contribution": 3941, + "question": 477, + "contribution": 3407, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eadc008f-70fd-46b2-a91d-571a2a2f3eda", + "pk": "d0fcd663-8145-488d-9999-333a095700cc", "fields": { - "question": 340, - "contribution": 3454, + "question": 341, + "contribution": 1660, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eae49ca3-e75d-428d-a0e7-8ae2804e024e", + "pk": "d1083eed-da15-4fe8-8185-d552938b531b", "fields": { - "question": 262, - "contribution": 1612, - "answer": 5, - "count": 2 + "question": 328, + "contribution": 1154, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eae6155e-b35e-44e6-96fb-b96a8f2722d9", + "pk": "d1088f75-8e5a-4da0-a0ec-7e6ff53ad6b6", "fields": { - "question": 259, - "contribution": 1634, - "answer": 3, - "count": 3 + "question": 337, + "contribution": 840, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eae78185-5320-46b1-95a2-051df059bae4", + "pk": "d10bdde2-6e44-46fc-8d28-ec79fd5984f3", "fields": { - "question": 344, - "contribution": 3545, - "answer": 5, - "count": 1 + "question": 347, + "contribution": 1202, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eae8964c-4d9f-4f44-ad14-959a21f0b1a6", + "pk": "d10f26a4-2ddb-467e-b703-2d7393274287", "fields": { - "question": 473, - "contribution": 4128, + "question": 321, + "contribution": 822, "answer": 2, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eaf4b6c6-c2a5-4555-960c-88ea5c37ca9a", + "pk": "d1193695-92ad-43bb-b5fb-21dc8c9c93c3", "fields": { - "question": 329, - "contribution": 1287, - "answer": 1, - "count": 25 + "question": 349, + "contribution": 3546, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eaf5cb52-7b0c-404c-9e32-6427f57ae728", + "pk": "d11976d9-1ef2-4ee5-b62c-398858f0dbf7", "fields": { - "question": 340, - "contribution": 3751, - "answer": 1, + "question": 360, + "contribution": 3920, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eaf5d102-f3b3-445c-89a8-d9f354ff3819", + "pk": "d125962b-7362-4bb9-bb2a-b87dab5e8fe2", "fields": { - "question": 258, - "contribution": 1658, - "answer": 1, - "count": 10 + "question": 257, + "contribution": 880, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eaf83bf3-34c5-4cc5-bd66-f3e556568a4f", + "pk": "d12f8e25-914e-47f3-b4ac-98622b50e00a", "fields": { - "question": 325, - "contribution": 3519, - "answer": 2, - "count": 7 + "question": 476, + "contribution": 3434, + "answer": 0, + "count": 26 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eafb07a5-bd5a-491e-bf48-2e28a616eeb1", + "pk": "d13737da-2e18-4f97-b6ac-8e1d19355e0c", "fields": { - "question": 323, - "contribution": 3665, - "answer": 3, + "question": 363, + "contribution": 1827, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eafe74a6-619c-4821-9185-f2052d4bf771", + "pk": "d13936d0-3e22-4710-9790-41d1b0933ac2", "fields": { - "question": 346, - "contribution": 3555, - "answer": 1, - "count": 5 + "question": 341, + "contribution": 4052, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb060cc2-a25d-4b71-90ca-a607a506688c", + "pk": "d139e1e7-bffa-4e04-ae0f-b34d0541f97a", "fields": { - "question": 338, - "contribution": 1702, - "answer": 2, - "count": 1 + "question": 341, + "contribution": 3703, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb161081-7dfe-452e-9a05-ba77b7a8a4d1", + "pk": "d13bea5b-a4e8-4309-bb2c-0b579c09ca68", "fields": { - "question": 349, - "contribution": 3608, - "answer": 2, + "question": 351, + "contribution": 3406, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb169abc-1b32-4027-81c9-e9ddbc2f4d51", + "pk": "d1480524-2d2f-48b5-891e-474831203828", "fields": { - "question": 345, - "contribution": 3934, - "answer": 1, + "question": 337, + "contribution": 3759, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb2cf9dc-820b-4502-9519-b0797d34861a", + "pk": "d14bef9c-1107-4311-ba99-010ea5c99e44", "fields": { - "question": 258, - "contribution": 4100, - "answer": 1, - "count": 14 + "question": 476, + "contribution": 3679, + "answer": -1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb2e3729-3d70-4896-bb3b-4aaed0576104", + "pk": "d14dc42a-0864-4fad-b1ac-09852eb33122", "fields": { - "question": 338, - "contribution": 1921, - "answer": 3, + "question": 339, + "contribution": 3685, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb31027e-bcbf-49de-8513-5d6711acc574", + "pk": "d152f45a-532b-4bc1-9bb1-29796c15e668", "fields": { - "question": 331, - "contribution": 884, - "answer": -2, + "question": 340, + "contribution": 3703, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb3c8989-b482-4852-800c-22f628fc634a", + "pk": "d1681ea8-ece3-4c78-98bf-922a7b7de003", "fields": { - "question": 326, - "contribution": 4117, + "question": 339, + "contribution": 1662, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb43a0ee-dec9-489d-8488-3c452e6015f3", + "pk": "d172090a-214b-44ec-b04e-f12140c28e79", "fields": { - "question": 473, - "contribution": 4120, - "answer": 2, - "count": 3 + "question": 476, + "contribution": 884, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb484efb-533c-4880-b98a-28d6b1dac38a", + "pk": "d172c453-f143-4ae4-842d-47add6513808", "fields": { - "question": 369, - "contribution": 3653, - "answer": 1, - "count": 1 + "question": 339, + "contribution": 1702, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb4856a9-e241-46d3-a4ff-ab13de38d353", + "pk": "d1891bcf-c82d-4a7f-a79a-0ff6dbfb1981", "fields": { - "question": 360, - "contribution": 1804, - "answer": 1, - "count": 8 + "question": 357, + "contribution": 3849, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb48d169-c80e-423d-9153-da4c3205c301", + "pk": "d194b3cd-1c3f-4254-8e21-6049906f7431", "fields": { - "question": 351, - "contribution": 3440, - "answer": 1, - "count": 1 + "question": 327, + "contribution": 909, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb563d89-6e06-4cd8-bc96-be3e7c0ade0f", + "pk": "d1aaf7d2-ea6e-4613-8d38-a98a23c5c5fc", "fields": { - "question": 319, - "contribution": 3474, - "answer": 5, + "question": 317, + "contribution": 908, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb5939b9-e315-4eac-99cb-4f681bc5eff6", + "pk": "d1ab796d-ee73-4ab2-a999-ac69a0a1b7e9", "fields": { - "question": 359, - "contribution": 3917, - "answer": 3, - "count": 1 + "question": 260, + "contribution": 1634, + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb6518f7-c62b-4ef4-aeae-eef29efa399b", + "pk": "d1b17c32-0872-405e-9aa1-fd6668ceaf2c", "fields": { - "question": 319, - "contribution": 3462, - "answer": 5, + "question": 347, + "contribution": 1842, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb666680-dfc8-403e-b942-fc251067e935", + "pk": "d1c3441e-9e39-4a93-8783-902c5598a135", "fields": { - "question": 329, - "contribution": 4153, + "question": 326, + "contribution": 3391, "answer": 2, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb6dafcb-153c-41d4-bcd1-0d7d5886c14c", + "pk": "d1ca2057-4da8-4619-9933-dd8455995ea5", "fields": { - "question": 372, - "contribution": 3454, + "question": 348, + "contribution": 3941, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb70464f-47bb-4bb7-a0ea-205f73bdddd8", + "pk": "d1cc6e61-23f7-4b43-a347-180717586c58", "fields": { - "question": 343, - "contribution": 1851, + "question": 401, + "contribution": 4148, "answer": 1, - "count": 2 + "count": 24 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb751613-ca7b-442b-8f7c-553a529119bd", + "pk": "d1d3066b-99d9-4777-add6-490aa1503efb", "fields": { - "question": 339, - "contribution": 886, - "answer": -2, - "count": 1 + "question": 322, + "contribution": 4084, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb836171-188b-4ca4-8139-991a068680db", + "pk": "d1da2158-0ae5-4912-9f30-a71ffc5e5d48", "fields": { - "question": 1, - "contribution": 4300, - "answer": 1, - "count": 16 + "question": 372, + "contribution": 3745, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb83ec5e-86aa-4aac-84a6-b438c90b78a6", + "pk": "d1ec929f-e9e4-4014-abbf-46a4a754589e", "fields": { - "question": 329, - "contribution": 3423, - "answer": 4, - "count": 1 + "question": 348, + "contribution": 3608, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb84778f-4695-498e-b517-99c1c4932b46", + "pk": "d1edd638-e853-4c79-a09f-1faea3fc63a4", "fields": { - "question": 320, - "contribution": 4120, - "answer": 3, - "count": 6 + "question": 355, + "contribution": 4228, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eb9a89fd-6fc1-4634-a7a7-89640fbf29cf", + "pk": "d1f5bbb0-a334-4706-923c-800100053f7a", "fields": { - "question": 320, - "contribution": 1837, - "answer": 3, - "count": 5 + "question": 397, + "contribution": 3775, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eba1918b-b1dc-4572-9bf6-c9e37144d759", + "pk": "d1faf5d8-52ca-419a-b217-ddc7fbf0f1fa", "fields": { - "question": 475, - "contribution": 4052, + "question": 321, + "contribution": 884, "answer": 1, - "count": 2 + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ebaf22af-a346-4eb5-bf23-ba6f98533fd1", + "pk": "d1fd3681-3c27-4c51-ac8e-aa98f12db3e0", "fields": { - "question": 321, - "contribution": 3739, - "answer": 3, - "count": 4 + "question": 349, + "contribution": 1250, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ebb1508c-7b4f-426d-9165-8a4db8d242f5", + "pk": "d2071ca6-c1b1-40cc-89d1-c641fec88177", "fields": { - "question": 363, - "contribution": 3921, + "question": 338, + "contribution": 3416, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ebb38dc4-3337-414c-a0b6-7e298d39f464", + "pk": "d208e039-5515-4aa4-b965-78c946e66b97", "fields": { "question": 337, - "contribution": 1656, - "answer": 4, - "count": 1 + "contribution": 3727, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ebb47b6d-110d-45eb-b1a2-5d4d0d7e8ff8", + "pk": "d20e622a-d22d-44ba-bfac-496da7e7bfd3", "fields": { - "question": 362, - "contribution": 1810, - "answer": 5, + "question": 351, + "contribution": 3735, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ebc5c77f-3f37-439f-810d-d81000a2bc60", + "pk": "d2148bb1-24fa-4c5c-8e04-c8696a0ecd28", "fields": { - "question": 331, - "contribution": 4046, - "answer": -1, - "count": 1 + "question": 322, + "contribution": 3472, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ebcdf728-a312-4c48-ba0b-c5c7caef331e", + "pk": "d2150efb-2553-42af-8cdc-963868195106", "fields": { - "question": 473, - "contribution": 3354, - "answer": 0, - "count": 17 + "question": 363, + "contribution": 1826, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ebce8f9d-77e0-431f-aa48-dd588b907734", + "pk": "d21d47a1-f261-4e1c-bbd6-50c4f0cc5fc7", "fields": { - "question": 321, - "contribution": 4100, + "question": 333, + "contribution": 4154, "answer": 2, - "count": 11 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec20a3c9-89ba-4afa-82e0-c4a56b97b3a5", + "pk": "d227fc3d-b27d-43be-93f4-abd0d93a5d59", "fields": { - "question": 472, - "contribution": 4138, - "answer": 5, - "count": 11 + "question": 338, + "contribution": 1200, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec210192-abff-4d1e-831a-f8fcf293a114", + "pk": "d22a7ad3-6d4e-4238-8959-a2cbdec0b509", "fields": { - "question": 321, - "contribution": 1724, - "answer": 2, - "count": 2 + "question": 473, + "contribution": 4100, + "answer": 0, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec24268c-4137-44d0-9e1e-a97f9dec1304", + "pk": "d231a1af-01c1-46d4-9c95-44aae0d83684", "fields": { - "question": 343, - "contribution": 1727, - "answer": 1, + "question": 323, + "contribution": 3683, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec2d00a5-a484-4320-92f5-2a2230e478c7", + "pk": "d25daba5-ace9-4719-9f0a-39d3b3262e73", "fields": { - "question": 325, - "contribution": 1669, + "question": 323, + "contribution": 3406, "answer": 1, - "count": 8 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec326a0f-0e01-4ddf-a309-1c66a4ffb757", + "pk": "d26fb395-1477-4dd6-bbed-a56b9f845719", "fields": { - "question": 315, - "contribution": 4128, - "answer": 2, - "count": 10 + "question": 473, + "contribution": 3406, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec475b98-c5fe-4c11-82ff-b0d828d2f262", + "pk": "d272cd7d-6dc5-4784-9217-7efceef2c858", "fields": { - "question": 315, - "contribution": 4022, - "answer": 1, + "question": 340, + "contribution": 3723, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec5161aa-e6d2-4055-b953-2e5e9b931b2f", + "pk": "d2762cf4-fff8-4c0d-bae2-228cbdadb66f", "fields": { - "question": 371, - "contribution": 3886, - "answer": 1, + "question": 258, + "contribution": 1626, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec5455e6-fc78-4fc4-b907-e4bda0856d10", + "pk": "d276bc4e-a8b4-43c5-9c54-4d7a7d17bc75", "fields": { - "question": 472, - "contribution": 1634, - "answer": 5, - "count": 24 + "question": 317, + "contribution": 1837, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec56d238-5744-4ec1-af55-21e78d728a1f", + "pk": "d2771174-9ea8-4fec-af6b-57103e52b805", "fields": { - "question": 368, - "contribution": 3859, - "answer": 2, - "count": 3 + "question": 475, + "contribution": 804, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec695652-5752-4e7a-9d1a-483ca63b5a59", + "pk": "d27a7228-8d2e-4092-952c-8c4b77808326", "fields": { - "question": 317, - "contribution": 880, - "answer": 4, - "count": 3 + "question": 329, + "contribution": 1776, + "answer": 1, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec6fe60d-d489-4ea4-a08c-05970f44992b", + "pk": "d27b4191-0657-42f5-a655-43994804f341", "fields": { - "question": 333, - "contribution": 1282, - "answer": 3, - "count": 1 + "question": 326, + "contribution": 1777, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec754fd6-f4c7-48f3-ab89-8a1f381d54f4", + "pk": "d2904266-d9a8-4566-8791-89fb79d6aeed", "fields": { - "question": 258, - "contribution": 3474, - "answer": 5, + "question": 457, + "contribution": 4283, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec7553eb-8d0a-4cfe-b9aa-999419ef3663", + "pk": "d2978328-92ae-441b-b87d-6bf4e105e141", "fields": { - "question": 257, - "contribution": 3474, + "question": 322, + "contribution": 3394, "answer": 1, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec78fdd6-8b74-41b4-ad98-21a62dbe0cd3", + "pk": "d2adeea2-187a-43b8-90f2-cf0398c87ed8", "fields": { - "question": 477, - "contribution": 4153, + "question": 351, + "contribution": 3394, "answer": 3, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec7df177-80b1-40de-a692-dbf510539156", + "pk": "d2b180da-76c0-496b-a59d-5006e14598a3", "fields": { - "question": 327, - "contribution": 3589, - "answer": 2, - "count": 2 + "question": 355, + "contribution": 3546, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec8154d3-d945-42bc-a420-3341dba0a316", + "pk": "d2b759d8-6014-46fa-a6e7-93f735a21f5e", "fields": { - "question": 477, - "contribution": 1777, - "answer": 0, - "count": 18 + "question": 329, + "contribution": 1613, + "answer": 1, + "count": 24 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec843d48-facc-45de-bffd-61294f7d5e2c", + "pk": "d2b920b0-7d43-4939-b65b-038009cb4399", "fields": { - "question": 336, - "contribution": 3735, - "answer": 3, - "count": 1 + "question": 349, + "contribution": 1228, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec87a96f-3d25-4fe4-9c98-8beb006040d2", + "pk": "d2c479b7-300c-4119-87f0-11061a1372d9", "fields": { - "question": 255, - "contribution": 4100, - "answer": 4, - "count": 2 + "question": 472, + "contribution": 3795, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec8a2616-a76d-43eb-9070-631985dbf5cb", + "pk": "d2ee22ca-12c1-4fff-a14f-5a29e28ddf72", "fields": { - "question": 353, - "contribution": 4270, + "question": 319, + "contribution": 4138, "answer": 1, - "count": 1 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec8a401d-f6de-4a50-be51-0d60f72e2a25", + "pk": "d2ee9645-c28c-4727-b0f1-8b28e378904d", "fields": { - "question": 258, - "contribution": 4046, - "answer": 2, + "question": 262, + "contribution": 884, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec92ee7f-a632-4d7a-9250-3f3d1b248c02", + "pk": "d2f9b647-201d-411a-b2b4-e7b0aef53e03", "fields": { - "question": 346, - "contribution": 1205, - "answer": 2, - "count": 3 + "question": 322, + "contribution": 1668, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ec9eb468-e640-4614-8c02-810f719bc57c", + "pk": "d2fa0eb1-a499-4b77-ae6f-4aa4021781b0", "fields": { "question": 473, - "contribution": 3390, + "contribution": 3394, "answer": -1, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eca30921-db86-4035-a238-446dc82923ab", + "pk": "d2fb85c4-b863-48f0-81a4-18465b8b3a61", "fields": { - "question": 355, - "contribution": 3975, - "answer": 1, - "count": 2 + "question": 361, + "contribution": 3919, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eccd2479-2053-42e3-9c9d-25f7705cd260", + "pk": "d300354c-05d0-4afd-96d8-e082e49051e7", "fields": { - "question": 319, - "contribution": 1837, - "answer": 3, - "count": 2 + "question": 339, + "contribution": 3508, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ece073e7-4aa1-43ed-a4f3-3ac2df6903b2", + "pk": "d30628dd-8391-4452-b680-c924c31e9c84", "fields": { - "question": 262, - "contribution": 3739, - "answer": 1, + "question": 336, + "contribution": 840, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ece2a3a9-ea6e-4277-a6c3-6f9f1373f5b5", + "pk": "d306850a-a688-46da-bca9-3c71bb68ee28", "fields": { - "question": 347, - "contribution": 3899, - "answer": 3, - "count": 2 + "question": 477, + "contribution": 4152, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ece5468b-eeae-4046-90c1-028d51e8b824", + "pk": "d316c90c-70f5-4723-a525-5c6c81ffd24c", "fields": { - "question": 257, - "contribution": 3721, - "answer": 3, - "count": 2 + "question": 353, + "contribution": 3609, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eceb57b5-bedd-4de7-8335-a9683657b7cd", + "pk": "d31adbc5-58a4-45ba-b0bb-156626f11248", "fields": { - "question": 321, - "contribution": 4084, - "answer": 1, - "count": 21 + "question": 262, + "contribution": 3721, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ecf49f57-5c01-471c-a9ba-87de2937b5ae", + "pk": "d31cc4fe-b3a2-4489-b3f0-9bc0c23e6758", "fields": { - "question": 320, - "contribution": 4128, - "answer": 2, - "count": 7 + "question": 325, + "contribution": 913, + "answer": 1, + "count": 36 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ecf675e5-892d-45c2-aef8-397e018a0bea", + "pk": "d31e0147-222a-42ad-8116-8eb885779f05", "fields": { - "question": 315, - "contribution": 908, + "question": 316, + "contribution": 3462, "answer": 5, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ecfa3804-86a6-4773-9be2-97ed98abcc4c", + "pk": "d325ba00-f4bd-4f19-ab3f-5fec51acc7cf", "fields": { - "question": 346, - "contribution": 869, - "answer": 1, - "count": 3 + "question": 260, + "contribution": 1634, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ecfe3a30-5950-4762-91cf-9c6c80092462", + "pk": "d339efcd-cea5-4ac3-9846-d135626d23d8", "fields": { - "question": 328, - "contribution": 3740, - "answer": 3, - "count": 1 + "question": 316, + "contribution": 3721, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed08e350-ac6e-4875-a00b-ef5f8109e91f", + "pk": "d33cf5b7-ca76-47dc-bf37-5fa7ba68ab27", "fields": { - "question": 337, - "contribution": 3508, + "question": 347, + "contribution": 1661, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed15b40a-38ae-4007-9bb3-d6179b2c47fd", + "pk": "d341ea81-a8a4-4c43-982b-b0e2627d0a85", "fields": { - "question": 338, - "contribution": 1638, - "answer": 3, + "question": 345, + "contribution": 3518, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed166b3a-5a66-4020-b3fb-afea39a2e238", + "pk": "d343767a-87e6-4684-9c91-7a8d5e1ac632", "fields": { - "question": 348, - "contribution": 3405, + "question": 347, + "contribution": 1872, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed1a6913-9ab9-4f1b-8765-317137658a2b", + "pk": "d353eefd-a1a7-4fba-abe5-b7a040b71849", "fields": { - "question": 333, - "contribution": 3886, - "answer": 2, - "count": 2 + "question": 335, + "contribution": 4205, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed1c05e7-3ca7-4e2b-802e-e2726e5f02bf", + "pk": "d3564813-87ab-423b-b7e9-12d13581e86d", "fields": { - "question": 368, - "contribution": 4085, - "answer": 4, - "count": 1 + "question": 477, + "contribution": 4152, + "answer": 0, + "count": 28 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed2b72fb-9934-4928-9709-43df0aa0b7ec", + "pk": "d35a8724-a199-4df9-b45f-99ede1639a45", "fields": { - "question": 337, - "contribution": 1702, + "question": 370, + "contribution": 1782, "answer": 1, - "count": 4 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed2c1f6d-ec97-48db-969c-2de087add1d1", + "pk": "d36cd702-a71b-4cac-a3f8-f7785f597f78", "fields": { - "question": 348, - "contribution": 1881, + "question": 340, + "contribution": 3416, "answer": 2, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "d37f4ef8-79b0-4d9e-a028-d87c9937bc21", + "fields": { + "question": 346, + "contribution": 841, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed329bd4-72f6-4a22-b883-1e25340ce790", + "pk": "d383cb8a-d3d5-4cbb-acdd-1246e21c05f0", "fields": { - "question": 417, - "contribution": 3974, + "question": 333, + "contribution": 4244, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed32d340-511e-4400-846f-64a90f7c5be9", + "pk": "d3980ee0-94de-45f6-b9d1-71ca1a74cfc4", "fields": { - "question": 341, - "contribution": 3645, - "answer": 3, - "count": 3 + "question": 319, + "contribution": 1837, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed399fed-e3a8-4742-bcc1-20eb5162b687", + "pk": "d3b87f8a-71ff-43fe-ac45-7059aa64d7a0", "fields": { - "question": 321, - "contribution": 4046, - "answer": 2, + "question": 368, + "contribution": 4153, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed4d4e29-9c87-4f7b-a6ce-0c0f813f2e21", + "pk": "d3cdc284-554c-4e7b-b180-44f9b34f610f", "fields": { - "question": 322, - "contribution": 1680, - "answer": 3, + "question": 315, + "contribution": 3739, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed4ea2cd-674c-4f44-829a-7c9f08222cc0", + "pk": "d3d5cc95-c929-4a53-8ab5-3d9003ba62ab", "fields": { - "question": 329, - "contribution": 3473, - "answer": 2, - "count": 3 + "question": 472, + "contribution": 1200, + "answer": 1, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed4ebb85-0610-4231-a2e8-db696f42d1bd", + "pk": "d3dbb20a-6864-4602-91ee-11632d9096c6", "fields": { - "question": 255, - "contribution": 908, - "answer": 4, - "count": 6 + "question": 344, + "contribution": 3728, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed563942-9cb1-4566-b127-6080e8622969", + "pk": "d3e74ab0-8e66-4c76-aef0-33aa0032deab", "fields": { "question": 319, - "contribution": 4022, + "contribution": 1626, "answer": 2, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed5fc537-4fa3-45eb-a510-d2387f66ea6e", + "pk": "d3f3e367-011f-4154-ad6e-918c31668727", "fields": { - "question": 464, - "contribution": 3453, - "answer": 3, - "count": 1 + "question": 258, + "contribution": 4046, + "answer": 1, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed61f55b-3e72-4e18-a652-b5b183111700", + "pk": "d3f9fe98-ffca-4eb9-87e4-2611e58264a4", "fields": { - "question": 255, - "contribution": 4138, - "answer": 4, + "question": 361, + "contribution": 1804, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed706dd0-796d-430c-b954-892557cbb60e", + "pk": "d3fa619d-5444-4156-b498-deac05e715eb", "fields": { - "question": 317, - "contribution": 1837, + "question": 328, + "contribution": 1681, "answer": 1, - "count": 16 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed73c5d4-5281-4dd9-afd0-f5734f0864db", + "pk": "d40ab4c7-b35a-4037-adb2-bc9df8ab4793", "fields": { - "question": 257, - "contribution": 4138, - "answer": 1, - "count": 25 + "question": 315, + "contribution": 912, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed78fba6-05b1-415e-a58f-2026502328e6", + "pk": "d4142c19-d982-4f44-befd-4512268f3766", "fields": { - "question": 392, - "contribution": 3775, - "answer": 4, - "count": 2 + "question": 361, + "contribution": 1799, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed7ae391-3592-4cec-92a9-3e1faf523cc7", + "pk": "d4160b1e-9f5a-4e01-8306-9a15a6394895", "fields": { - "question": 357, - "contribution": 3518, + "question": 329, + "contribution": 3395, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed88e9fc-b5cb-4f81-8ca6-9cca6660687a", + "pk": "d41f52f7-7689-4dc3-a465-84b503d9ca00", "fields": { - "question": 258, - "contribution": 1837, - "answer": 2, - "count": 14 + "question": 351, + "contribution": 3466, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed8ad40c-ea96-4e7a-89ad-c4fb65d02c14", + "pk": "d43bfd16-4978-4fa9-92b1-ce67240495a8", "fields": { - "question": 262, - "contribution": 836, - "answer": 3, - "count": 2 + "question": 354, + "contribution": 4268, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed8df965-90f5-42b8-b346-7ea7d5c3ee3c", + "pk": "d43ecb1f-61ec-4758-8dff-93cac8e49b3a", "fields": { - "question": 472, - "contribution": 3721, - "answer": 1, - "count": 7 + "question": 347, + "contribution": 1867, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed8f8bf0-c6bf-4a88-8906-41d5d7c74593", + "pk": "d44a529c-51e3-43f2-8ea9-b26957d38ca0", "fields": { - "question": 260, - "contribution": 1612, - "answer": 5, - "count": 3 + "question": 347, + "contribution": 1822, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed9e3b85-4fbb-469a-b884-364158e3c052", + "pk": "d44c5161-35de-436f-9e48-07d077b45cbe", "fields": { - "question": 477, - "contribution": 1288, - "answer": -1, - "count": 3 + "question": 317, + "contribution": 4028, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ed9ecbcf-1e38-4bd4-9e99-a81c3db3c12f", + "pk": "d44ca843-242b-4dc9-a386-07d261410ce9", "fields": { - "question": 331, - "contribution": 1837, - "answer": -1, - "count": 3 + "question": 347, + "contribution": 887, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eda922e7-75c6-49b0-8c06-cb4bf9fe1238", + "pk": "d450d764-7395-4407-a0c6-1b7261f5f48b", "fields": { - "question": 354, - "contribution": 3545, - "answer": 1, - "count": 2 + "question": 352, + "contribution": 3745, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "edad8ff8-3de9-40d2-8c30-3493e17e145a", + "pk": "d45601e3-11b5-44f1-b3d6-1e8b8eee16dd", "fields": { - "question": 315, - "contribution": 3721, - "answer": 5, - "count": 2 + "question": 361, + "contribution": 3652, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "edad9bfd-a2e2-461a-9081-2175b2b373a4", + "pk": "d45e67bb-4976-40d4-a1fc-fe2e703811ae", "fields": { - "question": 319, - "contribution": 3725, + "question": 335, + "contribution": 3595, "answer": 4, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "edb24c42-f0e8-4443-a5fb-58eb7c2505fd", + "pk": "d464b5ce-2d73-4f40-9f11-678c89dda45a", "fields": { - "question": 326, - "contribution": 1776, - "answer": 3, + "question": 333, + "contribution": 3881, + "answer": 1, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "edba8989-e058-4332-b8d7-065753dfba8b", + "pk": "d46e43a8-327d-4a4a-9214-73cefc30e007", "fields": { - "question": 315, - "contribution": 1634, - "answer": 4, - "count": 2 + "question": 255, + "contribution": 3434, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "edbb557a-09b2-44b7-ad32-bfe5f6a8b595", + "pk": "d47b607f-bcb4-4186-a7d3-50adbe0043a0", "fields": { - "question": 321, - "contribution": 4120, - "answer": 4, - "count": 1 + "question": 326, + "contribution": 1779, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "edbb5d83-e2e5-44d3-8916-c8ea744e294d", + "pk": "d498f0ff-9daf-4852-8e58-85a7a55c1f79", "fields": { - "question": 477, - "contribution": 1802, + "question": 258, + "contribution": 4120, "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "edbe838d-2826-4c6e-96b6-6c86a4166cce", + "pk": "d49afcfb-7c8a-4ec8-9f69-dabd35bc0dcd", "fields": { - "question": 320, - "contribution": 3422, - "answer": 3, - "count": 5 + "question": 473, + "contribution": 4052, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "edbeb0a3-2205-4bf4-beab-815a357836b1", + "pk": "d4ac0fe9-b29c-4670-99ec-353d88a4e991", "fields": { - "question": 321, - "contribution": 912, - "answer": 4, - "count": 2 + "question": 452, + "contribution": 4185, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "edc15eb3-62b4-409d-816a-5d5a9560f764", + "pk": "d4ac98f6-6e64-4953-aaa5-2b578969fdd9", "fields": { - "question": 472, - "contribution": 3721, - "answer": 5, - "count": 12 + "question": 262, + "contribution": 1634, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "edc7a397-a3c9-4e68-9d10-d5946b76d26c", + "pk": "d4af4814-278d-4b8f-bcff-62c089495c6c", "fields": { - "question": 320, - "contribution": 3679, + "question": 327, + "contribution": 3884, "answer": 1, - "count": 15 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "edce57d1-7836-4369-a5dd-7a5b3988626f", + "pk": "d4cd3f97-05d6-441f-b91a-c8efe88e41c2", "fields": { - "question": 328, - "contribution": 1797, - "answer": 1, - "count": 4 + "question": 332, + "contribution": 3592, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "edd03e3b-2a16-45cc-b336-2bc1ed0c8a0f", + "pk": "d4d721b3-b774-4efd-9552-d2b1a488c6bc", "fields": { - "question": 362, - "contribution": 1812, - "answer": 4, + "question": 370, + "contribution": 4223, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "edf0fbb2-f89c-49bf-a6c9-c1c5c44186b5", + "pk": "d505d8bd-e2fc-4827-a502-45d4abf80032", "fields": { - "question": 321, - "contribution": 3462, - "answer": 1, + "question": 344, + "contribution": 1228, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee147b87-ce04-4fe9-8d59-68045574feed", + "pk": "d506db58-b2c3-448b-b8c9-164399ef5432", "fields": { - "question": 319, + "question": 322, "contribution": 4138, - "answer": 2, - "count": 14 + "answer": 4, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee17c514-98af-49fb-a073-9ee176bf7c22", + "pk": "d50b53e2-a8cb-4b4c-b4bb-807d5fc55f19", "fields": { - "question": 473, - "contribution": 1658, - "answer": 3, - "count": 1 + "question": 344, + "contribution": 841, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee1c8060-6649-4cc0-a7e7-0d999349c832", + "pk": "d50e5ad2-e404-4126-8c98-34cdf6b80eb5", "fields": { "question": 319, - "contribution": 1837, - "answer": 1, - "count": 12 + "contribution": 3434, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee213d87-c73e-45ec-8e7e-2ee34beaef73", + "pk": "d512d418-6221-41f0-adb0-8ad5dafb04bf", "fields": { - "question": 327, - "contribution": 3884, - "answer": 2, - "count": 2 + "question": 323, + "contribution": 908, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee233f11-902d-41e7-807b-51303817fd50", + "pk": "d51352e0-bd8a-4609-a226-74a9c264cb56", "fields": { - "question": 331, - "contribution": 3679, - "answer": -3, + "question": 337, + "contribution": 1726, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee2c8e65-e382-44fd-b8cf-8765e5d68bf6", + "pk": "d517200c-b006-450a-b1c8-6a0c8ec2dcda", "fields": { - "question": 404, - "contribution": 3974, - "answer": 1, - "count": 2 + "question": 367, + "contribution": 4120, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee3ca075-5bba-4cfb-b3e4-67911eca9f21", + "pk": "d5188ddd-6e77-4bf0-a4a0-cd8f2155fbc3", "fields": { - "question": 338, - "contribution": 804, - "answer": 2, - "count": 3 + "question": 473, + "contribution": 880, + "answer": 0, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee44986f-29a9-4837-84bf-dbb64b39c38f", + "pk": "d51c8710-fafe-4acd-bc9e-ea9a271c817a", "fields": { - "question": 477, - "contribution": 1725, + "question": 343, + "contribution": 1843, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee54593f-66fa-4b31-b0f6-830523c33818", + "pk": "d51e6e11-03b5-4c22-b816-52c3030feab4", "fields": { - "question": 356, - "contribution": 3608, - "answer": 3, + "question": 473, + "contribution": 4094, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee69d9ac-af8c-4d84-b4b9-3f71756cab6f", + "pk": "d53240e1-61c1-4c03-a90b-21b36fafdbdc", "fields": { - "question": 315, + "question": 317, "contribution": 3394, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee76962c-2d04-4e78-ab35-667551a7bb2c", + "pk": "d53ec863-d01b-464c-9c7f-bce759006b08", "fields": { - "question": 322, - "contribution": 1668, - "answer": 4, - "count": 1 + "question": 473, + "contribution": 826, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee7b87cf-9325-4169-ac81-73ebd76eae77", + "pk": "d5433155-34fc-4085-9847-22b377f6a584", "fields": { - "question": 371, - "contribution": 4205, + "question": 349, + "contribution": 1645, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee7c56c8-ccef-4194-b6bd-138ee12d53fe", + "pk": "d546875d-6a86-4aa2-aba2-5e7dc8898832", "fields": { - "question": 325, - "contribution": 1613, - "answer": 1, - "count": 24 + "question": 473, + "contribution": 3474, + "answer": 0, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee7f040b-8efa-4506-b32f-2a934b27dc5f", + "pk": "d56fcc34-7200-460a-bc94-52170349bf27", "fields": { - "question": 346, - "contribution": 1842, + "question": 343, + "contribution": 1206, "answer": 1, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee852da8-207e-45c2-a73e-db071ffc1ee8", + "pk": "d5770965-f3e5-41c5-a311-2c2cbb879154", "fields": { - "question": 339, - "contribution": 3404, - "answer": -3, + "question": 258, + "contribution": 3394, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee8b79d0-c1dd-496b-8be2-dce89194aa94", + "pk": "d585f6cf-85d1-4f35-97be-e8bd74d428b6", "fields": { - "question": 477, - "contribution": 4152, - "answer": 3, + "question": 344, + "contribution": 4129, + "answer": 2, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee944c6f-5c35-46d5-9f8c-bc0e38e71311", + "pk": "d586c8ce-8d2c-4d06-9725-59a20da2212a", "fields": { - "question": 328, - "contribution": 1659, - "answer": 3, - "count": 2 + "question": 316, + "contribution": 1668, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee9a07a8-19d2-4076-b3a0-78ea749e58bf", + "pk": "d5a04d01-3fb9-48d9-89cb-ce676efffcb7", "fields": { - "question": 336, - "contribution": 3440, - "answer": 1, + "question": 473, + "contribution": 1668, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee9de84d-b7b5-4c52-952f-2ea911566045", + "pk": "d5b50799-1467-4e74-bf32-16ef8379a390", "fields": { - "question": 327, - "contribution": 913, - "answer": 2, - "count": 5 + "question": 339, + "contribution": 3486, + "answer": 0, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ee9e48b8-b29f-4edc-9561-ded172a17322", + "pk": "d5c0824e-4678-42c8-80dc-226ebf429569", "fields": { - "question": 463, - "contribution": 4141, + "question": 344, + "contribution": 3517, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eea311cc-48ac-4743-97af-edbcae4c2284", + "pk": "d5ca42a9-85b5-47c2-b738-ce784a8f2e96", "fields": { - "question": 462, - "contribution": 4091, - "answer": 2, - "count": 1 + "question": 347, + "contribution": 3728, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eed0efcf-b2b9-4936-b266-c776c438405a", + "pk": "d5cb42ca-1a3b-491c-bfae-61208c7b3676", "fields": { "question": 319, - "contribution": 4046, - "answer": 2, - "count": 5 + "contribution": 912, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eed56eba-6af3-438b-af22-767dac71be50", + "pk": "d5de5360-ccd3-4a09-abbd-05b6f360617d", "fields": { - "question": 350, - "contribution": 3406, + "question": 352, + "contribution": 3440, "answer": 2, - "count": 7 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eee36c30-a6c7-4edc-a4bf-61f69a2cd792", + "pk": "d605e09c-4dbb-4ee1-af32-c3d9fffbc529", "fields": { - "question": 327, - "contribution": 1186, + "question": 328, + "contribution": 3589, "answer": 1, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "eeeb29f3-2189-4d51-9481-d3ba0ca52fad", - "fields": { - "question": 349, - "contribution": 1842, - "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eef65d4f-2fa3-4272-a157-b9fdb5acd0ee", + "pk": "d607ae1a-249e-4698-a42a-913d61e2006e", "fields": { - "question": 354, - "contribution": 3712, + "question": 472, + "contribution": 3390, "answer": 1, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eef99377-5239-4b3c-8681-98a800cb54bf", + "pk": "d60c181a-b24b-44f2-b2dd-329d72109dc0", "fields": { - "question": 391, - "contribution": 3775, - "answer": 2, + "question": 475, + "contribution": 4072, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eefc13f1-95c6-48cc-b638-11049e7726a8", + "pk": "d60f0f97-cb4d-4143-b51b-a99311830550", "fields": { - "question": 340, - "contribution": 804, + "question": 333, + "contribution": 3882, "answer": 1, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef015e1e-0607-4e60-84d9-3f53551b21af", + "pk": "d60fffd2-f8da-493d-9d79-fe9b31f8e880", "fields": { - "question": 337, - "contribution": 3440, - "answer": 4, - "count": 1 + "question": 473, + "contribution": 3406, + "answer": 0, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef07e4a2-b52a-4b9d-9ffc-8e34cce2bf21", + "pk": "d61320bf-3859-476d-8197-17670937f807", "fields": { - "question": 332, - "contribution": 3936, + "question": 344, + "contribution": 841, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef085906-e1fa-40cb-a2a0-5d5e72e1c0f8", + "pk": "d61e3c2b-6cab-44c1-ab62-b277c3c145fa", "fields": { - "question": 350, - "contribution": 3759, - "answer": 3, - "count": 1 + "question": 473, + "contribution": 3721, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef12a1ec-95d5-4cf1-9bf2-5d1c714563fb", + "pk": "d6310e07-5aff-4a17-a023-8eb50cae90a0", "fields": { - "question": 357, - "contribution": 1154, - "answer": 5, + "question": 368, + "contribution": 3684, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef2c0768-2558-403d-bd66-1bf6dadc2533", + "pk": "d636798a-7295-4f92-b3dd-fee69d4f949f", "fields": { - "question": 450, - "contribution": 4185, - "answer": 2, - "count": 14 + "question": 356, + "contribution": 1844, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef2c7df9-345a-4307-a648-ec79a199249d", + "pk": "d63df857-44f9-4042-8517-0d73654d71f5", "fields": { - "question": 353, - "contribution": 3608, + "question": 348, + "contribution": 1870, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef352ff7-5ca9-4f76-aafc-92912a419c73", + "pk": "d64612cf-0777-48b4-b2ec-37fa3733e0e7", "fields": { - "question": 321, - "contribution": 912, - "answer": 1, - "count": 16 + "question": 339, + "contribution": 3727, + "answer": -2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef38f60b-9560-4a3d-9e8e-afddc3739771", + "pk": "d64c236f-a044-43c9-9577-5c0f2496b6d4", "fields": { - "question": 333, - "contribution": 1283, - "answer": 1, - "count": 3 + "question": 336, + "contribution": 3450, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef3b8de3-38ca-4c45-8e83-b3b384f6b36f", + "pk": "d668964f-ff48-4877-997c-1bb023db4c2e", "fields": { - "question": 259, - "contribution": 4120, + "question": 255, + "contribution": 3354, "answer": 1, - "count": 24 + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef4b0a2a-92b3-4c20-a736-4a3840afaa75", + "pk": "d678b681-f50e-45dc-b19b-53cecca54e37", "fields": { - "question": 339, - "contribution": 1660, - "answer": 0, - "count": 4 + "question": 348, + "contribution": 1922, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef52e7c1-04c4-4e64-959c-f5d3dcfb48d8", + "pk": "d68cb140-6976-4ba5-955f-cd73611c11fa", "fields": { - "question": 335, - "contribution": 3936, - "answer": 2, - "count": 2 + "question": 339, + "contribution": 1660, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef557ac9-00c8-48a6-8503-90b1323a6bc5", + "pk": "d6901683-104d-4049-9692-9e0efb563ccb", "fields": { - "question": 403, - "contribution": 4177, - "answer": 2, + "question": 428, + "contribution": 4154, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef5820c9-c313-408e-bae2-8260ebc8512b", + "pk": "d6973f7c-b0c2-4337-ba05-656f48fec910", "fields": { - "question": 258, - "contribution": 3390, - "answer": 4, - "count": 6 + "question": 328, + "contribution": 3684, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef641c85-20da-4f8e-bcc5-cee06e38e931", + "pk": "d69acfee-5306-4735-a511-542d01cbb0a0", "fields": { - "question": 473, - "contribution": 4008, - "answer": -1, + "question": 319, + "contribution": 4046, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef879c83-9644-45de-8696-27f90222cecf", + "pk": "d69d8f6e-bad9-493a-891a-0fcdd2093c1d", "fields": { - "question": 459, - "contribution": 4283, - "answer": 2, - "count": 2 + "question": 322, + "contribution": 3725, + "answer": 3, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef8f9606-aed7-4b0b-a1e0-0ab10f57b4ba", + "pk": "d69d9b0a-3253-4f29-86d2-5d14a7f3e3c4", "fields": { - "question": 331, - "contribution": 1837, - "answer": 0, - "count": 28 + "question": 477, + "contribution": 3519, + "answer": -3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ef92a722-4580-43e9-b489-f98c2c7d7f07", + "pk": "d69f19db-bd72-48e6-a3cf-8bd9345bde32", "fields": { - "question": 353, - "contribution": 1782, + "question": 332, + "contribution": 4156, "answer": 3, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "efa40b3e-2320-4b84-9175-4d7822198c33", + "pk": "d6a01d10-9480-4186-af71-6e281fc1daa8", "fields": { - "question": 352, - "contribution": 3466, + "question": 328, + "contribution": 885, "answer": 3, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "efb1a2e1-3a4d-4e3f-a3c3-05cf55849bc4", + "pk": "d6a1b028-675b-4ef1-8f97-9f8b9de5cf98", "fields": { - "question": 340, - "contribution": 3404, - "answer": 3, + "question": 376, + "contribution": 3775, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "efb80589-89d4-41da-b169-870f17e34a81", + "pk": "d6a4494c-5139-416c-be37-be7ba67fefea", "fields": { - "question": 331, - "contribution": 3406, - "answer": 0, - "count": 8 + "question": 432, + "contribution": 4140, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "efb97407-cd45-44c6-8ff7-54498230e0e9", + "pk": "d6a4c174-4b2f-45cf-b087-866a8ee527e1", "fields": { - "question": 472, - "contribution": 89, - "answer": 5, - "count": 3 + "question": 345, + "contribution": 3912, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "efbeb150-65a4-4806-ba0e-c4f11b8193de", + "pk": "d6a50149-f6f3-4004-a777-68df80d87e17", "fields": { - "question": 326, - "contribution": 3684, - "answer": 1, - "count": 4 + "question": 332, + "contribution": 4205, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "efc172a9-f56b-455f-b9f4-2c3a3b9bdf23", + "pk": "d6aee417-230f-4add-a9f2-d47ff4ba2935", "fields": { - "question": 357, - "contribution": 1781, - "answer": 1, - "count": 7 + "question": 340, + "contribution": 1694, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "efc935b6-e0e0-4e3b-b913-faec68e2e431", + "pk": "d6afdf8e-9464-46f6-8553-76d5a4d7ccfe", "fields": { - "question": 339, - "contribution": 1656, - "answer": 1, + "question": 317, + "contribution": 822, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "efd94f86-fc05-42e3-8bf3-a7634a9b1215", + "pk": "d6b668c1-73cc-40a6-8a0f-309d91b11554", "fields": { - "question": 257, - "contribution": 3725, - "answer": 2, + "question": 475, + "contribution": 3681, + "answer": 0, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "efe282a7-4734-4f38-9cad-8381cb66d0d6", + "pk": "d6c6b463-0282-40f7-a32d-ef195d16ea3f", "fields": { - "question": 347, - "contribution": 1922, + "question": 339, + "contribution": 3785, + "answer": 2, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "d6cc2204-ef97-4a76-b011-7ee359db4ae0", + "fields": { + "question": 345, + "contribution": 4187, "answer": 1, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "efe66a9c-e8e0-42c9-8d1a-c05469f68872", + "pk": "d6d090a5-b345-4612-b817-c83efb2b44d0", "fields": { - "question": 344, - "contribution": 3373, - "answer": 2, - "count": 2 + "question": 361, + "contribution": 1836, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eff897b0-ab5a-4ebf-bb64-05e2f5debd58", + "pk": "d6e6956a-e744-4e60-bc45-be2372363742", "fields": { - "question": 368, - "contribution": 3423, - "answer": 2, + "question": 349, + "contribution": 1828, + "answer": 1, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "d6edbd5b-0f95-4587-a6bd-70443c06e8e2", + "fields": { + "question": 407, + "contribution": 3974, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "eff9b094-32be-4169-ad89-b81da492a976", + "pk": "d6f93431-a50e-4fa6-90f9-7310ed5d79f3", "fields": { - "question": 315, - "contribution": 880, - "answer": 4, - "count": 6 + "question": 322, + "contribution": 4116, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "effc48f9-dc3f-41f5-8737-5566914a9ab9", + "pk": "d6fc9d95-4d7f-4f6e-a32c-91a53706ceaa", "fields": { - "question": 326, - "contribution": 1798, + "question": 315, + "contribution": 3422, "answer": 1, - "count": 4 + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f002992c-cfa0-4426-a199-ce0c087429e2", + "pk": "d6fd4a25-eb92-4ed1-9ab4-0c403c86e436", "fields": { - "question": 260, - "contribution": 1658, - "answer": 3, - "count": 2 + "question": 322, + "contribution": 4046, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f006cdac-0cf0-49c6-a422-58bab3cc22d4", + "pk": "d6ff3dd3-ce2a-4674-b585-c22898bffb25", "fields": { - "question": 327, - "contribution": 3423, - "answer": 4, - "count": 3 + "question": 349, + "contribution": 4129, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f0156146-4862-4961-bf60-ee2c969dff22", + "pk": "d7049e54-3a31-4025-8b49-411800dcf945", "fields": { - "question": 473, - "contribution": 886, - "answer": -2, + "question": 338, + "contribution": 1734, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f01a50a8-c968-4229-9dfd-f159cb84b016", + "pk": "d7134b4a-fd30-4c1e-ab4f-636b2d079c54", "fields": { - "question": 366, - "contribution": 3552, - "answer": 4, - "count": 3 + "question": 260, + "contribution": 3354, + "answer": 1, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f01c5d78-0bd0-48d3-9d6a-aa8c2c2a38f6", + "pk": "d73b699e-54d1-4c65-ba71-f21a752266c6", "fields": { - "question": 260, - "contribution": 1658, + "question": 340, + "contribution": 3785, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f026f4c7-b00a-4258-8a00-f8971b034f5e", + "pk": "d74b116c-e6d0-40f9-b28e-c51fda47fbf7", "fields": { - "question": 322, - "contribution": 884, - "answer": 5, - "count": 3 + "question": 326, + "contribution": 4203, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f027331a-9527-4b35-800d-285a218ff06b", + "pk": "d7566353-ba34-472c-a0ba-2770c06c3d05", "fields": { - "question": 353, - "contribution": 1845, + "question": 368, + "contribution": 3722, "answer": 1, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f03e17b1-bf2b-44e9-b09e-595c359121ad", + "pk": "d7570114-3b1d-4e02-b004-e54c707ad865", "fields": { - "question": 356, - "contribution": 1785, + "question": 343, + "contribution": 1228, "answer": 1, - "count": 9 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f03f2877-f00a-4bae-99f7-8cfe7ca68fa1", + "pk": "d75b2567-6647-4858-bc36-c4807a3d8ded", "fields": { - "question": 359, - "contribution": 3597, + "question": 370, + "contribution": 4244, "answer": 1, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f04cf9d4-33e3-4741-9e6d-6ff60703a065", + "pk": "d75eef60-6daa-4d76-b6de-c9ab5505343f", "fields": { - "question": 341, - "contribution": 3751, - "answer": 1, - "count": 1 + "question": 357, + "contribution": 1776, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f04da1d3-a063-4845-8cd8-dd31ceb19f3b", + "pk": "d77286f6-9adf-4dea-bb6d-e4130a6dbf4e", "fields": { - "question": 347, - "contribution": 3608, + "question": 355, + "contribution": 3712, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f0547d2d-0cdf-4439-92b8-638babbfd715", + "pk": "d7775f8e-d09d-4dce-89fb-afa7b6121c10", "fields": { - "question": 327, - "contribution": 3885, - "answer": 1, - "count": 5 + "question": 329, + "contribution": 3726, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f0565a32-7209-47f7-a922-41507d38f174", + "pk": "d77fc902-b9e0-4be9-9f42-efc9b05e86f4", "fields": { - "question": 337, - "contribution": 4002, - "answer": 1, - "count": 4 + "question": 473, + "contribution": 836, + "answer": 0, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f056d4d4-51f3-4981-96c3-b30d01a0abf7", + "pk": "d78566a2-a21a-4ca3-a72b-3c8212d1b983", "fields": { - "question": 338, - "contribution": 3440, - "answer": 4, + "question": 337, + "contribution": 918, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f060c5cc-29c7-4524-a229-46c6747eb79b", + "pk": "d7888ced-8fa4-49a7-a608-42c7c8db87fb", "fields": { - "question": 352, - "contribution": 894, - "answer": 4, + "question": 316, + "contribution": 3739, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f06de074-5323-4bf1-b6ec-4adedb2550c5", + "pk": "d7915c65-080a-4668-ab08-61231e535f3a", "fields": { - "question": 315, - "contribution": 4116, - "answer": 1, - "count": 4 + "question": 258, + "contribution": 1626, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f07c5b07-2c39-4c96-a608-68d2ac30eafd", + "pk": "d7bc455c-a2c7-425d-8b4d-1c4bdb0378ce", "fields": { - "question": 321, - "contribution": 864, - "answer": 3, + "question": 339, + "contribution": 3466, + "answer": -1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f08fda4f-d364-4892-a256-652217375371", + "pk": "d7bcd785-0af0-4c14-8b79-1088945831a5", "fields": { - "question": 339, - "contribution": 1638, - "answer": -3, + "question": 477, + "contribution": 909, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f0a637d0-e955-4607-a9f4-91c9a5ddf90c", + "pk": "d7c5418e-5800-4641-bd24-1feb4d361af1", "fields": { - "question": 316, - "contribution": 880, - "answer": 4, - "count": 8 + "question": 338, + "contribution": 3450, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f0be0da3-27f5-4fca-9a4f-4ccd61ae1f94", + "pk": "d7f5310c-c8c9-40b7-ad64-03cb86c3ce78", "fields": { - "question": 257, - "contribution": 3725, - "answer": 3, - "count": 3 + "question": 351, + "contribution": 3745, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f0c67f18-e4f6-4b55-811c-980d34b38bee", + "pk": "d7f5f088-a23a-4e8c-ab8d-60e15ec4283a", "fields": { - "question": 362, - "contribution": 1810, + "question": 352, + "contribution": 804, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f0c7d09b-3285-4d9c-a073-7fed4cdb0b04", + "pk": "d80af689-a366-4101-b730-fed08ce323e4", "fields": { - "question": 316, - "contribution": 4084, - "answer": 3, - "count": 13 + "question": 355, + "contribution": 1154, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f0d0a1d7-0d4c-4b64-bff8-43c051028c84", + "pk": "d81111a4-6482-4d05-9e1b-a611c236daf5", "fields": { "question": 360, - "contribution": 1799, - "answer": 1, - "count": 2 + "contribution": 1808, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f0d87b25-b164-49c8-85e4-84be80f2fb52", + "pk": "d818356c-6a81-4831-a29e-b4ba27a3d3fc", "fields": { - "question": 464, - "contribution": 3862, - "answer": 2, - "count": 2 + "question": 258, + "contribution": 1680, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f0e031d1-b78f-4ca1-b8c3-068e9658deb7", + "pk": "d81d1b0f-3b82-4c4f-b87c-45f34c0f439d", "fields": { - "question": 319, - "contribution": 3739, - "answer": 3, - "count": 4 + "question": 476, + "contribution": 1626, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f0ff9c3e-4bc2-44c5-934b-390ee855ef7b", + "pk": "d81e5b1c-4e75-43df-90b1-a416997eb0e3", "fields": { - "question": 328, - "contribution": 1659, - "answer": 1, - "count": 11 + "question": 317, + "contribution": 822, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1035eb1-6c9d-4e72-9201-da1311480e8f", + "pk": "d8227c39-656a-4f76-8c7b-19a0d11398b4", "fields": { - "question": 396, - "contribution": 3781, - "answer": 3, - "count": 1 + "question": 331, + "contribution": 884, + "answer": 0, + "count": 31 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f106e30c-e99a-4bcf-ae65-83198aa0ddcc", + "pk": "d822f03a-2606-4070-abd3-81de67cb81cb", "fields": { - "question": 388, - "contribution": 3781, - "answer": 1, - "count": 3 + "question": 323, + "contribution": 3422, + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f11c903f-4eb9-4afe-a9cf-90141c4f0631", + "pk": "d8238ee9-21fc-458a-8011-6bb35745370c", "fields": { - "question": 316, - "contribution": 3434, + "question": 355, + "contribution": 1845, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f11e9284-11db-47da-a87d-658234e7b080", + "pk": "d83074d4-0260-4cd6-b153-8383ef4a230d", "fields": { "question": 258, - "contribution": 912, + "contribution": 4084, "answer": 2, - "count": 19 + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1269242-5253-413b-a4bd-9b4e88053880", + "pk": "d8314d09-7835-4dae-8652-f3dd197748ef", "fields": { - "question": 258, - "contribution": 3665, + "question": 458, + "contribution": 3786, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1274b25-2f5b-4b5d-a4b5-33ebff0eff4a", - "fields": { - "question": 333, - "contribution": 4261, - "answer": 1, - "count": 5 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "f12781bc-3563-4950-b462-0751ff30b0d7", + "pk": "d8361c82-719d-4d75-b69b-cc616ae700e3", "fields": { - "question": 453, - "contribution": 4185, - "answer": 5, + "question": 255, + "contribution": 4128, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1375352-f0aa-46e7-a6bf-67dbe80dae09", + "pk": "d8388d9a-5caf-4687-91d0-e2fb63f194c1", "fields": { - "question": 354, - "contribution": 3608, + "question": 323, + "contribution": 862, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f13ca684-b999-4432-8dae-3548194eda65", + "pk": "d84a06a2-8121-4dec-abfb-bf3477df031e", "fields": { - "question": 326, - "contribution": 3423, - "answer": 5, - "count": 1 + "question": 476, + "contribution": 4084, + "answer": 1, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f13cc4ff-477f-485f-802d-d7107530ad3a", + "pk": "d84ba2df-3a69-4d74-80f6-e0e5a7c4ba2e", "fields": { - "question": 346, - "contribution": 3941, + "question": 362, + "contribution": 3921, "answer": 1, - "count": 3 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f13e3089-5132-45be-bde2-19ed2d7751b9", + "pk": "d84c1909-b69d-4451-a9fb-eb0750bfd1f1", "fields": { - "question": 259, - "contribution": 1612, - "answer": 4, - "count": 1 + "question": 260, + "contribution": 3390, + "answer": 5, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f14aeed4-bacf-421c-977b-4831482f8732", + "pk": "d8576e24-f143-40fd-9da4-2366c4142855", "fields": { - "question": 257, - "contribution": 880, + "question": 361, + "contribution": 3649, "answer": 1, - "count": 9 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f14d9bca-6918-415b-ac7e-58ab40c8595d", + "pk": "d8581aa0-89f4-4061-9e3c-54e32817d351", "fields": { - "question": 477, - "contribution": 1779, - "answer": 0, - "count": 20 + "question": 338, + "contribution": 3486, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1528f91-a41c-42a7-b6ab-0c1f14584efb", + "pk": "d8644b66-11c5-40c3-9a8b-3f33157a1b23", "fields": { - "question": 329, - "contribution": 3740, - "answer": 2, - "count": 4 + "question": 338, + "contribution": 1734, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f15876d5-a33c-4b43-bef9-b741b6e2aec6", + "pk": "d8647c86-bc3c-4ef6-b386-9e7e2b522033", "fields": { - "question": 255, - "contribution": 3354, - "answer": 2, + "question": 346, + "contribution": 4191, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f15aee0d-3409-41a5-a1fa-b18dd8e720de", + "pk": "d87385c6-a6f9-4dc0-b52d-31b445b20dc5", "fields": { - "question": 349, - "contribution": 1851, - "answer": 1, - "count": 1 + "question": 323, + "contribution": 1634, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f15b214f-8359-4764-bb08-ea57c7e635b7", + "pk": "d873cb34-e87a-49c8-be40-dcc8c285e3d6", "fields": { - "question": 371, - "contribution": 3631, + "question": 362, + "contribution": 1835, "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f15da2f0-1c54-4a4a-b4ec-1b1ceefec881", + "pk": "d87ea2d7-8a7b-4353-9892-cdc0e3fe6c6f", "fields": { - "question": 329, - "contribution": 1659, - "answer": 1, - "count": 15 + "question": 325, + "contribution": 837, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f15ee45b-0a09-4e3f-b4aa-fa755dedd082", + "pk": "d87f0ffa-4f3e-4e90-a0c7-f25c28a2c4ff", "fields": { - "question": 352, - "contribution": 864, - "answer": 1, + "question": 338, + "contribution": 4094, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1609ea9-0ea2-41d9-ac56-3f929d0e7d1b", + "pk": "d887026e-1164-4119-8711-84948a30bcec", "fields": { - "question": 336, - "contribution": 3685, + "question": 348, + "contribution": 1824, "answer": 1, - "count": 6 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1673faf-1929-427f-811a-aed7e572a210", + "pk": "d8872d7b-263c-481d-966e-042db260e714", "fields": { - "question": 462, - "contribution": 4284, + "question": 320, + "contribution": 3474, "answer": 3, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f177e65d-5847-418e-b6a2-7c5ca30dcf94", + "pk": "d89163aa-6286-4b93-837d-ff6bb8c7b0aa", "fields": { - "question": 327, - "contribution": 3391, - "answer": 5, - "count": 11 + "question": 336, + "contribution": 4122, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f180fe42-0699-4bfd-a80a-232e1f0fe0f7", + "pk": "d89e197d-a8fa-47ab-a7b9-0edac33ea60c", "fields": { - "question": 329, - "contribution": 881, - "answer": 2, - "count": 6 + "question": 355, + "contribution": 3608, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f18375d5-eef9-45dc-919b-a043dcea8721", + "pk": "d89e731f-8ff3-4fde-9f0e-c821add16640", "fields": { - "question": 325, - "contribution": 3589, - "answer": 1, - "count": 7 + "question": 327, + "contribution": 1779, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f187486a-35ab-496d-bcfc-7fa1934d0508", + "pk": "d8ab272f-cf93-4349-915c-78981998341d", "fields": { - "question": 321, - "contribution": 3474, - "answer": 5, + "question": 476, + "contribution": 3462, + "answer": 0, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f18daad9-d127-49eb-a415-9405835046f6", + "pk": "d8b44c95-9499-487c-942b-eb6ee07dd0a8", "fields": { - "question": 329, - "contribution": 3883, + "question": 353, + "contribution": 3516, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f18e2ab4-6aa4-4e6f-989b-6af053957cf1", - "fields": { - "question": 321, - "contribution": 4138, - "answer": 2, - "count": 10 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "f19318cb-d8b0-4441-9e4d-ce3940342bf8", + "pk": "d8ba7929-a6b1-4cb8-bf24-b7b3c4207d5f", "fields": { - "question": 325, - "contribution": 3666, + "question": 472, + "contribution": 880, "answer": 1, - "count": 6 + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f19d5ada-584d-41e7-991a-b312c408c6f4", + "pk": "d8c9427c-d925-4d12-844f-23099acadd84", "fields": { - "question": 316, - "contribution": 1680, + "question": 339, + "contribution": 3404, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1a749f7-c7ec-45ad-9f39-427fc056ef0e", + "pk": "d8d16ff1-2a41-4f0e-8466-43e77138c9ec", "fields": { - "question": 477, - "contribution": 1659, - "answer": 0, - "count": 11 + "question": 347, + "contribution": 3609, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1a9002e-b855-422a-9ba1-3b9fce1f78eb", + "pk": "d8d47ee5-8774-43e0-9e5d-70531ca7d349", "fields": { - "question": 326, - "contribution": 3740, - "answer": 4, - "count": 1 + "question": 327, + "contribution": 4117, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1b7ef27-571c-4c9a-b9ed-c68ca56df5fb", + "pk": "d8d54055-48b7-47e3-a0a5-c302dd64d889", "fields": { - "question": 472, - "contribution": 3454, - "answer": 5, - "count": 3 + "question": 317, + "contribution": 880, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1bdc9d9-fef7-4054-804c-4a74536cd3e4", + "pk": "d8d9e934-73df-4f9f-b3ea-4076188b9249", "fields": { - "question": 354, - "contribution": 3831, + "question": 335, + "contribution": 3594, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1c475af-60b0-49bd-8c13-efd41eeb554a", + "pk": "d8db5191-ea83-4669-aff0-490ecea1de7b", "fields": { - "question": 392, - "contribution": 3781, - "answer": 2, + "question": 323, + "contribution": 864, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1c8cca8-39bb-415a-97a3-d5dac8f17acd", + "pk": "d8dcfb72-977e-4574-8256-57e0365c7da7", "fields": { - "question": 343, - "contribution": 3515, + "question": 329, + "contribution": 4153, "answer": 1, - "count": 9 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1c97e8d-b2dd-4dd0-8223-b356a1a2ecc1", + "pk": "d8e48911-05a2-4827-bd99-b26a986b996d", "fields": { - "question": 362, - "contribution": 3917, - "answer": 4, + "question": 359, + "contribution": 3943, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1ce2dd0-72f8-4b46-ab87-30ad0a409762", + "pk": "d8e65afd-fe39-4f26-b18a-8977d2e6761f", "fields": { - "question": 258, + "question": 321, "contribution": 1837, - "answer": 3, - "count": 2 + "answer": 2, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1ce39e0-1590-4d98-bdab-3bf353859145", + "pk": "d8f5752d-a00c-4cff-888c-1611bc5e8dfc", "fields": { - "question": 357, - "contribution": 1849, - "answer": 4, + "question": 369, + "contribution": 1808, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1e0a3f0-d453-4746-aa55-81f832c42ac6", + "pk": "d90082dd-9041-4ffe-8037-405c0c3e03fc", "fields": { - "question": 331, + "question": 323, "contribution": 3721, - "answer": -2, - "count": 1 + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1e3177c-30a6-4eef-bcfb-f0db6b7a3fa2", + "pk": "d9068db1-b3d7-4ae1-9165-df83eae02753", "fields": { - "question": 335, - "contribution": 3595, + "question": 412, + "contribution": 3984, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1e3a068-8e5b-4e1d-b80e-e9dcde327df5", + "pk": "d909cfdf-0a0c-4262-b3d2-86cfc557e623", "fields": { - "question": 432, - "contribution": 4140, - "answer": 5, - "count": 2 + "question": 344, + "contribution": 1842, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1e49f0d-93d0-43f9-9331-aa2416470039", + "pk": "d90b81d0-76b1-41ec-9250-1b3fd1be3784", "fields": { - "question": 366, - "contribution": 3932, - "answer": 3, + "question": 476, + "contribution": 3721, + "answer": -1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1e4ba4f-9c7a-4431-88fb-1990596e85c4", + "pk": "d91206f7-49a4-4d1d-b52b-65d93a060de3", "fields": { - "question": 258, - "contribution": 4138, - "answer": 4, - "count": 3 + "question": 260, + "contribution": 3474, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f1ef0ac4-7d42-45cf-9c47-39901995a9f5", + "pk": "d9155174-8e31-4872-a512-703aaf72460e", "fields": { - "question": 368, - "contribution": 4085, - "answer": 2, - "count": 9 + "question": 348, + "contribution": 841, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f20cee36-ae3f-4862-8ff0-487b82c764fb", + "pk": "d91ee046-62a8-4d8c-88e3-936c93c06b62", "fields": { - "question": 332, - "contribution": 1284, - "answer": 3, - "count": 2 + "question": 325, + "contribution": 881, + "answer": 1, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f22713cd-7d3b-4091-b7b6-5c375c1e634c", + "pk": "d92a2cdc-ee1b-4a7c-b407-07c05651f8ae", "fields": { - "question": 321, - "contribution": 3721, + "question": 476, + "contribution": 884, + "answer": 0, + "count": 25 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "d937ded9-cd0a-469b-a653-7f5075f2266d", + "fields": { + "question": 320, + "contribution": 3472, "answer": 3, - "count": 8 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f23192d6-1ad2-46cf-9abf-a6ee52f7e1da", + "pk": "d93968ce-925a-4afe-b6a0-885561405c5e", "fields": { - "question": 361, - "contribution": 3942, - "answer": 5, + "question": 344, + "contribution": 1235, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f23c0d9b-1aaf-41cf-8b51-0f9623820af2", + "pk": "d941392b-e7b1-4226-b24c-665231e776a4", "fields": { - "question": 317, - "contribution": 3725, - "answer": 2, - "count": 7 + "question": 476, + "contribution": 3679, + "answer": 0, + "count": 18 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f24e8fa3-9080-4fe7-8171-998c142dd8c3", + "pk": "d9454438-3f97-4f27-92ed-c4c55d5e46bf", + "fields": { + "question": 472, + "contribution": 4138, + "answer": 1, + "count": 19 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "d9567186-15af-4ecd-98b7-31f5a987ce82", "fields": { "question": 329, - "contribution": 837, + "contribution": 3519, "answer": 2, - "count": 7 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f251d821-bde3-470d-ba62-d61d0e4a3145", + "pk": "d95a3647-2f82-438e-9f5b-59d634a9173c", "fields": { - "question": 320, - "contribution": 1612, - "answer": 5, - "count": 1 + "question": 319, + "contribution": 1724, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f251f017-133c-404f-9cca-dac7a8cfcd51", + "pk": "d95bda35-a761-461f-91b3-b3239072b92f", "fields": { - "question": 345, - "contribution": 4190, - "answer": 1, - "count": 7 + "question": 344, + "contribution": 3516, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2536bbc-95bd-4105-8d32-ff7da393c559", + "pk": "d95d99bd-0c84-42d8-a75b-79485e4f05b5", "fields": { - "question": 349, - "contribution": 4095, + "question": 325, + "contribution": 1778, "answer": 2, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2703cb6-7aa8-4928-8e7b-4076635ae767", + "pk": "d96cbebb-b5c9-443b-9561-5e042f5473e2", "fields": { - "question": 362, - "contribution": 3647, + "question": 321, + "contribution": 880, "answer": 1, + "count": 14 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "d97e0ee5-6795-48cd-bbbb-9145935c3cf5", + "fields": { + "question": 344, + "contribution": 4123, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f291995d-2dfb-4eef-a0ba-f702c527a0cc", + "pk": "d98ef5c5-2736-4db1-9e92-eaec4bb8630c", "fields": { "question": 328, - "contribution": 3519, - "answer": 5, - "count": 3 + "contribution": 837, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2a12e3d-d5ad-48e8-8ecc-992ad1917a90", + "pk": "d9a80d75-aa1d-42ed-b01d-b8ee43173040", "fields": { - "question": 339, - "contribution": 1726, - "answer": 0, - "count": 2 + "question": 344, + "contribution": 4192, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2a83116-c2ee-4ef3-85e6-dcd258cf56fe", + "pk": "d9a813d4-e956-44ee-abf6-a4bda7a56b28", "fields": { - "question": 355, - "contribution": 3545, + "question": 380, + "contribution": 3775, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2aae6b0-76fb-494a-92e5-317548aaf4a4", + "pk": "d9ab1d00-203e-4ba8-9b67-99a9f35cd43a", "fields": { - "question": 257, - "contribution": 3394, - "answer": 1, + "question": 416, + "contribution": 3984, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2bbf257-78c4-410c-9f7f-73295f7de9e9", + "pk": "d9ad5f25-babe-441c-beea-51f796f3d229", "fields": { - "question": 370, - "contribution": 1784, - "answer": 1, - "count": 7 + "question": 477, + "contribution": 4085, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2bd9d6b-974d-4514-96f1-c21fb7c44a54", + "pk": "d9b00ad9-aba5-4a35-ba96-4d5d28d354dd", "fields": { - "question": 343, - "contribution": 3939, + "question": 347, + "contribution": 4234, "answer": 1, - "count": 4 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2c566ac-a113-43f1-9e21-31f52e22e78a", + "pk": "d9ba86a1-74be-459e-b0cd-404d5ca786ff", "fields": { - "question": 316, - "contribution": 836, - "answer": 4, - "count": 2 + "question": 348, + "contribution": 1151, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2cbf336-4e0a-40f3-bd98-704c80a447b3", + "pk": "d9bc0f81-8f3d-4d07-8871-0f8f33d20471", "fields": { - "question": 328, - "contribution": 1802, - "answer": 3, + "question": 329, + "contribution": 3423, + "answer": 2, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2d4a98e-474c-4c9b-a026-152e71a86015", + "pk": "d9c0173f-fb55-4352-8001-fb189f80c591", "fields": { - "question": 321, - "contribution": 3474, - "answer": 3, - "count": 3 + "question": 332, + "contribution": 3598, + "answer": 1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2d6acad-7d4d-4e4c-93c9-201de07f1045", + "pk": "d9cb75be-898c-4036-bc7a-dd3caa068b5b", "fields": { - "question": 345, - "contribution": 4233, - "answer": 1, + "question": 328, + "contribution": 3740, + "answer": 4, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2df9307-559d-4839-b1d1-32df659bb44f", + "pk": "d9e814e1-4f88-4458-97bd-06fcb5fd1069", "fields": { - "question": 259, - "contribution": 3474, - "answer": 1, - "count": 3 + "question": 359, + "contribution": 1806, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2e05ab8-4800-4ab3-afe3-44c1a7fd3046", + "pk": "d9e99a65-2c20-4893-b340-52d4071e1679", "fields": { - "question": 331, - "contribution": 3390, - "answer": -3, - "count": 3 + "question": 317, + "contribution": 1668, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2e28fd0-bb47-4479-87bb-af95c9435483", + "pk": "d9ea4663-b882-402b-b1f3-d36f179f55a4", "fields": { - "question": 395, - "contribution": 3775, - "answer": 2, + "question": 367, + "contribution": 1626, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2e6df43-5dfc-4e8d-a0dc-8df03ec22854", + "pk": "d9f299c2-1aa9-4f26-8ac9-7295e09b2945", "fields": { - "question": 346, - "contribution": 3899, + "question": 351, + "contribution": 826, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2eaaa0c-a8b2-425c-9fd8-8e45684c7670", + "pk": "d9f6b425-dc32-4e56-9474-4a9f1ca4aba7", "fields": { - "question": 368, - "contribution": 4101, + "question": 348, + "contribution": 3516, "answer": 1, - "count": 4 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2ef8810-a970-45b1-a9c0-2221723302bf", + "pk": "da011d79-7a0c-4e4e-b610-6e99da3184ef", "fields": { - "question": 325, - "contribution": 3391, - "answer": 2, - "count": 12 + "question": 475, + "contribution": 3745, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2f4ed4c-2ed7-4048-9391-a9bbd5f08c3f", + "pk": "da3491aa-d4e8-42b4-9812-a16fe92205c5", "fields": { - "question": 323, - "contribution": 1668, + "question": 326, + "contribution": 3883, "answer": 1, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f2fe24a7-7d89-442c-aef2-d3a14b5db7de", + "pk": "da3be54b-7086-4b0f-a64c-a988058979b7", "fields": { "question": 344, - "contribution": 3518, - "answer": 1, - "count": 2 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "f30082bd-0a14-44cc-83a4-a3ab67e822de", - "fields": { - "question": 345, - "contribution": 3528, - "answer": 1, - "count": 2 + "contribution": 3728, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f30bdc8f-0ce4-454a-ab27-32f389914ac1", + "pk": "da40f495-e46e-4d0d-aaba-f78c1326835e", "fields": { - "question": 475, - "contribution": 1702, - "answer": 0, - "count": 6 + "question": 476, + "contribution": 822, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f30d76b3-64f5-4d9d-baa3-5d8054947e05", + "pk": "da420adc-f065-4d32-b8af-fca3746e202b", "fields": { - "question": 345, - "contribution": 3704, - "answer": 2, + "question": 360, + "contribution": 1827, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f32a2da7-eb9d-409b-9928-9983f7235d84", + "pk": "da4be0eb-003e-4c75-9835-bf841c0ace65", "fields": { - "question": 328, - "contribution": 4047, - "answer": 4, + "question": 476, + "contribution": 3721, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f32e5528-46d6-4b6b-a717-d91da0b278ea", + "pk": "da6cfb45-0996-45ad-8274-b1c41c412919", "fields": { - "question": 339, - "contribution": 3440, - "answer": 0, + "question": 356, + "contribution": 1776, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f33204b2-d556-47da-b3a8-2428bc718e76", + "pk": "da701210-056a-4d41-a52d-e5046b32c762", "fields": { - "question": 345, - "contribution": 3704, - "answer": 1, + "question": 343, + "contribution": 1809, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f333bbfa-3535-434b-ac07-2bc7bee0c650", + "pk": "da7b93ea-1d8e-4edf-954e-4dcd7277edfd", "fields": { - "question": 332, - "contribution": 1282, - "answer": 2, - "count": 3 + "question": 262, + "contribution": 3462, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3357637-7c2a-4661-831f-70f23c946e08", + "pk": "da8226ed-e445-4c9f-891e-db27cec8aae8", "fields": { - "question": 353, - "contribution": 4243, + "question": 349, + "contribution": 1661, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f339a402-0ccf-4a1c-a75d-b163abc7cbde", + "pk": "da86696f-29ae-4abf-b306-f8d5549fef10", "fields": { - "question": 325, - "contribution": 3463, - "answer": 4, - "count": 1 + "question": 368, + "contribution": 4152, + "answer": 2, + "count": 14 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f33eaf8e-6e49-4813-b586-e6584ab42164", + "pk": "da94017c-a32f-4a7d-84df-9a6bbead46b4", "fields": { - "question": 259, - "contribution": 3474, - "answer": 2, - "count": 6 + "question": 315, + "contribution": 4116, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3559aa9-3a7e-46f2-a8c0-614a2c7c8f11", + "pk": "da99daba-9c9f-4d43-8834-a613f6a3327f", "fields": { - "question": 331, - "contribution": 1658, - "answer": -3, + "question": 336, + "contribution": 3703, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3568d7d-ad24-4be1-901d-22da5659d50d", + "pk": "da9b7002-1aaf-4c39-a502-3a25b93b00e5", "fields": { - "question": 344, - "contribution": 869, - "answer": 2, - "count": 1 + "question": 331, + "contribution": 1626, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3577057-e9a0-4b7c-80a6-057dcd4a390b", + "pk": "daa60930-d8e6-4e12-8465-6b6175ec2b74", "fields": { - "question": 320, - "contribution": 1626, - "answer": 5, - "count": 7 + "question": 476, + "contribution": 1837, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3584ccf-13ed-452b-a215-2a7129715786", + "pk": "dab46987-17ce-48bf-aabe-e0156660b1fd", "fields": { - "question": 316, - "contribution": 4022, + "question": 434, + "contribution": 4090, "answer": 4, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f35c5f6f-6c56-4548-a1da-2376ec759ea0", + "pk": "dacd90d7-43f1-4c01-afea-0ec4d8c6f7be", "fields": { - "question": 346, - "contribution": 1247, + "question": 339, + "contribution": 1694, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f35ef57d-6230-4580-9941-725827dfa371", + "pk": "daf049da-26c9-42af-a969-d79d4da657d3", "fields": { - "question": 346, - "contribution": 1869, + "question": 347, + "contribution": 1863, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f35ef6dc-b6d5-4615-8e29-b6d913e57f56", + "pk": "daf918d2-d0d0-4ef6-bb1a-c5f87f4ff20f", "fields": { "question": 328, - "contribution": 3684, - "answer": 3, + "contribution": 1725, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f364c6f3-5019-45fd-92e4-e4cf0188bf46", + "pk": "daf9ed76-d7aa-400d-bca7-4f2a1179f6c7", "fields": { - "question": 346, - "contribution": 3545, - "answer": 4, - "count": 1 + "question": 477, + "contribution": 885, + "answer": -2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3683cc9-9420-4f3f-a2f2-0dcb1f5eadda", + "pk": "dafc5154-15a9-443b-bc03-6bee5bc0c56b", "fields": { - "question": 339, - "contribution": 1710, - "answer": 0, - "count": 3 + "question": 255, + "contribution": 4138, + "answer": 2, + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f36f752c-8472-47ac-b22f-02dbd53b8e17", + "pk": "db051f90-0bee-4c49-9443-f76d10701cd1", "fields": { - "question": 362, - "contribution": 1810, - "answer": 2, - "count": 6 + "question": 319, + "contribution": 4128, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f377515a-dbd4-41bf-8ac0-2168df10c1a7", + "pk": "db0fbdee-bf3b-4a73-adc9-9dd178a6d26c", "fields": { - "question": 477, - "contribution": 1298, - "answer": 1, - "count": 1 + "question": 322, + "contribution": 4118, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f37cac77-94de-400c-a8c7-ecb55c01bc72", + "pk": "db1ad810-992c-4ee1-bff6-debdbfa8eefc", "fields": { - "question": 370, - "contribution": 1776, - "answer": 1, - "count": 8 + "question": 356, + "contribution": 1785, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f37d2be8-49da-4ccd-aea6-c93af307bfc1", + "pk": "db1aed96-eb3a-4650-9cb4-243a09f5c942", "fields": { - "question": 349, - "contribution": 1246, - "answer": 1, - "count": 1 + "question": 477, + "contribution": 3722, + "answer": -1, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3887c22-8fc0-46fb-b1c3-c6455e2f82f0", + "pk": "db20c112-6669-49e3-ad1e-d8854196d2d5", "fields": { - "question": 359, - "contribution": 1810, - "answer": 1, - "count": 11 + "question": 473, + "contribution": 3739, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f389be55-bca7-4788-8aa0-d37c9de3d97e", + "pk": "db2802ef-fbae-4b0f-8e41-2818f16a9210", "fields": { - "question": 258, - "contribution": 3434, + "question": 368, + "contribution": 3680, "answer": 2, - "count": 9 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f39b50f9-d6e3-445e-8ef7-9ea2e0ce50aa", + "pk": "db2b8cfd-7743-4da8-b926-21377cea4d8b", "fields": { - "question": 338, - "contribution": 918, - "answer": 1, - "count": 8 + "question": 345, + "contribution": 3608, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3a24ffb-97ad-4bff-ac99-034959d84eb0", + "pk": "db2f818f-8b4c-41b5-b40b-da32e0e33694", "fields": { - "question": 370, - "contribution": 4243, + "question": 327, + "contribution": 885, "answer": 1, - "count": 1 + "count": 27 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3a4ffbc-1e48-43b6-b576-da9975baa87a", + "pk": "db33260b-802e-4893-88fd-d7ce0d1b4da8", "fields": { - "question": 326, - "contribution": 823, - "answer": 4, - "count": 1 + "question": 367, + "contribution": 3725, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3a6d594-36a3-465a-8188-3844c553203b", + "pk": "db33eb95-0226-41e8-bba2-ede24c22f20f", "fields": { - "question": 327, - "contribution": 3666, - "answer": 2, - "count": 3 + "question": 473, + "contribution": 3723, + "answer": 0, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3ab891a-7a02-45eb-a999-c4cf78ab2549", + "pk": "db36055e-1130-45a9-9303-7858e8c93c0f", "fields": { - "question": 340, - "contribution": 3645, - "answer": 1, + "question": 473, + "contribution": 3404, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3abff22-0ac1-4879-9fef-977f3dbf2012", + "pk": "db442666-8333-4c81-834c-e72299a1c14a", "fields": { - "question": 353, - "contribution": 4271, + "question": 355, + "contribution": 3610, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3af4130-bbff-4ab9-867a-3bdf83548db1", + "pk": "db4a7624-a869-4bef-8637-d22c9df8487a", "fields": { - "question": 317, - "contribution": 3739, + "question": 260, + "contribution": 1658, "answer": 1, - "count": 1 + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3af62b0-e7c3-4e18-b02d-49dcacaef739", + "pk": "db4ae6f7-7bd1-4761-8d13-699dfe966191", "fields": { - "question": 319, - "contribution": 3354, - "answer": 4, - "count": 1 + "question": 401, + "contribution": 4148, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3dbefcd-0838-419f-b5ef-f8641a03aa23", + "pk": "db5eb4db-dbbe-4f49-b6ec-1f9caf707da8", "fields": { - "question": 368, - "contribution": 3519, + "question": 323, + "contribution": 3474, "answer": 3, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3dc2fee-ea46-4654-bd57-301b8a0b320f", + "pk": "db60a78d-8f55-4b89-be64-52061606b42e", "fields": { - "question": 475, - "contribution": 3508, + "question": 369, + "contribution": 3917, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3eac67d-4178-499e-9e01-cd2a38ac5bcb", + "pk": "db639bf2-f77f-47c3-9da0-4dc6d764f5fd", "fields": { - "question": 338, - "contribution": 3645, - "answer": 1, + "question": 475, + "contribution": 1694, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f3f318e9-15f5-4d03-b23f-9b85d325d5a8", + "pk": "db642d2c-c49f-4d64-ab3e-71a89d532952", "fields": { - "question": 357, - "contribution": 1154, - "answer": 4, + "question": 356, + "contribution": 3545, + "answer": 3, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "db6b23a4-1069-4181-8113-65d1a53fd449", + "fields": { + "question": 332, + "contribution": 1812, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4087342-da5a-4afd-bd8f-977db138f1c4", + "pk": "db72d845-bd9f-4b53-9952-adf8ec07292a", "fields": { - "question": 340, - "contribution": 1702, - "answer": 2, + "question": 370, + "contribution": 4267, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4099759-77d9-404f-a58e-d6aaa0234ccb", + "pk": "db775b0e-4581-4c8c-84c8-094749cf4e80", "fields": { - "question": 366, - "contribution": 1812, + "question": 346, + "contribution": 3528, "answer": 3, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "db7b3166-6088-46c2-b46b-dbabe7847349", + "fields": { + "question": 350, + "contribution": 4022, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f40a8ff0-c7c2-43df-bfb9-2ae8b25059c6", + "pk": "db7dca60-0402-4699-a352-74d00d43e2e0", "fields": { - "question": 347, - "contribution": 4146, - "answer": 1, + "question": 372, + "contribution": 3454, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f40ce7f2-6395-4af1-bc2c-4be45c5a4f03", + "pk": "db852bf8-875c-4ae8-9739-da1cf25745a7", "fields": { - "question": 338, - "contribution": 4052, + "question": 357, + "contribution": 1785, "answer": 3, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f40e0020-330c-4e36-9a22-10ee571abc10", + "pk": "db8546a3-02f3-4e64-901e-d6102f54bbce", "fields": { - "question": 329, - "contribution": 3589, + "question": 349, + "contribution": 4187, "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f40f68a6-e230-4ffb-858d-d29ba7aa8ab0", + "pk": "db889dd9-3eb6-4c97-a96a-b6b2051abdd8", "fields": { - "question": 340, - "contribution": 1662, - "answer": 1, - "count": 8 + "question": 477, + "contribution": 4117, + "answer": -3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f41b271e-ad9f-4712-8a7f-dffe209fd3fb", + "pk": "db92c947-4ea3-4d37-9126-f5651ab620f5", "fields": { - "question": 383, - "contribution": 3775, + "question": 329, + "contribution": 4117, + "answer": 4, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "db93646f-9e4d-4f3f-97df-a68ebacd06cf", + "fields": { + "question": 379, + "contribution": 3755, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f41bd13a-6e80-41f0-a5fc-2834afb5e869", + "pk": "db9583c5-368f-40b4-8bf5-4872203450fc", "fields": { - "question": 317, - "contribution": 4100, + "question": 367, + "contribution": 3679, "answer": 3, - "count": 13 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f41ff041-5727-4dcd-b123-8b8e9107f2e2", + "pk": "db9778a4-e8e7-4a51-84f5-27f872d9d344", "fields": { - "question": 346, - "contribution": 1204, - "answer": 2, - "count": 4 + "question": 327, + "contribution": 881, + "answer": 3, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f426e6d9-8076-4a68-a4b3-ec610e8eaab5", + "pk": "dba45efa-837d-4001-b983-27e2187734b8", "fields": { - "question": 320, - "contribution": 4084, - "answer": 2, - "count": 26 + "question": 260, + "contribution": 3739, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f432cd3c-2c97-4734-9fcd-2a5f21a0b16f", + "pk": "dba556e8-175e-43a5-b1d1-aea44d33ba01", "fields": { - "question": 357, - "contribution": 1786, + "question": 317, + "contribution": 4120, "answer": 2, - "count": 3 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4347b03-9ca8-4906-ad83-13d7cf276023", + "pk": "dba627e0-8bd2-428d-b9c7-abdfe764116e", "fields": { - "question": 320, - "contribution": 3472, - "answer": 1, + "question": 328, + "contribution": 3463, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4428764-6376-431f-a1cd-263ba9b369bb", + "pk": "dbb3ad9e-8c87-47a2-96ec-2e84e13537bd", "fields": { - "question": 255, - "contribution": 4052, - "answer": 3, + "question": 371, + "contribution": 3936, + "answer": 1, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "dbb71d4b-5b00-4b5a-957b-09b500fbb5c3", + "fields": { + "question": 361, + "contribution": 1810, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f44cd1f7-a46d-4b79-bda6-0ce9b65027d9", + "pk": "dbb865ab-c3c8-4fab-9233-a3027a679fb3", "fields": { "question": 319, - "contribution": 1680, - "answer": 2, - "count": 2 + "contribution": 4084, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4596568-d3b4-44b8-8629-2033a49e83c8", + "pk": "dbbf43be-63ec-4a4b-9f14-2d90d52f1d53", "fields": { - "question": 476, - "contribution": 822, - "answer": 1, + "question": 345, + "contribution": 1639, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f45dca3e-29fc-4015-beeb-cd7adf24e7a1", + "pk": "dbd05742-7494-4cfd-8ee9-20cc633856c5", "fields": { - "question": 322, - "contribution": 1658, - "answer": 4, + "question": 327, + "contribution": 4085, + "answer": 3, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "dbd38f7a-4f4d-4f4d-afca-ef2b17382ad8", + "fields": { + "question": 340, + "contribution": 894, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4622faf-bed4-4e1b-83f7-e0bf71a03d99", + "pk": "dbde1fb8-4961-4fd4-bd79-27673b6d4f18", "fields": { - "question": 349, - "contribution": 3528, + "question": 319, + "contribution": 3434, "answer": 1, - "count": 4 + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4655497-a535-45f9-8260-4d54bd42c4c1", + "pk": "dbe9efa2-6ef3-42b7-ab3c-59695e624fed", "fields": { - "question": 348, - "contribution": 3405, - "answer": 2, + "question": 339, + "contribution": 1644, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f46828aa-a291-44aa-944e-cd3d2726553c", + "pk": "dbeb36ba-8413-4bde-be5c-0b648b1358e2", "fields": { - "question": 353, - "contribution": 1776, - "answer": 2, - "count": 3 + "question": 343, + "contribution": 4129, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f47645f3-932e-44b5-9bef-47d38d17ee51", + "pk": "dbed9926-5ba4-488b-a3c1-2c360f41b447", "fields": { - "question": 357, - "contribution": 1266, + "question": 354, + "contribution": 4278, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f47dde13-22c8-4715-a95f-03147989a514", + "pk": "dbf612f4-45bc-4466-91cd-2aec9f28800b", "fields": { - "question": 315, - "contribution": 1680, - "answer": 4, - "count": 2 + "question": 329, + "contribution": 3726, + "answer": 1, + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f48c5715-5ae4-4bb6-9908-5b99a1f274c8", + "pk": "dc039cb1-3d3d-4aa0-8bd1-22518532d44d", "fields": { - "question": 361, - "contribution": 1827, + "question": 338, + "contribution": 862, + "answer": 1, + "count": 7 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "dc0b6b3c-2818-4845-bcc8-f02c721994d4", + "fields": { + "question": 360, + "contribution": 3648, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f48dab67-8836-47b8-a581-39d90c8dee39", + "pk": "dc0d4040-49a1-44b3-a5b0-48ffee3754f8", "fields": { - "question": 370, - "contribution": 1784, + "question": 357, + "contribution": 3834, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f498cc55-c2ab-4ffb-bc9f-0ce84e6e23ba", + "pk": "dc23e743-7c3f-406f-be24-c4869f908471", "fields": { - "question": 369, - "contribution": 1812, - "answer": 2, + "question": 472, + "contribution": 1644, + "answer": 5, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4a877a9-20e4-4cac-9589-f71fac498a2e", + "pk": "dc363237-25ce-4af6-8038-d5cf6af4a9da", "fields": { - "question": 341, - "contribution": 4052, - "answer": 1, + "question": 362, + "contribution": 1812, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4a9005e-6c8d-4aac-9650-a73317521edb", + "pk": "dc40a440-6046-4c0e-af6b-327f4480037f", "fields": { - "question": 349, - "contribution": 3935, - "answer": 2, - "count": 1 + "question": 315, + "contribution": 4084, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4b3b0e6-961e-4673-8557-9cad53215aa8", + "pk": "dc49db44-9948-43c4-b98b-2332985e0dcc", "fields": { - "question": 346, - "contribution": 1860, - "answer": 1, - "count": 4 + "question": 322, + "contribution": 822, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4c4ed06-9f06-4bb1-b192-77b30974817c", + "pk": "dc4fbdf7-ff55-4a5b-b3f0-a10aecae98d8", "fields": { - "question": 335, - "contribution": 3553, + "question": 316, + "contribution": 3474, "answer": 3, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4c56265-436f-40f3-9efa-1d7dfdd6a3c1", + "pk": "dc5aa98b-4440-4cdc-9e13-839bf018d694", "fields": { - "question": 255, - "contribution": 908, + "question": 259, + "contribution": 4022, "answer": 1, - "count": 14 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4d4078c-e741-4651-819d-2c0577ff033f", + "pk": "dc623469-a6da-4139-a069-f98545a828e3", "fields": { - "question": 319, - "contribution": 4118, - "answer": 2, + "question": 344, + "contribution": 3546, + "answer": 3, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4d85960-4e27-4861-86a9-483a5e260201", + "pk": "dc69fb0d-9912-4ac1-bfac-9ad257156eba", "fields": { - "question": 321, - "contribution": 4128, - "answer": 4, + "question": 353, + "contribution": 3545, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4dbdf20-4950-41f5-8a38-f6060899da37", + "pk": "dc6f1a54-e652-4b99-bfaa-7dce579593bc", "fields": { - "question": 341, - "contribution": 4094, + "question": 372, + "contribution": 3745, "answer": 3, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4f1dd02-c562-4a2a-aec3-fce222d4053d", + "pk": "dc745b26-4f3f-4adc-97aa-3d05b51ae2cf", "fields": { - "question": 340, - "contribution": 3723, + "question": 366, + "contribution": 3936, "answer": 3, + "count": 4 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "dc81f4cf-6462-42a1-945a-f86241f14dc3", + "fields": { + "question": 335, + "contribution": 3595, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4f888b3-6a49-4809-803f-fa1eed2f4bbe", + "pk": "dc8317ff-9ef5-4112-889f-784aa86c0bd9", "fields": { - "question": 346, - "contribution": 1151, + "question": 316, + "contribution": 4028, "answer": 2, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4fa21fa-dba1-46df-acdd-71672b4fbd23", + "pk": "dc84dfef-9fd2-4e08-b957-98c6e9cd999b", "fields": { - "question": 477, - "contribution": 3884, - "answer": -1, + "question": 476, + "contribution": 3422, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f4ff2f77-4215-4d43-aa59-9c6c19203931", + "pk": "dc86d7f4-6d5d-435a-b814-56d96f1c7098", "fields": { - "question": 257, - "contribution": 884, - "answer": 2, - "count": 9 + "question": 368, + "contribution": 1802, + "answer": 5, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f50ae26d-f40c-463a-b930-739a600b1c4f", + "pk": "dc8ab0e8-7b7c-4f3e-9bbe-90dc00023c88", "fields": { - "question": 346, - "contribution": 3405, + "question": 345, + "contribution": 3610, "answer": 1, "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f514e76b-72cb-4ab1-828a-97aa58a2ff14", + "pk": "dc91bdd1-c866-4f52-97ba-760ffe0a87b4", "fields": { - "question": 258, - "contribution": 1668, - "answer": 1, - "count": 8 + "question": 321, + "contribution": 4100, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5243514-9da8-4efe-b5a9-224cd1c6f2fc", + "pk": "dc96e89c-be90-4379-8fbd-872a44554add", "fields": { - "question": 475, - "contribution": 1200, - "answer": 2, - "count": 2 + "question": 317, + "contribution": 1634, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f52d967c-a03d-4d95-b711-c012206b6b52", + "pk": "dc984e97-1c0c-4da5-b7ca-5b562d99e8ff", "fields": { - "question": 473, - "contribution": 3508, - "answer": 1, - "count": 3 + "question": 353, + "contribution": 3834, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f52e2920-c0bf-4642-90fc-11050d21e349", + "pk": "dc9f63e2-84f4-4be8-b3c2-f39829271457", "fields": { - "question": 333, - "contribution": 4152, - "answer": 2, - "count": 11 + "question": 339, + "contribution": 868, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5491dd7-10b3-4f85-9e33-41bbe8de0fe5", + "pk": "dca9bd38-f2c5-44d8-a284-513f65af8e7f", "fields": { - "question": 325, - "contribution": 4101, - "answer": 4, + "question": 370, + "contribution": 4227, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f54a3607-8449-4365-a494-e6d246dfd562", + "pk": "dcaee0f9-8957-4f99-a6ed-5d2d26c718de", "fields": { - "question": 438, - "contribution": 3976, - "answer": 5, + "question": 363, + "contribution": 3944, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f552018d-8182-4255-8379-70d5c1c1af34", + "pk": "dcaf30b6-9864-4547-97de-8e16ca50d5fd", "fields": { - "question": 345, - "contribution": 3555, - "answer": 1, - "count": 5 + "question": 476, + "contribution": 836, + "answer": 0, + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f55dc458-f627-4185-b376-353843e6cada", + "pk": "dcc34360-0624-44da-92dc-d932153d0512", "fields": { - "question": 348, - "contribution": 1203, - "answer": 1, + "question": 346, + "contribution": 3546, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f56079bc-5cfb-497f-b7b6-c680d59fb7af", + "pk": "dcc5b77e-ebbc-46b9-bf1d-2c1d9ddf8170", "fields": { - "question": 319, - "contribution": 3725, - "answer": 1, - "count": 7 + "question": 344, + "contribution": 4187, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5624107-35bb-4659-8755-c19109987ea0", + "pk": "dcc817a3-6316-49a3-bcb0-1f784928a650", "fields": { - "question": 352, - "contribution": 3454, - "answer": 2, + "question": 366, + "contribution": 4152, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f56d2c2f-075c-4ddc-83df-35575ce80333", + "pk": "dcccc1b9-21d2-4b5d-8b63-dad35352ae58", "fields": { - "question": 316, - "contribution": 1724, - "answer": 2, - "count": 2 + "question": 477, + "contribution": 913, + "answer": -1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5732221-7c91-4d2b-b104-a46ccaa366e2", + "pk": "dcd62c9d-476c-41b4-9ef7-75ce66c89e7d", "fields": { - "question": 360, - "contribution": 1799, - "answer": 5, - "count": 1 + "question": 321, + "contribution": 4028, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f574c2fc-7f18-4437-afe0-f824aa8bed92", + "pk": "dcdbde57-5182-4951-9f42-e36427de2b0b", "fields": { - "question": 362, - "contribution": 3921, - "answer": 4, - "count": 2 + "question": 321, + "contribution": 3725, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f574c97e-bc93-48af-aa36-91f9d82d7776", + "pk": "dcdffc9a-93d6-45de-842d-ed0fa3a0d15b", "fields": { - "question": 475, - "contribution": 3416, + "question": 473, + "contribution": 4002, "answer": 0, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f580f402-af21-439a-b4ad-9e701a9db5ca", + "pk": "dce69b94-7c0a-4487-b40b-3473774edac7", "fields": { - "question": 316, - "contribution": 3434, - "answer": 1, - "count": 18 + "question": 315, + "contribution": 3721, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f586834d-799c-4d96-96d8-4cab91b06719", + "pk": "dce875e2-6708-444e-87a5-de7140496166", "fields": { - "question": 347, - "contribution": 3545, - "answer": 4, - "count": 1 + "question": 366, + "contribution": 4155, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f591531f-bca3-44ac-915b-27b87568a74a", + "pk": "dce8a477-1a49-420d-ab4a-fcf3f0c73aaa", "fields": { - "question": 315, - "contribution": 3462, - "answer": 4, - "count": 1 + "question": 322, + "contribution": 1837, + "answer": 1, + "count": 26 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f597d3ab-bbdf-49ac-9c19-5ccee6e0d89b", + "pk": "dceb5f5b-0cdd-47e8-b2fa-5b49cc56c8cd", "fields": { - "question": 412, - "contribution": 3984, - "answer": -2, + "question": 372, + "contribution": 3440, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f597eefa-d0de-4532-814c-37d45ff39c3d", + "pk": "dcedb09b-b7eb-4bc9-911e-15b7de5ee52f", "fields": { - "question": 345, - "contribution": 1151, - "answer": 1, - "count": 3 + "question": 262, + "contribution": 3474, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5aa9b62-0d5d-4d2b-bd6d-9369d343cdd3", + "pk": "dcf6288a-47de-4a77-9719-697b8874a46b", "fields": { - "question": 367, - "contribution": 1612, - "answer": 1, - "count": 6 + "question": 320, + "contribution": 836, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5b2d636-9a01-4027-baac-bb8dc6555e86", + "pk": "dcf96fa7-c761-423b-ac31-7ffa5cd58547", "fields": { - "question": 322, - "contribution": 3721, + "question": 328, + "contribution": 3859, "answer": 1, - "count": 5 + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5bd2af4-6c54-41d6-85ef-402ae1371e71", + "pk": "dcfd3337-c7e3-4bdf-af3d-d5bf061fa441", "fields": { - "question": 477, - "contribution": 1780, + "question": 343, + "contribution": 3516, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5c4e303-d9bb-4666-a05b-4f840d057999", + "pk": "dcfef9cd-efc6-4989-bb78-aaa0b2699c1d", "fields": { - "question": 319, - "contribution": 3721, + "question": 367, + "contribution": 4116, "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5ca846b-c49b-45c2-b28e-e76656948c90", + "pk": "dd08da6e-125d-462b-8700-a2259be2a9ae", "fields": { - "question": 353, - "contribution": 1154, - "answer": 1, - "count": 22 + "question": 336, + "contribution": 788, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5cacce3-ac79-4dac-99db-1e74091a59d0", + "pk": "dd11205d-f864-46a0-b29c-86d7b2add86f", "fields": { - "question": 320, - "contribution": 3406, + "question": 257, + "contribution": 4046, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5cb499c-beb3-44fc-9a05-2b2a90ef6745", + "pk": "dd137ccf-4b67-4b02-9bf9-a63686247888", "fields": { - "question": 320, - "contribution": 4100, + "question": 356, + "contribution": 1189, "answer": 1, - "count": 7 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5cded45-a92d-4ab8-8758-233ba0e5b0ca", + "pk": "dd143333-2308-4009-ac07-e0eb9f6696a5", "fields": { - "question": 326, - "contribution": 885, + "question": 374, + "contribution": 3711, "answer": 1, - "count": 22 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5d9840d-d166-4828-8976-6c883fb3f513", + "pk": "dd170721-84d1-4823-aa9d-ffdc4f2a00b2", "fields": { - "question": 355, - "contribution": 3516, + "question": 473, + "contribution": 4094, + "answer": -1, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "dd1e08be-4cd7-403e-a9f9-c3a90aadabdc", + "fields": { + "question": 368, + "contribution": 3589, "answer": 1, - "count": 6 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5e44e06-956e-41f8-8103-8db0f5675bb6", + "pk": "dd2bc406-051f-46e1-93cd-3a0f90323b72", "fields": { - "question": 341, - "contribution": 1640, + "question": 383, + "contribution": 3711, "answer": 1, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5fac4e1-d4ac-47fe-8026-0dc8407a70ee", + "pk": "dd2fc48c-8ec3-4095-a4a4-6ecd7dca8e60", "fields": { - "question": 260, - "contribution": 3390, - "answer": 3, - "count": 7 + "question": 332, + "contribution": 3932, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f5fc0074-1463-462e-992d-3c7e582da8e9", + "pk": "dd369d37-4daa-4ed9-b281-d864c7df7303", "fields": { - "question": 368, - "contribution": 3435, + "question": 346, + "contribution": 3899, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6085681-5e2b-4353-8ac0-e19ab76158da", + "pk": "dd44664f-8dd5-4e68-944c-81ae703a64df", "fields": { - "question": 349, - "contribution": 1204, + "question": 332, + "contribution": 837, "answer": 1, - "count": 2 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6125ac4-a32d-4920-8676-5f238c2fe564", + "pk": "dd4c06e9-4cf9-491c-9e04-18fccd7d5f1b", "fields": { - "question": 355, - "contribution": 1776, - "answer": 5, - "count": 1 + "question": 339, + "contribution": 3416, + "answer": 0, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f61ac310-acc7-49a2-9656-87a254dbd60a", + "pk": "dd5251ae-b9cd-4eaf-b5c4-52a49b52621b", "fields": { - "question": 362, - "contribution": 3597, + "question": 319, + "contribution": 4100, "answer": 2, - "count": 1 + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f61b4a2a-aef6-4595-b265-cc0efefc7e18", + "pk": "dd5861af-ff41-4f35-89dc-c08b0e5ce4a2", "fields": { - "question": 347, - "contribution": 1869, - "answer": 2, + "question": 344, + "contribution": 1828, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f62b1b05-8a00-47a2-970c-c20b71e9802d", + "pk": "dd5d2b16-4f8d-4b03-8654-22a4b06553f7", "fields": { - "question": 327, - "contribution": 1776, - "answer": 3, - "count": 5 + "question": 433, + "contribution": 4140, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f62dc765-6dae-4a05-b750-c60fa0549c59", + "pk": "dd5f2b4e-465d-4bca-b63b-1426f712b06e", "fields": { - "question": 343, - "contribution": 3941, + "question": 319, + "contribution": 3422, "answer": 2, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f636e734-c745-4953-bbb4-61afc7cd0ccc", + "pk": "dd645db1-01bc-40b1-80fa-f7d8fc808311", "fields": { - "question": 337, - "contribution": 788, - "answer": 2, - "count": 3 + "question": 340, + "contribution": 3440, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f63da994-67d3-4365-ad76-f3afc68ef58d", + "pk": "dd6f50ea-e47f-425d-8ab1-07c4198e40e6", "fields": { - "question": 317, - "contribution": 1626, - "answer": 2, - "count": 6 + "question": 350, + "contribution": 790, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f64b7774-bcc0-4ac6-9cb0-1608286a8ae5", + "pk": "dd73fb32-9df0-4327-a879-f26e49d13f02", "fields": { - "question": 368, - "contribution": 1777, - "answer": 3, + "question": 349, + "contribution": 4223, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f658cb7f-c854-41a9-b6c9-40b1f963880e", + "pk": "dd904ac5-90b3-4c00-967f-09ceee2b136f", "fields": { - "question": 316, - "contribution": 3739, - "answer": 4, + "question": 457, + "contribution": 4091, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f668a3cc-73ef-4db7-b006-ac353ad92848", + "pk": "dda477ef-1c61-466e-9007-571b02d2415f", "fields": { - "question": 348, - "contribution": 1246, + "question": 332, + "contribution": 3593, "answer": 2, - "count": 3 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f66a65d8-ebd1-478a-ab64-9f9f768d4e46", + "pk": "dda5dee3-bf96-4ea8-966d-f4b13ea050b5", "fields": { "question": 369, - "contribution": 1812, - "answer": 5, + "contribution": 3943, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f674a65c-129c-423e-b90d-73b5c687bf9f", + "pk": "ddb66edf-3bd0-4acf-a640-a4a93a7231e3", "fields": { - "question": 339, - "contribution": 3723, - "answer": -1, - "count": 2 + "question": 326, + "contribution": 3883, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f67910e1-df22-4a64-a66b-4a947269d6ff", + "pk": "ddba0e34-5673-4377-ac26-eba8d5dce4cc", "fields": { - "question": 344, - "contribution": 3528, - "answer": 2, - "count": 2 + "question": 436, + "contribution": 4140, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f67ba2a6-0e42-4302-b3fe-31d0d830b277", + "pk": "ddc10697-a97c-40b9-93c6-32a13acb67d1", "fields": { - "question": 340, - "contribution": 4020, - "answer": 1, - "count": 3 + "question": 346, + "contribution": 4129, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6821c07-fa87-4a2e-8881-0fd3c6038415", + "pk": "ddc10d53-d127-4730-957b-596fa94dedf7", "fields": { - "question": 409, - "contribution": 3974, - "answer": 4, - "count": 1 + "question": 319, + "contribution": 836, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f682d443-72d8-41b6-a4e8-c804b3702b82", + "pk": "ddc12541-3f1a-451e-b94a-32fd84924059", "fields": { - "question": 319, - "contribution": 822, + "question": 472, + "contribution": 3472, "answer": 1, - "count": 2 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f686d263-10c7-419a-94b6-e17bbdc5672f", + "pk": "ddc9f952-7bbe-4e06-808a-1d016a76db8f", "fields": { - "question": 402, - "contribution": 3646, - "answer": 4, - "count": 1 + "question": 320, + "contribution": 1626, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f697fa6e-1957-4ead-a07c-1302b9ade114", + "pk": "ddd2f3e1-307a-4c9c-bf90-aa7bb765fd34", "fields": { - "question": 340, - "contribution": 3440, - "answer": 2, - "count": 5 + "question": 320, + "contribution": 1837, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f69aacfb-4219-43f4-bcd2-289c025a34cd", + "pk": "dddbfb34-02ab-4560-a762-d4f640c9e6dd", "fields": { - "question": 323, - "contribution": 3679, - "answer": 4, + "question": 260, + "contribution": 3434, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f69e30f3-9ca9-410b-a939-d7d0b3aaca95", + "pk": "ddea26e7-d804-47aa-a727-1c2a79b35e9f", "fields": { - "question": 477, - "contribution": 1776, + "question": 356, + "contribution": 4266, "answer": 1, - "count": 11 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6a06795-f582-4621-a7d3-ede3d2fb83ff", + "pk": "ddee01cc-9496-465d-8b56-7e7eddebf6d1", "fields": { - "question": 335, - "contribution": 1284, - "answer": 3, - "count": 1 + "question": 336, + "contribution": 3404, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6a2937f-f9a1-4b50-a423-c0a1219bbf12", + "pk": "ddef5e86-9499-411e-9a41-6b14e3268ad1", "fields": { - "question": 371, - "contribution": 3881, - "answer": 2, - "count": 3 + "question": 339, + "contribution": 804, + "answer": 0, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6a6dfda-f39b-4d89-b82c-7978ea08b3b3", + "pk": "ddf09e76-9651-47cc-a96c-4be23bf87e8f", "fields": { - "question": 262, - "contribution": 1668, - "answer": 1, + "question": 316, + "contribution": 1626, + "answer": 4, "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6b0f075-f13f-4417-89d6-b7366949724d", + "pk": "ddf42252-573b-4329-ac06-23b8c6a0783c", "fields": { - "question": 366, - "contribution": 3936, - "answer": 2, + "question": 347, + "contribution": 3487, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6b66baf-a22d-49d5-9af7-03c142e02116", + "pk": "de0913ae-6d0a-4f4c-874d-ef20a703f2e6", "fields": { - "question": 476, - "contribution": 1837, - "answer": 0, - "count": 18 + "question": 371, + "contribution": 3922, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6bbc3bf-164d-4d83-860a-9f868d64b3d3", + "pk": "de126591-e115-4a30-8b05-2456da2e775f", "fields": { - "question": 322, - "contribution": 884, + "question": 348, + "contribution": 1880, "answer": 3, - "count": 9 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6c9722d-3c93-4471-bd74-381d7f4bd632", + "pk": "de18abed-c407-473e-a592-82164247e85e", "fields": { - "question": 315, - "contribution": 3474, + "question": 371, + "contribution": 4154, "answer": 2, - "count": 6 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6e0e51a-c48c-4c74-b0e0-031915dba18a", + "pk": "de1d4948-5db8-4b8d-907b-c08943b4ed05", "fields": { - "question": 319, - "contribution": 3739, - "answer": 5, - "count": 2 + "question": 347, + "contribution": 3941, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6e30685-db21-4e7e-b04f-28700a3fd34e", + "pk": "de23e5ec-9213-44f9-8f05-1fc3c881c4cf", "fields": { - "question": 345, - "contribution": 1249, - "answer": 1, + "question": 475, + "contribution": 1200, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6e333fc-3c31-45cf-be53-c9ab079456f8", + "pk": "de2f234b-9cf5-4728-94bd-151f5a897600", "fields": { - "question": 315, - "contribution": 912, - "answer": 1, - "count": 22 + "question": 344, + "contribution": 1202, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6e498b9-6499-43ba-a9cf-c415abbfc735", + "pk": "de3095e2-38b5-484d-96a6-be38bcf3fe9b", "fields": { - "question": 337, - "contribution": 3486, - "answer": 2, - "count": 5 + "question": 356, + "contribution": 1784, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6e58b63-5296-4846-8ce5-d9d558d74a9a", + "pk": "de337cb9-7f0d-48e3-8787-9c7d2a5b4e2e", "fields": { - "question": 370, - "contribution": 3782, - "answer": 2, + "question": 321, + "contribution": 1634, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6e9784a-b653-4d90-99ee-73d9d375c5a1", + "pk": "de3a4af7-e43e-47b2-93c4-6a4a95d4be1e", "fields": { - "question": 348, - "contribution": 4095, - "answer": 3, - "count": 1 + "question": 320, + "contribution": 3406, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6f274a1-240e-4326-a75d-49734ef17333", + "pk": "de3f7676-7300-4a3e-8659-aa9f7b5059c2", "fields": { - "question": 319, - "contribution": 1634, - "answer": 4, - "count": 6 + "question": 473, + "contribution": 3422, + "answer": 0, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f6f6b852-e4ca-4926-929e-7fdd492c3e03", + "pk": "de501253-7fe1-4167-bda9-aa3897907210", "fields": { - "question": 368, - "contribution": 3407, - "answer": 1, + "question": 255, + "contribution": 3665, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f700cbf6-99ce-4597-aa82-0097b04b5151", + "pk": "de50eba1-4fb8-46c8-82e9-6e95f2bfb3e2", "fields": { - "question": 371, - "contribution": 1812, - "answer": 5, + "question": 347, + "contribution": 1246, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f704e766-74b4-4362-9795-1153d8180cfc", + "pk": "de576342-875c-4b9c-b6e0-b45c50ad25ee", "fields": { - "question": 320, - "contribution": 912, + "question": 255, + "contribution": 3422, "answer": 1, - "count": 11 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f7126353-e0b2-4ca3-a15f-ea1815b8e41d", + "pk": "de585900-978f-47e2-b529-2c19e4a8473c", "fields": { - "question": 475, - "contribution": 3440, - "answer": 0, - "count": 3 + "question": 371, + "contribution": 3886, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f71a9c84-b1bf-4f4c-af2e-dc7c8588288c", + "pk": "de632ade-1899-4920-b4d3-ddc09b0595b8", "fields": { - "question": 320, - "contribution": 1658, - "answer": 1, - "count": 10 + "question": 322, + "contribution": 908, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f72cb5e5-021d-4416-ba65-3f8b0a329696", + "pk": "de65e4f6-53b3-43c8-9591-d529c370c386", "fields": { - "question": 316, - "contribution": 1680, - "answer": 3, - "count": 2 + "question": 336, + "contribution": 4122, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f72eaa99-b674-4451-9a59-ff950daa095e", + "pk": "de6bad0f-a332-45fa-aab8-8716ca9fc438", "fields": { - "question": 317, - "contribution": 1658, - "answer": 3, - "count": 1 + "question": 351, + "contribution": 4046, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f73043ed-36bd-4cee-8c7b-4335ae2c1344", + "pk": "de893752-0c78-4417-be57-b13c088f6597", "fields": { - "question": 332, - "contribution": 4156, - "answer": 5, + "question": 438, + "contribution": 4090, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f730852c-3c0d-421c-a7c0-ab4569ee3498", + "pk": "de89f10e-0b1c-45d9-951e-8a42b7323b35", "fields": { - "question": 366, - "contribution": 4244, - "answer": 1, - "count": 3 + "question": 346, + "contribution": 3518, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f73c3b9d-64b8-4ae3-8b65-a8f1d399b912", + "pk": "de93df25-63e0-4f26-8a2a-0777f653be56", "fields": { - "question": 348, - "contribution": 3367, - "answer": 1, + "question": 353, + "contribution": 1776, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f73e0a4c-db33-4292-983b-715e9d2c21a6", + "pk": "de9af2da-af06-4b83-bf38-8f3ee5caf267", "fields": { - "question": 343, - "contribution": 4191, + "question": 339, + "contribution": 832, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f74391d1-6585-4d2a-a414-7f13648bd51c", + "pk": "dea8fa8d-ccec-48ca-8a4c-418512b54d11", "fields": { - "question": 316, - "contribution": 1626, - "answer": 2, - "count": 4 + "question": 341, + "contribution": 1694, + "answer": 1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f745a8dc-9688-41b9-91c5-6917769dbed8", + "pk": "dea94389-e7e7-4d67-ae1d-805f8536eb45", "fields": { - "question": 457, - "contribution": 3453, - "answer": 1, - "count": 1 + "question": 346, + "contribution": 4129, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f767d110-4bc5-481a-b8e0-b4366ed1bc3a", + "pk": "deb20488-0ed3-435f-8129-5d444d4c4599", "fields": { - "question": 326, - "contribution": 3884, + "question": 321, + "contribution": 3665, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f769cf5a-db25-4f6b-88af-1e327ab41074", + "pk": "deb51454-461d-47c5-82c1-cdc0e4c9100e", "fields": { - "question": 337, - "contribution": 4122, - "answer": 5, + "question": 356, + "contribution": 3607, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f76a3d5c-00b6-45cb-93c5-90119fdbe77e", + "pk": "debeb684-c5be-499f-b796-19c11bf5352f", "fields": { - "question": 390, - "contribution": 3755, + "question": 338, + "contribution": 788, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f76ca78f-25e1-487d-a135-44da5b82904c", + "pk": "dec93b38-5c1d-49fb-9279-e56be5724fa5", "fields": { - "question": 349, - "contribution": 1661, - "answer": 2, + "question": 462, + "contribution": 4283, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f77467d8-fefd-4e34-bfce-8b02d257b9a6", + "pk": "ded869e2-23f1-4436-a527-925808cb3724", "fields": { - "question": 417, - "contribution": 3984, - "answer": 5, - "count": 1 + "question": 368, + "contribution": 3395, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f7796d03-de55-468e-8735-8170428725ae", + "pk": "dee3af82-8406-42d4-90ae-f29ec800d926", "fields": { - "question": 339, - "contribution": 1638, - "answer": 0, - "count": 5 + "question": 453, + "contribution": 4185, + "answer": 1, + "count": 24 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f77ab459-b318-448c-b3cd-01376a4ead2f", + "pk": "dee774b7-17c6-4c61-a7a6-71b31cab4039", "fields": { - "question": 339, - "contribution": 788, - "answer": 0, - "count": 5 + "question": 340, + "contribution": 3727, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f77be09f-556c-4314-bce3-4841ddd46158", + "pk": "dee7d321-9ca4-45b2-9c9a-ce4badb5400f", "fields": { - "question": 335, - "contribution": 3551, - "answer": 5, - "count": 1 + "question": 323, + "contribution": 880, + "answer": 2, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f7a2a5d2-3502-4df4-a207-48330ff9ed5d", + "pk": "deebd232-8f65-415f-bbc3-35571ca2a6e5", "fields": { - "question": 322, - "contribution": 1668, - "answer": 2, + "question": 328, + "contribution": 1617, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f7a86b0d-f933-4667-b84e-e05d49819d2c", + "pk": "deec8ae6-ccd1-4004-a622-fc34a520fca8", "fields": { - "question": 351, - "contribution": 3394, + "question": 315, + "contribution": 4028, "answer": 2, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f7c33de5-fc6b-492e-a557-865bc1271eca", + "pk": "df03e64d-250c-4754-b0fa-c373d6a2e14f", "fields": { - "question": 402, - "contribution": 4119, + "question": 345, + "contribution": 3899, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f7d492c8-fb88-4e76-97c0-e370f0b56fa8", + "pk": "df054716-1b98-4933-9339-243705d84fcd", "fields": { "question": 316, - "contribution": 3406, - "answer": 1, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "f7e64c35-f385-4781-bd4b-18b3214a0ade", - "fields": { - "question": 349, - "contribution": 1663, - "answer": 2, + "contribution": 3462, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f7f31059-12c9-43f1-8986-2394a0f4ede0", + "pk": "df0c9df3-8843-457c-b3dc-11c4f51e5a52", "fields": { - "question": 333, - "contribution": 4154, - "answer": 1, - "count": 4 + "question": 476, + "contribution": 884, + "answer": -1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f7f4e554-7866-4362-8cbe-8792f37b0085", + "pk": "df0db562-807b-4dca-b5d1-fb5d0d15ec57", "fields": { - "question": 326, - "contribution": 3407, - "answer": 3, - "count": 1 + "question": 367, + "contribution": 3679, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f7fbf35e-7b43-449f-aa22-baa047993598", + "pk": "df1f37d7-f43f-4368-a09a-037bd769255e", "fields": { - "question": 258, - "contribution": 3721, + "question": 319, + "contribution": 3683, "answer": 2, - "count": 9 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f7fd49d2-10b3-4c53-a767-fd29a77f0c02", + "pk": "df220b5d-dd90-4bbe-aa68-99e2e1686916", "fields": { - "question": 362, - "contribution": 3653, - "answer": 5, - "count": 1 + "question": 325, + "contribution": 1776, + "answer": 2, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f7fd5189-cbed-4472-a9b2-f97e93a97851", + "pk": "df2667f4-b938-4591-a8da-e11453ea67dc", "fields": { - "question": 325, - "contribution": 1778, + "question": 369, + "contribution": 1803, "answer": 1, - "count": 6 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f80a61f2-4a8a-4c19-b4ba-e9d29aebc0ba", + "pk": "df2b8663-2c82-4295-9b8c-bd8079bc45b6", "fields": { - "question": 339, - "contribution": 3723, - "answer": 0, - "count": 4 + "question": 368, + "contribution": 3355, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f80fe8ae-a69f-48a9-a88e-4fc46f320505", + "pk": "df39f2fc-2384-494e-9c02-e101bce71ba2", "fields": { - "question": 353, - "contribution": 1253, - "answer": 1, - "count": 3 + "question": 338, + "contribution": 3416, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8102a38-253f-4d57-8915-b5f801840fd9", + "pk": "df3acce5-b04b-4198-b587-8a2b3620055a", "fields": { - "question": 475, - "contribution": 1656, + "question": 363, + "contribution": 3944, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8141c96-b0c0-4276-a6ab-5e1e0daeae5c", + "pk": "df3ceaea-9d5e-4a47-aafa-cbb8dba5000a", "fields": { - "question": 260, - "contribution": 3422, - "answer": 3, + "question": 368, + "contribution": 3722, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8159b1e-8b46-4b74-9eaa-ee1e91e35d42", + "pk": "df3e9336-78a9-4034-908f-6bba0f3ffa1b", "fields": { - "question": 347, - "contribution": 3545, + "question": 346, + "contribution": 1663, "answer": 1, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f818c0b0-7c0e-4b58-9c30-edf719dd0050", + "pk": "df429f4e-e51d-4c4c-a33f-e279cbe2c78f", "fields": { - "question": 338, - "contribution": 3454, - "answer": 4, - "count": 1 + "question": 357, + "contribution": 3545, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8199395-8d17-4b4d-9849-d6ddbeda270e", + "pk": "df439c61-0e3b-4c7e-a6cb-22f8d5e086af", "fields": { "question": 321, - "contribution": 3721, - "answer": 1, - "count": 4 + "contribution": 3739, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f824a3e6-bca4-4550-8aa6-b5dbe7d4d23b", + "pk": "df5a0254-658e-4109-9ca0-29961be75959", "fields": { - "question": 323, - "contribution": 908, + "question": 368, + "contribution": 1617, "answer": 2, - "count": 14 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8250d40-deb1-407f-be5d-f6b1f03a82de", + "pk": "df5de3db-811c-4a51-b10d-752cc88ad1a9", "fields": { - "question": 317, - "contribution": 1626, - "answer": 3, - "count": 7 + "question": 329, + "contribution": 1802, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f825511c-2a52-4045-a108-a4eebb7785f2", + "pk": "df60feca-c95f-4c67-9d4a-3d68d4f8d967", "fields": { - "question": 473, - "contribution": 918, - "answer": 0, - "count": 9 + "question": 359, + "contribution": 1835, + "answer": 1, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f82f9a9d-65b7-48a0-9ddb-f0bcd1435713", + "pk": "df6821a3-5ed7-4b12-b144-178dd94a0ba8", "fields": { - "question": 354, - "contribution": 3847, - "answer": 1, - "count": 3 + "question": 368, + "contribution": 1635, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f844db43-7370-4d31-97dd-f57271e19dca", + "pk": "df7ad6be-1db3-42ca-a5f3-f99fdb581f1c", "fields": { - "question": 472, - "contribution": 3474, - "answer": 5, - "count": 12 + "question": 257, + "contribution": 1837, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8506434-498f-439a-8a9e-69e938c82e31", + "pk": "df874a6c-a8b1-43f4-8829-4c57e73f2401", "fields": { - "question": 258, - "contribution": 4116, - "answer": 3, + "question": 349, + "contribution": 1873, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8592696-1627-42a1-bd1d-1f9647ab4615", + "pk": "df94dc53-a6b4-4acc-947b-cfcef6481cdb", "fields": { - "question": 262, - "contribution": 1612, - "answer": 1, - "count": 11 + "question": 320, + "contribution": 1634, + "answer": 2, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f868b8a4-a337-4cf6-8d70-229fca06cc1d", + "pk": "df957f72-a166-42ea-99ff-f34a4314ed97", "fields": { - "question": 352, - "contribution": 3454, + "question": 327, + "contribution": 1669, "answer": 1, - "count": 5 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f86d6e6b-acd8-4814-ae10-c7f6b116fe0c", + "pk": "df96a383-9ec3-497c-9243-37f670b33d3d", "fields": { - "question": 327, - "contribution": 3473, - "answer": 2, - "count": 3 + "question": 339, + "contribution": 840, + "answer": -1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f88dfb85-b196-43b8-8bcd-ef1ba4148551", + "pk": "df9b0e0a-5896-4172-8eb3-e0167afd4dc5", "fields": { - "question": 260, - "contribution": 1626, - "answer": 1, - "count": 8 + "question": 371, + "contribution": 3553, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f88fce15-9a84-40e0-be67-87964ca9a057", + "pk": "df9ed6b0-6e6d-499e-8d4a-a27eda97141c", "fields": { - "question": 332, - "contribution": 1217, - "answer": 3, - "count": 1 + "question": 331, + "contribution": 3422, + "answer": -1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f89318ff-762f-45a1-9d0e-5dbf79a91053", + "pk": "dfa472a5-854e-424b-b598-057feec7c51c", "fields": { - "question": 346, - "contribution": 1206, + "question": 341, + "contribution": 3681, "answer": 1, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8a736ff-a62b-4675-b1b0-2055a68a0c10", + "pk": "dfaa4dec-f715-4876-b727-bf3a2488bd27", "fields": { - "question": 392, - "contribution": 3711, - "answer": 4, - "count": 1 + "question": 340, + "contribution": 3745, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8a96489-9a52-4b6f-b53f-711e9bb8671f", + "pk": "dfacfa72-f30f-465d-b53f-6ce21d84b5fb", "fields": { - "question": 354, - "contribution": 3960, - "answer": 1, + "question": 335, + "contribution": 3552, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8b57a29-6ccb-4813-a1c3-fa340d575839", + "pk": "dfb58489-81ff-4a38-8948-88d546c321fd", "fields": { - "question": 367, - "contribution": 3434, + "question": 262, + "contribution": 884, "answer": 2, - "count": 8 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8b80646-6e94-4e86-bd6d-57736fed940f", + "pk": "dfc886e4-91a4-4de3-9317-bf358d0472aa", "fields": { - "question": 325, - "contribution": 3859, + "question": 326, + "contribution": 1287, "answer": 2, - "count": 2 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8bfbe86-a52c-4422-9124-5fee336093f1", + "pk": "dfd6cad9-bf13-4fcc-b8a3-01e5c64df168", "fields": { - "question": 361, - "contribution": 3917, - "answer": 2, + "question": 432, + "contribution": 3976, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8c4fbec-3ff1-49f3-af13-d99ef9ec66ae", + "pk": "dfe3db5f-41fb-42a0-85e0-c0f4286eb1cb", "fields": { - "question": 349, - "contribution": 3894, - "answer": 1, - "count": 6 + "question": 346, + "contribution": 841, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8ca17c0-1ba0-4179-97da-9799f9d7293c", + "pk": "dfe8a451-7ce6-4c1b-8728-76c7efdab233", "fields": { - "question": 343, - "contribution": 887, - "answer": 1, - "count": 8 + "question": 323, + "contribution": 4128, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f8ed3725-139f-4adb-8cfd-b0d90bc7aeee", + "pk": "dfff0d87-df1c-45e0-9dc7-01cd70fd39ba", "fields": { - "question": 360, - "contribution": 3647, + "question": 333, + "contribution": 3551, "answer": 2, - "count": 2 + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f90456ea-b1e8-409a-ae97-270b8bdc79a1", + "pk": "e000ccec-64db-45e5-8a4e-40ef090e436c", "fields": { - "question": 357, - "contribution": 4223, + "question": 325, + "contribution": 3355, "answer": 1, - "count": 1 + "count": 22 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9105bb0-65d6-4442-940d-9f4d495ca332", + "pk": "e00442e9-c30f-4191-91bf-65dac6317722", "fields": { - "question": 348, - "contribution": 3606, - "answer": 2, + "question": 340, + "contribution": 832, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f914db23-3ddd-4fbe-b7b9-c93fd2138538", + "pk": "e012ddc3-e00a-433a-b6f7-1cb8b8ab38f3", "fields": { - "question": 354, - "contribution": 1860, - "answer": 3, - "count": 1 + "question": 315, + "contribution": 3354, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f919f38e-4989-4bde-8104-875c4324a41b", + "pk": "e0134f65-b5e7-4ccd-a26b-a9edbfb4afa1", "fields": { - "question": 255, - "contribution": 1658, - "answer": 2, - "count": 3 + "question": 322, + "contribution": 912, + "answer": 3, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f91cfd50-c166-45ae-9ee9-b560acf926f6", + "pk": "e013f39c-3df1-458c-a4ae-ff6abac3591b", "fields": { "question": 323, - "contribution": 3390, - "answer": 2, - "count": 14 + "contribution": 3679, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f92a2ebe-8fdf-43bd-9fed-6ed939cc0c2f", + "pk": "e020ca70-d92b-4de8-bccb-111823006acd", "fields": { - "question": 336, - "contribution": 804, - "answer": 3, - "count": 2 + "question": 331, + "contribution": 822, + "answer": -3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f92ff9f6-511a-4715-8864-130d3e40bd09", + "pk": "e0346429-a125-4c24-a958-30dd8575b264", "fields": { - "question": 316, - "contribution": 4120, - "answer": 2, - "count": 7 + "question": 477, + "contribution": 885, + "answer": -1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f93026f1-218e-489a-bda4-1377b2444034", + "pk": "e035a62c-2b08-460f-80ab-936b843b1c3a", "fields": { - "question": 259, - "contribution": 3679, - "answer": 2, - "count": 5 + "question": 316, + "contribution": 3721, + "answer": 5, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9302edb-4512-4078-b18d-7087eacbc282", + "pk": "e036dc5c-3718-4b06-9503-00fae5f1a271", "fields": { - "question": 346, - "contribution": 1881, - "answer": 4, + "question": 319, + "contribution": 3394, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f93dad2a-4476-4421-9bf0-d2d0578959ee", + "pk": "e05e8165-7118-4c29-8064-95c2194b9904", "fields": { - "question": 346, - "contribution": 1809, + "question": 323, + "contribution": 836, "answer": 1, - "count": 6 + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9411327-a023-4f98-9092-aa59dbaf6c6b", + "pk": "e0602bc5-cf93-4b95-936e-29fbab5ee98b", "fields": { - "question": 348, - "contribution": 3609, - "answer": 1, - "count": 6 + "question": 321, + "contribution": 884, + "answer": 2, + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f943df3f-988e-4889-b7cc-7e7e183c734d", + "pk": "e08d9f55-6516-435e-85f2-2db3a8410a5b", "fields": { - "question": 475, - "contribution": 3723, + "question": 331, + "contribution": 1626, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9460d25-7224-4e78-9722-3eac3589a7b9", + "pk": "e08f71ad-f7cc-4e43-be72-f90c3b2708c3", "fields": { - "question": 477, - "contribution": 4047, + "question": 369, + "contribution": 3929, "answer": 1, - "count": 2 + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f95a255c-3fe6-42f7-b7ca-a024086f4af2", + "pk": "e090b077-2e29-4e62-96d9-16b98044dd09", "fields": { - "question": 260, - "contribution": 1612, - "answer": 1, - "count": 9 + "question": 368, + "contribution": 1776, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9623612-898a-41a1-9cae-b614c0f6ba53", + "pk": "e094273e-e04f-475c-a259-91fc08c6a96f", "fields": { - "question": 475, - "contribution": 4002, - "answer": -2, + "question": 340, + "contribution": 3382, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f96291e3-21ba-4ac6-9e07-a898e2d7a868", + "pk": "e0b1dad8-77f4-4655-a3e7-ee8bfe530196", "fields": { - "question": 357, - "contribution": 3848, + "question": 337, + "contribution": 3821, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f966a0e6-44f5-4e8a-94e3-728e8895d038", + "pk": "e0b55408-4f3c-44b2-aa9d-ba3cf9a76070", "fields": { - "question": 341, - "contribution": 3645, + "question": 348, + "contribution": 3855, "answer": 1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f96b10e2-44f0-4433-b6cf-e5ec47edc737", + "pk": "e0b6b717-3eae-4a98-9a25-4c8100f0eb4f", "fields": { - "question": 347, - "contribution": 1809, - "answer": 1, - "count": 8 + "question": 473, + "contribution": 1640, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f96c9818-cc00-4309-bd52-ba3c3f86e13a", + "pk": "e0b8a904-f5b6-4076-abf2-281dd0a79907", "fields": { - "question": 473, - "contribution": 1694, - "answer": 3, + "question": 325, + "contribution": 3722, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f97a7b5c-54f2-40d5-b4f4-35e70743b9b4", + "pk": "e0bc6bf2-de61-495c-840a-e8ef4cbf7a9e", "fields": { - "question": 353, - "contribution": 1188, + "question": 346, + "contribution": 3855, "answer": 1, - "count": 7 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9846029-360f-4528-987d-88b44c894919", + "pk": "e0d0cb48-c2df-4f1e-8ca1-cea678a51c2e", "fields": { - "question": 369, - "contribution": 1827, + "question": 347, + "contribution": 1860, "answer": 2, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f98aa031-3957-4e76-b5a1-5e7b97e58683", + "pk": "e0d2c120-c7a8-440d-856b-627a747f5eb1", "fields": { - "question": 345, - "contribution": 869, + "question": 337, + "contribution": 918, "answer": 1, "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f98c8cee-e60a-4dd9-9b6a-2e5908e89c0d", + "pk": "e0e1a7f7-bfa5-4598-810b-2b574b2a8ada", "fields": { - "question": 352, - "contribution": 3440, + "question": 257, + "contribution": 4116, "answer": 5, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f99c12ad-c153-43cf-b99c-dc8cb93803c3", + "pk": "e0e23d6d-33d1-424f-a973-d88e20590171", "fields": { - "question": 367, - "contribution": 3679, - "answer": 5, + "question": 329, + "contribution": 909, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9a93c29-2065-419b-9dc3-a35b6ffc5b09", + "pk": "e0e45d5e-1051-43c3-9be2-991018d6b8b1", "fields": { - "question": 338, - "contribution": 1710, - "answer": 2, - "count": 2 + "question": 345, + "contribution": 3609, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9af8958-7f6f-4581-91a4-0d0a29f04e2c", + "pk": "e0e5a3c5-347d-44c2-8776-9c4376bd4699", "fields": { "question": 258, - "contribution": 1634, - "answer": 2, - "count": 9 + "contribution": 884, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9b0fd74-70f9-4ea8-8e2c-7f0b84e1d046", + "pk": "e0ed127e-dfa2-4f3c-a707-cef1b37c9c8e", "fields": { - "question": 338, - "contribution": 788, + "question": 335, + "contribution": 3551, "answer": 3, - "count": 1 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9baab98-e0b5-461b-912a-189513759e12", + "pk": "e0fe93ea-c94a-4185-aefc-178464d7936c", "fields": { - "question": 341, - "contribution": 1702, - "answer": 2, - "count": 1 + "question": 321, + "contribution": 3422, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9cb7d3e-a0d9-4bc1-b1ed-02578e25f8d9", + "pk": "e10aaa04-e1ee-40e3-a400-69d316684cb9", "fields": { - "question": 475, - "contribution": 3440, - "answer": 2, + "question": 354, + "contribution": 3847, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9d46fab-51b4-4dd3-b93a-0a262e5546cf", + "pk": "e1194af5-7b37-493d-9e40-9f74a4b07f92", "fields": { - "question": 322, - "contribution": 862, - "answer": 2, - "count": 2 + "question": 347, + "contribution": 4189, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9d9a054-edc2-415b-a34b-d1d6b581f081", + "pk": "e11a1dc5-1ccd-41b9-a6b3-c21b6ca3daa7", "fields": { - "question": 1, - "contribution": 4302, - "answer": 4, + "question": 428, + "contribution": 4154, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9db54b2-49e6-4a53-9c9e-bf561154fe21", + "pk": "e11fb408-0941-4608-92fd-c1029735b922", "fields": { - "question": 328, - "contribution": 881, - "answer": 1, - "count": 1 + "question": 477, + "contribution": 909, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9dd0fa6-971e-4a91-b74e-c09d8ca65eb9", + "pk": "e120cab5-56a0-41b4-9e4e-7214397041c4", "fields": { - "question": 344, - "contribution": 919, + "question": 354, + "contribution": 3609, "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9e12c69-00c8-496a-b443-a9f5a6a9196e", + "pk": "e121a470-7f0c-44b4-997d-0a264ee3b69f", "fields": { - "question": 325, - "contribution": 3885, - "answer": 1, - "count": 6 + "question": 477, + "contribution": 1635, + "answer": -1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9ef2460-80b8-4d5b-af98-90ecbca0d1ce", + "pk": "e12d7582-d39b-45f7-bdc1-2f89a3077de1", "fields": { - "question": 355, - "contribution": 1783, - "answer": 2, - "count": 1 + "question": 476, + "contribution": 4120, + "answer": -3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "f9f761d8-23ac-4e04-a947-906502369807", + "pk": "e12e421f-65fd-4698-bfaf-14485fc0281d", "fields": { - "question": 315, - "contribution": 3434, - "answer": 3, + "question": 367, + "contribution": 3739, + "answer": 2, + "count": 4 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "e1326246-c4e0-4a0f-8d34-39f287ca7371", + "fields": { + "question": 345, + "contribution": 3822, + "answer": 1, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa07a7f7-6642-4689-9e7e-40c5ac087036", + "pk": "e1391f53-4df1-4095-8b42-4ff2cae5d14e", "fields": { - "question": 326, - "contribution": 4085, + "question": 255, + "contribution": 3472, "answer": 1, - "count": 20 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa124a52-ce11-46ed-bfd4-6836dcfef329", + "pk": "e13b75c7-bbec-4109-a1f0-eb65bcde9103", "fields": { - "question": 367, - "contribution": 1680, - "answer": 4, - "count": 1 + "question": 473, + "contribution": 3679, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa18a97e-6a8b-4409-ae1f-cd928a6fff34", + "pk": "e13c5d00-56ac-4803-9ecf-396ee24d559e", "fields": { - "question": 345, - "contribution": 1250, + "question": 356, + "contribution": 3518, "answer": 1, - "count": 6 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa199c91-b266-41c7-856d-abc90b19b634", + "pk": "e14128d3-8243-4ac1-b7bd-bf07c2054dc4", "fields": { - "question": 321, - "contribution": 4128, + "question": 327, + "contribution": 3556, "answer": 2, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa1d7e10-b15b-4cd2-bda2-3670995a09d5", + "pk": "e142dedd-4fe2-455b-94d8-897ad3206464", "fields": { - "question": 255, - "contribution": 4100, + "question": 473, + "contribution": 3486, "answer": 2, - "count": 12 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa298f12-d020-40cc-b7d4-0421e2a96900", + "pk": "e143b323-a14d-41c4-990a-5efd6e3f6cb0", "fields": { - "question": 316, - "contribution": 912, - "answer": 3, - "count": 1 + "question": 326, + "contribution": 1780, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa32604a-dce5-46c5-b894-6b63d00af5b8", + "pk": "e154a236-c166-457b-a065-b94392a192c6", "fields": { - "question": 260, - "contribution": 1634, + "question": 352, + "contribution": 804, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa326916-c48f-4bbe-908e-570a96117922", + "pk": "e157563a-2cd5-4e6d-a607-bd2897a8de56", "fields": { - "question": 329, - "contribution": 885, - "answer": 4, + "question": 473, + "contribution": 4052, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa3932d5-85bf-4b04-9b7a-5938345eea24", + "pk": "e1644339-9031-4a22-8ed8-0fd1c82c0b24", "fields": { - "question": 461, - "contribution": 4283, - "answer": 5, + "question": 339, + "contribution": 3727, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa3f2d9d-b3c4-4b0e-9659-25658b3d6868", + "pk": "e1647893-fd01-4e95-bda9-1baa478f122a", "fields": { - "question": 355, - "contribution": 4243, - "answer": 1, - "count": 1 + "question": 316, + "contribution": 1612, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa3f2fa8-be49-4f72-aba4-340b25a236c2", + "pk": "e1662928-2f63-42f9-a0c8-a4a745951fc1", "fields": { - "question": 331, - "contribution": 1634, - "answer": 3, - "count": 5 + "question": 477, + "contribution": 4152, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa496286-0947-48ce-8910-f6cd4b26a1b0", + "pk": "e179e1e7-bd39-4b6a-952b-0bfea57e0b08", "fields": { - "question": 347, - "contribution": 1157, - "answer": 1, - "count": 1 + "question": 477, + "contribution": 3395, + "answer": 0, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa508cb0-2e51-4b5b-b59b-6dcfe965c9cd", + "pk": "e18788f9-06da-41dd-a81a-de337fde2c40", "fields": { - "question": 435, - "contribution": 4052, - "answer": 4, + "question": 257, + "contribution": 3739, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa561790-d272-4e9f-863d-bb58f86207b9", + "pk": "e196ffc4-113e-49ef-acbf-eb6490741e28", "fields": { - "question": 260, - "contribution": 880, + "question": 362, + "contribution": 1836, "answer": 1, - "count": 13 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa59ead5-eeff-4dc3-91e3-c43269d4bd3f", + "pk": "e1a0cc45-61cb-40cd-8395-5a56d9b5f30f", "fields": { - "question": 315, - "contribution": 1668, - "answer": 3, + "question": 351, + "contribution": 3466, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa5cc6a8-d0d7-42b6-a2cd-af5759eaf29d", + "pk": "e1a9fb99-5bbf-4fe9-8a21-2f3dc975fadd", "fields": { - "question": 353, - "contribution": 1781, + "question": 337, + "contribution": 1660, "answer": 1, - "count": 8 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa703c2d-b8a5-42ca-9eb3-3fdaa98b4176", + "pk": "e1af745d-acda-435a-aebb-d43794924a6a", "fields": { - "question": 323, - "contribution": 1626, - "answer": 2, - "count": 10 + "question": 371, + "contribution": 4261, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa7473e2-dd98-472d-a3c6-535991e6a428", + "pk": "e1b2fc8d-32ce-4e20-b116-81403fbe9cc2", "fields": { - "question": 338, - "contribution": 788, - "answer": 2, - "count": 2 + "question": 320, + "contribution": 3434, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa75e658-a3f6-4f78-b9bf-bb11bce38142", + "pk": "e1c17360-01a4-4bec-b5f4-6af6036c6f7c", "fields": { - "question": 257, - "contribution": 1658, + "question": 473, + "contribution": 3354, + "answer": -2, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "e1d21d35-544e-4bce-ab3c-b1576ae62ddb", + "fields": { + "question": 319, + "contribution": 4116, "answer": 1, - "count": 6 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa761de2-1e13-47aa-9169-61232c30a9d6", + "pk": "e1e077e2-819f-44d7-ac82-7b7207c52528", "fields": { - "question": 367, - "contribution": 4022, + "question": 325, + "contribution": 1298, "answer": 1, - "count": 2 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa7a86e7-5a8a-474f-95e3-c60605835e4d", + "pk": "e1e1323e-58d2-4013-ac2e-9fa6069ef05e", "fields": { - "question": 360, - "contribution": 3893, + "question": 345, + "contribution": 3941, "answer": 1, - "count": 18 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa810e64-e952-4f0c-ab3a-bf9dd913105c", + "pk": "e1f69188-5c46-4fbc-b788-f88f1b930ebc", "fields": { - "question": 473, - "contribution": 3404, + "question": 385, + "contribution": 3711, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa833666-87b4-4cde-949f-2f14852c4f4e", + "pk": "e20a3922-7617-439c-a535-9710d27d929c", "fields": { - "question": 472, - "contribution": 4094, + "question": 332, + "contribution": 3922, "answer": 1, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa8c1693-41cd-4dd7-9fcc-b70e7e2c8d64", + "pk": "e21245d4-17b3-44cc-8979-a70e72a8ad0c", "fields": { - "question": 316, - "contribution": 1612, - "answer": 3, - "count": 7 + "question": 370, + "contribution": 3528, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa8c3947-80dc-417d-b6d7-a8191cf8538a", + "pk": "e2142100-d17a-41b5-a696-655f8a02d6f8", "fields": { - "question": 258, - "contribution": 1612, - "answer": 5, - "count": 1 + "question": 327, + "contribution": 3391, + "answer": 4, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa8e1032-4d58-490c-8c81-6f5859d9fd14", + "pk": "e223d3f4-3664-43e7-ba0e-b5c813e8a1bc", "fields": { - "question": 357, - "contribution": 1243, - "answer": 1, - "count": 5 + "question": 317, + "contribution": 3354, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fa9bd076-b3c6-49e9-82ab-a84627bb0199", + "pk": "e224e176-2765-41c6-bb88-0068cd526aad", "fields": { - "question": 345, - "contribution": 3606, - "answer": 5, - "count": 1 + "question": 367, + "contribution": 1612, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "faa10715-4ea5-4e07-8ea4-8c290274af32", + "pk": "e22749ee-dc83-49ee-9c94-9ac5b44206d6", "fields": { - "question": 259, - "contribution": 4138, - "answer": 3, + "question": 363, + "contribution": 3919, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "faa123b9-4324-409d-9629-8786d7c64b23", + "pk": "e228fe2f-23de-4cda-8d17-ee6632b86353", "fields": { - "question": 347, - "contribution": 3796, + "question": 349, + "contribution": 3935, "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "faa487fb-0d1a-489a-96a5-e66259080102", + "pk": "e22ad3fc-9def-4f8d-ac1f-ee00bd64d4fe", "fields": { - "question": 344, - "contribution": 4021, - "answer": 1, - "count": 1 + "question": 316, + "contribution": 836, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fab47b6d-fb2f-4cef-8b9f-8182a0298a6c", + "pk": "e238e85f-cd07-42c5-ae58-7f5f80f4b617", "fields": { - "question": 345, - "contribution": 3934, - "answer": 2, - "count": 1 + "question": 473, + "contribution": 3390, + "answer": -2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fab6a186-dda1-4376-b77e-f84ac593f5b4", + "pk": "e23c0940-a4b7-45df-aaa9-60f00fce546c", "fields": { - "question": 477, - "contribution": 4153, - "answer": -2, + "question": 360, + "contribution": 1804, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fac543c1-ae61-4651-8a79-faec3cfddbd5", + "pk": "e2427113-88fe-4adf-8b11-7c2e8cbc157a", "fields": { - "question": 370, - "contribution": 3545, - "answer": 5, - "count": 1 + "question": 258, + "contribution": 3721, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fac8b5dd-e29e-45a9-9d26-d9b7bab2e704", + "pk": "e256a007-a574-4940-b9f0-1b1adb51cde3", "fields": { - "question": 337, - "contribution": 1640, - "answer": 3, - "count": 1 + "question": 476, + "contribution": 1612, + "answer": 0, + "count": 16 } }, { "model": "evaluation.ratinganswercounter", - "pk": "facb8d4c-b699-4547-90ba-543c328c33e5", + "pk": "e2627198-f6d5-4fec-a945-1000ab53dc43", "fields": { - "question": 349, - "contribution": 1867, - "answer": 4, - "count": 1 + "question": 369, + "contribution": 1826, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "facf1cbc-8a25-453b-8c51-9fd5a342db1c", + "pk": "e2666b01-2e3c-4e38-bc7f-8a818dbf6f79", "fields": { - "question": 438, - "contribution": 4140, - "answer": 3, + "question": 462, + "contribution": 3453, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fad1885f-70e3-403f-84de-e8ebcab11830", + "pk": "e269ec41-ecb0-4407-873a-b36cfac357fd", "fields": { - "question": 339, - "contribution": 4020, - "answer": 0, - "count": 3 + "question": 262, + "contribution": 1626, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fad2326b-b08c-4590-8f92-d4ff83a574a2", + "pk": "e2749115-0e78-4605-835b-fda5a98c6201", "fields": { - "question": 346, - "contribution": 3526, - "answer": 1, + "question": 320, + "contribution": 1837, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fad3b992-c592-45d4-bf6f-01e02e24a660", + "pk": "e280751f-9eee-40ab-af5d-e49ddc08ca5c", "fields": { - "question": 402, - "contribution": 4119, - "answer": 1, - "count": 7 + "question": 461, + "contribution": 4283, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fadd6851-d919-4762-9659-23f87fdbeb99", + "pk": "e28203d4-6458-41d4-9776-baac2f861600", "fields": { - "question": 371, - "contribution": 3961, - "answer": 1, - "count": 1 + "question": 257, + "contribution": 3422, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fadded81-883d-427e-88e7-f3ee745802f6", + "pk": "e28dad64-9eb4-49c3-98f5-228ea25e4eed", "fields": { - "question": 327, - "contribution": 3519, + "question": 322, + "contribution": 3354, "answer": 1, - "count": 11 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fae1c60b-db19-4e4c-ba71-bb743a739af0", + "pk": "e29772a1-1972-467b-b969-9741225b7e18", "fields": { - "question": 349, - "contribution": 1206, - "answer": 4, + "question": 328, + "contribution": 3680, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fae94c32-e73a-4a56-b4de-cdd0226d1c8c", + "pk": "e2a81bf8-ca7b-4202-851d-23673d80084e", "fields": { - "question": 262, - "contribution": 3474, - "answer": 2, - "count": 9 + "question": 350, + "contribution": 3745, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fafcd5a7-4279-4198-8ad8-4d9cfbb4380b", + "pk": "e2ab5d74-adcf-4b67-a1e5-e6240a925a26", "fields": { - "question": 315, - "contribution": 3434, + "question": 346, + "contribution": 1204, "answer": 1, - "count": 19 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "faff7206-f7d1-46ef-a25c-795286329805", + "pk": "e2ac6ef0-2cec-423e-a7cf-6dd652dfa876", "fields": { - "question": 477, - "contribution": 4085, - "answer": -1, - "count": 12 + "question": 472, + "contribution": 1200, + "answer": 5, + "count": 21 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb000bd9-3021-4661-a24a-38ca1bd28339", + "pk": "e2b2c2e2-39ff-4c17-9401-869e937a6c5e", "fields": { - "question": 370, - "contribution": 3517, - "answer": 2, + "question": 388, + "contribution": 3711, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb06adee-7f45-4e6a-adac-d4baa7432cd4", + "pk": "e2bfdeb7-7ad6-44e6-a166-a4233310f4ee", "fields": { - "question": 359, - "contribution": 3942, + "question": 360, + "contribution": 1812, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb08f58d-5f0b-4e1a-b1fe-4760795a3527", + "pk": "e2c12c48-31d6-450e-a74d-15f5e1cdf875", "fields": { - "question": 322, - "contribution": 1724, + "question": 327, + "contribution": 1778, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb0db2df-1bd3-43d1-9d9f-53ebe537f262", + "pk": "e2c675e8-ed2a-4e07-bc10-637ce08ff337", "fields": { - "question": 257, - "contribution": 884, + "question": 353, + "contribution": 1242, "answer": 1, - "count": 26 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb2a6718-1763-48ca-a498-b2b3362a4691", + "pk": "e2d766d2-13b6-4105-9588-4290ec83511c", "fields": { - "question": 348, - "contribution": 4129, - "answer": 1, - "count": 5 + "question": 477, + "contribution": 3519, + "answer": 0, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb2e843a-5aa8-4fc6-94f0-16dbcb9a217d", + "pk": "e2e9a8fd-7e66-4bf3-9caa-769a82f9e14a", "fields": { - "question": 363, - "contribution": 3929, - "answer": 2, - "count": 3 + "question": 344, + "contribution": 3896, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb35d544-4cbd-446f-827f-c0363e218301", + "pk": "e2f08d1c-d09a-4e8b-8b9c-b48ecb5fdf1b", "fields": { - "question": 315, - "contribution": 4118, + "question": 337, + "contribution": 1640, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb3bd366-2cee-4bb1-bbc2-6650f583d597", + "pk": "e2f9468a-58db-454c-a32b-f06ad94a5632", "fields": { - "question": 323, - "contribution": 880, - "answer": 5, - "count": 1 + "question": 335, + "contribution": 3886, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb4273f4-823a-4a5a-9f46-5b6d2cd13db1", + "pk": "e3005000-40f9-4ae3-b712-bf0bd04d3d05", "fields": { - "question": 336, - "contribution": 3785, - "answer": 1, - "count": 1 + "question": 473, + "contribution": 3440, + "answer": 0, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb444a3f-add1-4b9a-a66b-64caab126237", + "pk": "e304735e-4cca-4e6a-b5c8-dc258b249483", "fields": { - "question": 329, - "contribution": 3556, - "answer": 1, - "count": 8 + "question": 347, + "contribution": 1880, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb54a904-adaa-44cb-819f-a639bdd314e6", + "pk": "e308187b-cdef-4d9d-a414-769f350bcb1a", "fields": { - "question": 476, - "contribution": 1626, - "answer": -2, + "question": 459, + "contribution": 4283, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb618b2c-5a04-40da-aef8-6ef713f851e8", + "pk": "e31bc267-735b-4ab2-854b-bcf75d2d3951", "fields": { - "question": 317, - "contribution": 3739, - "answer": 4, - "count": 1 + "question": 367, + "contribution": 3422, + "answer": 3, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb670a42-8eec-4447-8f71-48ceb884f24e", + "pk": "e329095a-f34b-48e0-a25c-30743436174d", "fields": { - "question": 327, - "contribution": 4101, - "answer": 3, - "count": 2 + "question": 332, + "contribution": 3631, + "answer": 1, + "count": 13 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb782421-b618-4ac5-89ff-a30e8cc991ca", + "pk": "e329fda1-faf5-4688-8c4c-963ea88c11cd", "fields": { - "question": 366, - "contribution": 3553, - "answer": 4, - "count": 6 + "question": 326, + "contribution": 909, + "answer": 2, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb83afe8-f49b-45d2-8d55-e86c6a924934", + "pk": "e3353c01-aff4-4282-8c89-067c74149d7e", "fields": { - "question": 319, - "contribution": 3406, + "question": 473, + "contribution": 3725, "answer": 1, - "count": 1 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb854257-a05e-4f7b-8971-85d8c69f2886", + "pk": "e33780ee-336a-4d0e-9312-15cde5724377", "fields": { - "question": 319, - "contribution": 1634, - "answer": 2, - "count": 7 + "question": 320, + "contribution": 3462, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb8b818c-a794-4df8-ae16-447eaf259aca", + "pk": "e33a1bd9-865a-4043-ad74-56b55fb630cb", "fields": { - "question": 357, - "contribution": 3609, - "answer": 3, - "count": 1 + "question": 336, + "contribution": 1644, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb93a0b5-22d9-46a6-b22e-64a3b4bd5311", + "pk": "e3402343-cdf4-4b39-89a8-19c59c65faaa", "fields": { - "question": 317, - "contribution": 4128, - "answer": 5, - "count": 1 + "question": 349, + "contribution": 3545, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fb9d9be5-199e-41a4-9e38-1a629fdb296a", + "pk": "e34b0efc-907f-4620-9418-a94c828dc7db", "fields": { - "question": 363, - "contribution": 3650, - "answer": 5, - "count": 1 + "question": 356, + "contribution": 3975, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fba5bb6b-6494-4948-bd34-b0bfbf74f9b3", + "pk": "e34fcf4d-4dd8-4753-a867-30e0598ab401", "fields": { - "question": 348, - "contribution": 3879, + "question": 353, + "contribution": 4025, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fba63593-e97c-403d-88b8-bc026fe679c2", + "pk": "e354010a-e1a3-4c2c-b0d5-44ae5dba91bc", "fields": { - "question": 369, - "contribution": 1811, - "answer": 5, - "count": 1 + "question": 475, + "contribution": 1702, + "answer": -2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fbab7635-a449-4cb8-a0c6-a0dca6aca2e2", + "pk": "e3727b96-b22d-4a42-bbc6-d3ea21e186fc", "fields": { - "question": 326, - "contribution": 4153, + "question": 329, + "contribution": 3423, "answer": 1, - "count": 5 + "count": 17 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fbadf2ef-d9e6-429e-923c-9fffdd7daedf", + "pk": "e376fd3e-faf8-4f47-9717-68a23de7c994", "fields": { - "question": 395, - "contribution": 3711, + "question": 257, + "contribution": 4116, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fbbaf8fc-ec12-4d9b-afcd-8d5dc63805a7", + "pk": "e37e17e6-9ab1-438b-bf53-b250f7431961", "fields": { - "question": 328, - "contribution": 1288, - "answer": 1, - "count": 19 + "question": 322, + "contribution": 3721, + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fbc29f89-1b24-45e1-8b0e-dd908556ef4a", + "pk": "e38985a4-c64e-4ceb-a42c-9af429cde158", "fields": { - "question": 473, - "contribution": 1702, - "answer": 1, - "count": 4 + "question": 345, + "contribution": 3545, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fbc3ef7f-dadb-4125-b95c-d3ec4f1fefb7", + "pk": "e390546d-5ba9-4fac-8ddf-9eaddb76f1f8", "fields": { - "question": 475, - "contribution": 886, + "question": 345, + "contribution": 4129, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fbc412f5-d155-4482-9a8f-4bab2324e0c4", + "pk": "e3906076-57e3-454c-8634-f2d63545d003", "fields": { - "question": 337, - "contribution": 1702, + "question": 331, + "contribution": 1612, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fbdfaa34-83f0-4ae8-bc45-7a6faa0377ea", + "pk": "e394dfa2-ea66-4df1-b596-f89058fa7e8e", "fields": { - "question": 473, - "contribution": 1660, + "question": 382, + "contribution": 3775, "answer": 0, - "count": 4 - } -}, -{ - "model": "evaluation.ratinganswercounter", - "pk": "fbdff485-8293-4f69-a01b-497829edf471", - "fields": { - "question": 356, - "contribution": 1256, - "answer": 1, - "count": 7 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fbe39b4b-36dd-4864-bd25-10e54ff2220d", + "pk": "e395d1c4-f44d-4b8f-87ea-a25078088f2c", "fields": { - "question": 262, - "contribution": 1626, + "question": 385, + "contribution": 3775, "answer": 2, - "count": 7 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fbe68bb9-8c98-424c-b80f-002505560ea5", + "pk": "e39dd783-1853-40fe-9b6d-246abe84dea3", "fields": { - "question": 353, - "contribution": 4278, - "answer": 1, + "question": 329, + "contribution": 3473, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fbe7f692-4ee2-42c3-8968-4bdf5d03b2c4", + "pk": "e39f97e7-dadd-44fc-90ac-02ad3ca49c33", "fields": { - "question": 471, - "contribution": 4090, - "answer": 1, - "count": 2 + "question": 317, + "contribution": 3679, + "answer": 4, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fbed3a09-f6e8-4e45-84dc-270c0be46325", + "pk": "e3a7f500-c7d7-4c6d-85c2-8d61aa9870d9", "fields": { - "question": 320, - "contribution": 4100, + "question": 349, + "contribution": 4003, "answer": 3, - "count": 8 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fbfbe736-df17-44df-a782-d189eeef27f6", + "pk": "e3b58c56-72c8-4af9-817a-df6821f810ac", "fields": { - "question": 347, - "contribution": 3373, - "answer": 3, - "count": 1 + "question": 331, + "contribution": 1612, + "answer": 0, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc06825a-b9fb-4d95-b931-2d0c519b6492", + "pk": "e3b71b02-66b5-41e7-a91e-9fd51a340b94", "fields": { - "question": 349, - "contribution": 1235, + "question": 257, + "contribution": 3406, "answer": 1, - "count": 6 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc092130-a717-4724-a184-a41578d17b8d", + "pk": "e3bcb103-dcb3-40a9-981d-2c75a6219b1a", "fields": { - "question": 472, - "contribution": 3486, - "answer": 5, + "question": 343, + "contribution": 887, + "answer": 2, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc095924-445b-4fa2-9b76-bdde61e8888c", + "pk": "e3c95e20-a339-4102-a33f-f7658f9d8293", "fields": { - "question": 335, - "contribution": 3598, - "answer": 1, + "question": 322, + "contribution": 3683, + "answer": 4, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc10e6cd-8166-4a72-8b09-403f9ca7e997", + "pk": "e3d2162d-9bd0-488a-a3b1-defae8cabba7", "fields": { - "question": 345, - "contribution": 3855, + "question": 449, + "contribution": 4185, "answer": 1, - "count": 6 + "count": 26 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc13310e-73a7-409d-aa5a-c6a8e0eef7fb", + "pk": "e3d654a2-861a-4a7a-b6b2-677209f83b5c", "fields": { - "question": 408, - "contribution": 4038, + "question": 349, + "contribution": 1203, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc17f7c5-9378-4782-9637-61ccf9384776", + "pk": "e3d7a5e1-fc00-406d-b4de-8d89398a9228", "fields": { - "question": 390, - "contribution": 3711, - "answer": 2, - "count": 2 + "question": 346, + "contribution": 1207, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc2b7168-9029-4a7b-b275-8816e17a54c0", + "pk": "e3da87ee-7b19-42e6-8358-3c7329db8e9d", "fields": { - "question": 458, - "contribution": 4283, - "answer": 1, - "count": 2 + "question": 322, + "contribution": 3422, + "answer": 5, + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc321c79-da45-4ade-9df5-c3a473149bd0", + "pk": "e3dc3435-84d1-49e7-9031-f528351037e8", "fields": { - "question": 347, - "contribution": 3822, - "answer": 1, - "count": 1 + "question": 329, + "contribution": 3726, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc330c0f-1840-48dd-9c81-0110110ef6a8", + "pk": "e3f14775-c30a-4721-974e-28b7f0750229", "fields": { - "question": 357, - "contribution": 1860, - "answer": 4, + "question": 476, + "contribution": 1837, + "answer": -2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc35ccfe-4887-4e41-ab4c-314ac0cc7f8a", + "pk": "e405d736-abf4-4a93-89a0-e0959b116dbf", "fields": { - "question": 325, - "contribution": 3435, + "question": 398, + "contribution": 3711, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc3cc709-76ed-4a6b-bfe0-893675225236", + "pk": "e415b102-a9b6-45c7-98d2-0eb387b80dc4", "fields": { - "question": 477, - "contribution": 3473, - "answer": 1, - "count": 2 + "question": 368, + "contribution": 3423, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc40ef0d-a085-4787-bbd7-e36a83ab9cff", + "pk": "e41e827d-3cc9-40de-97c1-cc7740337ad2", "fields": { - "question": 325, - "contribution": 3740, + "question": 343, + "contribution": 3606, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc4ee642-693e-4ee4-a198-f4b1d7b4eac3", + "pk": "e4399abe-d753-4c40-a69e-e0348dfa5173", "fields": { - "question": 321, - "contribution": 908, - "answer": 5, - "count": 1 + "question": 326, + "contribution": 1797, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc53cf90-1949-4621-8b35-10d768248384", + "pk": "e43a3678-11ed-4c86-ae2a-9c37ff6250cd", "fields": { - "question": 367, - "contribution": 4116, - "answer": 3, - "count": 1 + "question": 320, + "contribution": 3721, + "answer": 4, + "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc55c3b3-9730-418e-99e6-57ee2b36a01b", + "pk": "e451c0be-8e11-4205-92f2-fdc3923575da", "fields": { - "question": 475, - "contribution": 4052, - "answer": -1, - "count": 1 + "question": 348, + "contribution": 4189, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc57d56f-469f-4bdb-adcf-3ec6431c36e6", + "pk": "e458841f-851f-41b3-b57b-28e63a5e6556", "fields": { - "question": 319, - "contribution": 1837, - "answer": 5, - "count": 1 + "question": 259, + "contribution": 3390, + "answer": 1, + "count": 11 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc5e5300-3814-41b1-a7c3-ebddd3e36736", + "pk": "e459b08f-76ea-4e5c-beb0-a9622631e5ac", "fields": { - "question": 345, - "contribution": 3546, + "question": 333, + "contribution": 3566, "answer": 1, - "count": 4 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc79093e-7b11-486a-9982-076f4970c53b", + "pk": "e45bd84b-9106-4415-b41b-d0c5c0efbdfe", "fields": { - "question": 327, - "contribution": 3726, - "answer": 2, - "count": 6 + "question": 477, + "contribution": 1802, + "answer": 0, + "count": 15 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc7fcd21-58b1-4c9b-bca4-8d7f9967641c", + "pk": "e45cf01d-ac79-4fd9-ada5-90b8df2844db", "fields": { - "question": 339, - "contribution": 4052, + "question": 337, + "contribution": 1644, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc88fe4e-091b-4dde-b6cb-f68f39a93e33", + "pk": "e468e7cb-577b-4293-85d7-af066bb740d8", "fields": { - "question": 349, - "contribution": 1228, + "question": 325, + "contribution": 1297, + "answer": 1, + "count": 9 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "e468f626-c7d7-42f4-a278-003682c87081", + "fields": { + "question": 353, + "contribution": 1189, "answer": 2, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc8beb52-f769-40ce-b95a-f4ecc2a4f74e", + "pk": "e472859e-fcdf-47fc-8bd1-ab37a2be688d", "fields": { - "question": 347, - "contribution": 4123, + "question": 349, + "contribution": 1246, "answer": 5, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc8e5a09-87f4-450f-9b5e-7825555943db", + "pk": "e4756fce-1a6a-45d0-bb72-e7bfcb9ce696", "fields": { - "question": 255, - "contribution": 4100, - "answer": 1, - "count": 11 + "question": 476, + "contribution": 3422, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc91cbf6-d538-446c-9124-c20dc09331d1", + "pk": "e4769c28-d467-40d0-828c-19dbed4e1d24", "fields": { - "question": 339, - "contribution": 3685, - "answer": 0, - "count": 5 + "question": 371, + "contribution": 3552, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc978667-3ffd-4f85-9b37-968932965578", + "pk": "e4822602-a300-4ae0-896b-de754fa75efd", "fields": { - "question": 258, - "contribution": 880, + "question": 461, + "contribution": 4141, "answer": 1, - "count": 17 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc978937-81a7-4bd7-8cd9-26c70b0cfba1", + "pk": "e48d3c9c-0973-4f7b-9838-3fcd89127390", "fields": { - "question": 349, - "contribution": 1868, - "answer": 1, + "question": 339, + "contribution": 3795, + "answer": 0, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc9c5c00-b67c-4ea9-bc15-be1d3fbb77ff", + "pk": "e491af9b-a880-40db-bc4a-067a3522672a", "fields": { - "question": 366, - "contribution": 3552, - "answer": 3, - "count": 6 + "question": 355, + "contribution": 3849, + "answer": 1, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fc9e3272-5f63-41cf-bb1e-784963ef262b", + "pk": "e49f3b82-cde4-4e72-990a-9c1184c7a85d", "fields": { - "question": 477, - "contribution": 4153, + "question": 343, + "contribution": 3822, "answer": 1, - "count": 14 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fca2e5f6-ab66-47d4-b761-a364362c6b94", + "pk": "e4a06aa3-ac83-4a0e-968a-d84365502838", "fields": { - "question": 346, - "contribution": 887, - "answer": 2, - "count": 6 + "question": 337, + "contribution": 858, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fcad1aea-cae3-44a3-a48d-4578ce3972c6", + "pk": "e4a90aed-997f-4a60-bbaa-8bb7537d2ada", "fields": { - "question": 260, - "contribution": 4138, - "answer": 2, - "count": 7 + "question": 339, + "contribution": 1200, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fcb5e1c4-9276-410e-8071-8d9337a70502", + "pk": "e4b4936a-efd0-4e93-b224-05eaabd198c6", "fields": { - "question": 475, - "contribution": 1734, - "answer": 0, - "count": 4 + "question": 317, + "contribution": 1612, + "answer": 1, + "count": 19 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fcba6c7f-2216-427d-b027-4f0b93591c42", + "pk": "e4bd51a5-f00e-4c2b-9b11-79e040719389", "fields": { - "question": 320, - "contribution": 1658, - "answer": 2, - "count": 4 + "question": 350, + "contribution": 3440, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fcc955fb-a987-4c5f-805e-ec27b65da3e7", + "pk": "e4bd5944-c1c2-489f-99df-7c92cae17a02", "fields": { - "question": 475, - "contribution": 4002, + "question": 339, + "contribution": 1748, "answer": -1, - "count": 1 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fcce5dda-a276-4e1c-a24b-931597dc2f41", + "pk": "e4d78ccc-bf2c-4242-8df3-b0adc6fae2f2", "fields": { - "question": 369, - "contribution": 3637, - "answer": 1, + "question": 258, + "contribution": 3679, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fcd510ab-1079-4ae0-b042-e274a00c2b82", + "pk": "e4dcd728-71df-40c0-ab04-a555fc870630", "fields": { - "question": 477, - "contribution": 4117, - "answer": 3, - "count": 2 + "question": 333, + "contribution": 4205, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fcf10593-dcdf-4030-9c7d-72e4dd46add7", + "pk": "e4e07e61-d007-4c37-bb45-177a8cf362a2", "fields": { - "question": 322, - "contribution": 908, + "question": 343, + "contribution": 1828, "answer": 1, - "count": 26 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fcf46b5a-cbfb-4176-8e47-e00e61c7a159", + "pk": "e4e11c9e-da77-479d-9267-de767103be2c", "fields": { - "question": 258, - "contribution": 908, + "question": 315, + "contribution": 4120, "answer": 2, - "count": 14 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd0870eb-c3cb-42a5-af5a-a374d5b24080", + "pk": "e4e589e1-486f-45ef-98ae-f50bcca63ab3", "fields": { - "question": 463, - "contribution": 4073, - "answer": 4, - "count": 1 + "question": 343, + "contribution": 3894, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd087c94-fb72-4260-9b92-c3cbed184360", + "pk": "e4ea24fd-875f-48ab-81b2-ece98f1e0b1b", "fields": { - "question": 333, - "contribution": 3961, + "question": 354, + "contribution": 1849, "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd30ee38-4457-4dd1-b8b7-2ce503f52a20", + "pk": "e4f1f708-92db-42d8-86e0-4d28d91f3056", "fields": { - "question": 328, - "contribution": 3726, - "answer": 3, - "count": 7 + "question": 475, + "contribution": 840, + "answer": -1, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd342a83-192e-4aa2-9092-8f37f5f46d16", + "pk": "e4f2a6db-ea5a-416e-8f2a-adceef1ea516", "fields": { - "question": 344, - "contribution": 3939, - "answer": 3, - "count": 1 + "question": 375, + "contribution": 3781, + "answer": 2, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd3ab90f-1e54-4ef5-aa5a-124361671cdb", + "pk": "e50511ef-5af0-44dc-a6fa-f550312bb252", "fields": { - "question": 352, - "contribution": 788, + "question": 355, + "contribution": 1860, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd416aff-fcb1-457a-bf19-c19b8aa02cdf", + "pk": "e509659b-ce48-492b-9029-faa8f3893fd5", "fields": { - "question": 367, - "contribution": 4128, - "answer": 4, - "count": 1 + "question": 341, + "contribution": 1710, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd495c5b-8548-424f-be54-004b1ab70519", + "pk": "e51db683-029d-4d73-bd4f-f7f5575e9176", "fields": { - "question": 383, - "contribution": 3755, + "question": 338, + "contribution": 840, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd5c6bea-8575-4c45-8321-9be591782991", + "pk": "e51ef5f4-d0ff-4766-9d80-44c1edb2d20e", "fields": { - "question": 473, - "contribution": 3390, - "answer": 0, - "count": 9 + "question": 343, + "contribution": 1873, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd5f7d01-abc4-4709-b88f-d8cc100db2b5", + "pk": "e52cebb4-7c74-4a67-a689-cf6f3515d325", "fields": { - "question": 353, - "contribution": 1776, + "question": 472, + "contribution": 3785, "answer": 1, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd5ff980-0294-412f-a1b0-f0417fc6b5a8", + "pk": "e532ea77-444b-472f-8495-d002d1e86320", "fields": { - "question": 344, - "contribution": 1880, - "answer": 2, - "count": 2 + "question": 337, + "contribution": 832, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd694543-fbb8-45f4-9939-09496dfbad1b", + "pk": "e534a46b-c80b-41a8-81aa-2df2b12ddc67", "fields": { "question": 371, - "contribution": 3552, - "answer": 4, - "count": 1 + "contribution": 3598, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd73af12-9476-4885-94ce-3f3b8967507b", + "pk": "e541d146-19fd-47b9-a0ff-3b4a03f89956", "fields": { - "question": 351, - "contribution": 3745, - "answer": 3, - "count": 3 + "question": 316, + "contribution": 4084, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd7a45b7-c0cd-4f92-8e0f-8adcaa1cc1b4", + "pk": "e5430d66-1656-47b9-b0cb-0b8369485b71", "fields": { - "question": 322, - "contribution": 4120, + "question": 355, + "contribution": 1188, + "answer": 2, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "e5453eee-540b-44bf-9296-9af972f465ad", + "fields": { + "question": 347, + "contribution": 1228, "answer": 3, - "count": 6 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd7ee7fe-3cc4-4ef5-b75e-15421a94b0c8", + "pk": "e55332ae-18ba-40b6-bc2a-6bc68f8bfb42", "fields": { - "question": 477, - "contribution": 1779, - "answer": -3, - "count": 1 + "question": 370, + "contribution": 1776, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd7fd73a-2cb7-4f30-92fd-7997a994e323", + "pk": "e559d6d2-70ce-4fdb-b03c-cc97b6a8ddbb", "fields": { - "question": 321, - "contribution": 3394, - "answer": 1, - "count": 3 + "question": 475, + "contribution": 1640, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd84182c-597e-428f-829b-998076f8d20f", + "pk": "e5681033-ef1d-446e-b8d1-daf971a25a33", "fields": { - "question": 476, - "contribution": 4046, + "question": 338, + "contribution": 3466, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd8a01c3-75de-4370-ac00-beaae8df4786", + "pk": "e5716c2d-f5bf-4002-ba2d-3c303190b219", "fields": { - "question": 337, - "contribution": 3703, - "answer": 2, - "count": 3 + "question": 338, + "contribution": 868, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd8adff4-f11c-4c35-9ed7-e9b09c8d14a8", + "pk": "e5755d9c-af86-4fee-99ae-71720a38a136", "fields": { - "question": 353, - "contribution": 3610, + "question": 371, + "contribution": 3552, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd9606e4-8643-4889-9241-8eeacbb37e79", + "pk": "e5780a71-bba1-4cce-8958-1d033d9143a7", "fields": { - "question": 343, - "contribution": 3528, + "question": 349, + "contribution": 3704, "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fd9da0af-0e07-4b0b-b446-5dd661f63e2f", + "pk": "e583fb12-81ed-44aa-b239-85c589d133b8", "fields": { - "question": 317, - "contribution": 4046, - "answer": 2, + "question": 329, + "contribution": 1780, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fda0f227-98a9-411e-b693-2033c2389d5c", + "pk": "e58cc27e-0b1b-48b7-9be0-fd399c49a541", "fields": { - "question": 344, - "contribution": 1246, - "answer": 3, - "count": 2 + "question": 346, + "contribution": 4233, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fdab057b-44ae-49f2-b632-db153f96510b", + "pk": "e58ed861-c821-47fd-9279-ca5eb64177e6", "fields": { - "question": 344, - "contribution": 1205, + "question": 315, + "contribution": 884, "answer": 2, - "count": 2 + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fdaba8ad-7293-480e-8aca-4758929a8b70", + "pk": "e58fdf0f-9e77-43ec-90bb-52f77dc511f3", "fields": { - "question": 257, - "contribution": 3390, - "answer": 4, + "question": 331, + "contribution": 3474, + "answer": 3, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fdabe378-aa26-407d-8707-b6742c318148", + "pk": "e592173d-f294-4a6b-aac0-817b8714b31e", "fields": { - "question": 359, - "contribution": 3921, - "answer": 4, + "question": 345, + "contribution": 4021, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fdaf1d01-94db-4f10-96e5-03c83cb1675f", + "pk": "e593b886-17aa-4624-9ed2-a9c7bfe70897", "fields": { - "question": 346, - "contribution": 3515, + "question": 344, + "contribution": 1151, "answer": 1, - "count": 5 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fdb159f9-b1b8-4e87-b0e4-4e9e58e51f30", + "pk": "e59564af-9f7f-49a3-97e4-5831026a413a", "fields": { - "question": 346, - "contribution": 1250, - "answer": 3, - "count": 1 + "question": 329, + "contribution": 3680, + "answer": 2, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fdc78eef-6ae9-4e6a-b06a-559755576f7c", + "pk": "e59e0965-ce15-42f0-9b9e-f886b0bef4b6", "fields": { - "question": 319, - "contribution": 4128, + "question": 347, + "contribution": 3822, "answer": 3, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fdc84740-e3b3-4c94-a8fb-dddc5d8d2fad", + "pk": "e5a0ab3f-6dfe-4498-819c-7a336a8b0018", "fields": { - "question": 325, - "contribution": 1186, + "question": 262, + "contribution": 4120, "answer": 1, - "count": 9 + "count": 20 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fdd075cd-a144-4183-986d-0943d7d67948", + "pk": "e5a30a71-ac25-4d64-8e51-ade5416e4330", "fields": { - "question": 327, - "contribution": 4152, - "answer": 1, - "count": 23 + "question": 258, + "contribution": 3725, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fdd43973-1798-4f2f-9cd7-275b11f39bf6", + "pk": "e5a4204e-70d6-4db9-bffd-2498959f3eb2", "fields": { - "question": 338, - "contribution": 1748, - "answer": 2, + "question": 477, + "contribution": 3884, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fdd50e80-73c4-4c52-96c3-ee4ff79a05a5", + "pk": "e5aa106f-0989-4aac-838e-284eda99720f", "fields": { - "question": 316, - "contribution": 3422, - "answer": 3, - "count": 4 + "question": 357, + "contribution": 1782, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fde6d662-1b56-4c4d-a245-fa363d3eac77", + "pk": "e5b37d50-27a8-4cfd-a544-0fe2f038e262", "fields": { - "question": 353, - "contribution": 1187, - "answer": 2, - "count": 1 + "question": 368, + "contribution": 1802, + "answer": 1, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fde91f59-439b-4cae-aa9e-a6ca86340b0f", + "pk": "e5c6326e-26ae-44e5-9d25-db692669a071", "fields": { - "question": 328, - "contribution": 3740, - "answer": 2, - "count": 2 + "question": 341, + "contribution": 3404, + "answer": 3, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fdf4b3be-3e77-4823-85aa-b19d9331090b", + "pk": "e5ca5c65-1a26-41c2-9a07-d6f367e15dc3", "fields": { - "question": 363, - "contribution": 3648, + "question": 372, + "contribution": 4046, "answer": 2, - "count": 3 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fdf865a5-0355-4d55-b294-24ea87fc582b", + "pk": "e5dc3b4a-a49f-4c21-9524-fd0adffd3ab1", "fields": { - "question": 323, - "contribution": 1724, - "answer": 2, + "question": 463, + "contribution": 4283, + "answer": 1, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fdf921be-884d-4164-ac3c-0dddafe47a30", + "pk": "e5ee1541-a85c-4c6b-80e2-b24cd22b80b5", "fields": { - "question": 326, - "contribution": 3530, + "question": 360, + "contribution": 3647, "answer": 1, - "count": 3 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe0b3fca-143c-4c81-bf43-e933b66065fc", + "pk": "e5ee62fd-7d7b-4715-9c87-afbe56b0da7e", "fields": { - "question": 255, - "contribution": 884, - "answer": 3, - "count": 6 + "question": 315, + "contribution": 4128, + "answer": 5, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe0e137d-ce16-4989-8285-04b51b4e4195", + "pk": "e5f1e0f7-bc5d-4809-bafd-aa449a6aeb2c", "fields": { - "question": 258, - "contribution": 1634, - "answer": 1, - "count": 11 + "question": 355, + "contribution": 1784, + "answer": 2, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe13c70b-cafb-45c0-bf9c-e2188e319be8", + "pk": "e5f5dd4d-25f3-4e13-9590-a95c574e0a3b", "fields": { - "question": 328, - "contribution": 3435, + "question": 352, + "contribution": 3394, "answer": 1, - "count": 28 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe13f1d4-69b9-4184-863b-d6696525db1b", + "pk": "e5fc009a-fe3a-4572-a39c-a2e75d092e3e", "fields": { - "question": 326, - "contribution": 823, - "answer": 1, - "count": 3 + "question": 319, + "contribution": 3679, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe1ebd58-b19f-43dc-8dad-de24c5d136d1", + "pk": "e6092d33-58ff-4917-931e-aff8086e61ad", "fields": { - "question": 327, - "contribution": 3391, + "question": 315, + "contribution": 1634, "answer": 2, - "count": 1 + "count": 7 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe221724-8313-4c23-9062-6f6425f85b7e", + "pk": "e60e044e-e279-4c54-8781-7407d90ceb70", "fields": { - "question": 472, - "contribution": 1640, - "answer": 5, + "question": 344, + "contribution": 1749, + "answer": 2, "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe229000-5d8b-46fd-9309-2cfe92845f63", + "pk": "e6202712-b7ab-4539-8d1c-a21db1561395", "fields": { - "question": 349, - "contribution": 4129, + "question": 359, + "contribution": 3650, "answer": 4, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe356885-deeb-4d3b-b604-5e2dd065b7fb", + "pk": "e622596c-80cf-466d-9b11-b9a25de07606", "fields": { - "question": 259, - "contribution": 1634, - "answer": 2, - "count": 4 + "question": 323, + "contribution": 3683, + "answer": 4, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe3873fa-0505-4979-a26f-fd980f14d7e7", + "pk": "e6288e5f-9899-4b9a-9f06-ca0968395ed9", "fields": { - "question": 472, - "contribution": 3354, + "question": 315, + "contribution": 1668, "answer": 1, - "count": 14 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe3b0fd7-88a8-4f7f-997b-905bf8ad58b5", + "pk": "e62d1bb8-e99c-466a-b676-9c2b8bc825b1", "fields": { - "question": 477, - "contribution": 3859, - "answer": -1, - "count": 1 + "question": 317, + "contribution": 3679, + "answer": 2, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe3e7ab8-5ac9-411e-bef6-14587914c30a", + "pk": "e62f7cda-b97c-472d-8434-de58858a2ed3", "fields": { - "question": 341, - "contribution": 3466, - "answer": 1, + "question": 258, + "contribution": 912, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe3f37e1-9db2-4aa8-a973-d7b692448000", + "pk": "e63af94d-924d-415b-99d0-9d6623ec2190", "fields": { - "question": 321, - "contribution": 4138, - "answer": 1, - "count": 9 + "question": 329, + "contribution": 837, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe428d45-57ee-4ef0-86cc-083ae5731810", + "pk": "e63b6d81-0dc4-485d-9e09-a3d207bbec39", "fields": { - "question": 344, - "contribution": 3796, - "answer": 2, - "count": 3 + "question": 316, + "contribution": 3721, + "answer": 3, + "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe4a1b32-951e-4eba-9372-8bd6869ca360", + "pk": "e63cd497-b7d7-4707-a904-2f2c3a13ad66", "fields": { - "question": 326, - "contribution": 3435, - "answer": 3, + "question": 331, + "contribution": 3474, + "answer": -3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe4f5870-9362-4c6f-ab9d-0584e42b4cac", + "pk": "e64cb9f6-5e16-41a2-b51a-ccebb3b441c5", "fields": { - "question": 329, - "contribution": 823, - "answer": 4, + "question": 325, + "contribution": 4152, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe5f2ae8-d0d4-4e81-ac0d-7676e852056e", + "pk": "e6551838-b17e-419a-84b0-b10a3771da7d", "fields": { - "question": 333, - "contribution": 1282, + "question": 475, + "contribution": 3482, "answer": 1, - "count": 5 + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe736480-5722-4c4e-afa1-e4b2b411500d", + "pk": "e656ae32-063c-4c1e-bba9-d41312cd787a", "fields": { - "question": 345, - "contribution": 4188, + "question": 341, + "contribution": 3723, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe73c1ab-a5fa-4821-9a70-ada1e1bf4015", + "pk": "e659e30d-61fa-4d05-98a3-87129bf82158", "fields": { - "question": 476, - "contribution": 3354, - "answer": 0, - "count": 17 + "question": 259, + "contribution": 1634, + "answer": 5, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe744b02-954c-48d6-b549-522f04f126d7", + "pk": "e65c76fb-94dc-44bc-9244-8a709ea6d3a5", "fields": { - "question": 473, - "contribution": 788, - "answer": 0, + "question": 319, + "contribution": 880, + "answer": 1, "count": 6 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe762689-1fd3-4202-9287-1066326f8479", + "pk": "e66a2bb5-fd53-4a52-88e4-9d10d4effe14", "fields": { - "question": 378, - "contribution": 3755, + "question": 473, + "contribution": 3472, + "answer": 1, + "count": 3 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "e66b4f5b-e69c-404b-8c02-4db826396a55", + "fields": { + "question": 368, + "contribution": 4117, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe7acd7d-e6ad-4be7-990f-5473343a9466", + "pk": "e676bdba-a6c6-4663-871e-03eb8e8c97bc", "fields": { - "question": 366, - "contribution": 4205, - "answer": 1, - "count": 3 + "question": 369, + "contribution": 3929, + "answer": 3, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe7b4b26-cbcf-4d91-a04c-b6924f0ead76", + "pk": "e6825153-3f29-4cb0-a721-eb231d46ff36", "fields": { - "question": 457, - "contribution": 4283, + "question": 355, + "contribution": 3782, "answer": 1, - "count": 5 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe7bfb5a-ea27-4f47-a8c6-4ddb77e9948e", + "pk": "e683a296-bd07-484f-b57a-e74a1c4d959e", "fields": { "question": 323, - "contribution": 4116, - "answer": 1, + "contribution": 1626, + "answer": 3, "count": 9 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe7c0b6a-c6b7-4bac-af7e-0622b90ac0d4", + "pk": "e68f19cb-e969-48ce-9b67-dafc01b26659", "fields": { - "question": 362, - "contribution": 1803, + "question": 346, + "contribution": 4192, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe7c4432-8a2c-4bb5-829b-5f4cc93e7ef2", + "pk": "e694318c-4cc5-457c-946f-f11e4e9de906", "fields": { - "question": 321, - "contribution": 836, + "question": 340, + "contribution": 868, "answer": 1, - "count": 14 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe85a5eb-ffa9-4cb1-89d8-b9208cfde0d4", + "pk": "e69b46a4-7267-472a-bc54-ec194d6de6be", "fields": { - "question": 257, - "contribution": 1612, - "answer": 2, - "count": 8 + "question": 360, + "contribution": 3597, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe85e868-1045-4ccb-a5ba-d6cbb215f82d", + "pk": "e69bd3b5-09c8-4829-9494-1da960fb1a48", "fields": { - "question": 464, - "contribution": 4073, - "answer": 4, + "question": 347, + "contribution": 3941, + "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe966a8d-3b28-4cae-bd0e-e535e20ff81c", + "pk": "e6a4e92a-880e-40c9-bfdb-4a76d17fabe1", "fields": { - "question": 341, - "contribution": 1921, + "question": 344, + "contribution": 3822, "answer": 1, - "count": 2 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fe9a0141-08bc-41f8-b0d8-9f78814bd7d6", + "pk": "e6a99b86-fbe8-477e-8f1e-13eb13c8cb6c", "fields": { - "question": 347, - "contribution": 3879, - "answer": 2, + "question": 331, + "contribution": 1724, + "answer": 1, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "feaeb050-70ce-4241-b974-0f2687404345", + "pk": "e6ae3403-ab55-4819-a9f1-6f735130a4c8", "fields": { - "question": 367, - "contribution": 3474, - "answer": 3, - "count": 2 + "question": 323, + "contribution": 3354, + "answer": 1, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "feb552e5-114b-478b-b73e-770ad5add097", + "pk": "e6ae59b6-bdfb-4969-8814-9b1f02b5942e", "fields": { - "question": 363, - "contribution": 3597, + "question": 357, + "contribution": 1845, "answer": 1, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "feb821ca-4253-426d-84cb-532a37d512df", + "pk": "e6b96d9a-5a9a-44fc-a0cb-c79ced20860e", "fields": { - "question": 323, - "contribution": 4046, - "answer": 2, - "count": 3 + "question": 346, + "contribution": 1880, + "answer": 4, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fec6faba-1bf0-46f2-951f-09906d922a65", + "pk": "e6c785dc-214e-4131-aab0-ddb80289f9d7", "fields": { - "question": 396, - "contribution": 3711, - "answer": 1, + "question": 262, + "contribution": 884, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fecf4080-305e-4f3f-8334-5b800726e0a8", + "pk": "e6dc9907-f15f-42c2-a89c-6f6dcd82f59b", "fields": { - "question": 258, - "contribution": 4120, - "answer": 2, - "count": 5 + "question": 333, + "contribution": 3631, + "answer": 1, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fedcfc19-9ba3-432d-9029-ef0a896b1f24", + "pk": "e6e6f74e-036f-43fa-a5a1-249e8e4d7941", "fields": { - "question": 338, - "contribution": 826, + "question": 353, + "contribution": 3528, "answer": 2, - "count": 1 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "feee6e1e-23c3-4326-8b78-091d01ff2b82", + "pk": "e6e70f1c-c830-45be-9aab-606ca2764adc", "fields": { - "question": 346, - "contribution": 3934, - "answer": 1, + "question": 363, + "contribution": 1836, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fef0fd43-9cdb-4e9f-91fd-d12a48a1a44e", + "pk": "e6e81a0c-db16-49dd-9092-f4998a90139d", "fields": { - "question": 336, - "contribution": 3382, - "answer": 1, + "question": 257, + "contribution": 4128, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fef2542d-653c-4491-9aad-f6ba422f223c", + "pk": "e6fa3e73-26b3-48f6-9bd7-a22181d48d2c", "fields": { - "question": 371, - "contribution": 3881, - "answer": 1, - "count": 7 + "question": 473, + "contribution": 4008, + "answer": 0, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fef6f6af-478e-4036-a570-aa4a7fa66057", + "pk": "e6fa3f36-c0b2-45cf-b2d6-feb329fd1728", "fields": { - "question": 477, - "contribution": 3680, - "answer": 0, - "count": 12 + "question": 333, + "contribution": 3552, + "answer": 3, + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fefa1a3f-4ddf-45f2-9afb-2b236e09a042", + "pk": "e6fa781b-fff5-46ea-b3a2-53958a78c424", "fields": { - "question": 353, - "contribution": 3776, - "answer": 1, - "count": 6 + "question": 366, + "contribution": 3551, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff00622d-193e-46db-a2f9-3dbbb95f10d5", + "pk": "e6ffa8bd-57f2-443f-8259-16ea09f55008", "fields": { - "question": 332, - "contribution": 3598, + "question": 345, + "contribution": 3528, "answer": 2, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff04f6c9-4654-4733-b40c-939387c13b01", + "pk": "e7061d50-5c51-4b21-a8a9-1b7a0aa1b56b", "fields": { - "question": 347, - "contribution": 1235, + "question": 257, + "contribution": 4120, "answer": 3, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff0dd801-a165-403b-8305-1bcf617c2b7e", + "pk": "e711f676-a887-4c2c-97d3-4ad578db5386", "fields": { - "question": 346, - "contribution": 4021, - "answer": 1, + "question": 349, + "contribution": 3796, + "answer": 4, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff11ad8e-e0f6-4733-9be2-35ba98e79311", + "pk": "e712aa43-3d85-4be7-a786-2cecb679f3b5", "fields": { - "question": 328, - "contribution": 3556, + "question": 260, + "contribution": 3474, "answer": 1, - "count": 2 + "count": 5 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff1e26db-c020-42a0-9372-c5875742e237", + "pk": "e7185c60-693e-48f2-b43a-8807d6c6bfb8", "fields": { - "question": 344, - "contribution": 1202, - "answer": 2, - "count": 1 + "question": 347, + "contribution": 3728, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff24e8f8-bc22-457d-a4ff-6a839037a2ef", + "pk": "e7210fff-67cc-48f6-811b-c4a09a0d4273", "fields": { - "question": 344, - "contribution": 4223, - "answer": 1, - "count": 1 + "question": 475, + "contribution": 3372, + "answer": -3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff24edaf-5855-41f6-a364-e8e44d407e52", + "pk": "e7231b9e-f2e6-47b1-8aef-e923542ed9e5", "fields": { "question": 255, - "contribution": 4028, + "contribution": 4046, "answer": 3, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff29a7c2-e336-4b8c-a714-68cf8ff4f1bd", + "pk": "e7273410-fc1a-431e-a032-89ced221b27e", "fields": { - "question": 363, - "contribution": 1807, - "answer": 1, - "count": 1 + "question": 368, + "contribution": 3680, + "answer": 5, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff354f3b-d877-4b74-ae94-fc74f12ccabd", + "pk": "e728c92c-4141-4a45-982d-659270d4fc7e", "fields": { - "question": 356, - "contribution": 3545, - "answer": 4, - "count": 1 + "question": 328, + "contribution": 1154, + "answer": 2, + "count": 12 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff44ec47-ef39-4d34-be42-6cee53fe0a36", + "pk": "e73eea6d-cbe7-479a-9701-69266186c880", "fields": { - "question": 326, - "contribution": 4023, + "question": 367, + "contribution": 1634, "answer": 2, - "count": 1 + "count": 10 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff49bc15-c426-4eee-a319-8dee2995b5e6", + "pk": "e746711f-2515-4ad2-bd0b-7cfa26aa4f78", "fields": { - "question": 343, - "contribution": 3373, + "question": 317, + "contribution": 912, + "answer": 5, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "e747cc55-8229-482b-b46e-81f6650f9b45", + "fields": { + "question": 383, + "contribution": 3775, "answer": 1, - "count": 6 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff519bad-7f8a-461f-9436-11b1b5594ffe", + "pk": "e749a0ab-9bbe-4116-b12f-722f4f0c725e", "fields": { - "question": 357, - "contribution": 1242, + "question": 375, + "contribution": 3775, "answer": 1, - "count": 6 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff5513e8-4fac-4785-9585-dfda26fab390", + "pk": "e74fb6e3-f1f4-4b96-b229-0cb5a524c559", "fields": { - "question": 477, - "contribution": 4203, - "answer": -1, + "question": 323, + "contribution": 3434, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff568128-b685-4493-bfc3-cf37a9cd1969", + "pk": "e75444a0-daef-470f-80d5-053dbcaa3a2f", "fields": { - "question": 477, - "contribution": 909, - "answer": -2, - "count": 4 + "question": 349, + "contribution": 1151, + "answer": 1, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff572330-a83f-4dee-a323-8d40fa21e791", + "pk": "e756aa9d-8af4-4c4d-9c16-0b3404284f41", "fields": { - "question": 258, - "contribution": 1658, + "question": 346, + "contribution": 3373, "answer": 2, - "count": 4 + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff611606-a0b7-4749-908c-ef07243ae84a", + "pk": "e7637cc1-67cc-4e34-8c8a-bcf99145c5ac", "fields": { - "question": 451, - "contribution": 4185, - "answer": 1, - "count": 36 + "question": 359, + "contribution": 1836, + "answer": 2, + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff70a8e4-c555-4b62-a0cc-44093af4e6e5", + "pk": "e7639ce8-cb81-4a5c-aa30-182a9cb4e219", "fields": { - "question": 357, - "contribution": 1257, - "answer": 1, - "count": 6 + "question": 262, + "contribution": 3462, + "answer": 3, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff752f0e-9020-4382-b1fc-769aa42e569b", + "pk": "e76687b3-d411-4395-9473-44071f5d9eb1", "fields": { - "question": 316, - "contribution": 4138, + "question": 317, + "contribution": 3665, "answer": 2, - "count": 13 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff7763d0-1248-4b98-81ef-94dd343513f5", + "pk": "e76802b5-92d8-4591-bce8-2fa1dd75f025", "fields": { - "question": 361, - "contribution": 1807, + "question": 333, + "contribution": 3592, "answer": 5, - "count": 2 + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff79499d-c43e-468d-be59-c606b6821419", + "pk": "e7842ad0-1f39-44a8-be5d-9438fed3e79d", "fields": { - "question": 475, - "contribution": 1656, - "answer": -1, + "question": 362, + "contribution": 3650, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff7d050b-73ac-4189-afb3-fab7082aa77b", + "pk": "e78a88a2-8443-45e5-aee6-0c778b761d39", "fields": { - "question": 355, - "contribution": 3849, - "answer": 2, + "question": 472, + "contribution": 3472, + "answer": 5, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff81ae94-f3bf-47a9-94cf-32a374d25805", + "pk": "e7997e2b-abf7-4f3e-90fd-9dda4d22de02", "fields": { - "question": 475, - "contribution": 788, + "question": 336, + "contribution": 3416, "answer": 1, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff91cf92-1938-4f85-baa0-7a586b75f01a", + "pk": "e7a6ae1d-b50b-46c1-b472-f7fe886d22bb", "fields": { - "question": 255, - "contribution": 3394, - "answer": 1, - "count": 2 + "question": 315, + "contribution": 908, + "answer": 4, + "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff9da2ec-c291-4e44-9c90-a577e117bf6c", + "pk": "e7b19705-57a9-4198-bf9b-9d7155530a89", "fields": { - "question": 356, - "contribution": 3517, + "question": 259, + "contribution": 880, "answer": 2, - "count": 1 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ff9fff5f-4564-4770-8538-f34af292fe89", + "pk": "e7c780c7-1e67-4932-97ab-ff3bd99dd221", "fields": { - "question": 370, - "contribution": 4039, - "answer": 4, - "count": 1 + "question": 340, + "contribution": 4052, + "answer": 1, + "count": 2 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ffa47e86-5fcd-4cfe-8731-88fc1f9df5c5", + "pk": "e7d64ad1-3f61-453b-a98f-0f5857cbbb2e", "fields": { - "question": 472, - "contribution": 4084, - "answer": 1, - "count": 3 + "question": 339, + "contribution": 788, + "answer": -2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ffad24bd-e0af-41c2-ac09-518e0d7b8d54", + "pk": "e7d7ccc5-78c7-4513-893c-4c4335a678b9", "fields": { - "question": 366, - "contribution": 1812, + "question": 329, + "contribution": 1802, "answer": 1, - "count": 2 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ffb26a56-fdc4-474c-9647-d5aefe2bc60b", + "pk": "e7e41b38-c2aa-416f-abf5-5e8e201e3cf8", "fields": { - "question": 378, - "contribution": 3711, + "question": 357, + "contribution": 1154, "answer": 3, - "count": 1 + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ffc8de44-7684-4799-a320-c64a23f1d966", + "pk": "e7e535cf-1852-47a1-b9bb-697fcee1128e", "fields": { - "question": 331, - "contribution": 3406, - "answer": 1, + "question": 367, + "contribution": 4022, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ffc95b14-bb96-4220-a5b7-05b91ea8a342", + "pk": "e7ef0035-8b80-4581-8ca6-8c5e41babd89", "fields": { - "question": 343, - "contribution": 1204, + "question": 349, + "contribution": 1205, "answer": 1, - "count": 6 + "count": 4 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ffce6563-249a-4043-a858-43835cda66d6", + "pk": "e7f1795a-6557-4dad-8a2d-e153b2819b0f", "fields": { - "question": 262, - "contribution": 1837, - "answer": 1, - "count": 20 + "question": 322, + "contribution": 836, + "answer": 2, + "count": 8 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ffd6f539-ee09-4f83-bbd8-15555cd6ff95", + "pk": "e7f6494d-2216-4af5-9110-31e9de2b4de3", "fields": { - "question": 368, - "contribution": 3355, + "question": 349, + "contribution": 1250, "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ffe63a5a-7821-4e64-b2d9-d829ed6317c5", + "pk": "e7fb293c-ff33-4d83-8c73-fb8bd0c8c5f1", "fields": { - "question": 328, - "contribution": 3395, - "answer": 3, + "question": 317, + "contribution": 4040, + "answer": 2, "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "ffeab8d9-e004-45f4-85c8-79bd84525bd4", + "pk": "e80203b5-65a6-4091-a4d3-15815ce4fc12", "fields": { - "question": 353, - "contribution": 4244, - "answer": 1, - "count": 3 + "question": 463, + "contribution": 4283, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fff0fa66-0363-4795-98aa-952e5b30de7e", + "pk": "e8032cb6-5a60-43dd-bfc1-4f3faf5c1f34", "fields": { - "question": 258, - "contribution": 4128, - "answer": 4, - "count": 3 + "question": 354, + "contribution": 3776, + "answer": 2, + "count": 1 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fff1f462-37db-416f-893c-a9dafb204fde", + "pk": "e80661f0-c8cc-4547-9db6-f7a93d5802d9", "fields": { - "question": 473, - "contribution": 3466, - "answer": 1, + "question": 344, + "contribution": 1843, + "answer": 4, + "count": 1 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "e80d9225-4155-4611-a32f-a34446a45cac", + "fields": { + "question": 335, + "contribution": 3936, + "answer": 3, "count": 3 } }, { "model": "evaluation.ratinganswercounter", - "pk": "fff2dde9-bf0f-49a6-b423-8cda556edb0f", + "pk": "e816d719-9272-4dcb-a560-26a136fd857c", "fields": { - "question": 475, - "contribution": 3735, - "answer": 0, + "question": 356, + "contribution": 3516, + "answer": 3, "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "00347b40-3f1e-4c56-92cd-4978c5f8c39f", + "model": "evaluation.ratinganswercounter", + "pk": "e82558ca-7a3f-4a9a-b823-7b9fd5838cc7", "fields": { - "question": 324, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 362, + "contribution": 1804, + "answer": 1, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "0039a89d-e912-4f4d-a662-7dd5dedcf431", + "model": "evaluation.ratinganswercounter", + "pk": "e828e7ac-013e-4237-9128-469bada91ea9", "fields": { - "question": 313, - "contribution": 3739, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 822, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "00630396-2148-41dc-b167-32af262dfd88", + "model": "evaluation.ratinganswercounter", + "pk": "e8415ae2-9658-465a-b42c-828d62680172", "fields": { - "question": 342, - "contribution": 1710, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 257, + "contribution": 1626, + "answer": 3, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "00637495-1e9f-4d0d-b206-247c7284b310", + "model": "evaluation.ratinganswercounter", + "pk": "e84b2bea-d7ed-4355-a189-71b35b9cb4b1", "fields": { - "question": 313, - "contribution": 3721, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 260, + "contribution": 822, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "00b098bb-09d5-44c1-993d-05ae88d7958e", + "model": "evaluation.ratinganswercounter", + "pk": "e8574011-e2f8-4575-a05d-04a253579926", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 4118, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "00d049fc-e4db-4247-9211-bb6226c92a57", + "model": "evaluation.ratinganswercounter", + "pk": "e859f940-48e7-4f43-9188-9ddbac18ad55", "fields": { - "question": 324, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 262, + "contribution": 3721, + "answer": 4, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "00df89d0-6885-4750-888d-c13714b51f2e", + "model": "evaluation.ratinganswercounter", + "pk": "e85ba9f7-b9bd-403b-92b1-1e91d9c90e92", "fields": { - "question": 364, - "contribution": 4190, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 1873, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "01277eff-55fb-463f-972f-5bd182e0c6c5", + "model": "evaluation.ratinganswercounter", + "pk": "e860552d-e426-473a-8f42-51146446679c", "fields": { - "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 3404, + "answer": 4, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "0144d7bc-e694-4a17-b357-e97bc18bbf13", + "model": "evaluation.ratinganswercounter", + "pk": "e861d16c-c9ba-4af1-a382-de2b3b68299d", "fields": { - "question": 364, - "contribution": 3473, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 341, + "contribution": 3450, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "015fce61-3858-4ec3-b30e-1aae8aac756f", + "model": "evaluation.ratinganswercounter", + "pk": "e86744e5-1fc9-43c6-a053-4d9a9c3c2b5e", "fields": { - "question": 314, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 335, + "contribution": 3631, + "answer": 3, + "count": 10 } }, { - "model": "evaluation.textanswer", - "pk": "01860507-3572-426c-8796-1197ec0b44ae", + "model": "evaluation.ratinganswercounter", + "pk": "e868278b-1a99-4324-80fe-e6b5155ff278", "fields": { - "question": 330, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 3515, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "01920cd1-f7a4-4fad-9634-a55fe3ce2e1a", + "model": "evaluation.ratinganswercounter", + "pk": "e86b1ce9-11ea-461b-a95d-7789124aa6a3", "fields": { - "question": 364, - "contribution": 1206, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 908, + "answer": 5, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "0193154f-3061-4995-b51b-357c3551bd7f", + "model": "evaluation.ratinganswercounter", + "pk": "e87418b1-15f6-43d0-a256-b83e5b94b2c6", "fields": { - "question": 314, - "contribution": 3721, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 3423, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "01e6b981-1065-4abf-a160-342048970ec6", + "model": "evaluation.ratinganswercounter", + "pk": "e874ac4b-4f13-49b0-8257-41e8749b6aba", "fields": { - "question": 364, - "contribution": 3552, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 4120, + "answer": -2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "0200fd45-567b-407e-bcbb-151b96b3c3b9", + "model": "evaluation.ratinganswercounter", + "pk": "e87fafdf-0b02-45e6-a265-4e9b5bcec421", "fields": { - "question": 364, - "contribution": 3649, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 368, + "contribution": 3680, + "answer": 4, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "0202ea2d-b861-4433-8d02-99b2c0d6ae65", + "model": "evaluation.ratinganswercounter", + "pk": "e8888937-fc5a-4428-83b4-543a5c1461aa", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 4138, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "020e766b-4727-4901-9119-64a7794e438b", + "model": "evaluation.ratinganswercounter", + "pk": "e893886d-d1a4-4753-9848-d96d492c029c", "fields": { - "question": 318, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 262, + "contribution": 3406, + "answer": 1, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "021aa94f-7d79-41ac-b3d2-25702147bf8d", + "model": "evaluation.ratinganswercounter", + "pk": "e894163e-07f7-4f3e-8254-5de7e24bf1df", "fields": { - "question": 330, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 340, + "contribution": 3466, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "023a70fe-6f85-4993-ba41-a3a25cea4ff5", + "model": "evaluation.ratinganswercounter", + "pk": "e89489b1-ea16-4d77-adbc-5251a9a5bb50", "fields": { - "question": 411, - "contribution": 4038, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 3939, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "025119d0-064e-4014-8942-0a8ac686b468", + "model": "evaluation.ratinganswercounter", + "pk": "e89a0ebb-bfc7-43c8-b75d-e5bcec181ed9", "fields": { - "question": 364, - "contribution": 4117, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 3390, + "answer": 5, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "0257c065-3823-4592-b8fa-84f3006606db", + "model": "evaluation.ratinganswercounter", + "pk": "e8a6d6b0-f435-4822-a319-2477b835a7eb", "fields": { - "question": 364, - "contribution": 1776, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 372, + "contribution": 4046, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "02853356-6c95-49ba-a013-8262c6ca5dcf", + "model": "evaluation.ratinganswercounter", + "pk": "e8ac34ec-d507-4652-b635-0129f72cdb38", "fields": { - "question": 381, - "contribution": 3781, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 361, + "contribution": 1836, + "answer": 1, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "02992474-477d-4c2f-aecf-15deedcf6cc3", + "model": "evaluation.ratinganswercounter", + "pk": "e8aca503-ebd7-4180-a6fc-3ce4c2b29833", "fields": { - "question": 342, - "contribution": 4094, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 367, + "contribution": 4116, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "02be6c00-9782-44a3-92dd-ee316fd5ef12", + "model": "evaluation.ratinganswercounter", + "pk": "e8aeb6f6-ad90-40e0-9acd-939c3025ae76", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 367, + "contribution": 4128, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "03184e12-7655-49b1-8123-cf687b312b53", + "model": "evaluation.ratinganswercounter", + "pk": "e8b026c3-b1db-43d0-9e5d-98084b6d3650", "fields": { - "question": 324, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 3726, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "036d8e8e-4f09-433e-a782-a15acdd365a1", + "model": "evaluation.ratinganswercounter", + "pk": "e8b3708c-2550-4106-a441-287ba5bdd300", "fields": { - "question": 364, - "contribution": 4073, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false + "question": 347, + "contribution": 1863, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "036e2e59-df24-4b3b-9fff-b1af0819342c", + "model": "evaluation.ratinganswercounter", + "pk": "e8bac4c2-228b-4413-8e6f-363a250d6bf9", "fields": { - "question": 364, - "contribution": 1617, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 880, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0382cab3-9b7f-423c-b791-b98248c447e1", + "model": "evaluation.ratinganswercounter", + "pk": "e8dafa7f-8f80-4e2a-a9cd-3ed4cda0b412", "fields": { - "question": 342, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 1863, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "03e414fc-4955-4516-8926-98a60d1f6335", + "model": "evaluation.ratinganswercounter", + "pk": "e8df1d31-87a4-42e9-a471-65de935f0e4b", "fields": { - "question": 318, - "contribution": 4120, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 262, + "contribution": 4084, + "answer": 3, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "03f9de68-c449-48b3-bfff-6ded1fac4776", + "model": "evaluation.ratinganswercounter", + "pk": "e8e9107c-61ab-4e2c-8407-a1c1b06f6aed", "fields": { - "question": 364, - "contribution": 3607, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 359, + "contribution": 3919, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "04526dd6-8244-49c7-af16-ee9e16208d46", + "model": "evaluation.ratinganswercounter", + "pk": "e8e9a98d-fd73-42f5-b1af-463e455cde29", "fields": { - "question": 419, - "contribution": 4038, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 401, + "contribution": 4119, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "0483d892-75d9-4c6c-810b-4440cb4652c8", + "model": "evaluation.ratinganswercounter", + "pk": "e8ebe3c5-06c2-4ce5-ab22-9879162ca1f1", "fields": { - "question": 364, - "contribution": 3391, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 370, + "contribution": 1781, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0487db00-f57f-452a-a038-f5e137de9129", + "model": "evaluation.ratinganswercounter", + "pk": "e8efefd6-5dba-4f44-b78d-401b1d0c8d61", "fields": { - "question": 342, - "contribution": 3416, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 257, + "contribution": 1634, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "048e1b67-ea49-419b-9e05-9e92ecbb428d", + "model": "evaluation.ratinganswercounter", + "pk": "e8faafa0-c930-4c3b-9454-06a98ea91f87", "fields": { - "question": 313, - "contribution": 4118, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 1786, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "0498cdd6-5bad-4410-bce5-b093aa551dea", + "model": "evaluation.ratinganswercounter", + "pk": "e8fb1177-acd4-4063-9267-9b63bb1d698e", "fields": { - "question": 313, - "contribution": 1634, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 826, + "answer": 0, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "04c6a5ba-2677-4f8b-a7da-3097a48a38aa", + "model": "evaluation.ratinganswercounter", + "pk": "e8fb7d6b-4b1f-4f32-acb4-81a4db3fe7fd", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 4120, + "answer": 4, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "04cb69a0-a590-4237-87fc-f69841e0271b", + "model": "evaluation.ratinganswercounter", + "pk": "e8fbacd2-f10d-4769-a127-9bfc00091d1f", "fields": { - "question": 330, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 4052, + "answer": 0, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "04dfaff6-5cbe-4f37-985a-90ae6b10f5d0", + "model": "evaluation.ratinganswercounter", + "pk": "e8fdb690-8b43-4e4d-9582-0d4ca331c995", "fields": { - "question": 313, - "contribution": 912, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 836, + "answer": 1, + "count": 13 } }, { - "model": "evaluation.textanswer", - "pk": "0534300c-93e1-4f0a-93b0-21a5efa11f23", + "model": "evaluation.ratinganswercounter", + "pk": "e900af57-d8a5-4f37-8a96-2b72813f63ab", "fields": { - "question": 342, - "contribution": 1662, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 322, + "contribution": 4120, + "answer": 2, + "count": 10 } }, { - "model": "evaluation.textanswer", - "pk": "058b073d-9392-4e33-8f78-c01b2b652020", + "model": "evaluation.ratinganswercounter", + "pk": "e901f160-28e9-4cd2-9a07-1209ac3668cd", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 377, + "contribution": 3775, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "058c53b8-6537-4203-acf0-b6f175835cad", + "model": "evaluation.ratinganswercounter", + "pk": "e90c3250-40a3-48e3-acc1-4d2ee8408042", "fields": { - "question": 364, - "contribution": 4095, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 331, + "contribution": 4120, + "answer": 2, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "058dfa40-5a7f-4e1a-a784-bfc09b193391", + "model": "evaluation.ratinganswercounter", + "pk": "e9109f68-563d-464a-a280-e920c75945cc", "fields": { - "question": 324, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 371, + "contribution": 3566, + "answer": 1, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "0599212a-e9c5-49bc-9abd-c42dca20b737", + "model": "evaluation.ratinganswercounter", + "pk": "e913916b-355a-46be-9148-9f823649dcb3", "fields": { - "question": 324, - "contribution": 4100, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 322, + "contribution": 908, + "answer": 5, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "05b22d38-faeb-4fc9-8ca0-2f5c523b08c5", + "model": "evaluation.ratinganswercounter", + "pk": "e919b280-ff66-4fe9-bb58-ab4c86dc6e66", "fields": { - "question": 373, - "contribution": 1640, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 3722, + "answer": -3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "05bada5a-3aa2-43f8-9aae-7cc2e7b8f131", + "model": "evaluation.ratinganswercounter", + "pk": "e91d01ef-c927-47cb-bda5-39f6090cb33b", "fields": { - "question": 313, - "contribution": 1612, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 434, + "contribution": 4140, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "05c01e74-0c18-4491-87ee-134e9a174394", + "model": "evaluation.ratinganswercounter", + "pk": "e92347fe-4cea-45c4-b028-838e505d3d73", "fields": { - "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 457, + "contribution": 4141, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "05ea8f7a-df23-49d6-8066-b244da23f7f1", + "model": "evaluation.ratinganswercounter", + "pk": "e92407b2-8cf6-4075-880e-0d1bae5ebe8a", "fields": { - "question": 313, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 372, + "contribution": 3693, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "05f5d222-5ff5-4997-a7aa-f43886701039", + "model": "evaluation.ratinganswercounter", + "pk": "e92df1e8-b58b-4644-aaa6-af10769520dc", "fields": { - "question": 314, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 355, + "contribution": 1266, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "0611e7d3-009d-483e-809c-61a96604c68e", + "model": "evaluation.ratinganswercounter", + "pk": "e92e6503-fc9d-43ce-87af-d1d0605b6cd8", "fields": { - "question": 342, - "contribution": 1726, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 3745, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "064260b1-2de6-4f63-8a72-da2833bd6c2a", + "model": "evaluation.ratinganswercounter", + "pk": "e933a80c-a334-4852-b7de-67de05f47f46", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 880, + "answer": 2, + "count": 10 } }, { - "model": "evaluation.textanswer", - "pk": "066e2de7-a4ec-42dc-858a-fd9ca21ef28e", + "model": "evaluation.ratinganswercounter", + "pk": "e93ad69f-4ed3-4f49-ba7b-a701e0b21053", "fields": { - "question": 313, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 3451, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "067e6c7b-54b3-45b7-b595-d2d5bcee482d", + "model": "evaluation.ratinganswercounter", + "pk": "e93f05aa-e1b4-4ad0-a760-61a243bb3806", "fields": { - "question": 364, - "contribution": 1635, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 341, + "contribution": 3466, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "06cf1ef2-a56f-4ccc-8be7-db32d63a637d", + "model": "evaluation.ratinganswercounter", + "pk": "e93f4a82-e25d-4a57-a64a-9eeb674ad70f", "fields": { - "question": 373, - "contribution": 3440, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 354, + "contribution": 4039, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "06d65df8-3894-43c2-a806-bce8fcab3d88", + "model": "evaluation.ratinganswercounter", + "pk": "e94603ae-9aeb-4d34-8135-a552be46f89d", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 3486, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "06ea5a71-af98-437e-8401-50c7c5e39e0b", + "model": "evaluation.ratinganswercounter", + "pk": "e94f99b3-b331-4e92-9e93-70fa9eddebf1", "fields": { - "question": 313, - "contribution": 912, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 4085, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "06f0d712-c200-42f9-8a7e-651c567c1232", + "model": "evaluation.ratinganswercounter", + "pk": "e957813a-11c7-4d74-bccd-a43602852209", "fields": { - "question": 342, - "contribution": 3685, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 3355, + "answer": 0, + "count": 21 } }, { - "model": "evaluation.textanswer", - "pk": "079575f2-8140-4fa8-9919-d2b1235db74d", + "model": "evaluation.ratinganswercounter", + "pk": "e9679c05-1ddc-4bf3-9e04-94d833f78662", "fields": { - "question": 314, - "contribution": 4138, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 259, + "contribution": 3390, + "answer": 5, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "07b8e087-9793-46c6-a29a-50739be52d15", + "model": "evaluation.ratinganswercounter", + "pk": "e96e46b0-69ea-41ea-8889-ef77a65b8762", "fields": { - "question": 314, - "contribution": 884, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 472, + "contribution": 3683, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "07b9ce30-6ccf-4ab7-a21d-531431beb16d", + "model": "evaluation.ratinganswercounter", + "pk": "e971a733-078e-419b-a4f1-1e83a459f6ca", "fields": { - "question": 318, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 4138, + "answer": 1, + "count": 15 } }, { - "model": "evaluation.textanswer", - "pk": "083acb03-feec-4e5f-a76d-328a38b81f1b", + "model": "evaluation.ratinganswercounter", + "pk": "e97830cf-b71a-410c-ac93-d7445d3eb616", "fields": { - "question": 358, - "contribution": 4152, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 354, + "contribution": 4268, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "083b537b-a960-4e5a-a813-7455bee0641d", + "model": "evaluation.ratinganswercounter", + "pk": "e9810157-6942-4d5c-8500-bf870571e3ad", "fields": { - "question": 314, - "contribution": 3474, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 4192, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0844c25d-d7ba-4908-b4b3-925f591675a9", + "model": "evaluation.ratinganswercounter", + "pk": "e9814705-c15d-4cc4-b8fc-90c9e7a3454c", "fields": { - "question": 324, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 341, + "contribution": 3759, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "084ddbfc-5fb4-4160-a081-eb49548d6c2e", + "model": "evaluation.ratinganswercounter", + "pk": "e98e5c01-82a5-4ea4-ba4d-80fc55862473", "fields": { - "question": 330, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 366, + "contribution": 3881, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "0852fb51-49c6-496c-9803-5072c3c9a840", + "model": "evaluation.ratinganswercounter", + "pk": "e99179a7-c070-49f7-96da-6fb451ce47a4", "fields": { - "question": 373, - "contribution": 1660, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 457, + "contribution": 4141, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "0858a563-2b31-4961-b1f7-ade6e08364e9", + "model": "evaluation.ratinganswercounter", + "pk": "e993f79c-8d9a-41d5-89fe-ac56d6c59771", "fields": { - "question": 330, - "contribution": 1626, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 3463, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "0858b8b3-ac68-406a-bcd2-f6c66d44debd", + "model": "evaluation.ratinganswercounter", + "pk": "e99de299-ca04-4247-9a70-3666bead5155", "fields": { - "question": 330, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 341, + "contribution": 3727, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0872759e-5319-4a55-aaf3-11e62d8736e7", + "model": "evaluation.ratinganswercounter", + "pk": "e9a183ac-20d8-4b2d-98e5-b5870cd30696", "fields": { - "question": 373, - "contribution": 3372, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 1822, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "089e4a39-196d-4a8b-a41b-efe30c3da9ff", + "model": "evaluation.ratinganswercounter", + "pk": "e9a925f8-3f39-4a38-8594-15379b013ab2", "fields": { - "question": 364, - "contribution": 1250, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 4101, + "answer": 3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "08a12153-1afb-4788-aa56-27f5899bc09e", + "model": "evaluation.ratinganswercounter", + "pk": "e9aa77e7-de0a-40bb-b763-6e5da452d962", "fields": { - "question": 364, - "contribution": 4139, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 369, + "contribution": 1807, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "08acadde-fea5-4d95-b59a-886e6b6f40d3", + "model": "evaluation.ratinganswercounter", + "pk": "e9aee183-f072-45cc-98f3-e4514c007135", "fields": { - "question": 318, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 360, + "contribution": 3648, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "08bf612d-d9b4-46c3-a1e1-fd8e67e22ec1", + "model": "evaluation.ratinganswercounter", + "pk": "e9bad428-3708-4df4-9897-fe30f4950616", "fields": { - "question": 373, - "contribution": 4072, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false + "question": 338, + "contribution": 3508, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "08d236b5-d0a5-45f0-9ac8-e85a33cfd23b", + "model": "evaluation.ratinganswercounter", + "pk": "e9be06c0-c4a1-4420-8654-db280e564cbc", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 367, + "contribution": 1612, + "answer": 3, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "08fbd53e-1d0b-4137-802d-6e07f9f845f1", + "model": "evaluation.ratinganswercounter", + "pk": "e9c0ab40-6ad9-43ab-97ad-b52c09e138f4", "fields": { - "question": 364, - "contribution": 3647, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 259, + "contribution": 3434, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "090a92a3-27bd-40ae-9748-52adfc106b37", + "model": "evaluation.ratinganswercounter", + "pk": "e9da372e-80ff-4e03-99b8-3c81f5d557ba", "fields": { - "question": 313, - "contribution": 3406, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 363, + "contribution": 3893, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "093939f3-a499-4c4b-ad50-7ff47d0ed73e", + "model": "evaluation.ratinganswercounter", + "pk": "e9db553b-589e-4146-919c-115ad7632942", "fields": { - "question": 313, - "contribution": 4028, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 1186, + "answer": -3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "09b6de6b-f4e6-4e14-9c8c-6b7e4f5e0cf1", + "model": "evaluation.ratinganswercounter", + "pk": "e9e115ee-9d78-45c5-ba38-021c28c8feb7", "fields": { - "question": 364, - "contribution": 4117, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 4191, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "0a02ac22-a551-46df-8190-f1df5dda4868", + "model": "evaluation.ratinganswercounter", + "pk": "e9e139b6-8685-4435-916c-4bf695369b88", "fields": { - "question": 314, - "contribution": 1626, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 356, + "contribution": 1266, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "0a27d728-6ae1-4b93-8cf3-b97492840df2", + "model": "evaluation.ratinganswercounter", + "pk": "e9e6481b-c8fa-4569-a551-1d943fdebb70", "fields": { - "question": 364, - "contribution": 1228, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 4120, + "answer": 2, + "count": 14 } }, { - "model": "evaluation.textanswer", - "pk": "0a804e2d-f2f5-43e2-ae17-fc4c8ed73d20", + "model": "evaluation.ratinganswercounter", + "pk": "e9e96ce2-cfef-4cf0-840f-244c03abcdb7", "fields": { - "question": 373, - "contribution": 3685, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 262, + "contribution": 3739, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "0a95d097-4ceb-4d07-966f-d1b86e5e9818", + "model": "evaluation.ratinganswercounter", + "pk": "e9ea4377-c31c-4f5f-aa44-5cccdaef73b3", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 367, + "contribution": 1626, + "answer": 3, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "0ad76c22-4021-4446-8ef1-302a54e55312", + "model": "evaluation.ratinganswercounter", + "pk": "e9f53392-b6c7-4847-8667-95f269eba7d9", "fields": { - "question": 364, - "contribution": 3556, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 3546, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0ae62f8f-1018-46fe-89ff-9c7ce2befdc5", + "model": "evaluation.ratinganswercounter", + "pk": "e9fd5d58-41e1-4856-bfc5-3cc8f8c2ca00", "fields": { - "question": 373, - "contribution": 3440, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 414, + "contribution": 4038, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "0aefcc05-920d-43d0-8cc7-12ee3de74b81", + "model": "evaluation.ratinganswercounter", + "pk": "ea088bff-4627-43c0-99e4-c0f73758bd5b", "fields": { - "question": 330, - "contribution": 3739, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 4152, + "answer": -1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "0b130ef7-c41b-4e27-a374-75eb48ed0efa", + "model": "evaluation.ratinganswercounter", + "pk": "ea10a6a8-90bb-4458-a3fb-0914e348e219", "fields": { - "question": 330, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 4116, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "0b2e892f-4a6e-4ce0-ad67-dc9ad1e1b1ea", + "model": "evaluation.ratinganswercounter", + "pk": "ea1eea39-3317-4cac-8e1d-34cc0efcd0a6", "fields": { - "question": 314, - "contribution": 4116, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 3939, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0b57d39a-cd3c-47e0-b910-bea27d4c2a10", + "model": "evaluation.ratinganswercounter", + "pk": "ea260c62-f908-4594-b1ff-84e7eaf0b530", "fields": { - "question": 393, - "contribution": 3711, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 1154, + "answer": 2, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "0bb5b0d5-3a6c-4c5d-89e7-00c17b809f5d", + "model": "evaluation.ratinganswercounter", + "pk": "ea2bbcf0-9770-4124-929f-93b29b3d81fd", "fields": { - "question": 364, - "contribution": 3595, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 323, + "contribution": 3725, + "answer": 2, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "0bc025bb-335d-4df7-a46b-3bc862f8d758", + "model": "evaluation.ratinganswercounter", + "pk": "ea36ad07-89f4-4c4d-afcc-02894916608c", "fields": { - "question": 342, - "contribution": 3785, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false + "question": 327, + "contribution": 3885, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "0c70c59c-4c2b-4a2f-b108-f753809b91ce", + "model": "evaluation.ratinganswercounter", + "pk": "ea583dd0-592f-4351-94e6-226b681df34d", "fields": { - "question": 330, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 323, + "contribution": 4116, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0ca2766b-cfda-4124-9be9-c4b1cf0091d0", + "model": "evaluation.ratinganswercounter", + "pk": "ea5c259f-456f-450c-8c5b-4e8539437861", "fields": { - "question": 324, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 1186, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "0ce479bc-c036-493b-917d-243946bd1742", + "model": "evaluation.ratinganswercounter", + "pk": "ea604031-9e8d-4c42-8b86-9d885de1a0e0", "fields": { - "question": 318, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 919, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "0cfcf43d-d2fc-49ff-aa2d-b49286f25d0a", + "model": "evaluation.ratinganswercounter", + "pk": "ea61695a-1d78-49a3-810e-94bafa4eb650", "fields": { - "question": 330, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 3546, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "0cfdb76a-6790-4b93-abbf-a16b7547f0b8", + "model": "evaluation.ratinganswercounter", + "pk": "ea61b378-6f68-4db0-b419-91eb97e7933e", "fields": { - "question": 330, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 368, + "contribution": 1659, + "answer": 1, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "0d5d8f34-cb27-49c8-8848-b21a370ff6e1", + "model": "evaluation.ratinganswercounter", + "pk": "ea6aa47c-5955-4017-9ddf-8e0df0711c54", "fields": { - "question": 318, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 476, + "contribution": 4084, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0d66d053-e057-4c45-b0b4-4626e730222b", + "model": "evaluation.ratinganswercounter", + "pk": "ea76280d-e4f4-43a1-9d27-aef4239396aa", "fields": { - "question": 381, - "contribution": 3711, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 3450, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0da9262a-18a3-4fd8-a93d-79746c7f3978", + "model": "evaluation.ratinganswercounter", + "pk": "ea78b6ce-bc7d-4806-8942-279c6da49837", "fields": { - "question": 318, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 340, + "contribution": 1638, + "answer": 2, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "0db3d301-de11-4688-8f66-11a50cceb65d", + "model": "evaluation.ratinganswercounter", + "pk": "ea7bc899-77d9-465c-86f4-0e11e1f49915", "fields": { - "question": 314, - "contribution": 4100, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 366, + "contribution": 3631, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0dbd813d-097d-48ce-a901-cb33cd902bca", + "model": "evaluation.ratinganswercounter", + "pk": "ea7e4009-cffc-40eb-9821-9b29aa5e9e23", "fields": { - "question": 313, - "contribution": 4046, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 3517, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "0dd21090-486e-4c18-8462-b2bf0b266672", + "model": "evaluation.ratinganswercounter", + "pk": "ea8129b7-d40b-4f55-b1b0-c384a436018a", "fields": { - "question": 364, - "contribution": 1206, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 822, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "0dd3ebc2-7356-4c1e-8c36-12c2db098394", + "model": "evaluation.ratinganswercounter", + "pk": "ea81877e-73e9-483f-b087-30abd1a72895", "fields": { - "question": 313, - "contribution": 4138, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 340, + "contribution": 1200, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0dd58519-0667-4529-b27c-f6a39a7fa8d6", + "model": "evaluation.ratinganswercounter", + "pk": "ea8b3611-5faa-4839-aaab-a7eea61097d0", "fields": { - "question": 342, - "contribution": 788, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 3606, + "answer": 3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "0e4ce10b-076f-408e-bcba-6c63cd38f1d7", + "model": "evaluation.ratinganswercounter", + "pk": "ea9f56d7-fb3b-48e5-9727-af9850b836e9", "fields": { - "question": 364, - "contribution": 4148, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 1246, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "0e5d9ed9-89da-457b-9f63-9b74def62898", + "model": "evaluation.ratinganswercounter", + "pk": "eaa0f004-3c6b-43a7-acef-a183c4f00d2e", "fields": { - "question": 364, - "contribution": 3776, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 332, + "contribution": 3551, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0ef70dcf-b86d-4bf3-96f5-50214e6305d8", + "model": "evaluation.ratinganswercounter", + "pk": "eaa49619-3569-4360-b5d9-829340a020e7", "fields": { - "question": 324, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 336, + "contribution": 1702, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0f1d6bc5-52b7-4011-8c8c-3e62eda6d8c7", + "model": "evaluation.ratinganswercounter", + "pk": "eaa86949-6d9f-4a9a-bb16-26afc751f349", "fields": { - "question": 324, - "contribution": 836, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 437, + "contribution": 4140, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0f562700-3193-4306-b58e-dc3098ddbac2", + "model": "evaluation.ratinganswercounter", + "pk": "eab2d2d2-8556-4550-a004-1da7725aba24", "fields": { - "question": 318, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 4189, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0f70f4f7-74c6-4b84-a7cd-5693f88070f2", + "model": "evaluation.ratinganswercounter", + "pk": "eab9a153-7036-49c5-b538-d40d69c67b7c", "fields": { - "question": 324, - "contribution": 3785, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false + "question": 360, + "contribution": 1835, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0f74dfc1-1381-4f47-be4a-c3d718864b1b", + "model": "evaluation.ratinganswercounter", + "pk": "eac3a9c2-3ab2-4c35-87b9-0bbba863e1e0", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 3934, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0fcd53a8-2e3d-4dee-b550-cbc00fac875f", + "model": "evaluation.ratinganswercounter", + "pk": "ead186aa-5aa6-4219-9291-924aead0d57a", "fields": { - "question": 318, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 3685, + "answer": -1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0fdbad0d-1cda-41fb-bafb-cb4d09c19d82", + "model": "evaluation.ratinganswercounter", + "pk": "ead3e11d-d2c8-45f1-81be-63060d8adef7", "fields": { - "question": 358, - "contribution": 859, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 3941, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "0fdf0fae-366e-40d8-8c7a-3b996b1b3fb0", + "model": "evaluation.ratinganswercounter", + "pk": "eadc008f-70fd-46b2-a91d-571a2a2f3eda", "fields": { - "question": 364, - "contribution": 4139, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 340, + "contribution": 3454, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1042c758-a4a7-4163-aeb0-bcdc4ebd7c8c", + "model": "evaluation.ratinganswercounter", + "pk": "eae49ca3-e75d-428d-a0e7-8ae2804e024e", "fields": { - "question": 324, - "contribution": 3683, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 262, + "contribution": 1612, + "answer": 5, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1090cbd8-458d-41ef-a64d-b489b24e5e8d", + "model": "evaluation.ratinganswercounter", + "pk": "eae6155e-b35e-44e6-96fb-b96a8f2722d9", "fields": { - "question": 429, - "contribution": 864, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "DE", - "is_flagged": false + "question": 259, + "contribution": 1634, + "answer": 3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "109c64cb-f859-461f-8424-bcc834090340", + "model": "evaluation.ratinganswercounter", + "pk": "eae78185-5320-46b1-95a2-051df059bae4", "fields": { - "question": 342, - "contribution": 3508, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 3545, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "10d586af-81d8-4d7e-b2ac-440601251cdf", + "model": "evaluation.ratinganswercounter", + "pk": "eae8964c-4d9f-4f44-ad14-959a21f0b1a6", "fields": { - "question": 364, - "contribution": 3519, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 4128, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "10d87cff-a995-4334-a42f-22b412c7c0e8", + "model": "evaluation.ratinganswercounter", + "pk": "eaf4b6c6-c2a5-4555-960c-88ea5c37ca9a", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 1287, + "answer": 1, + "count": 25 } }, { - "model": "evaluation.textanswer", - "pk": "10da5192-3224-4e37-a668-c6b58a725f90", + "model": "evaluation.ratinganswercounter", + "pk": "eaf5cb52-7b0c-404c-9e32-6427f57ae728", "fields": { - "question": 324, - "contribution": 804, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 340, + "contribution": 3751, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "10e094c7-8ad0-44d2-8812-cff4217e0389", + "model": "evaluation.ratinganswercounter", + "pk": "eaf5d102-f3b3-445c-89a8-d9f354ff3819", "fields": { - "question": 313, - "contribution": 4100, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 1658, + "answer": 1, + "count": 10 } }, { - "model": "evaluation.textanswer", - "pk": "10ff33f6-a30a-4b3d-881e-50ec070befca", + "model": "evaluation.ratinganswercounter", + "pk": "eaf83bf3-34c5-4cc5-bd66-f3e556568a4f", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 3519, + "answer": 2, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "114cef6d-d903-47b0-a6cb-410ceeebff95", + "model": "evaluation.ratinganswercounter", + "pk": "eafb07a5-bd5a-491e-bf48-2e28a616eeb1", "fields": { - "question": 330, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 323, + "contribution": 3665, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1152942f-d289-41be-bd58-473a6a42a011", + "model": "evaluation.ratinganswercounter", + "pk": "eafe74a6-619c-4821-9185-f2052d4bf771", "fields": { - "question": 324, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 3555, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "115f4f26-0ed8-4122-ad1c-bce1686ae8c2", + "model": "evaluation.ratinganswercounter", + "pk": "eb060cc2-a25d-4b71-90ca-a607a506688c", "fields": { - "question": 364, - "contribution": 885, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 1702, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "116b081d-6bf2-48b0-93a3-844d46ec3861", + "model": "evaluation.ratinganswercounter", + "pk": "eb161081-7dfe-452e-9a05-ba77b7a8a4d1", "fields": { - "question": 364, - "contribution": 3650, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 3608, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "118f53c0-c91c-40b6-a76b-4c8efa8f523b", + "model": "evaluation.ratinganswercounter", + "pk": "eb169abc-1b32-4027-81c9-e9ddbc2f4d51", "fields": { - "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 3934, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "11a3eb32-713e-4766-ada0-c87072556ceb", + "model": "evaluation.ratinganswercounter", + "pk": "eb2cf9dc-820b-4502-9519-b0797d34861a", "fields": { - "question": 364, - "contribution": 3473, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 4100, + "answer": 1, + "count": 14 } }, { - "model": "evaluation.textanswer", - "pk": "11a3ec51-db5f-403a-afce-92a762d806be", + "model": "evaluation.ratinganswercounter", + "pk": "eb2e3729-3d70-4896-bb3b-4aaed0576104", "fields": { - "question": 324, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 1921, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "11afd65c-d8f7-4d08-8718-569ad830576a", + "model": "evaluation.ratinganswercounter", + "pk": "eb31027e-bcbf-49de-8513-5d6711acc574", "fields": { - "question": 313, - "contribution": 3679, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 331, + "contribution": 884, + "answer": -2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "11d62ee8-6fdb-46a7-a032-bb8243b65857", + "model": "evaluation.ratinganswercounter", + "pk": "eb3c8989-b482-4852-800c-22f628fc634a", "fields": { - "question": 324, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 4117, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1209d6ed-a3e5-44db-b08e-fb3a6887bb5a", + "model": "evaluation.ratinganswercounter", + "pk": "eb43a0ee-dec9-489d-8488-3c452e6015f3", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 4120, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "126dc816-81e6-4527-b0b1-5e0abec4f856", + "model": "evaluation.ratinganswercounter", + "pk": "eb484efb-533c-4880-b98a-28d6b1dac38a", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 369, + "contribution": 3653, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "12a105cc-1e76-4e97-a0c9-09861b594c03", + "model": "evaluation.ratinganswercounter", + "pk": "eb4856a9-e241-46d3-a4ff-ab13de38d353", "fields": { - "question": 364, - "contribution": 4121, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 360, + "contribution": 1804, + "answer": 1, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "12a5b715-b36b-4a53-8762-7610f1a1fec1", + "model": "evaluation.ratinganswercounter", + "pk": "eb48d169-c80e-423d-9153-da4c3205c301", "fields": { - "question": 373, - "contribution": 3404, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 351, + "contribution": 3440, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "12aa664d-7a38-4d0d-bd4c-92e42a7f1dbc", + "model": "evaluation.ratinganswercounter", + "pk": "eb563d89-6e06-4cd8-bc96-be3e7c0ade0f", "fields": { - "question": 364, - "contribution": 3391, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 3474, + "answer": 5, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "12c54ebd-f0a3-4b0b-a0c3-911c1ff499af", + "model": "evaluation.ratinganswercounter", + "pk": "eb5939b9-e315-4eac-99cb-4f681bc5eff6", "fields": { - "question": 313, - "contribution": 4128, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 359, + "contribution": 3917, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "12f8774a-b06a-4d62-af0c-b7ebeab6a68c", + "model": "evaluation.ratinganswercounter", + "pk": "eb6518f7-c62b-4ef4-aeae-eef29efa399b", "fields": { - "question": 324, - "contribution": 3727, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 3462, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1346a57e-5804-4ad7-b981-a75ee5c10c4c", + "model": "evaluation.ratinganswercounter", + "pk": "eb666680-dfc8-403e-b942-fc251067e935", "fields": { - "question": 330, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 4153, + "answer": 2, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "13560ff9-5a1d-418c-81d9-fa601abceaf9", + "model": "evaluation.ratinganswercounter", + "pk": "eb6dafcb-153c-41d4-bcd1-0d7d5886c14c", "fields": { - "question": 373, - "contribution": 3486, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 372, + "contribution": 3454, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "136339b3-ef6f-48ec-bec1-6abce948f74c", + "model": "evaluation.ratinganswercounter", + "pk": "eb70464f-47bb-4bb7-a0ea-205f73bdddd8", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 343, + "contribution": 1851, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1370b508-7503-4ad3-895f-1a84bc2e3518", + "model": "evaluation.ratinganswercounter", + "pk": "eb751613-ca7b-442b-8f7c-553a529119bd", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 886, + "answer": -2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "13c97136-4c7f-4df3-94da-d58110ecdeb6", + "model": "evaluation.ratinganswercounter", + "pk": "eb836171-188b-4ca4-8139-991a068680db", "fields": { - "question": 330, - "contribution": 3434, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 1, + "contribution": 4300, + "answer": 1, + "count": 16 } }, { - "model": "evaluation.textanswer", - "pk": "13e6c0f7-83fa-40d5-a62a-3291713b3855", + "model": "evaluation.ratinganswercounter", + "pk": "eb83ec5e-86aa-4aac-84a6-b438c90b78a6", "fields": { - "question": 318, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 3423, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "14205039-f0fd-4a88-aaf3-55ce05d56515", + "model": "evaluation.ratinganswercounter", + "pk": "eb84778f-4695-498e-b517-99c1c4932b46", "fields": { - "question": 342, - "contribution": 3785, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false + "question": 320, + "contribution": 4120, + "answer": 3, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "144570fa-8fa5-400f-b09e-b945d59d859a", + "model": "evaluation.ratinganswercounter", + "pk": "eb9a89fd-6fc1-4634-a7a7-89640fbf29cf", "fields": { - "question": 314, - "contribution": 836, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 320, + "contribution": 1837, + "answer": 3, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "1452e456-6d1c-48e0-b427-1357d2abe175", + "model": "evaluation.ratinganswercounter", + "pk": "eba1918b-b1dc-4572-9bf6-c9e37144d759", "fields": { - "question": 318, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 4052, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "148c52a6-a1c2-4de7-b387-056de969f8fa", + "model": "evaluation.ratinganswercounter", + "pk": "ebaf22af-a346-4eb5-bf23-ba6f98533fd1", "fields": { - "question": 364, - "contribution": 3726, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 3739, + "answer": 3, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "14aa3d5b-8fc1-4886-aa03-26cb1fa7b918", + "model": "evaluation.ratinganswercounter", + "pk": "ebb1508c-7b4f-426d-9165-8a4db8d242f5", "fields": { - "question": 313, - "contribution": 4138, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 363, + "contribution": 3921, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "14af71a5-bc8b-418a-8cc6-8e42b128e7f5", + "model": "evaluation.ratinganswercounter", + "pk": "ebb38dc4-3337-414c-a0b6-7e298d39f464", "fields": { - "question": 313, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 337, + "contribution": 1656, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "14c8ce86-701d-4d3f-bdd3-3cfe834912ff", + "model": "evaluation.ratinganswercounter", + "pk": "ebb47b6d-110d-45eb-b1a2-5d4d0d7e8ff8", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 362, + "contribution": 1810, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "14f7858d-f82f-4790-879d-d0a1299d9a91", + "model": "evaluation.ratinganswercounter", + "pk": "ebc5c77f-3f37-439f-810d-d81000a2bc60", "fields": { - "question": 364, - "contribution": 1206, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 331, + "contribution": 4046, + "answer": -1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "150ce45d-bb7f-4773-a993-f692f7fa6e2f", + "model": "evaluation.ratinganswercounter", + "pk": "ebcdf728-a312-4c48-ba0b-c5c7caef331e", "fields": { - "question": 318, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 3354, + "answer": 0, + "count": 17 } }, { - "model": "evaluation.textanswer", - "pk": "153e879c-c123-4055-abd1-6825d270e263", + "model": "evaluation.ratinganswercounter", + "pk": "ebce8f9d-77e0-431f-aa48-dd588b907734", "fields": { - "question": 373, - "contribution": 3645, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 4100, + "answer": 2, + "count": 11 } }, { - "model": "evaluation.textanswer", - "pk": "15449bc8-0af5-4f3c-ac56-b451ac9f9a1a", + "model": "evaluation.ratinganswercounter", + "pk": "ec20a3c9-89ba-4afa-82e0-c4a56b97b3a5", "fields": { - "question": 364, - "contribution": 1217, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 472, + "contribution": 4138, + "answer": 5, + "count": 11 } }, { - "model": "evaluation.textanswer", - "pk": "1555b052-54a7-456e-825d-eda35cec35f9", + "model": "evaluation.ratinganswercounter", + "pk": "ec210192-abff-4d1e-831a-f8fcf293a114", "fields": { - "question": 342, - "contribution": 1662, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 1724, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "155f0071-723e-4136-9bc7-13e35feb5032", + "model": "evaluation.ratinganswercounter", + "pk": "ec24268c-4137-44d0-9e1e-a97f9dec1304", "fields": { - "question": 364, - "contribution": 3553, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 343, + "contribution": 1727, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1627ad80-3637-439d-bfcf-39b0831d5d15", + "model": "evaluation.ratinganswercounter", + "pk": "ec2d00a5-a484-4320-92f5-2a2230e478c7", "fields": { - "question": 313, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 1669, + "answer": 1, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "165f8b55-5169-4446-951e-e61991e428a8", + "model": "evaluation.ratinganswercounter", + "pk": "ec326a0f-0e01-4ddf-a309-1c66a4ffb757", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 4128, + "answer": 2, + "count": 10 } }, { - "model": "evaluation.textanswer", - "pk": "16646537-af1e-4f0c-9dd6-7f2ed5bd7648", + "model": "evaluation.ratinganswercounter", + "pk": "ec475b98-c5fe-4c11-82ff-b0d828d2f262", "fields": { - "question": 364, - "contribution": 4203, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 4022, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1679743f-a5ff-481f-b94c-6f54b396d9bd", + "model": "evaluation.ratinganswercounter", + "pk": "ec5161aa-e6d2-4055-b953-2e5e9b931b2f", "fields": { - "question": 364, - "contribution": 1659, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 371, + "contribution": 3886, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "167c07cf-d96a-45d4-ba64-ea938f498b5e", + "model": "evaluation.ratinganswercounter", + "pk": "ec5455e6-fc78-4fc4-b907-e4bda0856d10", "fields": { - "question": 365, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 472, + "contribution": 1634, + "answer": 5, + "count": 24 } }, { - "model": "evaluation.textanswer", - "pk": "16fc0809-4dd9-47e4-a54a-8d50ca54f074", + "model": "evaluation.ratinganswercounter", + "pk": "ec56d238-5744-4ec1-af55-21e78d728a1f", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 368, + "contribution": 3859, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "17032243-a4a8-442d-906c-283f94a96b6f", + "model": "evaluation.ratinganswercounter", + "pk": "ec695652-5752-4e7a-9d1a-483ca63b5a59", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 880, + "answer": 4, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1727b506-049a-42e6-82a8-e1fa353a6059", + "model": "evaluation.ratinganswercounter", + "pk": "ec6fe60d-d489-4ea4-a08c-05970f44992b", "fields": { - "question": 318, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 333, + "contribution": 1282, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "176c70ed-0a94-4d34-a51f-c50f307fbdd6", + "model": "evaluation.ratinganswercounter", + "pk": "ec754fd6-f4c7-48f3-ab89-8a1f381d54f4", "fields": { - "question": 342, - "contribution": 3785, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false + "question": 258, + "contribution": 3474, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1775456e-f37c-42d4-a535-b2396f8de55f", + "model": "evaluation.ratinganswercounter", + "pk": "ec7553eb-8d0a-4cfe-b9aa-999419ef3663", "fields": { - "question": 364, - "contribution": 4115, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false + "question": 257, + "contribution": 3474, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "17aa795e-091b-40a9-a948-c4f3fda9e246", + "model": "evaluation.ratinganswercounter", + "pk": "ec78fdd6-8b74-41b4-ad98-21a62dbe0cd3", "fields": { - "question": 318, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 4153, + "answer": 3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "17d9c749-708a-4ab6-8d85-dd8bcaffb6d2", + "model": "evaluation.ratinganswercounter", + "pk": "ec7df177-80b1-40de-a692-dbf510539156", "fields": { - "question": 318, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 3589, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "17dc231f-855e-438f-a688-081c972559f0", + "model": "evaluation.ratinganswercounter", + "pk": "ec8154d3-d945-42bc-a420-3341dba0a316", "fields": { - "question": 342, - "contribution": 1656, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 1777, + "answer": 0, + "count": 18 } }, { - "model": "evaluation.textanswer", - "pk": "17df95ba-fb67-48b4-88bd-669533e8a98b", + "model": "evaluation.ratinganswercounter", + "pk": "ec843d48-facc-45de-bffd-61294f7d5e2c", "fields": { - "question": 318, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 336, + "contribution": 3735, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "17e3753d-3fd4-4532-9fa2-31361c9a2797", + "model": "evaluation.ratinganswercounter", + "pk": "ec87a96f-3d25-4fe4-9c98-8beb006040d2", "fields": { - "question": 318, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 255, + "contribution": 4100, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1835d03d-9a82-45f1-b93b-506455efd1b3", + "model": "evaluation.ratinganswercounter", + "pk": "ec8a2616-a76d-43eb-9070-631985dbf5cb", "fields": { - "question": 318, - "contribution": 3462, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 4270, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "188d0c67-0c37-4fd8-9c69-841a6a5215ee", + "model": "evaluation.ratinganswercounter", + "pk": "ec8a401d-f6de-4a50-be51-0d60f72e2a25", "fields": { - "question": 342, - "contribution": 3685, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 4046, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "18928a21-d4d4-43d9-98fa-3f2aa457c244", + "model": "evaluation.ratinganswercounter", + "pk": "ec92ee7f-a632-4d7a-9250-3f3d1b248c02", "fields": { - "question": 364, - "contribution": 1297, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 1205, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "18dad92a-0fa7-4bad-9e09-c8955d2851c9", + "model": "evaluation.ratinganswercounter", + "pk": "ec9eb468-e640-4614-8c02-810f719bc57c", "fields": { - "question": 313, - "contribution": 3434, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 3390, + "answer": -1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "18ddaf5f-7a08-419e-9fb8-089c02eb1f3e", + "model": "evaluation.ratinganswercounter", + "pk": "eca30921-db86-4035-a238-446dc82923ab", "fields": { - "question": 364, - "contribution": 1203, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 355, + "contribution": 3975, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1921413d-18e4-4ec2-8425-d0cc7a50608c", + "model": "evaluation.ratinganswercounter", + "pk": "eccd2479-2053-42e3-9c9d-25f7705cd260", "fields": { - "question": 313, - "contribution": 1634, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 1837, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "193718ae-5558-4b48-ad09-e039b87a1bd4", + "model": "evaluation.ratinganswercounter", + "pk": "ece073e7-4aa1-43ed-a4f3-3ac2df6903b2", "fields": { - "question": 364, - "contribution": 3598, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 262, + "contribution": 3739, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "19f0793d-6f79-4bd8-8653-0d823963243b", + "model": "evaluation.ratinganswercounter", + "pk": "ece2a3a9-ea6e-4277-a6c3-6f9f1373f5b5", "fields": { - "question": 364, - "contribution": 1802, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 3899, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "19f4ba0e-dd07-4fc6-90bf-93cec0c82eb8", + "model": "evaluation.ratinganswercounter", + "pk": "ece5468b-eeae-4046-90c1-028d51e8b824", "fields": { - "question": 330, + "question": 257, + "contribution": 3721, + "answer": 3, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "eceb57b5-bedd-4de7-8335-a9683657b7cd", + "fields": { + "question": 321, "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "answer": 1, + "count": 21 } }, { - "model": "evaluation.textanswer", - "pk": "19fc1f6d-6e0d-4ce1-a31c-4ecc8a4d7364", + "model": "evaluation.ratinganswercounter", + "pk": "ecf49f57-5c01-471c-a9ba-87de2937b5ae", "fields": { - "question": 364, - "contribution": 1288, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 320, + "contribution": 4128, + "answer": 2, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "1a1901cb-9359-4aa7-9aea-cf08c435215d", + "model": "evaluation.ratinganswercounter", + "pk": "ecf675e5-892d-45c2-aef8-397e018a0bea", "fields": { - "question": 314, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 908, + "answer": 5, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1a6108f4-ab7d-44c4-addb-54601f433172", + "model": "evaluation.ratinganswercounter", + "pk": "ecfa3804-86a6-4773-9be2-97ed98abcc4c", "fields": { - "question": 364, - "contribution": 1250, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 869, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1a82cf64-2298-48a5-89cb-63e89bf41ac3", + "model": "evaluation.ratinganswercounter", + "pk": "ecfe3a30-5950-4762-91cf-9c6c80092462", "fields": { - "question": 314, - "contribution": 4128, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 3740, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1a8a3047-3c08-4ba0-8511-99a2bd123d9f", + "model": "evaluation.ratinganswercounter", + "pk": "ed08e350-ac6e-4875-a00b-ef5f8109e91f", "fields": { - "question": 364, - "contribution": 1297, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PR", - "is_flagged": false + "question": 337, + "contribution": 3508, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1ac081cb-1da0-4ea0-af23-038d213fa924", + "model": "evaluation.ratinganswercounter", + "pk": "ed15b40a-38ae-4007-9bb3-d6179b2c47fd", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 1638, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1ac9c8d5-a45f-4487-8e73-dd9404a68b4a", + "model": "evaluation.ratinganswercounter", + "pk": "ed166b3a-5a66-4020-b3fb-afea39a2e238", "fields": { - "question": 314, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 3405, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1af37281-376d-46a9-94ef-02166887ad8f", + "model": "evaluation.ratinganswercounter", + "pk": "ed1a6913-9ab9-4f1b-8765-317137658a2b", "fields": { - "question": 318, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 333, + "contribution": 3886, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1b53fadf-0cfb-4988-8d67-4c122c261445", + "model": "evaluation.ratinganswercounter", + "pk": "ed1c05e7-3ca7-4e2b-802e-e2726e5f02bf", "fields": { - "question": 324, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 368, + "contribution": 4085, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1b78a23c-2b4d-4ec3-9769-af52194df07e", + "model": "evaluation.ratinganswercounter", + "pk": "ed2b72fb-9934-4928-9709-43df0aa0b7ec", "fields": { - "question": 330, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 337, + "contribution": 1702, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "1b8983cd-976e-4254-9ea0-e51b0b4818f5", + "model": "evaluation.ratinganswercounter", + "pk": "ed2c1f6d-ec97-48db-969c-2de087add1d1", "fields": { - "question": 313, - "contribution": 3725, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 1881, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1b9127cc-549d-4498-aff1-55504fb88080", + "model": "evaluation.ratinganswercounter", + "pk": "ed329bd4-72f6-4a22-b883-1e25340ce790", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 417, + "contribution": 3974, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1bb8db78-fbb6-4c90-9306-06b635b8da95", + "model": "evaluation.ratinganswercounter", + "pk": "ed32d340-511e-4400-846f-64a90f7c5be9", "fields": { - "question": 314, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 341, + "contribution": 3645, + "answer": 3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1bedd7bf-fee0-4ace-a5ce-14344fa2dbaa", + "model": "evaluation.ratinganswercounter", + "pk": "ed399fed-e3a8-4742-bcc1-20eb5162b687", "fields": { - "question": 330, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 4046, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1c021dc4-61cd-42aa-8464-a57fed860be8", + "model": "evaluation.ratinganswercounter", + "pk": "ed4d4e29-9c87-4f7b-a6ce-0c0f813f2e21", "fields": { - "question": 324, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 322, + "contribution": 1680, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1c2a2322-25e4-42a6-8080-9e7f3abccdb6", + "model": "evaluation.ratinganswercounter", + "pk": "ed4ea2cd-674c-4f44-829a-7c9f08222cc0", "fields": { - "question": 364, - "contribution": 1784, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 3473, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1c2c6e69-ae02-402b-9e68-4313d684fd90", + "model": "evaluation.ratinganswercounter", + "pk": "ed4ebb85-0610-4231-a2e8-db696f42d1bd", "fields": { - "question": 313, + "question": 255, "contribution": 908, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "answer": 4, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "1c3ab986-3c74-421d-821b-3f63eaebf991", + "model": "evaluation.ratinganswercounter", + "pk": "ed563942-9cb1-4566-b127-6080e8622969", "fields": { - "question": 364, - "contribution": 3551, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 4022, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1c3c3324-d9c3-4ce2-bd86-7d3a9d61a94c", + "model": "evaluation.ratinganswercounter", + "pk": "ed5fc537-4fa3-45eb-a510-d2387f66ea6e", "fields": { - "question": 364, - "contribution": 3551, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 464, + "contribution": 3453, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1c8a378e-45dd-4f38-88ac-11257b2d599f", + "model": "evaluation.ratinganswercounter", + "pk": "ed61f55b-3e72-4e18-a652-b5b183111700", "fields": { - "question": 342, - "contribution": 3727, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 255, + "contribution": 4138, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1c91db23-97c2-4294-8236-1880fd874762", + "model": "evaluation.ratinganswercounter", + "pk": "ed706dd0-796d-430c-b954-892557cbb60e", "fields": { - "question": 364, - "contribution": 1809, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 1837, + "answer": 1, + "count": 16 } }, { - "model": "evaluation.textanswer", - "pk": "1c95307d-6c73-4829-9cb2-ed0520fcd341", + "model": "evaluation.ratinganswercounter", + "pk": "ed73c5d4-5281-4dd9-afd0-f5734f0864db", "fields": { - "question": 364, - "contribution": 1824, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 257, + "contribution": 4138, + "answer": 1, + "count": 25 } }, { - "model": "evaluation.textanswer", - "pk": "1cabf9b9-1100-48b4-bf37-fab09267e214", + "model": "evaluation.ratinganswercounter", + "pk": "ed78fba6-05b1-415e-a58f-2026502328e6", "fields": { - "question": 373, - "contribution": 1638, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 392, + "contribution": 3775, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1cbd82f6-c241-48f7-b39f-33b783428d2e", + "model": "evaluation.ratinganswercounter", + "pk": "ed7ae391-3592-4cec-92a9-3e1faf523cc7", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 3518, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1cc79a96-671b-4284-8a75-c74fbb89c42a", + "model": "evaluation.ratinganswercounter", + "pk": "ed88e9fc-b5cb-4f81-8ca6-9cca6660687a", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 1837, + "answer": 2, + "count": 14 } }, { - "model": "evaluation.textanswer", - "pk": "1ce2ae8e-f676-41f4-bfdd-ad2e4f51bd04", + "model": "evaluation.ratinganswercounter", + "pk": "ed8ad40c-ea96-4e7a-89ad-c4fb65d02c14", "fields": { - "question": 318, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 262, + "contribution": 836, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1d202453-82cb-4c58-8948-479a7b8f697d", + "model": "evaluation.ratinganswercounter", + "pk": "ed8df965-90f5-42b8-b346-7ea7d5c3ee3c", "fields": { - "question": 324, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 472, + "contribution": 3721, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "1d524bc2-64ac-4fcc-9ec3-8549a3c06287", + "model": "evaluation.ratinganswercounter", + "pk": "ed8f8bf0-c6bf-4a88-8906-41d5d7c74593", "fields": { - "question": 365, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 260, + "contribution": 1612, + "answer": 5, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1d686acb-0d53-4b37-bf50-7fa31cd3c1de", + "model": "evaluation.ratinganswercounter", + "pk": "ed9e3b85-4fbb-469a-b884-364158e3c052", "fields": { - "question": 364, - "contribution": 1785, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 1288, + "answer": -1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1d73b5e0-488b-4ad7-9d4c-965c54fe81eb", + "model": "evaluation.ratinganswercounter", + "pk": "ed9ecbcf-1e38-4bd4-9e99-a81c3db3c12f", "fields": { - "question": 342, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 331, + "contribution": 1837, + "answer": -1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1d7d0832-6892-4d24-bd6f-adcb74cac200", + "model": "evaluation.ratinganswercounter", + "pk": "eda922e7-75c6-49b0-8c06-cb4bf9fe1238", "fields": { - "question": 313, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 354, + "contribution": 3545, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1d944af2-4253-4759-b8cd-f7e751f34fb0", + "model": "evaluation.ratinganswercounter", + "pk": "edad8ff8-3de9-40d2-8c30-3493e17e145a", "fields": { - "question": 314, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 3721, + "answer": 5, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1dff4f94-28ad-4696-9f1c-4b7764eac0e3", + "model": "evaluation.ratinganswercounter", + "pk": "edad9bfd-a2e2-461a-9081-2175b2b373a4", "fields": { - "question": 313, - "contribution": 4128, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 3725, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1e112d52-e012-4842-b144-e0241b8df055", + "model": "evaluation.ratinganswercounter", + "pk": "edb24c42-f0e8-4443-a5fb-58eb7c2505fd", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 1776, + "answer": 3, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "1e243be6-d7b1-406e-8bf5-feecc9389f4e", + "model": "evaluation.ratinganswercounter", + "pk": "edba8989-e058-4332-b8d7-065753dfba8b", "fields": { - "question": 313, - "contribution": 1626, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 1634, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1e53bea4-2f43-4cb9-a177-3a7b56611212", + "model": "evaluation.ratinganswercounter", + "pk": "edbb557a-09b2-44b7-ad32-bfe5f6a8b595", "fields": { - "question": 364, - "contribution": 1202, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 4120, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1e91d56f-33ce-43dc-8d49-239c6da283ad", + "model": "evaluation.ratinganswercounter", + "pk": "edbb5d83-e2e5-44d3-8916-c8ea744e294d", "fields": { - "question": 342, - "contribution": 1638, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 1802, + "answer": 3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1ee55bda-10c9-46fb-b026-9b087c3d152e", + "model": "evaluation.ratinganswercounter", + "pk": "edbe838d-2826-4c6e-96b6-6c86a4166cce", "fields": { - "question": 373, - "contribution": 3486, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 320, + "contribution": 3422, + "answer": 3, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "1efed8cf-406c-473f-a17b-a7ee77be292a", + "model": "evaluation.ratinganswercounter", + "pk": "edbeb0a3-2205-4bf4-beab-815a357836b1", "fields": { - "question": 314, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 912, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1f1d9c3c-6b08-4390-a153-7d5b6f59e627", + "model": "evaluation.ratinganswercounter", + "pk": "edc15eb3-62b4-409d-816a-5d5a9560f764", "fields": { - "question": 364, - "contribution": 3649, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 472, + "contribution": 3721, + "answer": 5, + "count": 12 } }, { - "model": "evaluation.textanswer", - "pk": "1f51d8ec-b16a-437c-9f29-d1db83bc6b8c", + "model": "evaluation.ratinganswercounter", + "pk": "edc7a397-a3c9-4e68-9d10-d5946b76d26c", "fields": { - "question": 324, + "question": 320, "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "answer": 1, + "count": 15 } }, { - "model": "evaluation.textanswer", - "pk": "1f54d981-fec1-498f-b309-b03ee565f745", + "model": "evaluation.ratinganswercounter", + "pk": "edce57d1-7836-4369-a5dd-7a5b3988626f", "fields": { - "question": 318, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 1797, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "1f634ca6-12fd-490f-987d-24ef0d19b610", + "model": "evaluation.ratinganswercounter", + "pk": "edd03e3b-2a16-45cc-b336-2bc1ed0c8a0f", "fields": { - "question": 324, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 362, + "contribution": 1812, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1f787614-767a-45f2-a5a2-99a7197c0caa", + "model": "evaluation.ratinganswercounter", + "pk": "edf0fbb2-f89c-49bf-a6c9-c1c5c44186b5", "fields": { - "question": 342, - "contribution": 4094, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 3462, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1f830cd7-e79e-430e-9015-8322ff24c933", + "model": "evaluation.ratinganswercounter", + "pk": "ee147b87-ce04-4fe9-8d59-68045574feed", "fields": { - "question": 364, - "contribution": 1806, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 4138, + "answer": 2, + "count": 14 } }, { - "model": "evaluation.textanswer", - "pk": "1f86542e-7a37-4bec-877b-2df380f70330", + "model": "evaluation.ratinganswercounter", + "pk": "ee17c514-98af-49fb-a073-9ee176bf7c22", "fields": { - "question": 393, - "contribution": 3711, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 1658, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1fab4e75-64e4-481c-8965-6446cabe9a11", + "model": "evaluation.ratinganswercounter", + "pk": "ee1c8060-6649-4cc0-a7e7-0d999349c832", "fields": { - "question": 342, - "contribution": 3681, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 1837, + "answer": 1, + "count": 12 } }, { - "model": "evaluation.textanswer", - "pk": "1fb65e1d-c5c8-4c9b-a966-d4b0aa7b58c6", + "model": "evaluation.ratinganswercounter", + "pk": "ee213d87-c73e-45ec-8e7e-2ee34beaef73", "fields": { - "question": 429, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 3884, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1fc8b1f5-8fa0-44b7-b962-90bec15b909c", + "model": "evaluation.ratinganswercounter", + "pk": "ee233f11-902d-41e7-807b-51303817fd50", "fields": { - "question": 314, - "contribution": 3739, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 331, + "contribution": 3679, + "answer": -3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1fd3770f-f49e-410b-869c-62d849a4fd18", + "model": "evaluation.ratinganswercounter", + "pk": "ee2c8e65-e382-44fd-b8cf-8765e5d68bf6", "fields": { - "question": 364, - "contribution": 3847, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 404, + "contribution": 3974, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "1fd3cd9a-7bd0-49ed-bc0b-ed23a84499e6", + "model": "evaluation.ratinganswercounter", + "pk": "ee3ca075-5bba-4cfb-b3e4-67911eca9f21", "fields": { - "question": 364, - "contribution": 3916, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 804, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1fd80a3d-f196-4573-86b6-15fee9e36fbe", + "model": "evaluation.ratinganswercounter", + "pk": "ee44986f-29a9-4837-84bf-dbb64b39c38f", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 1725, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1fe147f2-63c7-41b0-820c-78e4699a71cb", + "model": "evaluation.ratinganswercounter", + "pk": "ee54593f-66fa-4b31-b0f6-830523c33818", "fields": { - "question": 439, - "contribution": 4140, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 356, + "contribution": 3608, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "1ff1fb02-2880-4017-b70f-89f88f6a0f27", + "model": "evaluation.ratinganswercounter", + "pk": "ee69d9ac-af8c-4d84-b4b9-3f71756cab6f", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 3394, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "1ffa1592-88a0-4a3f-ba3a-3305f763b400", + "model": "evaluation.ratinganswercounter", + "pk": "ee76962c-2d04-4e78-ab35-667551a7bb2c", "fields": { - "question": 318, - "contribution": 4100, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 322, + "contribution": 1668, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2011c223-3b21-488d-9da1-02126b20b094", + "model": "evaluation.ratinganswercounter", + "pk": "ee7b87cf-9325-4169-ac81-73ebd76eae77", "fields": { - "question": 364, - "contribution": 4148, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 371, + "contribution": 4205, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "204742a2-6677-4159-a2ab-c5d61e76f4a0", + "model": "evaluation.ratinganswercounter", + "pk": "ee7c56c8-ccef-4194-b6bd-138ee12d53fe", "fields": { - "question": 342, - "contribution": 1662, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 1613, + "answer": 1, + "count": 24 } }, { - "model": "evaluation.textanswer", - "pk": "2075f7ee-7c64-4837-af19-dab7f21b0827", + "model": "evaluation.ratinganswercounter", + "pk": "ee7f040b-8efa-4506-b32f-2a934b27dc5f", "fields": { - "question": 364, - "contribution": 1802, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 1842, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "2098a889-f4fc-4ea1-bd89-77ba944e650d", + "model": "evaluation.ratinganswercounter", + "pk": "ee852da8-207e-45c2-a73e-db071ffc1ee8", "fields": { - "question": 364, - "contribution": 1151, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 3404, + "answer": -3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "209953b9-ffae-4e77-afad-bb324ed58f59", + "model": "evaluation.ratinganswercounter", + "pk": "ee8b79d0-c1dd-496b-8be2-dce89194aa94", "fields": { - "question": 364, - "contribution": 3921, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 4152, + "answer": 3, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "20a697d0-f0fb-4280-8da6-438dc34e5462", + "model": "evaluation.ratinganswercounter", + "pk": "ee944c6f-5c35-46d5-9f8c-bc0e38e71311", "fields": { - "question": 314, - "contribution": 3422, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 1659, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "20c08f12-55c4-4ab2-89e2-0f0502c072fc", + "model": "evaluation.ratinganswercounter", + "pk": "ee9a07a8-19d2-4076-b3a0-78ea749e58bf", "fields": { - "question": 365, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 336, + "contribution": 3440, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "20dccbde-07f6-4de9-9d92-9ee1565c4ccb", + "model": "evaluation.ratinganswercounter", + "pk": "ee9de84d-b7b5-4c52-952f-2ea911566045", "fields": { - "question": 364, - "contribution": 1246, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 913, + "answer": 2, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "20df3f4b-ddbc-4dc3-bed2-60b1709bb5a2", + "model": "evaluation.ratinganswercounter", + "pk": "ee9e48b8-b29f-4edc-9561-ded172a17322", "fields": { - "question": 364, - "contribution": 3646, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 463, + "contribution": 4141, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "20e0309b-8f1b-4426-a943-9f6f0870244c", + "model": "evaluation.ratinganswercounter", + "pk": "eea311cc-48ac-4743-97af-edbcae4c2284", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 462, + "contribution": 4091, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "20fdc1b3-be88-4613-9ba1-a2435db215c4", + "model": "evaluation.ratinganswercounter", + "pk": "eed0efcf-b2b9-4936-b266-c776c438405a", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 4046, + "answer": 2, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "2110e9cc-4d4a-4330-8002-daa6e1e2cc9b", + "model": "evaluation.ratinganswercounter", + "pk": "eed56eba-6af3-438b-af22-767dac71be50", "fields": { - "question": 313, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 350, + "contribution": 3406, + "answer": 2, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "21364d99-ee30-4ad5-ba35-a409292292f0", + "model": "evaluation.ratinganswercounter", + "pk": "eee36c30-a6c7-4edc-a4bf-61f69a2cd792", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 1186, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "21a2d2bc-8539-4ad6-a427-26bb0ff0de02", + "model": "evaluation.ratinganswercounter", + "pk": "eeeb29f3-2189-4d51-9481-d3ba0ca52fad", "fields": { - "question": 364, - "contribution": 4203, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 1842, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "21e940f1-6e09-4505-a23d-3e24e61e6e9d", + "model": "evaluation.ratinganswercounter", + "pk": "eef65d4f-2fa3-4272-a157-b9fdb5acd0ee", "fields": { - "question": 439, - "contribution": 4008, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 354, + "contribution": 3712, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "225097a8-16f3-494a-85d8-7c24991a4444", + "model": "evaluation.ratinganswercounter", + "pk": "eef99377-5239-4b3c-8681-98a800cb54bf", "fields": { - "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 391, + "contribution": 3775, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2278653b-afe2-41d5-8d07-724d46d9c849", + "model": "evaluation.ratinganswercounter", + "pk": "eefc13f1-95c6-48cc-b638-11049e7726a8", "fields": { - "question": 364, - "contribution": 3921, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 340, + "contribution": 804, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "22cfd607-8a1c-4a4b-b524-ac898a921436", + "model": "evaluation.ratinganswercounter", + "pk": "ef015e1e-0607-4e60-84d9-3f53551b21af", "fields": { - "question": 364, - "contribution": 3859, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 337, + "contribution": 3440, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "22d28f9c-b15f-4140-a8f4-e59f4df03e78", + "model": "evaluation.ratinganswercounter", + "pk": "ef07e4a2-b52a-4b9d-9ffc-8e34cce2bf21", "fields": { - "question": 313, - "contribution": 3434, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 332, + "contribution": 3936, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "22d89cac-286c-411f-8415-af70b75a222d", + "model": "evaluation.ratinganswercounter", + "pk": "ef085906-e1fa-40cb-a2a0-5d5e72e1c0f8", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 350, + "contribution": 3759, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "22ecd023-b7ed-40d1-92f9-27979f759c76", + "model": "evaluation.ratinganswercounter", + "pk": "ef12a1ec-95d5-4cf1-9bf2-5d1c714563fb", "fields": { - "question": 364, - "contribution": 3722, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 1154, + "answer": 5, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "2311561a-f98a-4c84-9284-20bf2db7c50d", + "model": "evaluation.ratinganswercounter", + "pk": "ef2c0768-2558-403d-bd66-1bf6dadc2533", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 450, + "contribution": 4185, + "answer": 2, + "count": 14 } }, { - "model": "evaluation.textanswer", - "pk": "23327bee-5911-4449-a276-8aa89bc75cde", + "model": "evaluation.ratinganswercounter", + "pk": "ef2c7df9-345a-4307-a648-ec79a199249d", "fields": { - "question": 318, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 3608, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "235b0136-3950-4227-8e56-4d9fb1adb45d", + "model": "evaluation.ratinganswercounter", + "pk": "ef352ff7-5ca9-4f76-aafc-92912a419c73", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 912, + "answer": 1, + "count": 16 } }, { - "model": "evaluation.textanswer", - "pk": "237e1f28-b231-4297-98a3-8e2104f6a4db", + "model": "evaluation.ratinganswercounter", + "pk": "ef38f60b-9560-4a3d-9e8e-afddc3739771", "fields": { - "question": 373, - "contribution": 3482, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 333, + "contribution": 1283, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "23aa2d21-8be9-447b-aa2c-fb9e9e678651", + "model": "evaluation.ratinganswercounter", + "pk": "ef3b8de3-38ca-4c45-8e83-b3b384f6b36f", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 259, + "contribution": 4120, + "answer": 1, + "count": 24 } }, { - "model": "evaluation.textanswer", - "pk": "23f0936c-8f3a-491c-bc16-567f697cdb4d", + "model": "evaluation.ratinganswercounter", + "pk": "ef4b0a2a-92b3-4c20-a736-4a3840afaa75", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 1660, + "answer": 0, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "23fa17e0-486a-4b5d-9960-1a69f3d8fe87", + "model": "evaluation.ratinganswercounter", + "pk": "ef52e7c1-04c4-4e64-959c-f5d3dcfb48d8", "fields": { - "question": 330, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 335, + "contribution": 3936, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "2435dbc0-1253-4248-9709-6a891230e32f", + "model": "evaluation.ratinganswercounter", + "pk": "ef557ac9-00c8-48a6-8503-90b1323a6bc5", "fields": { - "question": 314, - "contribution": 3354, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 403, + "contribution": 4177, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "2440b783-5719-4f49-8503-fa25fa215d8a", + "model": "evaluation.ratinganswercounter", + "pk": "ef5820c9-c313-408e-bae2-8260ebc8512b", "fields": { - "question": 364, - "contribution": 4139, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 3390, + "answer": 4, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "244a7e12-da67-4024-a8db-cf5f15755559", + "model": "evaluation.ratinganswercounter", + "pk": "ef641c85-20da-4f8e-bcc5-cee06e38e931", "fields": { - "question": 324, - "contribution": 1710, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 4008, + "answer": -1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "245b5f3a-980b-420e-abf8-1940fd297ff3", + "model": "evaluation.ratinganswercounter", + "pk": "ef879c83-9644-45de-8696-27f90222cecf", "fields": { - "question": 324, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 459, + "contribution": 4283, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "24766431-72ac-462b-a582-f8adfed6e575", + "model": "evaluation.ratinganswercounter", + "pk": "ef8f9606-aed7-4b0b-a1e0-0ab10f57b4ba", "fields": { - "question": 318, - "contribution": 4120, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 331, + "contribution": 1837, + "answer": 0, + "count": 28 } }, { - "model": "evaluation.textanswer", - "pk": "24b7370b-a1a7-48df-bb98-538ca5cd5637", + "model": "evaluation.ratinganswercounter", + "pk": "ef92a722-4580-43e9-b489-f98c2c7d7f07", "fields": { - "question": 324, - "contribution": 822, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 1782, + "answer": 3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "24b8e24e-0b25-4625-abd1-44ba22b59e59", + "model": "evaluation.ratinganswercounter", + "pk": "efa40b3e-2320-4b84-9175-4d7822198c33", "fields": { - "question": 314, - "contribution": 3434, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 352, + "contribution": 3466, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "24b95810-0aae-4f5a-be2f-bda9d4c0b2e9", + "model": "evaluation.ratinganswercounter", + "pk": "efb1a2e1-3a4d-4e3f-a3c3-05cf55849bc4", "fields": { - "question": 342, - "contribution": 1748, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 340, + "contribution": 3404, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "24cf9b18-bae0-4295-a7de-fad54249bbc0", + "model": "evaluation.ratinganswercounter", + "pk": "efb80589-89d4-41da-b169-870f17e34a81", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 331, + "contribution": 3406, + "answer": 0, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "24f17bd7-1d3e-4d65-88d7-9c7ea9a97cf7", + "model": "evaluation.ratinganswercounter", + "pk": "efb97407-cd45-44c6-8ff7-54498230e0e9", "fields": { - "question": 342, - "contribution": 4020, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 472, + "contribution": 89, + "answer": 5, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "24f9cb49-4fa4-4ccb-8b13-f11d944da097", + "model": "evaluation.ratinganswercounter", + "pk": "efbeb150-65a4-4806-ba0e-c4f11b8193de", "fields": { - "question": 373, - "contribution": 4020, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 3684, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "25c1f894-aeba-4ebf-bf68-b21834c0c017", + "model": "evaluation.ratinganswercounter", + "pk": "efc172a9-f56b-455f-b9f4-2c3a3b9bdf23", "fields": { - "question": 324, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 1781, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "25ea5986-95ef-4758-9943-b06ed77b1359", + "model": "evaluation.ratinganswercounter", + "pk": "efc935b6-e0e0-4e3b-b913-faec68e2e431", "fields": { - "question": 318, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 1656, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "26b4432a-c23e-4c9a-824f-6d082f54e5df", + "model": "evaluation.ratinganswercounter", + "pk": "efd94f86-fc05-42e3-8bf3-a7634a9b1215", "fields": { - "question": 364, - "contribution": 4121, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 257, + "contribution": 3725, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "26c267af-c3c9-404a-9b00-1bcf0fc007c9", + "model": "evaluation.ratinganswercounter", + "pk": "efe282a7-4734-4f38-9cad-8381cb66d0d6", "fields": { - "question": 314, - "contribution": 836, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 1922, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "26d52bc5-3be0-4997-9beb-a405774d6c79", + "model": "evaluation.ratinganswercounter", + "pk": "efe66a9c-e8e0-42c9-8d1a-c05469f68872", "fields": { - "question": 314, - "contribution": 3434, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 3373, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "27030513-415a-4ff1-b4cc-3e3ca5735aa1", + "model": "evaluation.ratinganswercounter", + "pk": "eff897b0-ab5a-4ebf-bb64-05e2f5debd58", "fields": { - "question": 314, - "contribution": 4028, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 368, + "contribution": 3423, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "27089b12-2df5-41a1-a096-5648e9022cac", + "model": "evaluation.ratinganswercounter", + "pk": "eff9b094-32be-4169-ad89-b81da492a976", "fields": { - "question": 330, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 880, + "answer": 4, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "270ea7b7-13d3-49b8-bfb1-63df496a5ed5", + "model": "evaluation.ratinganswercounter", + "pk": "effc48f9-dc3f-41f5-8737-5566914a9ab9", "fields": { - "question": 324, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 1798, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "274e8e25-08a3-45f0-b627-31e7639a129d", + "model": "evaluation.ratinganswercounter", + "pk": "f002992c-cfa0-4426-a199-ce0c087429e2", "fields": { - "question": 364, - "contribution": 3712, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 260, + "contribution": 1658, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "276c87ef-c7d8-4260-8553-117b9f1fb331", + "model": "evaluation.ratinganswercounter", + "pk": "f006cdac-0cf0-49c6-a422-58bab3cc22d4", "fields": { - "question": 364, - "contribution": 3528, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 3423, + "answer": 4, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "280c834e-048a-4884-9a19-3939bed09b9d", + "model": "evaluation.ratinganswercounter", + "pk": "f0156146-4862-4961-bf60-ee2c969dff22", "fields": { - "question": 330, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 886, + "answer": -2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "287fb100-c852-4319-aa9e-7306f09ab4cb", + "model": "evaluation.ratinganswercounter", + "pk": "f01a50a8-c968-4229-9dfd-f159cb84b016", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 366, + "contribution": 3552, + "answer": 4, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "28952686-d2d0-4ce3-8cbe-3ff1c58d0755", + "model": "evaluation.ratinganswercounter", + "pk": "f01c5d78-0bd0-48d3-9d6a-aa8c2c2a38f6", "fields": { - "question": 313, - "contribution": 884, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 260, + "contribution": 1658, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "28c94d80-2dc6-43c6-96eb-5df23dfc7711", + "model": "evaluation.ratinganswercounter", + "pk": "f026f4c7-b00a-4258-8a00-f8971b034f5e", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 322, + "contribution": 884, + "answer": 5, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "2955a0d7-3d47-483e-8b5b-27f71394412b", + "model": "evaluation.ratinganswercounter", + "pk": "f027331a-9527-4b35-800d-285a218ff06b", "fields": { - "question": 364, - "contribution": 3463, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 1845, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "29a0ea24-d887-41c5-9370-b5fde5615824", + "model": "evaluation.ratinganswercounter", + "pk": "f03e17b1-bf2b-44e9-b09e-595c359121ad", "fields": { - "question": 314, - "contribution": 912, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 356, + "contribution": 1785, + "answer": 1, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "29cbf502-0564-40aa-80c7-272e68f6c11e", + "model": "evaluation.ratinganswercounter", + "pk": "f03f2877-f00a-4bae-99f7-8cfe7ca68fa1", "fields": { - "question": 364, - "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 359, + "contribution": 3597, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "29ee5b39-d4ac-4918-82d9-ef8624d32be7", + "model": "evaluation.ratinganswercounter", + "pk": "f04cf9d4-33e3-4741-9e6d-6ff60703a065", "fields": { - "question": 314, - "contribution": 3394, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 341, + "contribution": 3751, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "29f26bad-4421-4fc6-ab67-a7d3065b123a", + "model": "evaluation.ratinganswercounter", + "pk": "f04da1d3-a063-4845-8cd8-dd31ceb19f3b", "fields": { - "question": 313, - "contribution": 4128, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false - } -}, -{ - "model": "evaluation.textanswer", - "pk": "2a024bcd-e4ba-42d2-80d6-bb688e3f7cb0", - "fields": { - "question": 364, - "contribution": 4188, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 3608, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "2a0dd2bf-901c-493c-acad-a3ed83ff6abf", + "model": "evaluation.ratinganswercounter", + "pk": "f0547d2d-0cdf-4439-92b8-638babbfd715", "fields": { - "question": 324, - "contribution": 908, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 3885, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "2a1b0015-94ce-4fe4-bb42-bdb5c07017ac", + "model": "evaluation.ratinganswercounter", + "pk": "f0565a32-7209-47f7-a922-41507d38f174", "fields": { - "question": 318, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 337, + "contribution": 4002, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "2a544ed0-a729-4dd8-a177-22ca1f9ab1f6", + "model": "evaluation.ratinganswercounter", + "pk": "f056d4d4-51f3-4981-96c3-b30d01a0abf7", "fields": { - "question": 314, - "contribution": 3665, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 3440, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2a627774-f5ad-498f-87f1-fb14377a4989", + "model": "evaluation.ratinganswercounter", + "pk": "f060c5cc-29c7-4524-a229-46c6747eb79b", "fields": { - "question": 364, - "contribution": 3391, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 352, + "contribution": 894, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2a6cfdca-4e21-472a-89f9-d62103a119c6", + "model": "evaluation.ratinganswercounter", + "pk": "f06de074-5323-4bf1-b6ec-4adedb2550c5", "fields": { - "question": 342, - "contribution": 3645, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 4116, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "2a7409ad-112c-4fc3-ab23-dae2e6fcef1a", + "model": "evaluation.ratinganswercounter", + "pk": "f07c5b07-2c39-4c96-a608-68d2ac30eafd", "fields": { - "question": 318, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 864, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2a77f733-6ba5-4d8d-985a-a44d439ae6e7", + "model": "evaluation.ratinganswercounter", + "pk": "f08fda4f-d364-4892-a256-652217375371", "fields": { - "question": 313, - "contribution": 836, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 1638, + "answer": -3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2aaec2cf-7042-459c-aa62-308724d6635f", + "model": "evaluation.ratinganswercounter", + "pk": "f0a637d0-e955-4607-a9f4-91c9a5ddf90c", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 880, + "answer": 4, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "2adf12e5-c802-449f-bb69-55e7ca28b3d8", + "model": "evaluation.ratinganswercounter", + "pk": "f0be0da3-27f5-4fca-9a4f-4ccd61ae1f94", "fields": { - "question": 318, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 257, + "contribution": 3725, + "answer": 3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "2ae5cb3f-0c80-4a65-9690-29afc7f86993", + "model": "evaluation.ratinganswercounter", + "pk": "f0c67f18-e4f6-4b55-811c-980d34b38bee", "fields": { - "question": 313, - "contribution": 4100, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 362, + "contribution": 1810, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "2aefa342-5e0e-435a-87cc-7a798876ad19", + "model": "evaluation.ratinganswercounter", + "pk": "f0c7d09b-3285-4d9c-a073-7fed4cdb0b04", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 4084, + "answer": 3, + "count": 13 } }, { - "model": "evaluation.textanswer", - "pk": "2afb55c6-2172-44dd-8439-f64e46a14326", + "model": "evaluation.ratinganswercounter", + "pk": "f0d0a1d7-0d4c-4b64-bff8-43c051028c84", "fields": { - "question": 313, - "contribution": 912, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 360, + "contribution": 1799, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "2afcd596-3844-4ee7-a5f2-dcf98478cc39", + "model": "evaluation.ratinganswercounter", + "pk": "f0d87b25-b164-49c8-85e4-84be80f2fb52", "fields": { - "question": 381, - "contribution": 3775, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 464, + "contribution": 3862, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "2b2e3174-bfa3-41ea-87b6-c656a49b196b", + "model": "evaluation.ratinganswercounter", + "pk": "f0e031d1-b78f-4ca1-b8c3-068e9658deb7", "fields": { - "question": 364, - "contribution": 3553, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 3739, + "answer": 3, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "2b47ed3e-df59-4a31-9aca-1baf77ff9d14", + "model": "evaluation.ratinganswercounter", + "pk": "f0ff9c3e-4bc2-44c5-934b-390ee855ef7b", "fields": { - "question": 364, - "contribution": 885, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 1659, + "answer": 1, + "count": 11 } }, { - "model": "evaluation.textanswer", - "pk": "2b9c7a6a-94bd-4f59-831a-79f3dbf93238", + "model": "evaluation.ratinganswercounter", + "pk": "f1035eb1-6c9d-4e72-9201-da1311480e8f", "fields": { - "question": 314, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 396, + "contribution": 3781, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2bacf55d-8424-4e94-9cb3-286bbb061164", + "model": "evaluation.ratinganswercounter", + "pk": "f106e30c-e99a-4bcf-ae65-83198aa0ddcc", "fields": { - "question": 364, - "contribution": 1782, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 388, + "contribution": 3781, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "2bb05ec6-462a-4e6c-af35-ee886eb51713", + "model": "evaluation.ratinganswercounter", + "pk": "f11c903f-4eb9-4afe-a9cf-90141c4f0631", "fields": { - "question": 364, - "contribution": 3647, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 3434, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2bc4f003-4871-4ed3-a720-f089af61a807", + "model": "evaluation.ratinganswercounter", + "pk": "f11e9284-11db-47da-a87d-658234e7b080", "fields": { - "question": 364, - "contribution": 3680, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 912, + "answer": 2, + "count": 19 } }, { - "model": "evaluation.textanswer", - "pk": "2be4d5d8-79ad-40e2-a453-5b5090aad0a1", + "model": "evaluation.ratinganswercounter", + "pk": "f1269242-5253-413b-a4bd-9b4e88053880", "fields": { - "question": 358, - "contribution": 1154, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 3665, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "2bf8d095-3fc6-443f-b91a-eca5f50f75e8", + "model": "evaluation.ratinganswercounter", + "pk": "f1274b25-2f5b-4b5d-a4b5-33ebff0eff4a", "fields": { - "question": 364, - "contribution": 1613, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 333, + "contribution": 4261, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "2c42f6be-0170-4c9d-8ebb-2b18215deba5", + "model": "evaluation.ratinganswercounter", + "pk": "f12781bc-3563-4950-b462-0751ff30b0d7", "fields": { - "question": 324, - "contribution": 886, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 453, + "contribution": 4185, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2c439200-d01b-478b-a339-da0404a3a9cf", + "model": "evaluation.ratinganswercounter", + "pk": "f1375352-f0aa-46e7-a6bf-67dbe80dae09", "fields": { - "question": 364, - "contribution": 1617, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 354, + "contribution": 3608, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2c4d02f8-bd1b-4882-99c1-884abe7c77ca", + "model": "evaluation.ratinganswercounter", + "pk": "f13ca684-b999-4432-8dae-3548194eda65", "fields": { - "question": 364, - "contribution": 3373, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 3423, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2cb87417-da18-4385-acdc-d6aeb7c3d3a4", + "model": "evaluation.ratinganswercounter", + "pk": "f13cc4ff-477f-485f-802d-d7107530ad3a", "fields": { - "question": 342, - "contribution": 3645, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 3941, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "2cf00850-a0d9-4368-a247-b3e8a517fa2a", + "model": "evaluation.ratinganswercounter", + "pk": "f13e3089-5132-45be-bde2-19ed2d7751b9", "fields": { - "question": 364, - "contribution": 1217, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 259, + "contribution": 1612, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2d17189e-37b2-4774-b711-d4f205d02a92", + "model": "evaluation.ratinganswercounter", + "pk": "f14aeed4-bacf-421c-977b-4831482f8732", "fields": { - "question": 313, - "contribution": 1837, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 257, + "contribution": 880, + "answer": 1, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "2d1d3be0-66b1-44d9-bef4-03c8b643cedc", + "model": "evaluation.ratinganswercounter", + "pk": "f14d9bca-6918-415b-ac7e-58ab40c8595d", "fields": { - "question": 364, - "contribution": 3649, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 1779, + "answer": 0, + "count": 20 } }, { - "model": "evaluation.textanswer", - "pk": "2d21c01b-8896-4a50-b3e9-4f4edc4bbd51", + "model": "evaluation.ratinganswercounter", + "pk": "f1528f91-a41c-42a7-b6ab-0c1f14584efb", "fields": { - "question": 364, - "contribution": 3589, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 3740, + "answer": 2, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "2d3d5aae-4665-4f99-97d4-c3d6d091730e", + "model": "evaluation.ratinganswercounter", + "pk": "f15876d5-a33c-4b43-bef9-b741b6e2aec6", "fields": { - "question": 314, - "contribution": 912, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 255, + "contribution": 3354, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2d74e7cc-9161-4d5f-becb-851a84bf0b8b", + "model": "evaluation.ratinganswercounter", + "pk": "f15aee0d-3409-41a5-a1fa-b18dd8e720de", "fields": { - "question": 313, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 1851, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2d79647c-68bf-4dd7-8cec-ddf5fdf001d1", + "model": "evaluation.ratinganswercounter", + "pk": "f15b214f-8359-4764-bb08-ea57c7e635b7", "fields": { - "question": 330, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 371, + "contribution": 3631, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2db70870-30df-4400-9c0b-18b65ed03ddb", + "model": "evaluation.ratinganswercounter", + "pk": "f15da2f0-1c54-4a4a-b4ec-1b1ceefec881", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 1659, + "answer": 1, + "count": 15 } }, { - "model": "evaluation.textanswer", - "pk": "2de693c3-37ad-46b9-993e-3f1b70ad86d0", + "model": "evaluation.ratinganswercounter", + "pk": "f15ee45b-0a09-4e3f-b4aa-fa755dedd082", "fields": { - "question": 313, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 352, + "contribution": 864, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2df2560e-db75-4da3-882e-85d02f031030", + "model": "evaluation.ratinganswercounter", + "pk": "f1609ea9-0ea2-41d9-ac56-3f929d0e7d1b", "fields": { - "question": 373, + "question": 336, "contribution": 3685, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "2e042bf1-df2e-4815-8520-731c11e52292", + "model": "evaluation.ratinganswercounter", + "pk": "f1673faf-1929-427f-811a-aed7e572a210", "fields": { - "question": 330, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 462, + "contribution": 4284, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "2e05d6b6-dc1d-4efb-bdd0-4c804508cd02", + "model": "evaluation.ratinganswercounter", + "pk": "f177e65d-5847-418e-b6a2-7c5ca30dcf94", "fields": { - "question": 373, - "contribution": 3821, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 3391, + "answer": 5, + "count": 11 } }, { - "model": "evaluation.textanswer", - "pk": "2e070b1b-e62a-477f-b8d8-efbbbec34580", + "model": "evaluation.ratinganswercounter", + "pk": "f180fe42-0699-4bfd-a80a-232e1f0fe0f7", "fields": { - "question": 324, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 881, + "answer": 2, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "2e0aea72-9889-4ba1-acbf-0d899c16203b", + "model": "evaluation.ratinganswercounter", + "pk": "f18375d5-eef9-45dc-919b-a043dcea8721", "fields": { - "question": 364, - "contribution": 885, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 3589, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "2e174771-992d-45c2-be65-747a22c0b306", + "model": "evaluation.ratinganswercounter", + "pk": "f187486a-35ab-496d-bcfc-7fa1934d0508", "fields": { - "question": 364, - "contribution": 3528, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 3474, + "answer": 5, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "2e368414-807f-45f0-8a72-f289b25d3473", + "model": "evaluation.ratinganswercounter", + "pk": "f18daad9-d127-49eb-a415-9405835046f6", "fields": { - "question": 330, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 3883, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "2e6751dd-84ab-4030-a351-f1ff064676f4", + "model": "evaluation.ratinganswercounter", + "pk": "f18e2ab4-6aa4-4e6f-989b-6af053957cf1", "fields": { - "question": 364, - "contribution": 3592, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 4138, + "answer": 2, + "count": 10 } }, { - "model": "evaluation.textanswer", - "pk": "2e6b9917-f7d0-4954-86c1-95121c158b74", + "model": "evaluation.ratinganswercounter", + "pk": "f19318cb-d8b0-4441-9e4d-ce3940342bf8", "fields": { - "question": 364, - "contribution": 4203, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 3666, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "2e96552c-b2c6-4556-9666-c056c3c8f13a", + "model": "evaluation.ratinganswercounter", + "pk": "f19d5ada-584d-41e7-991a-b312c408c6f4", "fields": { - "question": 313, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 1680, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2ea1c45f-04cd-4c86-abb7-147c118dc8f3", + "model": "evaluation.ratinganswercounter", + "pk": "f1a749f7-c7ec-45ad-9f39-427fc056ef0e", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 1659, + "answer": 0, + "count": 11 } }, { - "model": "evaluation.textanswer", - "pk": "2ebbd4df-02e6-4046-8dbc-b878879f18d6", + "model": "evaluation.ratinganswercounter", + "pk": "f1a9002e-b855-422a-9ba1-3b9fce1f78eb", "fields": { - "question": 313, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 3740, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2ecc59f5-dae9-4646-a7b2-5854070b5eda", + "model": "evaluation.ratinganswercounter", + "pk": "f1b7ef27-571c-4c9a-b9ed-c68ca56df5fb", "fields": { - "question": 318, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 472, + "contribution": 3454, + "answer": 5, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "2f5adb6d-647c-4512-ac1c-a11eb8b05de1", + "model": "evaluation.ratinganswercounter", + "pk": "f1bdc9d9-fef7-4054-804c-4a74536cd3e4", "fields": { - "question": 314, - "contribution": 1634, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 354, + "contribution": 3831, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2f6f0508-8477-4c66-bd87-0f53983d536d", + "model": "evaluation.ratinganswercounter", + "pk": "f1c475af-60b0-49bd-8c13-efd41eeb554a", "fields": { - "question": 365, - "contribution": 1662, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 392, + "contribution": 3781, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "2fac8575-9763-40e8-b34e-542a920bd7a6", + "model": "evaluation.ratinganswercounter", + "pk": "f1c8cca8-39bb-415a-97a3-d5dac8f17acd", "fields": { - "question": 365, - "contribution": 864, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 343, + "contribution": 3515, + "answer": 1, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "2fb28537-e745-485b-9000-5c53cd08250b", + "model": "evaluation.ratinganswercounter", + "pk": "f1c97e8d-b2dd-4dd0-8223-b356a1a2ecc1", "fields": { - "question": 358, - "contribution": 3560, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 362, + "contribution": 3917, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2fb68fae-cd82-4f3f-9101-21bdd9e3a6cb", + "model": "evaluation.ratinganswercounter", + "pk": "f1ce2dd0-72f8-4b46-ab87-30ad0a409762", "fields": { - "question": 342, - "contribution": 826, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 1837, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "2fbac03e-b075-460f-aaa2-00f7c17ebe67", + "model": "evaluation.ratinganswercounter", + "pk": "f1ce39e0-1590-4d98-bdab-3bf353859145", "fields": { - "question": 318, - "contribution": 822, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 1849, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "2fd99f87-5129-4db7-834c-1876a75ccd7b", + "model": "evaluation.ratinganswercounter", + "pk": "f1e0a3f0-d453-4746-aa55-81f832c42ac6", "fields": { - "question": 342, - "contribution": 894, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 331, + "contribution": 3721, + "answer": -2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3012b3ab-1272-4e6f-8800-cc51eaf29a1b", + "model": "evaluation.ratinganswercounter", + "pk": "f1e3177c-30a6-4eef-bcfb-f0db6b7a3fa2", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 335, + "contribution": 3595, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "301590bc-f760-4bc0-b27d-7600be7ddb4b", + "model": "evaluation.ratinganswercounter", + "pk": "f1e3a068-8e5b-4e1d-b80e-e9dcde327df5", "fields": { - "question": 318, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 432, + "contribution": 4140, + "answer": 5, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "3027aa79-1c84-42bd-98c3-25e64648514d", + "model": "evaluation.ratinganswercounter", + "pk": "f1e49f0d-93d0-43f9-9331-aa2416470039", "fields": { - "question": 314, - "contribution": 3354, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 366, + "contribution": 3932, + "answer": 3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "30857608-c83b-4023-9db5-c4d125cd38dd", + "model": "evaluation.ratinganswercounter", + "pk": "f1e4ba4f-9c7a-4431-88fb-1990596e85c4", "fields": { - "question": 342, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 4138, + "answer": 4, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "308b5c7a-3c1a-4909-ba68-430d85ab3d67", + "model": "evaluation.ratinganswercounter", + "pk": "f1ef0ac4-7d42-45cf-9c47-39901995a9f5", "fields": { - "question": 313, - "contribution": 1634, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 368, + "contribution": 4085, + "answer": 2, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "310ab9b1-b078-4c95-87d2-d1b86c0296b5", + "model": "evaluation.ratinganswercounter", + "pk": "f20cee36-ae3f-4862-8ff0-487b82c764fb", "fields": { - "question": 373, - "contribution": 3795, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 332, + "contribution": 1284, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "312f50cd-2c81-45be-b271-e6bba1ce9de0", + "model": "evaluation.ratinganswercounter", + "pk": "f22713cd-7d3b-4091-b7b6-5c375c1e634c", "fields": { - "question": 313, - "contribution": 1634, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 3721, + "answer": 3, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "313b1ca3-6287-4c28-be56-9d6839e023e2", + "model": "evaluation.ratinganswercounter", + "pk": "f23192d6-1ad2-46cf-9abf-a6ee52f7e1da", "fields": { - "question": 324, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 361, + "contribution": 3942, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "314bca21-7c71-4773-bd34-4f7ceb04e945", + "model": "evaluation.ratinganswercounter", + "pk": "f23c0d9b-1aaf-41cf-8b51-0f9623820af2", "fields": { - "question": 318, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 3725, + "answer": 2, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "318b92ce-3916-4181-926d-7ebb9a844072", + "model": "evaluation.ratinganswercounter", + "pk": "f24e8fa3-9080-4fe7-8171-998c142dd8c3", "fields": { - "question": 342, - "contribution": 3727, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 837, + "answer": 2, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "319c9bc4-291e-45a4-856b-45acb6ae996a", + "model": "evaluation.ratinganswercounter", + "pk": "f251d821-bde3-470d-ba62-d61d0e4a3145", "fields": { - "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 320, + "contribution": 1612, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "31cb3f0d-d23e-4772-b024-7a55e9476ffd", + "model": "evaluation.ratinganswercounter", + "pk": "f251f017-133c-404f-9cca-dac7a8cfcd51", "fields": { - "question": 342, - "contribution": 3440, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 4190, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "31f24169-d7e9-4034-8e4b-fb1f5548a0fd", + "model": "evaluation.ratinganswercounter", + "pk": "f2536bbc-95bd-4105-8d32-ff7da393c559", "fields": { - "question": 318, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 4095, + "answer": 2, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "3217f686-6b1d-4c7c-b09d-308e33934e40", + "model": "evaluation.ratinganswercounter", + "pk": "f2703cb6-7aa8-4928-8e7b-4076635ae767", "fields": { - "question": 318, - "contribution": 3462, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 362, + "contribution": 3647, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3292d753-a8c9-42cb-bfd4-95480f65d2bc", + "model": "evaluation.ratinganswercounter", + "pk": "f291995d-2dfb-4eef-a0ba-f702c527a0cc", "fields": { - "question": 330, - "contribution": 3462, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 3519, + "answer": 5, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "32a4b669-3550-49fa-8682-a62c91f2f594", + "model": "evaluation.ratinganswercounter", + "pk": "f2a12e3d-d5ad-48e8-8ecc-992ad1917a90", "fields": { - "question": 342, - "contribution": 3454, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 1726, + "answer": 0, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "32bf0edb-ba90-4284-a7fa-3be15dcaba60", + "model": "evaluation.ratinganswercounter", + "pk": "f2a83116-c2ee-4ef3-85e6-dcd258cf56fe", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 355, + "contribution": 3545, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "32d36603-ec1d-4cad-8861-a7ad4a8f9f30", + "model": "evaluation.ratinganswercounter", + "pk": "f2aae6b0-76fb-494a-92e5-317548aaf4a4", "fields": { - "question": 314, - "contribution": 3679, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 257, + "contribution": 3394, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "330745a3-b208-410b-aaec-f7fef114988f", + "model": "evaluation.ratinganswercounter", + "pk": "f2bbf257-78c4-410c-9f7f-73295f7de9e9", "fields": { - "question": 314, - "contribution": 1626, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 370, + "contribution": 1784, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "33c20406-d829-416b-b857-c812207746fe", + "model": "evaluation.ratinganswercounter", + "pk": "f2bd9d6b-974d-4514-96f1-c21fb7c44a54", "fields": { - "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 343, + "contribution": 3939, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "33d2b926-7269-4fa7-9e95-c7aab6a3db80", + "model": "evaluation.ratinganswercounter", + "pk": "f2c566ac-a113-43f1-9e21-31f52e22e78a", "fields": { - "question": 364, - "contribution": 1253, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 836, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "34004268-56f2-4d42-8600-cf2b41d18a4b", + "model": "evaluation.ratinganswercounter", + "pk": "f2cbf336-4e0a-40f3-bd98-704c80a447b3", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 1802, + "answer": 3, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "3405fad5-206e-4e84-96c6-3ce03f04c728", + "model": "evaluation.ratinganswercounter", + "pk": "f2d4a98e-474c-4c9b-a026-152e71a86015", "fields": { - "question": 324, - "contribution": 3745, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 3474, + "answer": 3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "34123483-6bff-4006-8508-cbc7be59e663", + "model": "evaluation.ratinganswercounter", + "pk": "f2d6acad-7d4d-4e4c-93c9-201de07f1045", "fields": { - "question": 314, - "contribution": 1837, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 4233, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "342f0323-0314-49a4-9011-bbacfe6aca1e", + "model": "evaluation.ratinganswercounter", + "pk": "f2df9307-559d-4839-b1d1-32df659bb44f", "fields": { - "question": 448, - "contribution": 4114, - "answer": "Lorem ipsum dolor sit amet", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false + "question": 259, + "contribution": 3474, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "345f4f10-5cbc-43c5-81c6-faaed255736b", + "model": "evaluation.ratinganswercounter", + "pk": "f2e05ab8-4800-4ab3-afe3-44c1a7fd3046", "fields": { - "question": 342, - "contribution": 3645, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 331, + "contribution": 3390, + "answer": -3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "35007349-120a-4518-a71b-60922a9197a5", + "model": "evaluation.ratinganswercounter", + "pk": "f2e28fd0-bb47-4479-87bb-af95c9435483", "fields": { - "question": 342, - "contribution": 3727, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 395, + "contribution": 3775, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "35048565-a9ef-4487-82a7-7fc6f12a9fb6", + "model": "evaluation.ratinganswercounter", + "pk": "f2e6df43-5dfc-4e8d-a0dc-8df03ec22854", "fields": { - "question": 324, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 3899, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "35436495-719b-42ac-ac01-5a0063e4f905", + "model": "evaluation.ratinganswercounter", + "pk": "f2eaaa0c-a8b2-425c-9fd8-8e45684c7670", "fields": { - "question": 342, - "contribution": 3723, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 368, + "contribution": 4101, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "355ef4f8-c2c4-4345-9798-95cc16f1f5cc", + "model": "evaluation.ratinganswercounter", + "pk": "f2ef8810-a970-45b1-a9c0-2221723302bf", "fields": { - "question": 364, - "contribution": 3929, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 3391, + "answer": 2, + "count": 12 } }, { - "model": "evaluation.textanswer", - "pk": "355f7947-f19c-40a9-820a-d504bd496fe4", + "model": "evaluation.ratinganswercounter", + "pk": "f2f4ed4c-2ed7-4048-9391-a9bbd5f08c3f", "fields": { - "question": 313, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 323, + "contribution": 1668, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "3572a4d8-e4f6-4de3-bc27-1ac8a5e4a543", + "model": "evaluation.ratinganswercounter", + "pk": "f2fe24a7-7d89-442c-aef2-d3a14b5db7de", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 3518, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "35b7922a-1ccf-4376-b547-4d8adbad3fd6", + "model": "evaluation.ratinganswercounter", + "pk": "f30082bd-0a14-44cc-83a4-a3ab67e822de", "fields": { - "question": 364, - "contribution": 1250, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 3528, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "35ca1468-639c-4af3-88e1-d28ff125fbf1", + "model": "evaluation.ratinganswercounter", + "pk": "f30bdc8f-0ce4-454a-ab27-32f389914ac1", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 1702, + "answer": 0, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "35d95562-29a6-448a-ace5-b2ec6a05b693", + "model": "evaluation.ratinganswercounter", + "pk": "f30d76b3-64f5-4d9d-baa3-5d8054947e05", "fields": { - "question": 330, - "contribution": 1724, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 3704, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "35f50bf2-cd98-4a6a-9479-4709e582cf11", + "model": "evaluation.ratinganswercounter", + "pk": "f32a2da7-eb9d-409b-9928-9983f7235d84", "fields": { - "question": 313, - "contribution": 1612, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 4047, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "360a148f-c056-44dc-9e1e-7a3608ae6395", + "model": "evaluation.ratinganswercounter", + "pk": "f32e5528-46d6-4b6b-a717-d91da0b278ea", "fields": { - "question": 318, - "contribution": 4120, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 3440, + "answer": 0, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "36155727-107b-4ec4-9f9a-97af10036d11", + "model": "evaluation.ratinganswercounter", + "pk": "f33204b2-d556-47da-b3a8-2428bc718e76", "fields": { - "question": 342, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 3704, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "3698ba38-0a6a-4d3a-a371-845ce1fd4078", + "model": "evaluation.ratinganswercounter", + "pk": "f333bbfa-3535-434b-ac07-2bc7bee0c650", "fields": { - "question": 364, - "contribution": 1657, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 332, + "contribution": 1282, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "36bc0e95-a5d4-4246-afeb-10e5225d02f0", + "model": "evaluation.ratinganswercounter", + "pk": "f3357637-7c2a-4661-831f-70f23c946e08", "fields": { - "question": 313, - "contribution": 4118, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 4243, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "36ea866f-c651-4f29-87cb-e59169c5a872", + "model": "evaluation.ratinganswercounter", + "pk": "f339a402-0ccf-4a1c-a75d-b163abc7cbde", "fields": { - "question": 314, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 3463, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "36fc6c8a-51b7-498c-9977-46be5d1c4ac0", + "model": "evaluation.ratinganswercounter", + "pk": "f33eaf8e-6e49-4813-b586-e6584ab42164", "fields": { - "question": 318, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 259, + "contribution": 3474, + "answer": 2, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "370a21b5-31aa-420b-ae2f-6d95433b34de", + "model": "evaluation.ratinganswercounter", + "pk": "f3559aa9-3a7e-46f2-a8c0-614a2c7c8f11", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 331, + "contribution": 1658, + "answer": -3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "374c1c47-36d8-4bb3-b056-2caa40c05e95", + "model": "evaluation.ratinganswercounter", + "pk": "f3568d7d-ad24-4be1-901d-22da5659d50d", "fields": { - "question": 364, - "contribution": 1645, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 869, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3752816b-282a-4521-a69c-26f475b12f28", + "model": "evaluation.ratinganswercounter", + "pk": "f3577057-e9a0-4b7c-80a6-057dcd4a390b", "fields": { - "question": 393, - "contribution": 3775, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 320, + "contribution": 1626, + "answer": 5, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "37540c3c-5c5f-4ecb-8734-c06c7a6f7f91", + "model": "evaluation.ratinganswercounter", + "pk": "f3584ccf-13ed-452b-a215-2a7129715786", "fields": { - "question": 318, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 4022, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "377c1fa9-be00-4cb4-9c12-fa360d9af6d3", + "model": "evaluation.ratinganswercounter", + "pk": "f35c5f6f-6c56-4548-a1da-2376ec759ea0", "fields": { - "question": 364, - "contribution": 3610, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 1247, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "37c4fb67-0a01-439c-af28-dbd6d7f35262", + "model": "evaluation.ratinganswercounter", + "pk": "f35ef57d-6230-4580-9941-725827dfa371", "fields": { - "question": 364, - "contribution": 3936, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", - "original_answer": null, - "review_decision": "PR", - "is_flagged": false + "question": 346, + "contribution": 1869, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "37f5474a-f831-4d47-9a81-a4ba9493220d", + "model": "evaluation.ratinganswercounter", + "pk": "f35ef6dc-b6d5-4615-8e29-b6d913e57f56", "fields": { - "question": 313, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 3684, + "answer": 3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "37f84fdb-976a-485e-81d5-44d841c2aab3", + "model": "evaluation.ratinganswercounter", + "pk": "f364c6f3-5019-45fd-92e4-e4cf0188bf46", "fields": { - "question": 364, - "contribution": 3684, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 3545, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "380ab68b-3b19-48d5-be6e-7a22e04d56e5", + "model": "evaluation.ratinganswercounter", + "pk": "f3683cc9-9420-4f3f-a2f2-0dcb1f5eadda", "fields": { - "question": 313, - "contribution": 1626, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 1710, + "answer": 0, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "3816e589-4265-4b4b-a016-d102b92b9bd8", + "model": "evaluation.ratinganswercounter", + "pk": "f36f752c-8472-47ac-b22f-02dbd53b8e17", "fields": { - "question": 318, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 362, + "contribution": 1810, + "answer": 2, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "3833ed5d-71bb-4ab9-b2a9-cc849a80acda", + "model": "evaluation.ratinganswercounter", + "pk": "f377515a-dbd4-41bf-8ac0-2168df10c1a7", "fields": { - "question": 313, - "contribution": 3725, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 1298, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3847d1ac-de91-400e-9643-49b0ef441471", + "model": "evaluation.ratinganswercounter", + "pk": "f37cac77-94de-400c-a8c7-ecb55c01bc72", "fields": { - "question": 318, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 370, + "contribution": 1776, + "answer": 1, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "38583561-7613-413e-87b1-b32c9bea55d9", + "model": "evaluation.ratinganswercounter", + "pk": "f37d2be8-49da-4ccd-aea6-c93af307bfc1", "fields": { - "question": 364, - "contribution": 3609, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 1246, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "38752046-2277-4c58-8c46-3e183b582b59", + "model": "evaluation.ratinganswercounter", + "pk": "f3887c22-8fc0-46fb-b1c3-c6455e2f82f0", "fields": { - "question": 342, - "contribution": 3454, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 359, + "contribution": 1810, + "answer": 1, + "count": 11 } }, { - "model": "evaluation.textanswer", - "pk": "38add169-4d8d-4fcb-b861-4965882ee1a7", + "model": "evaluation.ratinganswercounter", + "pk": "f389be55-bca7-4788-8aa0-d37c9de3d97e", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 3434, + "answer": 2, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "39075652-14dc-4f38-8f73-c563b722036e", + "model": "evaluation.ratinganswercounter", + "pk": "f39b50f9-d6e3-445e-8ef7-9ea2e0ce50aa", "fields": { - "question": 324, - "contribution": 4114, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false + "question": 338, + "contribution": 918, + "answer": 1, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "390c2dfe-3ed9-4e43-89fa-0758af3056a6", + "model": "evaluation.ratinganswercounter", + "pk": "f3a24ffb-97ad-4bff-ac99-034959d84eb0", "fields": { - "question": 314, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 370, + "contribution": 4243, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3939db98-7cf4-4789-b273-2d43b291ff1f", + "model": "evaluation.ratinganswercounter", + "pk": "f3a4ffbc-1e48-43b6-b576-da9975baa87a", "fields": { - "question": 313, - "contribution": 4138, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 823, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "394bac3f-6b76-4f8a-adbe-f67c0c719ff0", + "model": "evaluation.ratinganswercounter", + "pk": "f3a6d594-36a3-465a-8188-3844c553203b", "fields": { - "question": 364, - "contribution": 1780, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 3666, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "397cba6b-150d-4a30-ad2f-19718a946f44", + "model": "evaluation.ratinganswercounter", + "pk": "f3ab891a-7a02-45eb-a999-c4cf78ab2549", "fields": { - "question": 324, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 340, + "contribution": 3645, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "39a62090-02f8-4988-a697-c2b73946abac", + "model": "evaluation.ratinganswercounter", + "pk": "f3abff22-0ac1-4879-9fef-977f3dbf2012", "fields": { - "question": 364, - "contribution": 4204, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 4271, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "39ea5a2d-bfba-4e60-8a12-00992fed82cd", + "model": "evaluation.ratinganswercounter", + "pk": "f3af4130-bbff-4ab9-867a-3bdf83548db1", "fields": { - "question": 318, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 3739, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "39efdee5-a477-4f8a-a7d8-205ba4ba2aae", + "model": "evaluation.ratinganswercounter", + "pk": "f3af62b0-e7c3-4e18-b02d-49dcacaef739", "fields": { - "question": 364, - "contribution": 4148, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 3354, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "39f20030-07ba-42d6-b682-14cd68695ec7", + "model": "evaluation.ratinganswercounter", + "pk": "f3dbefcd-0838-419f-b5ef-f8641a03aa23", "fields": { - "question": 342, - "contribution": 886, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 368, + "contribution": 3519, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "3a1a43a4-4853-419e-87eb-1eec0fb75f1b", + "model": "evaluation.ratinganswercounter", + "pk": "f3dc2fee-ea46-4654-bd57-301b8a0b320f", "fields": { - "question": 314, - "contribution": 3725, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 3508, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3a1ed5f7-aea2-425d-a93f-734d9c6a2b14", + "model": "evaluation.ratinganswercounter", + "pk": "f3eac67d-4178-499e-9e01-cd2a38ac5bcb", "fields": { - "question": 314, - "contribution": 1837, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 3645, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3a43707c-a03f-43fb-83ed-c2e07de79844", + "model": "evaluation.ratinganswercounter", + "pk": "f3f318e9-15f5-4d03-b23f-9b85d325d5a8", "fields": { - "question": 430, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 1154, + "answer": 4, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "3a4dacc1-76fc-4056-90c5-0252fc773e1c", + "model": "evaluation.ratinganswercounter", + "pk": "f4087342-da5a-4afd-bd8f-977db138f1c4", "fields": { - "question": 324, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 340, + "contribution": 1702, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3a4e63ae-d4e6-46f1-a661-9e77f4220d98", + "model": "evaluation.ratinganswercounter", + "pk": "f4099759-77d9-404f-a58e-d6aaa0234ccb", "fields": { - "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 366, + "contribution": 1812, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3a535707-5894-4713-9133-4f0b579861a6", + "model": "evaluation.ratinganswercounter", + "pk": "f40a8ff0-c7c2-43df-bfb9-2ae8b25059c6", "fields": { - "question": 364, - "contribution": 1288, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 4146, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "3a542885-c536-4f66-bd48-e4ff4dcad725", + "model": "evaluation.ratinganswercounter", + "pk": "f40ce7f2-6395-4af1-bc2c-4be45c5a4f03", "fields": { - "question": 313, - "contribution": 1634, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 4052, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "3a567280-b2e5-4e28-8f1a-8c9d2b9fd4ea", + "model": "evaluation.ratinganswercounter", + "pk": "f40e0020-330c-4e36-9a22-10ee571abc10", "fields": { - "question": 313, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 3589, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "3ae3edfe-547f-4cf2-8f4f-1c0e1d36c52b", + "model": "evaluation.ratinganswercounter", + "pk": "f40f68a6-e230-4ffb-858d-d29ba7aa8ab0", "fields": { - "question": 318, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 340, + "contribution": 1662, + "answer": 1, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "3b04a17c-2d5d-4b82-be33-5a9cb6e3422a", + "model": "evaluation.ratinganswercounter", + "pk": "f41b271e-ad9f-4712-8a7f-dffe209fd3fb", "fields": { - "question": 313, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 383, + "contribution": 3775, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3b8a437c-31f9-4e7d-a26e-378711777dbb", + "model": "evaluation.ratinganswercounter", + "pk": "f41bd13a-6e80-41f0-a5fc-2834afb5e869", "fields": { - "question": 324, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 4100, + "answer": 3, + "count": 13 } }, { - "model": "evaluation.textanswer", - "pk": "3b9c0485-c62b-4a3f-a754-ba0efc2d5b1e", + "model": "evaluation.ratinganswercounter", + "pk": "f41ff041-5727-4dcd-b123-8b8e9107f2e2", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 1204, + "answer": 2, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "3b9d0a9e-0aa4-44bd-818f-37f495727822", + "model": "evaluation.ratinganswercounter", + "pk": "f426e6d9-8076-4a68-a4b3-ec610e8eaab5", "fields": { - "question": 314, - "contribution": 1626, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 320, + "contribution": 4084, + "answer": 2, + "count": 26 } }, { - "model": "evaluation.textanswer", - "pk": "3bcb464d-744f-4a07-9281-b746eaf8b183", + "model": "evaluation.ratinganswercounter", + "pk": "f432cd3c-2c97-4734-9fcd-2a5f21a0b16f", "fields": { - "question": 313, - "contribution": 884, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 1786, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "3c1aeffb-99c9-4bd5-afe9-d3f62a06ebb4", + "model": "evaluation.ratinganswercounter", + "pk": "f4347b03-9ca8-4906-ad83-13d7cf276023", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 320, + "contribution": 3472, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "3c2e8d05-23af-4383-b734-4b3fb2207dfa", + "model": "evaluation.ratinganswercounter", + "pk": "f4428764-6376-431f-a1cd-263ba9b369bb", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 255, + "contribution": 4052, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3c3d1391-4c8a-427d-9864-cd773cfbbba8", + "model": "evaluation.ratinganswercounter", + "pk": "f44cd1f7-a46d-4b79-bda6-0ce9b65027d9", "fields": { - "question": 313, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 1680, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "3c94a521-b8ec-4f2b-8bbd-afd8672b8d13", + "model": "evaluation.ratinganswercounter", + "pk": "f4596568-d3b4-44b8-8629-2033a49e83c8", "fields": { - "question": 373, - "contribution": 3372, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 476, + "contribution": 822, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3cc05607-ff5f-496b-8d60-14ca3a7bc082", + "model": "evaluation.ratinganswercounter", + "pk": "f45dca3e-29fc-4015-beeb-cd7adf24e7a1", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 322, + "contribution": 1658, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3cd84266-9de3-4372-b8d6-cc32a92c9ff7", + "model": "evaluation.ratinganswercounter", + "pk": "f4622faf-bed4-4e1b-83f7-e0bf71a03d99", "fields": { - "question": 313, - "contribution": 880, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 3528, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "3d5c5171-3c7c-4735-8668-b93689007d24", + "model": "evaluation.ratinganswercounter", + "pk": "f4655497-a535-45f9-8260-4d54bd42c4c1", "fields": { - "question": 318, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 3405, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3d6480cd-e289-4e84-8600-916cf7818907", + "model": "evaluation.ratinganswercounter", + "pk": "f46828aa-a291-44aa-944e-cd3d2726553c", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 1776, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "3da8feac-a16d-4996-b194-a4c9acf5d86c", + "model": "evaluation.ratinganswercounter", + "pk": "f47645f3-932e-44b5-9bef-47d38d17ee51", "fields": { - "question": 313, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 1266, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "3db67ce5-9627-4812-80a8-44ccf2810f6d", + "model": "evaluation.ratinganswercounter", + "pk": "f47dde13-22c8-4715-a95f-03147989a514", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 1680, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "3e07c876-f8a5-4b0b-b816-79f31cf52b9a", + "model": "evaluation.ratinganswercounter", + "pk": "f48c5715-5ae4-4bb6-9908-5b99a1f274c8", "fields": { - "question": 330, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 361, + "contribution": 1827, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3e0f411c-171f-4e0b-adca-57e34c8120f5", + "model": "evaluation.ratinganswercounter", + "pk": "f48dab67-8836-47b8-a581-39d90c8dee39", "fields": { - "question": 364, - "contribution": 4154, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 370, + "contribution": 1784, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3e2d2d71-9ec1-44b7-87a5-cd15f27ae3e8", + "model": "evaluation.ratinganswercounter", + "pk": "f498cc55-c2ab-4ffb-bc9f-0ce84e6e23ba", "fields": { - "question": 373, - "contribution": 3450, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 369, + "contribution": 1812, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "3e3cffec-103d-44f0-a2f5-fd2154aed7bb", + "model": "evaluation.ratinganswercounter", + "pk": "f4a877a9-20e4-4cac-9589-f71fac498a2e", "fields": { - "question": 313, - "contribution": 3422, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 341, + "contribution": 4052, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3ea69df6-e55d-4074-af2f-2e0c6600266a", + "model": "evaluation.ratinganswercounter", + "pk": "f4a9005e-6c8d-4aac-9650-a73317521edb", "fields": { - "question": 373, - "contribution": 1644, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 3935, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3eaa5be6-79f1-4c57-bc9c-19f00807ba92", + "model": "evaluation.ratinganswercounter", + "pk": "f4b3b0e6-961e-4673-8557-9cad53215aa8", "fields": { - "question": 324, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 1860, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "3eacbc55-e83b-43b7-8ceb-7c0bc53e8958", + "model": "evaluation.ratinganswercounter", + "pk": "f4c4ed06-9f06-4bb1-b192-77b30974817c", "fields": { - "question": 314, - "contribution": 1837, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 335, + "contribution": 3553, + "answer": 3, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "3eea1441-6035-4512-a288-5bf5baf409a7", + "model": "evaluation.ratinganswercounter", + "pk": "f4c56265-436f-40f3-9efa-1d7dfdd6a3c1", "fields": { - "question": 364, - "contribution": 3546, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 255, + "contribution": 908, + "answer": 1, + "count": 14 } }, { - "model": "evaluation.textanswer", - "pk": "3f34f2a6-b022-4a9b-827f-18e83a36983c", + "model": "evaluation.ratinganswercounter", + "pk": "f4d4078c-e741-4651-819d-2c0577ff033f", "fields": { - "question": 318, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 4118, + "answer": 2, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "3f67e6e6-6408-4efb-b873-b636b05a618a", + "model": "evaluation.ratinganswercounter", + "pk": "f4d85960-4e27-4861-86a9-483a5e260201", "fields": { - "question": 364, - "contribution": 3680, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 4128, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3f9d4e11-bfeb-487f-9337-e9bbc30346ed", + "model": "evaluation.ratinganswercounter", + "pk": "f4dbdf20-4950-41f5-8a38-f6060899da37", "fields": { - "question": 364, - "contribution": 3516, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 341, + "contribution": 4094, + "answer": 3, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "3fb879f7-335f-4cab-8c70-0062ae8af841", + "model": "evaluation.ratinganswercounter", + "pk": "f4f1dd02-c562-4a2a-aec3-fce222d4053d", "fields": { - "question": 364, - "contribution": 1217, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 340, + "contribution": 3723, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "3fb98d30-76ed-4442-afdc-5f58de9309c7", + "model": "evaluation.ratinganswercounter", + "pk": "f4f888b3-6a49-4809-803f-fa1eed2f4bbe", "fields": { - "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 1151, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "3fdd46b2-52af-468b-bf55-c645aedbe5e1", + "model": "evaluation.ratinganswercounter", + "pk": "f4fa21fa-dba1-46df-acdd-71672b4fbd23", "fields": { - "question": 324, - "contribution": 1726, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 3884, + "answer": -1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "3fe31f68-87e0-41e8-8251-13d972f39699", + "model": "evaluation.ratinganswercounter", + "pk": "f4ff2f77-4215-4d43-aa59-9c6c19203931", "fields": { - "question": 364, - "contribution": 885, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 257, + "contribution": 884, + "answer": 2, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "400cba9e-879d-4e65-9146-3a327aa3e00e", + "model": "evaluation.ratinganswercounter", + "pk": "f50ae26d-f40c-463a-b930-739a600b1c4f", "fields": { - "question": 342, - "contribution": 4094, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 3405, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "4013bf61-3a47-4f3f-9089-1fbe43776253", + "model": "evaluation.ratinganswercounter", + "pk": "f514e76b-72cb-4ab1-828a-97aa58a2ff14", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 1668, + "answer": 1, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "4029edb2-4d38-4c50-abf5-fa1c1e613592", + "model": "evaluation.ratinganswercounter", + "pk": "f5243514-9da8-4efe-b5a9-224cd1c6f2fc", "fields": { - "question": 364, - "contribution": 3666, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 1200, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "4035fdf1-923d-4645-825b-234429ebd6ca", + "model": "evaluation.ratinganswercounter", + "pk": "f52d967c-a03d-4d95-b711-c012206b6b52", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 3508, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "40724ff4-10c1-4a3f-8c4a-a5bb0c12a320", + "model": "evaluation.ratinganswercounter", + "pk": "f52e2920-c0bf-4642-90fc-11050d21e349", "fields": { - "question": 314, - "contribution": 884, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 333, + "contribution": 4152, + "answer": 2, + "count": 11 } }, { - "model": "evaluation.textanswer", - "pk": "4072991f-85aa-46f1-9ac5-a69010b1946f", + "model": "evaluation.ratinganswercounter", + "pk": "f5491dd7-10b3-4f85-9e33-41bbe8de0fe5", "fields": { - "question": 387, - "contribution": 3775, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 4101, + "answer": 4, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "40937bca-a482-4206-86fa-7c890923de9d", + "model": "evaluation.ratinganswercounter", + "pk": "f54a3607-8449-4365-a494-e6d246dfd562", "fields": { - "question": 313, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 438, + "contribution": 3976, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "409d0b76-160d-46b7-aff7-f0f43b724830", + "model": "evaluation.ratinganswercounter", + "pk": "f552018d-8182-4255-8379-70d5c1c1af34", "fields": { - "question": 364, - "contribution": 4283, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 3555, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "40a0b37b-6709-4b0b-843e-8c2a7e43620b", + "model": "evaluation.ratinganswercounter", + "pk": "f55dc458-f627-4185-b376-353843e6cada", "fields": { - "question": 314, - "contribution": 3462, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 1203, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "40a9edc1-bf54-4d7d-8419-b3de90748a46", + "model": "evaluation.ratinganswercounter", + "pk": "f56079bc-5cfb-497f-b7b6-c680d59fb7af", "fields": { - "question": 381, - "contribution": 3775, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 3725, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "40cb3168-8561-4a95-95dc-1a622781673e", + "model": "evaluation.ratinganswercounter", + "pk": "f5624107-35bb-4659-8755-c19109987ea0", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 352, + "contribution": 3454, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "40dd0fce-77da-4d9a-ab00-c6449b40f461", + "model": "evaluation.ratinganswercounter", + "pk": "f56d2c2f-075c-4ddc-83df-35575ce80333", "fields": { - "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 1724, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "410749d0-3a9a-4df2-8438-99fa8d93ee9a", + "model": "evaluation.ratinganswercounter", + "pk": "f5732221-7c91-4d2b-b104-a46ccaa366e2", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 360, + "contribution": 1799, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4107ce8c-1ab9-49da-9ae5-0b0c0064e1e3", + "model": "evaluation.ratinganswercounter", + "pk": "f574c2fc-7f18-4437-afe0-f824aa8bed92", "fields": { - "question": 313, - "contribution": 884, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 362, + "contribution": 3921, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "412581a5-62c8-48a7-9b75-d446b9af00db", + "model": "evaluation.ratinganswercounter", + "pk": "f574c97e-bc93-48af-aa36-91f9d82d7776", "fields": { - "question": 313, - "contribution": 4120, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 3416, + "answer": 0, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "4134c4df-e18c-4122-93af-be42274315ca", + "model": "evaluation.ratinganswercounter", + "pk": "f580f402-af21-439a-b4ad-9e701a9db5ca", "fields": { - "question": 373, - "contribution": 3727, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 3434, + "answer": 1, + "count": 18 } }, { - "model": "evaluation.textanswer", - "pk": "415c43d8-1bc0-411e-90d5-f5b5a8da550a", + "model": "evaluation.ratinganswercounter", + "pk": "f586834d-799c-4d96-96d8-4cab91b06719", "fields": { - "question": 440, - "contribution": 4090, - "answer": "Text answer", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 3545, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "41765d8c-d9ee-4615-a6ba-db35b981b0fa", + "model": "evaluation.ratinganswercounter", + "pk": "f591531f-bca3-44ac-915b-27b87568a74a", "fields": { - "question": 330, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 3462, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4222c6e2-310a-44da-b610-9950d6c6964e", + "model": "evaluation.ratinganswercounter", + "pk": "f597d3ab-bbdf-49ac-9c19-5ccee6e0d89b", "fields": { - "question": 373, - "contribution": 3645, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 412, + "contribution": 3984, + "answer": -2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "42b050b9-3680-4b5e-a05d-fc16daa75e22", + "model": "evaluation.ratinganswercounter", + "pk": "f597eefa-d0de-4532-814c-37d45ff39c3d", "fields": { - "question": 330, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 1151, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "42f8bb9c-fd55-401a-b4c0-9d6af2f02f3f", + "model": "evaluation.ratinganswercounter", + "pk": "f5aa9b62-0d5d-4d2b-bd6d-9369d343cdd3", "fields": { - "question": 364, - "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 367, + "contribution": 1612, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "4305cf23-0d21-4a1c-84d8-1480c6492b3c", + "model": "evaluation.ratinganswercounter", + "pk": "f5b2d636-9a01-4027-baac-bb8dc6555e86", "fields": { - "question": 324, - "contribution": 4072, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false + "question": 322, + "contribution": 3721, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "43111d77-96cb-40d9-9394-86bb2a6531a7", + "model": "evaluation.ratinganswercounter", + "pk": "f5bd2af4-6c54-41d6-85ef-402ae1371e71", "fields": { - "question": 313, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 1780, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "432c1353-5792-4e0c-a979-46abcb880c4c", + "model": "evaluation.ratinganswercounter", + "pk": "f5c4e303-d9bb-4666-a05b-4f840d057999", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 3721, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "43819b37-16f9-487b-968d-c5df0493f4bc", + "model": "evaluation.ratinganswercounter", + "pk": "f5ca846b-c49b-45c2-b28e-e76656948c90", "fields": { - "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 1154, + "answer": 1, + "count": 22 } }, { - "model": "evaluation.textanswer", - "pk": "43a749d4-2279-455d-a2e2-3551d49b40d4", + "model": "evaluation.ratinganswercounter", + "pk": "f5cacce3-ac79-4dac-99db-1e74091a59d0", "fields": { - "question": 364, - "contribution": 3423, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 320, + "contribution": 3406, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "43adf877-cad7-490c-81ad-f0d9f58c9259", + "model": "evaluation.ratinganswercounter", + "pk": "f5cb499c-beb3-44fc-9a05-2b2a90ef6745", "fields": { - "question": 313, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 320, + "contribution": 4100, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "43dff058-432f-47b8-a3a6-0cc54fc499e1", + "model": "evaluation.ratinganswercounter", + "pk": "f5cded45-a92d-4ab8-8758-233ba0e5b0ca", "fields": { - "question": 318, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 885, + "answer": 1, + "count": 22 } }, { - "model": "evaluation.textanswer", - "pk": "43e0ce40-b7f4-40e4-b529-28fb3e159694", + "model": "evaluation.ratinganswercounter", + "pk": "f5d9840d-d166-4828-8976-6c883fb3f513", "fields": { - "question": 364, - "contribution": 3515, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 355, + "contribution": 3516, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "43e4e8da-7237-4ee9-874e-599723bb60da", + "model": "evaluation.ratinganswercounter", + "pk": "f5e44e06-956e-41f8-8103-8db0f5675bb6", "fields": { - "question": 318, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 341, + "contribution": 1640, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "43e7f76b-6078-4c7d-89ee-1b291f39a1c5", + "model": "evaluation.ratinganswercounter", + "pk": "f5fac4e1-d4ac-47fe-8026-0dc8407a70ee", "fields": { - "question": 330, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 260, + "contribution": 3390, + "answer": 3, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "43f497bd-f9a0-4e55-a39c-7e58961e34f6", + "model": "evaluation.ratinganswercounter", + "pk": "f5fc0074-1463-462e-992d-3c7e582da8e9", "fields": { - "question": 318, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 368, + "contribution": 3435, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "441dc129-aabf-4014-9c28-6d39fe4f07d9", + "model": "evaluation.ratinganswercounter", + "pk": "f6085681-5e2b-4353-8ac0-e19ab76158da", "fields": { - "question": 364, - "contribution": 3407, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 1204, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "44205eae-b1be-40a0-9342-98472bfab463", + "model": "evaluation.ratinganswercounter", + "pk": "f6125ac4-a32d-4920-8676-5f238c2fe564", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 355, + "contribution": 1776, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "44208874-e06d-426e-b8d6-86b848c205bf", + "model": "evaluation.ratinganswercounter", + "pk": "f61ac310-acc7-49a2-9656-87a254dbd60a", "fields": { - "question": 364, - "contribution": 3553, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 362, + "contribution": 3597, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "446d122f-2841-4182-945a-8a81ec021b7f", + "model": "evaluation.ratinganswercounter", + "pk": "f61b4a2a-aef6-4595-b265-cc0efefc7e18", "fields": { - "question": 313, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 1869, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "44b0fa06-27bc-4e6e-9aae-1dbb6328c3dd", + "model": "evaluation.ratinganswercounter", + "pk": "f62b1b05-8a00-47a2-970c-c20b71e9802d", "fields": { - "question": 364, - "contribution": 4191, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 1776, + "answer": 3, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "44bf9e68-b88f-4f3b-82ca-1669fd201ee1", + "model": "evaluation.ratinganswercounter", + "pk": "f62dc765-6dae-4a05-b750-c60fa0549c59", "fields": { - "question": 364, - "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 343, + "contribution": 3941, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "44c4ad4c-1b4d-4e53-955e-d30174c3d33f", + "model": "evaluation.ratinganswercounter", + "pk": "f636e734-c745-4953-bbb4-61afc7cd0ccc", "fields": { - "question": 342, - "contribution": 1662, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 337, + "contribution": 788, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "4552dd76-67ce-4068-975b-e64a7a8032b4", + "model": "evaluation.ratinganswercounter", + "pk": "f63da994-67d3-4365-ad76-f3afc68ef58d", "fields": { - "question": 364, - "contribution": 1617, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 1626, + "answer": 2, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "455496e6-3c3f-43c9-9ce8-bb84f4ad5f6f", + "model": "evaluation.ratinganswercounter", + "pk": "f64b7774-bcc0-4ac6-9cb0-1608286a8ae5", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 368, + "contribution": 1777, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "45620dbc-fcec-4d94-a882-3d54c8c4594c", + "model": "evaluation.ratinganswercounter", + "pk": "f658cb7f-c854-41a9-b6c9-40b1f963880e", "fields": { - "question": 364, - "contribution": 913, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 3739, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "45dcedbf-8ff9-41b7-b31a-54295dd75816", + "model": "evaluation.ratinganswercounter", + "pk": "f668a3cc-73ef-4db7-b006-ac353ad92848", "fields": { - "question": 364, - "contribution": 3893, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 1246, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "46048f69-ba43-4c5b-83f7-c1805c39df64", + "model": "evaluation.ratinganswercounter", + "pk": "f66a65d8-ebd1-478a-ab64-9f9f768d4e46", "fields": { - "question": 318, - "contribution": 3665, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 369, + "contribution": 1812, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "460d7e33-8026-47cb-bbda-e24e21b34785", + "model": "evaluation.ratinganswercounter", + "pk": "f674a65c-129c-423e-b90d-73b5c687bf9f", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 3723, + "answer": -1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "460fb716-286a-40ff-99e2-7370ca39244a", + "model": "evaluation.ratinganswercounter", + "pk": "f67910e1-df22-4a64-a66b-4a947269d6ff", "fields": { - "question": 318, - "contribution": 1680, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 3528, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "461413ef-2b13-4e26-8999-8229378a727a", + "model": "evaluation.ratinganswercounter", + "pk": "f67ba2a6-0e42-4302-b3fe-31d0d830b277", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 340, + "contribution": 4020, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "462a49a7-aa91-4b5e-a454-b617f0192a07", + "model": "evaluation.ratinganswercounter", + "pk": "f6821c07-fa87-4a2e-8881-0fd3c6038415", "fields": { - "question": 318, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 409, + "contribution": 3974, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "462f9392-e742-42f7-9b03-9944a3382571", + "model": "evaluation.ratinganswercounter", + "pk": "f682d443-72d8-41b6-a4e8-c804b3702b82", "fields": { - "question": 313, - "contribution": 1626, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 822, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "467c460b-b659-44d4-b018-68ffade78a9b", + "model": "evaluation.ratinganswercounter", + "pk": "f686d263-10c7-419a-94b6-e17bbdc5672f", "fields": { - "question": 314, - "contribution": 4118, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 402, + "contribution": 3646, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "46834af8-6421-4bb6-93a5-3b4e8b24e0ce", + "model": "evaluation.ratinganswercounter", + "pk": "f697fa6e-1957-4ead-a07c-1302b9ade114", "fields": { - "question": 364, - "contribution": 3923, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 340, + "contribution": 3440, + "answer": 2, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "46dadf21-521c-413d-90dc-82c3eec20427", + "model": "evaluation.ratinganswercounter", + "pk": "f69aacfb-4219-43f4-bcd2-289c025a34cd", "fields": { - "question": 313, - "contribution": 3739, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 323, + "contribution": 3679, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4708bddc-aece-4601-b30d-c3e7d259c26c", + "model": "evaluation.ratinganswercounter", + "pk": "f69e30f3-9ca9-410b-a939-d7d0b3aaca95", "fields": { - "question": 313, - "contribution": 3406, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 1776, + "answer": 1, + "count": 11 } }, { - "model": "evaluation.textanswer", - "pk": "470ebbbb-7cd9-4395-87a2-6bfe4a026f5e", + "model": "evaluation.ratinganswercounter", + "pk": "f6a06795-f582-4621-a7d3-ede3d2fb83ff", "fields": { - "question": 313, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 335, + "contribution": 1284, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "47225d6c-93a0-4657-ac9a-37a91fe5485c", + "model": "evaluation.ratinganswercounter", + "pk": "f6a2937f-f9a1-4b50-a423-c0a1219bbf12", "fields": { - "question": 313, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 371, + "contribution": 3881, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "472634a2-7a8c-4ba2-a7d2-952cb17d1f18", + "model": "evaluation.ratinganswercounter", + "pk": "f6a6dfda-f39b-4d89-b82c-7978ea08b3b3", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 262, + "contribution": 1668, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "474dbc56-7c8b-41a3-b8df-3b8b4bfbef8a", + "model": "evaluation.ratinganswercounter", + "pk": "f6b0f075-f13f-4417-89d6-b7366949724d", "fields": { - "question": 324, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 366, + "contribution": 3936, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "476cbea3-f422-464b-8acb-c03a5fd66a77", + "model": "evaluation.ratinganswercounter", + "pk": "f6b66baf-a22d-49d5-9af7-03c142e02116", "fields": { - "question": 314, - "contribution": 836, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 476, + "contribution": 1837, + "answer": 0, + "count": 18 } }, { - "model": "evaluation.textanswer", - "pk": "47a13a8f-e525-4238-9d1e-08a33b350073", + "model": "evaluation.ratinganswercounter", + "pk": "f6bbc3bf-164d-4d83-860a-9f868d64b3d3", "fields": { - "question": 364, - "contribution": 3593, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 322, + "contribution": 884, + "answer": 3, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "47ef8682-1165-43d3-a0d2-73f2d73ca29b", + "model": "evaluation.ratinganswercounter", + "pk": "f6c9722d-3c93-4471-bd74-381d7f4bd632", "fields": { - "question": 330, - "contribution": 822, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 3474, + "answer": 2, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "47f44a00-1692-4fb1-afe4-8a1cda4fe525", + "model": "evaluation.ratinganswercounter", + "pk": "f6e0e51a-c48c-4c74-b0e0-031915dba18a", "fields": { - "question": 313, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 3739, + "answer": 5, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "48455575-0656-49e9-8bec-eeef657d5c9b", + "model": "evaluation.ratinganswercounter", + "pk": "f6e30685-db21-4e7e-b04f-28700a3fd34e", "fields": { - "question": 318, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 1249, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "489d8bd5-26df-48cb-8ac1-48e94ee3fcf0", + "model": "evaluation.ratinganswercounter", + "pk": "f6e333fc-3c31-45cf-be53-c9ab079456f8", "fields": { - "question": 324, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 912, + "answer": 1, + "count": 22 } }, { - "model": "evaluation.textanswer", - "pk": "48a17d43-a5dd-4a81-bdc6-d82b018b30af", + "model": "evaluation.ratinganswercounter", + "pk": "f6e498b9-6499-43ba-a9cf-c415abbfc735", "fields": { - "question": 324, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 337, + "contribution": 3486, + "answer": 2, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "48c9d119-da00-4fae-9d32-366dde86154c", + "model": "evaluation.ratinganswercounter", + "pk": "f6e58b63-5296-4846-8ce5-d9d558d74a9a", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 370, + "contribution": 3782, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4907a858-77b9-4807-8c27-f7343ed34ad9", + "model": "evaluation.ratinganswercounter", + "pk": "f6e9784a-b653-4d90-99ee-73d9d375c5a1", "fields": { - "question": 364, - "contribution": 4204, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 4095, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "490d637c-cca2-4e4e-a0b7-899723b35771", + "model": "evaluation.ratinganswercounter", + "pk": "f6f274a1-240e-4326-a75d-49734ef17333", "fields": { - "question": 318, - "contribution": 1626, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 1634, + "answer": 4, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "491cbaee-5d71-4a12-8bab-a8202d40d535", + "model": "evaluation.ratinganswercounter", + "pk": "f6f6b852-e4ca-4926-929e-7fdd492c3e03", "fields": { - "question": 373, - "contribution": 3745, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 368, + "contribution": 3407, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "492ba8e7-6031-49ee-b3a4-64d9ed95a6af", + "model": "evaluation.ratinganswercounter", + "pk": "f700cbf6-99ce-4597-aa82-0097b04b5151", "fields": { - "question": 342, - "contribution": 3645, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 371, + "contribution": 1812, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4933340e-4f4d-4cd6-8af1-50b2647ef6d4", + "model": "evaluation.ratinganswercounter", + "pk": "f704e766-74b4-4362-9795-1153d8180cfc", "fields": { - "question": 318, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 320, + "contribution": 912, + "answer": 1, + "count": 11 } }, { - "model": "evaluation.textanswer", - "pk": "4954f4b2-e567-40cd-b017-2952144cb5d8", + "model": "evaluation.ratinganswercounter", + "pk": "f7126353-e0b2-4ca3-a15f-ea1815b8e41d", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 3440, + "answer": 0, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "495c2b8a-c64f-416d-a85c-02611cc9f80f", + "model": "evaluation.ratinganswercounter", + "pk": "f71a9c84-b1bf-4f4c-af2e-dc7c8588288c", "fields": { - "question": 364, - "contribution": 3607, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 320, + "contribution": 1658, + "answer": 1, + "count": 10 } }, { - "model": "evaluation.textanswer", - "pk": "49762cb6-51dc-4ffb-b6d3-bd4d92bf1a13", + "model": "evaluation.ratinganswercounter", + "pk": "f72cb5e5-021d-4416-ba65-3f8b0a329696", "fields": { - "question": 364, - "contribution": 4148, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 1680, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "49826305-3f9d-4c24-87d4-32b82a73cbcc", + "model": "evaluation.ratinganswercounter", + "pk": "f72eaa99-b674-4451-9a59-ff950daa095e", "fields": { - "question": 439, - "contribution": 4140, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 1658, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "49b9acfc-7368-4df7-9d05-409b8fb07e3e", + "model": "evaluation.ratinganswercounter", + "pk": "f73043ed-36bd-4cee-8c7b-4335ae2c1344", "fields": { - "question": 364, - "contribution": 3859, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 332, + "contribution": 4156, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "49f285d0-53af-4432-b03d-abcd6fa89f80", + "model": "evaluation.ratinganswercounter", + "pk": "f730852c-3c0d-421c-a7c0-ab4569ee3498", "fields": { - "question": 324, - "contribution": 822, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 366, + "contribution": 4244, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "4a4cf5ad-5b11-4324-b14f-018ff65b4cc0", + "model": "evaluation.ratinganswercounter", + "pk": "f73c3b9d-64b8-4ae3-8b65-a8f1d399b912", "fields": { - "question": 373, - "contribution": 3727, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 3367, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4a9156c1-02f4-4dc3-94c3-4f0909d0836a", + "model": "evaluation.ratinganswercounter", + "pk": "f73e0a4c-db33-4292-983b-715e9d2c21a6", "fields": { - "question": 313, - "contribution": 3665, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 343, + "contribution": 4191, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "4ab25d08-eac3-47ca-bb67-6c232ad48f5c", + "model": "evaluation.ratinganswercounter", + "pk": "f74391d1-6585-4d2a-a414-7f13648bd51c", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 1626, + "answer": 2, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "4ac26a49-346e-4ce6-987c-d94d6004fcb2", + "model": "evaluation.ratinganswercounter", + "pk": "f745a8dc-9688-41b9-91c5-6917769dbed8", "fields": { - "question": 364, - "contribution": 4189, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 457, + "contribution": 3453, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4adc4fe8-ccd5-4b66-ab75-cb6e1c993f2d", + "model": "evaluation.ratinganswercounter", + "pk": "f767d110-4bc5-481a-b8e0-b4366ed1bc3a", "fields": { - "question": 364, - "contribution": 1777, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 3884, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4b1c0dab-62cb-4f36-9837-13ef5f00ccaa", + "model": "evaluation.ratinganswercounter", + "pk": "f769cf5a-db25-4f6b-88af-1e327ab41074", "fields": { - "question": 364, - "contribution": 3893, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 337, + "contribution": 4122, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4b1e9c74-3fb6-4090-82d2-a8edbdd4d2cc", + "model": "evaluation.ratinganswercounter", + "pk": "f76a3d5c-00b6-45cb-93c5-90119fdbe77e", "fields": { - "question": 342, - "contribution": 3508, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 390, + "contribution": 3755, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4b79cf74-53c5-4ee9-9fe8-2a7357a49c11", + "model": "evaluation.ratinganswercounter", + "pk": "f76ca78f-25e1-487d-a135-44da5b82904c", "fields": { - "question": 324, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 1661, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4ba60d8e-4abe-49d6-884b-3d15307adede", + "model": "evaluation.ratinganswercounter", + "pk": "f77467d8-fefd-4e34-bfce-8b02d257b9a6", "fields": { - "question": 313, - "contribution": 3434, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 417, + "contribution": 3984, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4bcb6e00-db00-4563-9cc2-bd5f3149a33f", + "model": "evaluation.ratinganswercounter", + "pk": "f7796d03-de55-468e-8735-8170428725ae", "fields": { - "question": 313, - "contribution": 4028, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 1638, + "answer": 0, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "4befa097-61a3-4a99-afa9-20c6f6a833c5", + "model": "evaluation.ratinganswercounter", + "pk": "f77ab459-b318-448c-b3cd-01376a4ead2f", "fields": { - "question": 364, - "contribution": 1217, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 788, + "answer": 0, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "4c0137ca-1727-4cc0-8ed9-7091899aa19c", + "model": "evaluation.ratinganswercounter", + "pk": "f77be09f-556c-4314-bce3-4841ddd46158", "fields": { - "question": 313, - "contribution": 880, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 335, + "contribution": 3551, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4c04faeb-5425-45d1-94cb-ae6610f44590", + "model": "evaluation.ratinganswercounter", + "pk": "f7a2a5d2-3502-4df4-a207-48330ff9ed5d", "fields": { - "question": 373, - "contribution": 3723, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 322, + "contribution": 1668, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "4c122568-680b-46fd-a358-9d87b57cbbe4", + "model": "evaluation.ratinganswercounter", + "pk": "f7a86b0d-f933-4667-b84e-e05d49819d2c", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 351, + "contribution": 3394, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4c12ba72-5ff4-4b97-b270-39032cd1f562", + "model": "evaluation.ratinganswercounter", + "pk": "f7c33de5-fc6b-492e-a557-865bc1271eca", "fields": { - "question": 330, - "contribution": 3422, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 402, + "contribution": 4119, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4c1c85ff-9568-48de-9033-1c98aa0dbaa0", + "model": "evaluation.ratinganswercounter", + "pk": "f7d492c8-fb88-4e76-97c0-e370f0b56fa8", "fields": { - "question": 364, - "contribution": 1808, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 3406, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "4c25afe6-640f-4d3c-a1c3-16b604e9485d", + "model": "evaluation.ratinganswercounter", + "pk": "f7e64c35-f385-4781-bd4b-18b3214a0ade", "fields": { - "question": 342, - "contribution": 826, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 1663, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "4c344ccb-f45b-4dec-af80-2cdb0cd2d39d", + "model": "evaluation.ratinganswercounter", + "pk": "f7f31059-12c9-43f1-8986-2394a0f4ede0", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 333, + "contribution": 4154, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "4c668aca-647c-417c-a3b4-b8dd60f4a518", + "model": "evaluation.ratinganswercounter", + "pk": "f7f4e554-7866-4362-8cbe-8792f37b0085", "fields": { - "question": 318, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 3407, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4cc86083-ae5b-434b-a44c-f06af9b4bf62", + "model": "evaluation.ratinganswercounter", + "pk": "f7fbf35e-7b43-449f-aa22-baa047993598", "fields": { - "question": 313, - "contribution": 862, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 3721, + "answer": 2, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "4ccab46d-5d45-46ad-9a3c-4198b95f4881", + "model": "evaluation.ratinganswercounter", + "pk": "f7fd49d2-10b3-4c53-a767-fd29a77f0c02", "fields": { - "question": 330, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 362, + "contribution": 3653, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4d38a133-9c83-4426-8107-f96c4a5bba91", + "model": "evaluation.ratinganswercounter", + "pk": "f7fd5189-cbed-4472-a9b2-f97e93a97851", "fields": { - "question": 330, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 1778, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "4d6cbfff-21df-4a27-861c-5e59dd0b649b", + "model": "evaluation.ratinganswercounter", + "pk": "f80a61f2-4a8a-4c19-b4ba-e9d29aebc0ba", "fields": { - "question": 342, - "contribution": 3727, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 3723, + "answer": 0, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "4d6f774d-f258-4238-9a1c-7aafdf350a4d", + "model": "evaluation.ratinganswercounter", + "pk": "f80fe8ae-a69f-48a9-a88e-4fc46f320505", "fields": { - "question": 313, - "contribution": 4100, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 1253, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "4d92e0b1-a6ba-44b2-99fe-289a461704d8", + "model": "evaluation.ratinganswercounter", + "pk": "f8102a38-253f-4d57-8915-b5f801840fd9", "fields": { - "question": 324, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 1656, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4d97f065-48ae-4bdc-9f04-65ef3e4db1a2", + "model": "evaluation.ratinganswercounter", + "pk": "f8141c96-b0c0-4276-a6ab-5e1e0daeae5c", "fields": { - "question": 342, - "contribution": 3685, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 260, + "contribution": 3422, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4d9f4c9b-ae4a-4599-a68d-dbbf7b8c546f", + "model": "evaluation.ratinganswercounter", + "pk": "f8159b1e-8b46-4b74-9eaa-ee1e91e35d42", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 3545, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4dca95c0-bcff-4069-947a-dc5b09198d63", + "model": "evaluation.ratinganswercounter", + "pk": "f818c0b0-7c0e-4b58-9c30-edf719dd0050", "fields": { - "question": 342, - "contribution": 788, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 3454, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4e21028a-788f-4ba1-a533-bebe18e9a1f7", + "model": "evaluation.ratinganswercounter", + "pk": "f8199395-8d17-4b4d-9849-d6ddbeda270e", "fields": { - "question": 364, - "contribution": 4119, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 3721, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "4e3f4dae-a715-46b1-aa6b-db0d20367858", + "model": "evaluation.ratinganswercounter", + "pk": "f824a3e6-bca4-4550-8aa6-b5dbe7d4d23b", "fields": { - "question": 342, - "contribution": 3466, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 323, + "contribution": 908, + "answer": 2, + "count": 14 } }, { - "model": "evaluation.textanswer", - "pk": "4e810f0c-e9a6-4b5c-88aa-ba139d628f2f", + "model": "evaluation.ratinganswercounter", + "pk": "f8250d40-deb1-407f-be5d-f6b1f03a82de", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 1626, + "answer": 3, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "4e8aa32e-ad31-4582-81d2-6644b9f0af8a", + "model": "evaluation.ratinganswercounter", + "pk": "f825511c-2a52-4045-a108-a4eebb7785f2", "fields": { - "question": 313, - "contribution": 3474, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 918, + "answer": 0, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "4e8e04a7-9582-4b40-b60e-e4eda21e2e5b", + "model": "evaluation.ratinganswercounter", + "pk": "f82f9a9d-65b7-48a0-9ddb-f0bcd1435713", "fields": { - "question": 324, - "contribution": 3685, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 354, + "contribution": 3847, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "4e95bc5e-0ba9-41e4-83e4-ae3940f32d83", + "model": "evaluation.ratinganswercounter", + "pk": "f844db43-7370-4d31-97dd-f57271e19dca", "fields": { - "question": 364, - "contribution": 3649, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 472, + "contribution": 3474, + "answer": 5, + "count": 12 } }, { - "model": "evaluation.textanswer", - "pk": "4ea3b592-818d-4a98-8fd8-32c878a6d6fa", + "model": "evaluation.ratinganswercounter", + "pk": "f8506434-498f-439a-8a9e-69e938c82e31", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 4116, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4ea71209-71ef-4cb4-aa12-315e768645c1", + "model": "evaluation.ratinganswercounter", + "pk": "f8592696-1627-42a1-bd1d-1f9647ab4615", "fields": { - "question": 318, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 262, + "contribution": 1612, + "answer": 1, + "count": 11 } }, { - "model": "evaluation.textanswer", - "pk": "4f4d6656-ce7b-4b2b-aa2d-983a55509976", + "model": "evaluation.ratinganswercounter", + "pk": "f868b8a4-a337-4cf6-8d70-229fca06cc1d", "fields": { - "question": 364, - "contribution": 3646, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 352, + "contribution": 3454, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "4f74750e-4112-443d-87b2-eca614bd20e2", + "model": "evaluation.ratinganswercounter", + "pk": "f86d6e6b-acd8-4814-ae10-c7f6b116fe0c", "fields": { - "question": 364, - "contribution": 3919, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 3473, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "4fa4d5a1-b72e-44dc-b25d-d9a9046ba4cd", + "model": "evaluation.ratinganswercounter", + "pk": "f88dfb85-b196-43b8-8bcd-ef1ba4148551", "fields": { - "question": 313, - "contribution": 1680, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 260, + "contribution": 1626, + "answer": 1, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "4fbcfc23-4c0e-451b-ba1f-9932c3f08cb4", + "model": "evaluation.ratinganswercounter", + "pk": "f88fce15-9a84-40e0-be67-87964ca9a057", "fields": { - "question": 364, - "contribution": 4117, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 332, + "contribution": 1217, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "4fc98b1a-9ad5-4a97-a605-a2237714947f", + "model": "evaluation.ratinganswercounter", + "pk": "f89318ff-762f-45a1-9d0e-5dbf79a91053", "fields": { - "question": 364, - "contribution": 4047, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 1206, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "5006681e-dae3-4c45-8b5d-007900802611", + "model": "evaluation.ratinganswercounter", + "pk": "f8a736ff-a62b-4675-b1b0-2055a68a0c10", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 392, + "contribution": 3711, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "50152f46-6c4f-4440-9dae-2cbc7296406a", + "model": "evaluation.ratinganswercounter", + "pk": "f8a96489-9a52-4b6f-b53f-711e9bb8671f", "fields": { - "question": 318, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 354, + "contribution": 3960, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5031e0da-1ff1-4e63-a26e-12d1260af522", + "model": "evaluation.ratinganswercounter", + "pk": "f8b57a29-6ccb-4813-a1c3-fa340d575839", "fields": { - "question": 313, - "contribution": 884, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 367, + "contribution": 3434, + "answer": 2, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "508cf24d-e8cd-4ba5-adf0-e35e50946903", + "model": "evaluation.ratinganswercounter", + "pk": "f8b80646-6e94-4e86-bd6d-57736fed940f", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 3859, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "50b8c500-0a94-4104-ae4b-27bc02284e24", + "model": "evaluation.ratinganswercounter", + "pk": "f8bfbe86-a52c-4422-9124-5fee336093f1", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 361, + "contribution": 3917, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "50be1301-dca3-4dba-9f6c-28bb0d630626", + "model": "evaluation.ratinganswercounter", + "pk": "f8c4fbec-3ff1-49f3-af13-d99ef9ec66ae", "fields": { - "question": 313, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 3894, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "50c3e5c4-7fe7-461e-87df-6ab4c8075866", + "model": "evaluation.ratinganswercounter", + "pk": "f8ca17c0-1ba0-4179-97da-9799f9d7293c", "fields": { - "question": 364, + "question": 343, "contribution": 887, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "answer": 1, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "51278d78-ad69-40e6-abd4-62c42f9665e6", + "model": "evaluation.ratinganswercounter", + "pk": "f8ed3725-139f-4adb-8cfd-b0d90bc7aeee", "fields": { - "question": 324, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 360, + "contribution": 3647, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "513831ab-f3b3-4db9-b58c-bba42c80b7cc", + "model": "evaluation.ratinganswercounter", + "pk": "f90456ea-b1e8-409a-ae97-270b8bdc79a1", "fields": { - "question": 364, - "contribution": 3423, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 4223, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "515ea0ee-3b14-4305-ac47-738b66c2c178", + "model": "evaluation.ratinganswercounter", + "pk": "f9105bb0-65d6-4442-940d-9f4d495ca332", "fields": { - "question": 318, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 3606, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5165901f-1872-4f4e-9444-7759f445efa1", + "model": "evaluation.ratinganswercounter", + "pk": "f914db23-3ddd-4fbe-b7b9-c93fd2138538", "fields": { - "question": 358, - "contribution": 4186, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 354, + "contribution": 1860, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "51761ce0-1591-4ba9-a503-7b0e9844095f", + "model": "evaluation.ratinganswercounter", + "pk": "f919f38e-4989-4bde-8104-875c4324a41b", "fields": { - "question": 364, - "contribution": 1287, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 255, + "contribution": 1658, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "5181ad29-d47e-45eb-a019-1c552c4f76e4", + "model": "evaluation.ratinganswercounter", + "pk": "f91cfd50-c166-45ae-9ee9-b560acf926f6", "fields": { - "question": 364, - "contribution": 3515, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 323, + "contribution": 3390, + "answer": 2, + "count": 14 } }, { - "model": "evaluation.textanswer", - "pk": "51b71f07-0656-458b-a7a8-432551e1e0bc", + "model": "evaluation.ratinganswercounter", + "pk": "f92a2ebe-8fdf-43bd-9fed-6ed939cc0c2f", "fields": { - "question": 358, - "contribution": 863, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 336, + "contribution": 804, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "51d8f1f1-95be-4262-9215-1adc3920fd3b", + "model": "evaluation.ratinganswercounter", + "pk": "f92ff9f6-511a-4715-8864-130d3e40bd09", "fields": { - "question": 373, - "contribution": 4072, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false + "question": 316, + "contribution": 4120, + "answer": 2, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "51dd0011-6867-4595-b78e-6b9e5d057820", + "model": "evaluation.ratinganswercounter", + "pk": "f93026f1-218e-489a-bda4-1377b2444034", "fields": { - "question": 342, - "contribution": 3372, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 259, + "contribution": 3679, + "answer": 2, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "526bfe9f-4ca4-4892-878f-c160a06cab2b", + "model": "evaluation.ratinganswercounter", + "pk": "f9302edb-4512-4078-b18d-7087eacbc282", "fields": { - "question": 358, - "contribution": 909, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 1881, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "52721e47-d1bd-4e92-b04d-4669cb2f4514", + "model": "evaluation.ratinganswercounter", + "pk": "f93dad2a-4476-4421-9bf0-d2d0578959ee", "fields": { - "question": 330, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 1809, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "52a583ca-a5a5-4bb9-b164-95081cf2f11b", + "model": "evaluation.ratinganswercounter", + "pk": "f9411327-a023-4f98-9092-aa59dbaf6c6b", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 3609, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "52b3dc45-cf67-4e92-b1bd-12a4224155b0", + "model": "evaluation.ratinganswercounter", + "pk": "f943df3f-988e-4889-b7cc-7e7e183c734d", "fields": { - "question": 364, - "contribution": 4148, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 3723, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "52fe4b28-8170-40dc-90dd-2c32b804b0d2", + "model": "evaluation.ratinganswercounter", + "pk": "f9460d25-7224-4e78-9722-3eac3589a7b9", "fields": { - "question": 373, - "contribution": 3466, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 4047, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "5328fea8-a28c-4e61-8a0c-5d10f1dec0c9", + "model": "evaluation.ratinganswercounter", + "pk": "f95a255c-3fe6-42f7-b7ca-a024086f4af2", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 260, + "contribution": 1612, + "answer": 1, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "5342def4-6380-4803-b2b5-6739724dd5ff", + "model": "evaluation.ratinganswercounter", + "pk": "f9623612-898a-41a1-9cae-b614c0f6ba53", "fields": { - "question": 324, - "contribution": 918, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 4002, + "answer": -2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5346bf22-6986-41a9-a578-b8aab74df311", + "model": "evaluation.ratinganswercounter", + "pk": "f96291e3-21ba-4ac6-9e07-a898e2d7a868", "fields": { - "question": 313, - "contribution": 3434, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 3848, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "535676a0-0ac2-4a69-9ea6-5d491ad64c9a", + "model": "evaluation.ratinganswercounter", + "pk": "f966a0e6-44f5-4e8a-94e3-728e8895d038", "fields": { - "question": 342, - "contribution": 3795, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 341, + "contribution": 3645, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "536db01d-7182-4580-8e59-990dccc281f5", + "model": "evaluation.ratinganswercounter", + "pk": "f96b10e2-44f0-4433-b6cf-e5ec47edc737", "fields": { - "question": 358, - "contribution": 3736, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 1809, + "answer": 1, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "53a81886-3d23-442b-8d9b-dc620b8f2bb9", + "model": "evaluation.ratinganswercounter", + "pk": "f96c9818-cc00-4309-bd52-ba3c3f86e13a", "fields": { - "question": 364, - "contribution": 1217, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 1694, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "53b36b90-e4ce-40ad-bfac-185841b9d01c", + "model": "evaluation.ratinganswercounter", + "pk": "f97a7b5c-54f2-40d5-b4f4-35e70743b9b4", "fields": { - "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 1188, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "53be696f-dc21-4682-af03-3957b69f8a60", + "model": "evaluation.ratinganswercounter", + "pk": "f9846029-360f-4528-987d-88b44c894919", "fields": { - "question": 313, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 369, + "contribution": 1827, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "54150e91-a0e9-481a-8c0b-87e3194d4ff3", + "model": "evaluation.ratinganswercounter", + "pk": "f98aa031-3957-4e76-b5a1-5e7b97e58683", "fields": { - "question": 364, - "contribution": 4129, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 869, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "5427c2f2-1588-4d5b-8287-766233453dbd", + "model": "evaluation.ratinganswercounter", + "pk": "f98c8cee-e60a-4dd9-9b6a-2e5908e89c0d", "fields": { - "question": 411, - "contribution": 4038, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 352, + "contribution": 3440, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "544a3f27-2120-48aa-afea-a9abaff62c91", + "model": "evaluation.ratinganswercounter", + "pk": "f99c12ad-c153-43cf-b99c-dc8cb93803c3", "fields": { - "question": 318, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 367, + "contribution": 3679, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5460ddd5-6dd1-4685-86c0-3e2dcc0f267a", + "model": "evaluation.ratinganswercounter", + "pk": "f9a93c29-2065-419b-9dc3-a35b6ffc5b09", "fields": { - "question": 364, - "contribution": 3556, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 1710, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "54e4ede8-7a95-428d-b852-b749959d0ca8", + "model": "evaluation.ratinganswercounter", + "pk": "f9af8958-7f6f-4581-91a4-0d0a29f04e2c", "fields": { - "question": 364, - "contribution": 4139, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 1634, + "answer": 2, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "55088787-6295-4500-952b-8e39d59de899", + "model": "evaluation.ratinganswercounter", + "pk": "f9b0fd74-70f9-4ea8-8e2c-7f0b84e1d046", "fields": { - "question": 330, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 788, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "551de1bf-fb92-4ba9-a0e5-bbb3858b48c9", + "model": "evaluation.ratinganswercounter", + "pk": "f9baab98-e0b5-461b-912a-189513759e12", "fields": { - "question": 430, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 341, + "contribution": 1702, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "552bcd79-3d6d-4d26-b1dc-d5b8d0163228", + "model": "evaluation.ratinganswercounter", + "pk": "f9cb7d3e-a0d9-4bc1-b1ed-02578e25f8d9", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 3440, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "552ccbc1-2c5c-4427-a6e7-12cccf52eaff", + "model": "evaluation.ratinganswercounter", + "pk": "f9d46fab-51b4-4dd3-b93a-0a262e5546cf", "fields": { - "question": 381, - "contribution": 3711, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 322, + "contribution": 862, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "55560920-3c79-417e-aa42-1afffb688980", + "model": "evaluation.ratinganswercounter", + "pk": "f9d9a054-edc2-415b-a34b-d1d6b581f081", "fields": { - "question": 314, - "contribution": 3472, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 1, + "contribution": 4302, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5578ad5f-2e53-48fd-9675-9ab9497453a9", + "model": "evaluation.ratinganswercounter", + "pk": "f9db54b2-49e6-4a53-9c9e-bf561154fe21", "fields": { - "question": 330, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 881, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "559f4b91-a025-4452-b0ad-85cdcded99af", + "model": "evaluation.ratinganswercounter", + "pk": "f9dd0fa6-971e-4a91-b74e-c09d8ca65eb9", "fields": { - "question": 342, - "contribution": 1662, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 919, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "55ad9b39-df01-4b4c-95a8-4af17e9efe8b", + "model": "evaluation.ratinganswercounter", + "pk": "f9e12c69-00c8-496a-b443-a9f5a6a9196e", "fields": { - "question": 313, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 3885, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "55ae0e6f-ea54-4ac4-b02f-aa3593c65e2c", + "model": "evaluation.ratinganswercounter", + "pk": "f9ef2460-80b8-4d5b-af98-90ecbca0d1ce", "fields": { - "question": 324, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 355, + "contribution": 1783, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "55b5edc0-72c1-461f-96e4-be570cd851cf", + "model": "evaluation.ratinganswercounter", + "pk": "f9f761d8-23ac-4e04-a947-906502369807", "fields": { - "question": 358, - "contribution": 909, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 3434, + "answer": 3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "55da14fd-38f9-43c7-9d94-86894e59fb7d", + "model": "evaluation.ratinganswercounter", + "pk": "fa07a7f7-6642-4689-9e7e-40c5ac087036", "fields": { - "question": 318, - "contribution": 3725, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 4085, + "answer": 1, + "count": 20 } }, { - "model": "evaluation.textanswer", - "pk": "55e971a9-3147-41ba-884c-755a28829a34", + "model": "evaluation.ratinganswercounter", + "pk": "fa124a52-ce11-46ed-bfd4-6836dcfef329", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 367, + "contribution": 1680, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "56387d0e-ef73-4765-939d-2e7470d83f92", + "model": "evaluation.ratinganswercounter", + "pk": "fa18a97e-6a8b-4409-ae1f-cd928a6fff34", "fields": { - "question": 393, - "contribution": 3775, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 1250, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "5651e68c-6909-4ca0-8935-44c689deabdb", + "model": "evaluation.ratinganswercounter", + "pk": "fa199c91-b266-41c7-856d-abc90b19b634", "fields": { - "question": 364, - "contribution": 1735, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 4128, + "answer": 2, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "56525ff3-f1ea-4cdf-b752-83e72d61816f", + "model": "evaluation.ratinganswercounter", + "pk": "fa1d7e10-b15b-4cd2-bda2-3670995a09d5", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 255, + "contribution": 4100, + "answer": 2, + "count": 12 } }, { - "model": "evaluation.textanswer", - "pk": "565ab66f-adc2-4876-9978-e93e1e88d871", + "model": "evaluation.ratinganswercounter", + "pk": "fa298f12-d020-40cc-b7d4-0421e2a96900", "fields": { - "question": 342, - "contribution": 886, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 912, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "565f5f73-cf9f-42d8-8f6b-5a3eed1ac25f", + "model": "evaluation.ratinganswercounter", + "pk": "fa32604a-dce5-46c5-b894-6b63d00af5b8", "fields": { - "question": 330, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 260, + "contribution": 1634, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "5675c5c8-593f-4704-8d18-8879d05df2bd", + "model": "evaluation.ratinganswercounter", + "pk": "fa326916-c48f-4bbe-908e-570a96117922", "fields": { - "question": 364, - "contribution": 3355, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 885, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "56a4f8de-ff1c-4e3d-b7ad-f37373d7a41c", + "model": "evaluation.ratinganswercounter", + "pk": "fa3932d5-85bf-4b04-9b7a-5938345eea24", "fields": { - "question": 342, - "contribution": 4002, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 461, + "contribution": 4283, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "56ac8fa3-007a-441d-9025-e241af00edfe", + "model": "evaluation.ratinganswercounter", + "pk": "fa3f2d9d-b3c4-4b0e-9659-25658b3d6868", "fields": { - "question": 313, - "contribution": 862, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 355, + "contribution": 4243, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "56b15df2-d33b-4559-8112-50f1549dd3b4", + "model": "evaluation.ratinganswercounter", + "pk": "fa3f2fa8-be49-4f72-aba4-340b25a236c2", "fields": { - "question": 318, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 331, + "contribution": 1634, + "answer": 3, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "56c4f601-6362-4af6-9838-8d91d40b6275", + "model": "evaluation.ratinganswercounter", + "pk": "fa496286-0947-48ce-8910-f6cd4b26a1b0", "fields": { - "question": 373, - "contribution": 3685, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 1157, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "56fed1de-894a-4d8f-8ee7-acd7e270fc67", + "model": "evaluation.ratinganswercounter", + "pk": "fa508cb0-2e51-4b5b-b59b-6dcfe965c9cd", "fields": { - "question": 318, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 435, + "contribution": 4052, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5721ae4d-ff9a-4d33-96f9-2ad9d00c05bb", + "model": "evaluation.ratinganswercounter", + "pk": "fa561790-d272-4e9f-863d-bb58f86207b9", "fields": { - "question": 314, - "contribution": 822, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 260, + "contribution": 880, + "answer": 1, + "count": 13 } }, { - "model": "evaluation.textanswer", - "pk": "572ed081-ac33-44a2-b37d-29ec5f6f9303", + "model": "evaluation.ratinganswercounter", + "pk": "fa59ead5-eeff-4dc3-91e3-c43269d4bd3f", "fields": { - "question": 330, - "contribution": 4120, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 1668, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5744385d-baa1-483e-a15e-5495ec92d3b1", + "model": "evaluation.ratinganswercounter", + "pk": "fa5cc6a8-d0d7-42b6-a2cd-af5759eaf29d", "fields": { - "question": 314, - "contribution": 3721, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 1781, + "answer": 1, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "578fe7b5-f972-4d92-b9d7-c553b7bdc1d9", + "model": "evaluation.ratinganswercounter", + "pk": "fa703c2d-b8a5-42ca-9eb3-3fdaa98b4176", "fields": { - "question": 342, - "contribution": 894, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 323, + "contribution": 1626, + "answer": 2, + "count": 10 } }, { - "model": "evaluation.textanswer", - "pk": "57c755cc-605c-470c-b2ff-c433954f977d", + "model": "evaluation.ratinganswercounter", + "pk": "fa7473e2-dd98-472d-a3c6-535991e6a428", "fields": { - "question": 364, - "contribution": 3893, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 788, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "58460c96-58e9-4a48-8a5a-eff321be8629", + "model": "evaluation.ratinganswercounter", + "pk": "fa75e658-a3f6-4f78-b9bf-bb11bce38142", "fields": { - "question": 318, - "contribution": 4118, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 257, + "contribution": 1658, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "5856ea1f-7724-4625-8987-f87e7491b54c", + "model": "evaluation.ratinganswercounter", + "pk": "fa761de2-1e13-47aa-9169-61232c30a9d6", "fields": { - "question": 364, + "question": 367, + "contribution": 4022, + "answer": 1, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "fa7a86e7-5a8a-474f-95e3-c60605835e4d", + "fields": { + "question": 360, "contribution": 3893, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "answer": 1, + "count": 18 } }, { - "model": "evaluation.textanswer", - "pk": "586b0ba2-1f4c-4dd9-a7c8-1606ab29802d", + "model": "evaluation.ratinganswercounter", + "pk": "fa810e64-e952-4f0c-ab3a-bf9dd913105c", "fields": { - "question": 330, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 3404, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "58783dfa-0813-4e9e-b8dd-009c2a7686e6", + "model": "evaluation.ratinganswercounter", + "pk": "fa833666-87b4-4cde-949f-2f14852c4f4e", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 472, + "contribution": 4094, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "587c51ba-858a-4e6e-a3ac-2dc04795f417", + "model": "evaluation.ratinganswercounter", + "pk": "fa8c1693-41cd-4dd7-9fcc-b70e7e2c8d64", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 1612, + "answer": 3, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "58b9127d-0c33-4f2c-858c-1a1a284756e9", + "model": "evaluation.ratinganswercounter", + "pk": "fa8c3947-80dc-417d-b6d7-a8191cf8538a", "fields": { - "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 1612, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "58d73162-d9bb-4fff-88d9-b26816e3ff70", + "model": "evaluation.ratinganswercounter", + "pk": "fa8e1032-4d58-490c-8c81-6f5859d9fd14", "fields": { - "question": 342, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 1243, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "59100fba-7a96-4b95-990a-68b5663c007a", + "model": "evaluation.ratinganswercounter", + "pk": "fa9bd076-b3c6-49e9-82ab-a84627bb0199", "fields": { - "question": 364, - "contribution": 4192, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 3606, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "593337a7-060c-47ea-ac52-5afc9c92d007", + "model": "evaluation.ratinganswercounter", + "pk": "faa10715-4ea5-4e07-8ea4-8c290274af32", "fields": { - "question": 364, - "contribution": 4129, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 259, + "contribution": 4138, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "595448ff-c531-4562-adb8-2795f927eeaa", + "model": "evaluation.ratinganswercounter", + "pk": "faa123b9-4324-409d-9629-8786d7c64b23", "fields": { - "question": 318, - "contribution": 3739, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 3796, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "596b1a98-f75f-4251-9646-708455d0cc5f", + "model": "evaluation.ratinganswercounter", + "pk": "faa487fb-0d1a-489a-96a5-e66259080102", "fields": { - "question": 314, - "contribution": 1680, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 4021, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "599fb8d0-72b1-410c-aa06-4c363db41776", + "model": "evaluation.ratinganswercounter", + "pk": "fab47b6d-fb2f-4cef-8b9f-8182a0298a6c", "fields": { - "question": 313, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 3934, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "59a6faa1-1a76-48f8-93bc-6f2e64f4b91d", + "model": "evaluation.ratinganswercounter", + "pk": "fab6a186-dda1-4376-b77e-f84ac593f5b4", "fields": { - "question": 365, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 4153, + "answer": -2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "59b42708-0dcc-49ce-b630-8f3edea7cdd7", + "model": "evaluation.ratinganswercounter", + "pk": "fac543c1-ae61-4651-8a79-faec3cfddbd5", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 370, + "contribution": 3545, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5a0565a8-5944-47e0-8838-e3d2644c4537", + "model": "evaluation.ratinganswercounter", + "pk": "fac8b5dd-e29e-45a9-9d26-d9b7bab2e704", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 337, + "contribution": 1640, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5a30edd8-edaf-47fd-9091-cbb19ee6770a", + "model": "evaluation.ratinganswercounter", + "pk": "facb8d4c-b699-4547-90ba-543c328c33e5", "fields": { - "question": 313, - "contribution": 4028, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 1867, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5a450c64-0adb-426e-bc40-3c6960d06793", + "model": "evaluation.ratinganswercounter", + "pk": "facf1cbc-8a25-453b-8c51-9fd5a342db1c", "fields": { - "question": 313, - "contribution": 880, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 438, + "contribution": 4140, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5a556bb2-e36c-406a-ad33-e3abf294dda4", + "model": "evaluation.ratinganswercounter", + "pk": "fad1885f-70e3-403f-84de-e8ebcab11830", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 4020, + "answer": 0, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "5a67150f-572b-4e86-93cb-84fb9e26be05", + "model": "evaluation.ratinganswercounter", + "pk": "fad2326b-b08c-4590-8f92-d4ff83a574a2", "fields": { - "question": 353, - "contribution": 1256, - "answer": "Lorem ipsum dolor sit amet", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 3526, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5a7ccdab-041e-46a9-94f9-9416e748998f", + "model": "evaluation.ratinganswercounter", + "pk": "fad3b992-c592-45d4-bf6f-01e02e24a660", "fields": { - "question": 364, - "contribution": 3594, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 402, + "contribution": 4119, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "5a98a6e8-48c2-4a38-a297-c1963fe00b47", + "model": "evaluation.ratinganswercounter", + "pk": "fadd6851-d919-4762-9659-23f87fdbeb99", "fields": { - "question": 313, - "contribution": 3422, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 371, + "contribution": 3961, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5aaefb7f-f223-4f93-a838-ea665552ef56", + "model": "evaluation.ratinganswercounter", + "pk": "fadded81-883d-427e-88e7-f3ee745802f6", "fields": { - "question": 364, - "contribution": 3666, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 3519, + "answer": 1, + "count": 11 } }, { - "model": "evaluation.textanswer", - "pk": "5b128b36-868e-481c-add3-9748570fc248", + "model": "evaluation.ratinganswercounter", + "pk": "fae1c60b-db19-4e4c-ba71-bb743a739af0", "fields": { - "question": 330, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 1206, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5b4a45e8-4b5f-41d2-a887-d35d91081f0a", + "model": "evaluation.ratinganswercounter", + "pk": "fae94c32-e73a-4a56-b4de-cdd0226d1c8c", "fields": { - "question": 364, - "contribution": 4117, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 262, + "contribution": 3474, + "answer": 2, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "5b5d0481-5485-4834-8182-ad32b6bae552", + "model": "evaluation.ratinganswercounter", + "pk": "fafcd5a7-4279-4198-8ad8-4d9cfbb4380b", "fields": { - "question": 313, + "question": 315, "contribution": 3434, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "answer": 1, + "count": 19 } }, { - "model": "evaluation.textanswer", - "pk": "5b66a4f3-8225-484d-9963-2528514654dc", + "model": "evaluation.ratinganswercounter", + "pk": "faff7206-f7d1-46ef-a25c-795286329805", "fields": { - "question": 314, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 4085, + "answer": -1, + "count": 12 } }, { - "model": "evaluation.textanswer", - "pk": "5b96abf1-202d-44a6-990e-7758b87375c0", + "model": "evaluation.ratinganswercounter", + "pk": "fb000bd9-3021-4661-a24a-38ca1bd28339", "fields": { - "question": 313, - "contribution": 4100, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 370, + "contribution": 3517, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5bc6dc7f-1278-4cb6-be00-d481c662c285", + "model": "evaluation.ratinganswercounter", + "pk": "fb06adee-7f45-4e6a-adac-d4baa7432cd4", "fields": { - "question": 373, - "contribution": 1748, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 359, + "contribution": 3942, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5bf093e9-7100-4c33-ad72-3bbf951534eb", + "model": "evaluation.ratinganswercounter", + "pk": "fb08f58d-5f0b-4e1a-b1fe-4760795a3527", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 322, + "contribution": 1724, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "5c38dee4-13e7-439e-b4b9-353301b0f7a9", + "model": "evaluation.ratinganswercounter", + "pk": "fb0db2df-1bd3-43d1-9d9f-53ebe537f262", "fields": { - "question": 313, - "contribution": 880, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 257, + "contribution": 884, + "answer": 1, + "count": 26 } }, { - "model": "evaluation.textanswer", - "pk": "5c3b7976-fd49-4607-9d5d-f837bff008ab", + "model": "evaluation.ratinganswercounter", + "pk": "fb2a6718-1763-48ca-a498-b2b3362a4691", "fields": { - "question": 313, - "contribution": 1634, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 4129, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "5c5e7749-dcf8-4d1e-bf52-6f804a51cec5", + "model": "evaluation.ratinganswercounter", + "pk": "fb2e843a-5aa8-4fc6-94f0-16dbcb9a217d", "fields": { - "question": 342, - "contribution": 886, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 363, + "contribution": 3929, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "5c5ff514-8af1-47a4-a285-af7c5dd30669", + "model": "evaluation.ratinganswercounter", + "pk": "fb35d544-4cbd-446f-827f-c0363e218301", "fields": { - "question": 364, - "contribution": 885, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 315, + "contribution": 4118, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5c83c577-373a-4701-9e1f-c27257f0eeaf", + "model": "evaluation.ratinganswercounter", + "pk": "fb3bd366-2cee-4bb1-bbc2-6650f583d597", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 323, + "contribution": 880, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5cbc90e9-676a-4441-a737-7eb1667f7924", + "model": "evaluation.ratinganswercounter", + "pk": "fb4273f4-823a-4a5a-9f46-5b6d2cd13db1", "fields": { - "question": 364, - "contribution": 4047, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 336, + "contribution": 3785, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5cc8216e-e7f3-4323-9cf6-3320cf0172b9", + "model": "evaluation.ratinganswercounter", + "pk": "fb444a3f-add1-4b9a-a66b-64caab126237", "fields": { - "question": 364, - "contribution": 4187, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 3556, + "answer": 1, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "5ccfa6d3-2a74-4c9c-87c7-2202be3d4ba8", + "model": "evaluation.ratinganswercounter", + "pk": "fb54a904-adaa-44cb-819f-a639bdd314e6", "fields": { - "question": 318, - "contribution": 3725, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 476, + "contribution": 1626, + "answer": -2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5cd7cc55-2174-445e-ae55-35d1cafeaa71", + "model": "evaluation.ratinganswercounter", + "pk": "fb618b2c-5a04-40da-aef8-6ef713f851e8", "fields": { - "question": 364, - "contribution": 3921, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 3739, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5cd8320c-0730-40e8-9c57-2f7ca3874610", + "model": "evaluation.ratinganswercounter", + "pk": "fb670a42-8eec-4447-8f71-48ceb884f24e", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 4101, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "5d118f30-73eb-481f-9393-a04eff7faa74", + "model": "evaluation.ratinganswercounter", + "pk": "fb782421-b618-4ac5-89ff-a30e8cc991ca", "fields": { - "question": 313, - "contribution": 880, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 366, + "contribution": 3553, + "answer": 4, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "5d1aff42-8d35-4909-b72a-1a2080cfeeaa", + "model": "evaluation.ratinganswercounter", + "pk": "fb83afe8-f49b-45d2-8d55-e86c6a924934", "fields": { - "question": 318, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 3406, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5d5b0184-e057-42f9-99d1-7d0431478e8a", + "model": "evaluation.ratinganswercounter", + "pk": "fb854257-a05e-4f7b-8971-85d8c69f2886", "fields": { "question": 319, - "contribution": 864, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "contribution": 1634, + "answer": 2, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "5d63e00c-76ff-4d19-a2a2-2133ef0f61b2", + "model": "evaluation.ratinganswercounter", + "pk": "fb8b818c-a794-4df8-ae16-447eaf259aca", "fields": { - "question": 364, - "contribution": 4129, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 3609, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5d63e70f-4c2b-4dc9-bde1-d1b149d2ac56", + "model": "evaluation.ratinganswercounter", + "pk": "fb93a0b5-22d9-46a6-b22e-64a3b4bd5311", "fields": { - "question": 364, - "contribution": 3740, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 4128, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5d73b8bd-aff4-4848-954b-9eb575e7e415", + "model": "evaluation.ratinganswercounter", + "pk": "fb9d9be5-199e-41a4-9e38-1a629fdb296a", "fields": { - "question": 330, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 363, + "contribution": 3650, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5d9e8560-9b03-4aab-a920-84117d253406", + "model": "evaluation.ratinganswercounter", + "pk": "fba5bb6b-6494-4948-bd34-b0bfbf74f9b3", "fields": { - "question": 364, - "contribution": 3852, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 348, + "contribution": 3879, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5db3151d-056a-4c64-9354-ca8fa2ba60f2", + "model": "evaluation.ratinganswercounter", + "pk": "fba63593-e97c-403d-88b8-bc026fe679c2", "fields": { - "question": 364, - "contribution": 3855, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 369, + "contribution": 1811, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5dc39e78-9f63-4ef8-832a-e66dce0347b1", + "model": "evaluation.ratinganswercounter", + "pk": "fbab7635-a449-4cb8-a0c6-a0dca6aca2e2", "fields": { - "question": 324, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 4153, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "5dffe771-b7d0-4d0f-8fea-f7aa2058768f", + "model": "evaluation.ratinganswercounter", + "pk": "fbadf2ef-d9e6-429e-923c-9fffdd7daedf", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 395, + "contribution": 3711, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5e408edb-b9da-4ac0-82f7-6516c8d88d20", + "model": "evaluation.ratinganswercounter", + "pk": "fbbaf8fc-ec12-4d9b-afcd-8d5dc63805a7", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 1288, + "answer": 1, + "count": 19 } }, { - "model": "evaluation.textanswer", - "pk": "5ea62151-8a82-439e-940c-479d1aa587ab", + "model": "evaluation.ratinganswercounter", + "pk": "fbc29f89-1b24-45e1-8b0e-dd908556ef4a", "fields": { - "question": 373, - "contribution": 3454, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 1702, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "5eccbb30-1fc1-43f4-8a8e-b28b5a4f142e", + "model": "evaluation.ratinganswercounter", + "pk": "fbc3ef7f-dadb-4125-b95c-d3ec4f1fefb7", "fields": { - "question": 364, - "contribution": 3608, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 886, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5ef136d7-a495-4368-9e2c-d536e9415615", + "model": "evaluation.ratinganswercounter", + "pk": "fbc412f5-d155-4482-9a8f-4bab2324e0c4", "fields": { - "question": 318, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 337, + "contribution": 1702, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5ef3b847-a63b-4e6c-b584-b5ab8e989e68", + "model": "evaluation.ratinganswercounter", + "pk": "fbdfaa34-83f0-4ae8-bc45-7a6faa0377ea", "fields": { - "question": 324, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 1660, + "answer": 0, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "5efa5086-a4be-42b3-b316-85e5e930b50c", + "model": "evaluation.ratinganswercounter", + "pk": "fbdff485-8293-4f69-a01b-497829edf471", "fields": { - "question": 313, - "contribution": 1634, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 356, + "contribution": 1256, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "5f156288-ed1d-4c42-9b84-bfa5cee5cd8c", + "model": "evaluation.ratinganswercounter", + "pk": "fbe39b4b-36dd-4864-bd25-10e54ff2220d", "fields": { - "question": 324, - "contribution": 918, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 262, + "contribution": 1626, + "answer": 2, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "5f15e0e3-00e0-4356-8149-8e73357156f2", + "model": "evaluation.ratinganswercounter", + "pk": "fbe68bb9-8c98-424c-b80f-002505560ea5", "fields": { - "question": 324, - "contribution": 886, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 4278, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "5f20546c-0869-42b9-a40c-97cd213cc287", + "model": "evaluation.ratinganswercounter", + "pk": "fbe7f692-4ee2-42c3-8968-4bdf5d03b2c4", "fields": { - "question": 324, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 471, + "contribution": 4090, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "5f2f7abd-7a21-4d2c-994e-e6f5ef1a1b3e", + "model": "evaluation.ratinganswercounter", + "pk": "fbed3a09-f6e8-4e45-84dc-270c0be46325", "fields": { - "question": 318, + "question": 320, "contribution": 4100, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "answer": 3, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "5f80ad80-5b78-4fa1-9a78-0be344cefbe4", + "model": "evaluation.ratinganswercounter", + "pk": "fbfbe736-df17-44df-a782-d189eeef27f6", "fields": { - "question": 364, - "contribution": 3536, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 3373, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "5f8995cf-1382-4b80-9d0c-6f2324f5772b", + "model": "evaluation.ratinganswercounter", + "pk": "fc06825a-b9fb-4d95-b931-2d0c519b6492", "fields": { - "question": 314, - "contribution": 880, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 1235, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "5fb14d45-a7ac-436a-a929-4b09c1868d3c", + "model": "evaluation.ratinganswercounter", + "pk": "fc092130-a717-4724-a184-a41578d17b8d", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 472, + "contribution": 3486, + "answer": 5, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "5fc192c3-397a-4b6f-86ae-89a3b962664c", + "model": "evaluation.ratinganswercounter", + "pk": "fc095924-445b-4fa2-9b76-bdde61e8888c", "fields": { - "question": 373, - "contribution": 3508, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 335, + "contribution": 3598, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "5fe510cb-4e3d-4f12-9b14-baaba58c2b10", + "model": "evaluation.ratinganswercounter", + "pk": "fc10e6cd-8166-4a72-8b09-403f9ca7e997", "fields": { - "question": 364, - "contribution": 1635, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 3855, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "5ff1e8bd-3954-44a7-9b0a-87eb974c70ea", + "model": "evaluation.ratinganswercounter", + "pk": "fc13310e-73a7-409d-aa5a-c6a8e0eef7fb", "fields": { - "question": 364, - "contribution": 1802, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 408, + "contribution": 4038, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "60278d13-0d39-4ac5-bd43-63df9812e0f6", + "model": "evaluation.ratinganswercounter", + "pk": "fc17f7c5-9378-4782-9637-61ccf9384776", "fields": { - "question": 364, - "contribution": 3391, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 390, + "contribution": 3711, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6034f728-da7a-4038-93e1-79bc44698b1e", + "model": "evaluation.ratinganswercounter", + "pk": "fc2b7168-9029-4a7b-b275-8816e17a54c0", "fields": { - "question": 318, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 458, + "contribution": 4283, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "60582678-c49a-48c1-8dbd-fd9886833553", + "model": "evaluation.ratinganswercounter", + "pk": "fc321c79-da45-4ade-9df5-c3a473149bd0", "fields": { - "question": 314, - "contribution": 884, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 3822, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "606692c6-ef06-46c8-b6b8-6efe7a17c361", + "model": "evaluation.ratinganswercounter", + "pk": "fc330c0f-1840-48dd-9c81-0110110ef6a8", "fields": { - "question": 314, - "contribution": 880, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 1860, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "609172d8-3878-4677-bce8-1eef255fcdda", + "model": "evaluation.ratinganswercounter", + "pk": "fc35ccfe-4887-4e41-ab4c-314ac0cc7f8a", "fields": { - "question": 364, - "contribution": 1779, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 3435, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "60eb919a-768d-493c-8fd7-70c9bcf3e770", + "model": "evaluation.ratinganswercounter", + "pk": "fc3cc709-76ed-4a6b-bfe0-893675225236", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 3473, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "60f75fd2-413b-4b9b-a1fd-949283ed2f64", + "model": "evaluation.ratinganswercounter", + "pk": "fc40ef0d-a085-4787-bbd7-e36a83ab9cff", "fields": { - "question": 314, - "contribution": 1837, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 3740, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "60fc4c77-6424-4339-9e8e-0342da7699ff", + "model": "evaluation.ratinganswercounter", + "pk": "fc4ee642-693e-4ee4-a198-f4b1d7b4eac3", "fields": { - "question": 342, - "contribution": 3466, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 908, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "610a4438-caf7-46fa-99f4-127aca5a644b", + "model": "evaluation.ratinganswercounter", + "pk": "fc53cf90-1949-4621-8b35-10d768248384", "fields": { - "question": 364, - "contribution": 4204, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 367, + "contribution": 4116, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "613fd5dd-a4eb-4302-af74-2dc6e0b0092e", + "model": "evaluation.ratinganswercounter", + "pk": "fc55c3b3-9730-418e-99e6-57ee2b36a01b", "fields": { - "question": 314, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 4052, + "answer": -1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6158f1d5-fc28-4245-9ca3-b7747966012b", + "model": "evaluation.ratinganswercounter", + "pk": "fc57d56f-469f-4bdb-adcf-3ec6431c36e6", "fields": { - "question": 313, - "contribution": 3434, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 1837, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "615efdba-13b2-4c02-aabf-ab09adc7590d", + "model": "evaluation.ratinganswercounter", + "pk": "fc5e5300-3814-41b1-a7c3-ebddd3e36736", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 3546, + "answer": 1, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "6164d07e-e528-469a-8bea-7a04ac55564f", + "model": "evaluation.ratinganswercounter", + "pk": "fc79093e-7b11-486a-9982-076f4970c53b", "fields": { - "question": 364, - "contribution": 1204, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 3726, + "answer": 2, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "6167de9a-e325-4a86-88d6-4aa9138d9e96", + "model": "evaluation.ratinganswercounter", + "pk": "fc7fcd21-58b1-4c9b-bca4-8d7f9967641c", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 4052, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "617a842a-fe6e-472e-bbb8-0ee651da502e", + "model": "evaluation.ratinganswercounter", + "pk": "fc88fe4e-091b-4dde-b6cb-f68f39a93e33", "fields": { - "question": 318, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 1228, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6190e19a-c74c-459f-8769-a0368df41c7d", + "model": "evaluation.ratinganswercounter", + "pk": "fc8beb52-f769-40ce-b95a-f4ecc2a4f74e", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 4123, + "answer": 5, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "61b0dd87-c26d-4432-800f-bb9f676a4147", + "model": "evaluation.ratinganswercounter", + "pk": "fc8e5a09-87f4-450f-9b5e-7825555943db", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 255, + "contribution": 4100, + "answer": 1, + "count": 11 } }, { - "model": "evaluation.textanswer", - "pk": "61b8eba7-1b58-4fc8-82a9-01e954d33678", + "model": "evaluation.ratinganswercounter", + "pk": "fc91cbf6-d538-446c-9124-c20dc09331d1", "fields": { - "question": 364, - "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 339, + "contribution": 3685, + "answer": 0, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "61c1208a-5b67-4545-a02a-f2d0b64929e9", + "model": "evaluation.ratinganswercounter", + "pk": "fc978667-3ffd-4f85-9b37-968932965578", "fields": { - "question": 324, - "contribution": 1710, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 880, + "answer": 1, + "count": 17 } }, { - "model": "evaluation.textanswer", - "pk": "61f6142a-3663-4e56-87db-b9129f0553b8", + "model": "evaluation.ratinganswercounter", + "pk": "fc978937-81a7-4bd7-8cd9-26c70b0cfba1", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 1868, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "61f7e13c-ee56-41c9-902d-0584591dc472", + "model": "evaluation.ratinganswercounter", + "pk": "fc9c5c00-b67c-4ea9-bc15-be1d3fbb77ff", "fields": { - "question": 364, - "contribution": 4205, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 366, + "contribution": 3552, + "answer": 3, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "61fa63f7-5277-40d6-a70a-e81ebb842113", + "model": "evaluation.ratinganswercounter", + "pk": "fc9e3272-5f63-41cf-bb1e-784963ef262b", "fields": { - "question": 364, - "contribution": 3895, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 4153, + "answer": 1, + "count": 14 } }, { - "model": "evaluation.textanswer", - "pk": "62009b2d-5183-4ca1-8b14-64327beaefdd", + "model": "evaluation.ratinganswercounter", + "pk": "fca2e5f6-ab66-47d4-b761-a364362c6b94", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 887, + "answer": 2, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "62031216-fa7b-42b6-90b1-c42f709b7e32", + "model": "evaluation.ratinganswercounter", + "pk": "fcad1aea-cae3-44a3-a48d-4578ce3972c6", "fields": { - "question": 318, + "question": 260, "contribution": 4138, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "answer": 2, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "6207a9d3-ad6c-4b68-82e7-4b2b6157fcf7", + "model": "evaluation.ratinganswercounter", + "pk": "fcb5e1c4-9276-410e-8071-8d9337a70502", "fields": { - "question": 314, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 1734, + "answer": 0, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "621b886a-ffa8-4e9c-a6f4-b0a6dd16490f", + "model": "evaluation.ratinganswercounter", + "pk": "fcba6c7f-2216-427d-b027-4f0b93591c42", "fields": { - "question": 364, - "contribution": 3556, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 320, + "contribution": 1658, + "answer": 2, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "6244e5c2-22d1-415d-a868-9a8bd5ec9ccb", + "model": "evaluation.ratinganswercounter", + "pk": "fcc955fb-a987-4c5f-805e-ec27b65da3e7", "fields": { - "question": 330, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 4002, + "answer": -1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "62b882a2-1996-48b2-b3db-068dba911136", + "model": "evaluation.ratinganswercounter", + "pk": "fcce5dda-a276-4e1c-a24b-931597dc2f41", "fields": { - "question": 364, - "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 369, + "contribution": 3637, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "62e7d732-f86c-4c48-afdc-6a2eea1557f2", + "model": "evaluation.ratinganswercounter", + "pk": "fcd510ab-1079-4ae0-b042-e274a00c2b82", "fields": { - "question": 324, + "question": 477, + "contribution": 4117, + "answer": 3, + "count": 2 + } +}, +{ + "model": "evaluation.ratinganswercounter", + "pk": "fcf10593-dcdf-4030-9c7d-72e4dd46add7", + "fields": { + "question": 322, "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "answer": 1, + "count": 26 } }, { - "model": "evaluation.textanswer", - "pk": "62f832bc-17b6-4bf3-8a60-3b09264cdd94", + "model": "evaluation.ratinganswercounter", + "pk": "fcf46b5a-cbfb-4176-8e47-e00e61c7a159", "fields": { - "question": 313, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 908, + "answer": 2, + "count": 14 } }, { - "model": "evaluation.textanswer", - "pk": "631d7ad0-3176-4280-ada0-dc60d2c8ae06", + "model": "evaluation.ratinganswercounter", + "pk": "fd0870eb-c3cb-42a5-af5a-a374d5b24080", "fields": { - "question": 314, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 463, + "contribution": 4073, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "633eacd9-fe29-49a1-8031-130365b18561", + "model": "evaluation.ratinganswercounter", + "pk": "fd087c94-fb72-4260-9b92-c3cbed184360", "fields": { - "question": 318, - "contribution": 3472, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 333, + "contribution": 3961, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "634fb610-faf1-4f72-a70f-40afd0b39cbf", + "model": "evaluation.ratinganswercounter", + "pk": "fd30ee38-4457-4dd1-b8b7-2ce503f52a20", "fields": { - "question": 313, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 3726, + "answer": 3, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "634fea82-b86a-4be6-92a8-26cae25fc283", + "model": "evaluation.ratinganswercounter", + "pk": "fd342a83-192e-4aa2-9092-8f37f5f46d16", "fields": { - "question": 324, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 3939, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "638ad7ff-7ff6-4ec1-b1fd-9143ebb7ed7e", + "model": "evaluation.ratinganswercounter", + "pk": "fd3ab90f-1e54-4ef5-aa5a-124361671cdb", "fields": { - "question": 330, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 352, + "contribution": 788, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "638c5d80-71e7-4844-b0fe-f2969998773d", + "model": "evaluation.ratinganswercounter", + "pk": "fd416aff-fcb1-457a-bf19-c19b8aa02cdf", "fields": { - "question": 314, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 367, + "contribution": 4128, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "639376db-87b1-48d1-9c56-5ce0a1521706", + "model": "evaluation.ratinganswercounter", + "pk": "fd495c5b-8548-424f-be54-004b1ab70519", "fields": { - "question": 330, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 383, + "contribution": 3755, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "63dc185d-b33a-4f35-a1f2-ef42b5998ffe", + "model": "evaluation.ratinganswercounter", + "pk": "fd5c6bea-8575-4c45-8321-9be591782991", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 3390, + "answer": 0, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "640e20f1-d3b2-463b-8e71-1d2da798ea4b", + "model": "evaluation.ratinganswercounter", + "pk": "fd5f7d01-abc4-4709-b88f-d8cc100db2b5", "fields": { - "question": 318, - "contribution": 3739, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 1776, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "64222f40-c181-4ae0-8b0f-f0aa229a56c2", + "model": "evaluation.ratinganswercounter", + "pk": "fd5ff980-0294-412f-a1b0-f0417fc6b5a8", "fields": { - "question": 313, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 1880, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6422f8e2-b683-49ed-aa3d-891f51a08a62", + "model": "evaluation.ratinganswercounter", + "pk": "fd694543-fbb8-45f4-9939-09496dfbad1b", "fields": { - "question": 342, - "contribution": 3404, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 371, + "contribution": 3552, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "642cf128-b9ae-474c-a6b0-4a4f4a83efbb", + "model": "evaluation.ratinganswercounter", + "pk": "fd73af12-9476-4885-94ce-3f3b8967507b", "fields": { - "question": 364, - "contribution": 4190, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 351, + "contribution": 3745, + "answer": 3, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "647faaaa-e10f-4e2f-89ba-73b42257daf0", + "model": "evaluation.ratinganswercounter", + "pk": "fd7a45b7-c0cd-4f92-8e0f-8adcaa1cc1b4", "fields": { - "question": 364, - "contribution": 4129, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 322, + "contribution": 4120, + "answer": 3, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "64a26856-2eb8-4989-8812-ec13c78fc06b", + "model": "evaluation.ratinganswercounter", + "pk": "fd7ee7fe-3cc4-4ef5-b75e-15421a94b0c8", "fields": { - "question": 364, - "contribution": 3373, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 1779, + "answer": -3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "64c5c7c9-b4f5-45af-8757-a3a61e3a2809", + "model": "evaluation.ratinganswercounter", + "pk": "fd7fd73a-2cb7-4f30-92fd-7997a994e323", "fields": { - "question": 314, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 3394, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "64ceca50-443b-4137-88c6-de51ce995f11", + "model": "evaluation.ratinganswercounter", + "pk": "fd84182c-597e-428f-829b-998076f8d20f", "fields": { - "question": 440, - "contribution": 4008, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 476, + "contribution": 4046, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "64ea4781-29aa-4970-8715-6d13e56d8b42", + "model": "evaluation.ratinganswercounter", + "pk": "fd8a01c3-75de-4370-ac00-beaae8df4786", "fields": { - "question": 313, - "contribution": 912, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 337, + "contribution": 3703, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "64f6d3c8-c557-41fd-88cf-dde2f8d9282a", + "model": "evaluation.ratinganswercounter", + "pk": "fd8adff4-f11c-4c35-9ed7-e9b09c8d14a8", "fields": { - "question": 373, - "contribution": 3685, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 3610, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "64fc5fde-ada3-4191-abd5-316dda013b62", + "model": "evaluation.ratinganswercounter", + "pk": "fd9606e4-8643-4889-9241-8eeacbb37e79", "fields": { - "question": 313, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 343, + "contribution": 3528, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "65134aec-3b0f-4093-94ca-e81a21b46523", + "model": "evaluation.ratinganswercounter", + "pk": "fd9da0af-0e07-4b0b-b446-5dd661f63e2f", "fields": { - "question": 324, - "contribution": 3693, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 317, + "contribution": 4046, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6515984f-2c63-4a1d-a580-e6e10a3a84db", + "model": "evaluation.ratinganswercounter", + "pk": "fda0f227-98a9-411e-b693-2033c2389d5c", "fields": { - "question": 364, - "contribution": 1235, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 1246, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6516d2f3-044e-4c88-b4fb-4bd497450ab2", + "model": "evaluation.ratinganswercounter", + "pk": "fdab057b-44ae-49f2-b632-db153f96510b", "fields": { - "question": 342, - "contribution": 1644, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 1205, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6537b906-6202-45d6-b4f1-255c09f7d9be", + "model": "evaluation.ratinganswercounter", + "pk": "fdaba8ad-7293-480e-8aca-4758929a8b70", "fields": { - "question": 324, - "contribution": 804, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 257, + "contribution": 3390, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "653c0c8e-516a-47fe-91d0-213584d402cd", + "model": "evaluation.ratinganswercounter", + "pk": "fdabe378-aa26-407d-8707-b6742c318148", "fields": { - "question": 358, - "contribution": 4152, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 359, + "contribution": 3921, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "654ec66a-fb24-4401-ab4c-90648ed19cff", + "model": "evaluation.ratinganswercounter", + "pk": "fdaf1d01-94db-4f10-96e5-03c83cb1675f", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 3515, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "65560cb0-b0d1-4cbe-9636-6fa9eb1d25e2", + "model": "evaluation.ratinganswercounter", + "pk": "fdb159f9-b1b8-4e87-b0e4-4e9e58e51f30", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 1250, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "657e7729-6106-43b9-9ff1-4be4ba4bed94", + "model": "evaluation.ratinganswercounter", + "pk": "fdc78eef-6ae9-4e6a-b06a-559755576f7c", "fields": { - "question": 324, - "contribution": 3685, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 319, + "contribution": 4128, + "answer": 3, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "6599730b-f03c-4b01-bf6d-80727defc57d", + "model": "evaluation.ratinganswercounter", + "pk": "fdc84740-e3b3-4c94-a8fb-dddc5d8d2fad", "fields": { - "question": 314, - "contribution": 884, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 325, + "contribution": 1186, + "answer": 1, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "65b79d84-b103-4a08-b9a0-37b8fc481d22", + "model": "evaluation.ratinganswercounter", + "pk": "fdd075cd-a144-4183-986d-0943d7d67948", "fields": { - "question": 313, - "contribution": 3462, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 4152, + "answer": 1, + "count": 23 } }, { - "model": "evaluation.textanswer", - "pk": "65bd285d-39aa-416e-9972-e3d07daf78ed", + "model": "evaluation.ratinganswercounter", + "pk": "fdd43973-1798-4f2f-9cd7-275b11f39bf6", "fields": { - "question": 313, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 1748, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "66329076-1c8a-463a-94c8-4bd535a47478", + "model": "evaluation.ratinganswercounter", + "pk": "fdd50e80-73c4-4c52-96c3-ee4ff79a05a5", "fields": { - "question": 440, - "contribution": 4140, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 3422, + "answer": 3, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "66373a8a-fafe-4942-9b97-92576e65e2cf", + "model": "evaluation.ratinganswercounter", + "pk": "fde6d662-1b56-4c4d-a245-fa363d3eac77", "fields": { - "question": 324, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 1187, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "664a2a0f-5b14-4111-9d51-1f5a9a0da53e", + "model": "evaluation.ratinganswercounter", + "pk": "fde91f59-439b-4cae-aa9e-a6ca86340b0f", "fields": { - "question": 313, - "contribution": 912, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 3740, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6660ea3b-ef40-4271-b593-96d3c2e66734", + "model": "evaluation.ratinganswercounter", + "pk": "fdf4b3be-3e77-4823-85aa-b19d9331090b", "fields": { - "question": 330, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 363, + "contribution": 3648, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "6665e047-c284-46c3-a924-47db94187437", + "model": "evaluation.ratinganswercounter", + "pk": "fdf865a5-0355-4d55-b294-24ea87fc582b", "fields": { - "question": 364, - "contribution": 4261, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 323, + "contribution": 1724, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6677637c-86e6-4005-9dca-1709cfe3b317", + "model": "evaluation.ratinganswercounter", + "pk": "fdf921be-884d-4164-ac3c-0dddafe47a30", "fields": { - "question": 364, - "contribution": 3726, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 3530, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "667c8f6b-6cad-4bfc-b85c-e59a8671ed74", + "model": "evaluation.ratinganswercounter", + "pk": "fe0b3fca-143c-4c81-bf43-e933b66065fc", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 255, + "contribution": 884, + "answer": 3, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "66a70bbe-ba7b-412a-9703-712d66c2d63c", + "model": "evaluation.ratinganswercounter", + "pk": "fe0e137d-ce16-4989-8285-04b51b4e4195", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 1634, + "answer": 1, + "count": 11 } }, { - "model": "evaluation.textanswer", - "pk": "66c3e471-bb07-4bd6-8f15-810c858acdb3", + "model": "evaluation.ratinganswercounter", + "pk": "fe13c70b-cafb-45c0-bf9c-e2188e319be8", "fields": { - "question": 313, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 3435, + "answer": 1, + "count": 28 } }, { - "model": "evaluation.textanswer", - "pk": "674d2624-e066-4a46-999a-44e04b420b4b", + "model": "evaluation.ratinganswercounter", + "pk": "fe13f1d4-69b9-4184-863b-d6696525db1b", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 823, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "675daca4-8933-487f-917a-e1237572ad65", + "model": "evaluation.ratinganswercounter", + "pk": "fe1ebd58-b19f-43dc-8dad-de24c5d136d1", "fields": { - "question": 330, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 327, + "contribution": 3391, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "676bc97c-6f93-4150-906c-a4bef834b583", + "model": "evaluation.ratinganswercounter", + "pk": "fe221724-8313-4c23-9062-6f6425f85b7e", "fields": { - "question": 318, - "contribution": 3739, - "answer": "Lorem ipsum dolor sit amet, sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 472, + "contribution": 1640, + "answer": 5, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "67834870-3dfb-4084-8c09-30c896a19e9a", + "model": "evaluation.ratinganswercounter", + "pk": "fe229000-5d8b-46fd-9309-2cfe92845f63", "fields": { - "question": 364, - "contribution": 1802, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 349, + "contribution": 4129, + "answer": 4, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6795a485-c933-4c62-a834-834bc5c3944d", + "model": "evaluation.ratinganswercounter", + "pk": "fe356885-deeb-4d3b-b604-5e2dd065b7fb", "fields": { - "question": 313, - "contribution": 3462, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 259, + "contribution": 1634, + "answer": 2, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "67e3756f-98e3-46ef-b562-c8e4b538ec2d", + "model": "evaluation.ratinganswercounter", + "pk": "fe3873fa-0505-4979-a26f-fd980f14d7e7", "fields": { - "question": 313, - "contribution": 1658, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 472, + "contribution": 3354, + "answer": 1, + "count": 14 } }, { - "model": "evaluation.textanswer", - "pk": "6837a9a7-219a-47f7-8109-9e8eb1c18097", + "model": "evaluation.ratinganswercounter", + "pk": "fe3b0fd7-88a8-4f7f-997b-905bf8ad58b5", "fields": { - "question": 373, - "contribution": 4094, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 3859, + "answer": -1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6856f2f5-9b16-4680-b9a5-6adc5c49555b", + "model": "evaluation.ratinganswercounter", + "pk": "fe3e7ab8-5ac9-411e-bef6-14587914c30a", "fields": { - "question": 342, - "contribution": 918, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 341, + "contribution": 3466, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6870e33e-ea8f-4fa4-b4ca-455664493452", + "model": "evaluation.ratinganswercounter", + "pk": "fe3f37e1-9db2-4aa8-a973-d7b692448000", "fields": { - "question": 324, - "contribution": 4094, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 4138, + "answer": 1, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "689d391e-833b-4f42-a675-27b72f393f1e", + "model": "evaluation.ratinganswercounter", + "pk": "fe428d45-57ee-4ef0-86cc-083ae5731810", "fields": { - "question": 314, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 3796, + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "68b4ca0a-c1ae-433e-980e-dee0e85d905a", + "model": "evaluation.ratinganswercounter", + "pk": "fe4a1b32-951e-4eba-9372-8bd6869ca360", "fields": { - "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 3435, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "68d42875-3adb-4e22-bcc5-fa54d15b463b", + "model": "evaluation.ratinganswercounter", + "pk": "fe4f5870-9362-4c6f-ab9d-0584e42b4cac", "fields": { - "question": 318, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 329, + "contribution": 823, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "68fb91df-d688-4993-82a9-ef807253a5e2", + "model": "evaluation.ratinganswercounter", + "pk": "fe5f2ae8-d0d4-4e81-ac0d-7676e852056e", "fields": { - "question": 364, - "contribution": 1201, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 333, + "contribution": 1282, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "6909e93c-4e49-44e6-8d24-3afe05c61dfe", + "model": "evaluation.ratinganswercounter", + "pk": "fe736480-5722-4c4e-afa1-e4b2b411500d", "fields": { - "question": 318, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 345, + "contribution": 4188, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "690a2e2b-e16a-424e-8966-ab0e9d20b0d0", + "model": "evaluation.ratinganswercounter", + "pk": "fe73c1ab-a5fa-4821-9a70-ada1e1bf4015", "fields": { - "question": 313, - "contribution": 3474, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 476, + "contribution": 3354, + "answer": 0, + "count": 17 } }, { - "model": "evaluation.textanswer", - "pk": "691aeb36-1662-4956-9196-c244acf9167b", + "model": "evaluation.ratinganswercounter", + "pk": "fe744b02-954c-48d6-b549-522f04f126d7", "fields": { - "question": 430, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 788, + "answer": 0, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "696f483d-736d-48cb-83b1-eaa2d43abbc7", + "model": "evaluation.ratinganswercounter", + "pk": "fe762689-1fd3-4202-9287-1066326f8479", "fields": { - "question": 314, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 378, + "contribution": 3755, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6981860f-287d-44c4-bd8c-ffb3718d38d9", + "model": "evaluation.ratinganswercounter", + "pk": "fe7acd7d-e6ad-4be7-990f-5473343a9466", "fields": { - "question": 330, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 366, + "contribution": 4205, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "69aaaf10-bccb-4d6f-a97a-11714c499ced", + "model": "evaluation.ratinganswercounter", + "pk": "fe7b4b26-cbcf-4d91-a04c-b6924f0ead76", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 457, + "contribution": 4283, + "answer": 1, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "69b3534e-3e2f-4e13-80ce-bea909117f6f", + "model": "evaluation.ratinganswercounter", + "pk": "fe7bfb5a-ea27-4f47-a8c6-4ddb77e9948e", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 323, + "contribution": 4116, + "answer": 1, + "count": 9 } }, { - "model": "evaluation.textanswer", - "pk": "69c5f599-bc38-4955-b8b6-5996241c85ca", + "model": "evaluation.ratinganswercounter", + "pk": "fe7c0b6a-c6b7-4bac-af7e-0622b90ac0d4", "fields": { - "question": 330, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 362, + "contribution": 1803, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "69cc970b-d295-492b-83b9-421f3061cc7c", + "model": "evaluation.ratinganswercounter", + "pk": "fe7c4432-8a2c-4bb5-829b-5f4cc93e7ef2", "fields": { - "question": 364, - "contribution": 1206, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 321, + "contribution": 836, + "answer": 1, + "count": 14 } }, { - "model": "evaluation.textanswer", - "pk": "69d49e41-8058-4a44-8ac8-9407ff7db317", + "model": "evaluation.ratinganswercounter", + "pk": "fe85a5eb-ffa9-4cb1-89d8-b9208cfde0d4", "fields": { - "question": 364, - "contribution": 1860, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 257, + "contribution": 1612, + "answer": 2, + "count": 8 } }, { - "model": "evaluation.textanswer", - "pk": "69dbcff6-de39-4f55-8105-b10b4be87c5d", + "model": "evaluation.ratinganswercounter", + "pk": "fe85e868-1045-4ccb-a5ba-d6cbb215f82d", "fields": { - "question": 313, - "contribution": 3725, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 464, + "contribution": 4073, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "69f3e10d-dc24-4fe2-97c4-5e7165968901", + "model": "evaluation.ratinganswercounter", + "pk": "fe966a8d-3b28-4cae-bd0e-e535e20ff81c", "fields": { - "question": 342, - "contribution": 3486, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 341, + "contribution": 1921, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6a354e1b-0255-489c-91fb-8e2d1531ed31", + "model": "evaluation.ratinganswercounter", + "pk": "fe9a0141-08bc-41f8-b0d8-9f78814bd7d6", "fields": { - "question": 318, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 3879, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6a4b8ce0-e700-4bb0-9303-7c949f54d0cf", + "model": "evaluation.ratinganswercounter", + "pk": "feaeb050-70ce-4241-b974-0f2687404345", "fields": { - "question": 313, - "contribution": 4116, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 367, + "contribution": 3474, + "answer": 3, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6aa0529b-58fc-4b49-a111-5358acb06ea5", + "model": "evaluation.ratinganswercounter", + "pk": "feb552e5-114b-478b-b73e-770ad5add097", "fields": { - "question": 330, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 363, + "contribution": 3597, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6ad73aaa-46fe-42b5-8588-db8e45c91093", + "model": "evaluation.ratinganswercounter", + "pk": "feb821ca-4253-426d-84cb-532a37d512df", "fields": { - "question": 313, + "question": 323, "contribution": 4046, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "answer": 2, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "6b62319f-3641-4337-b4ed-718b2338524e", + "model": "evaluation.ratinganswercounter", + "pk": "fec6faba-1bf0-46f2-951f-09906d922a65", "fields": { - "question": 313, - "contribution": 1837, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 396, + "contribution": 3711, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6b63083a-db10-46ea-bd2c-8a2db3e163d9", + "model": "evaluation.ratinganswercounter", + "pk": "fecf4080-305e-4f3f-8334-5b800726e0a8", "fields": { - "question": 358, - "contribution": 1154, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 4120, + "answer": 2, + "count": 5 } }, { - "model": "evaluation.textanswer", - "pk": "6b7712ce-b009-486a-9c3e-de22a1054983", + "model": "evaluation.ratinganswercounter", + "pk": "fedcfc19-9ba3-432d-9029-ef0a896b1f24", "fields": { - "question": 330, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 338, + "contribution": 826, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6bbcd4b4-615b-4bc0-b1f9-da27478ebb2e", + "model": "evaluation.ratinganswercounter", + "pk": "feee6e1e-23c3-4326-8b78-091d01ff2b82", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 3934, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6bca2885-27d1-440e-a698-a7cab087e708", + "model": "evaluation.ratinganswercounter", + "pk": "fef0fd43-9cdb-4e9f-91fd-d12a48a1a44e", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 336, + "contribution": 3382, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6bda199c-e121-4081-8414-7007ede52cf6", + "model": "evaluation.ratinganswercounter", + "pk": "fef2542d-653c-4491-9aad-f6ba422f223c", "fields": { - "question": 318, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 371, + "contribution": 3881, + "answer": 1, + "count": 7 } }, { - "model": "evaluation.textanswer", - "pk": "6c213c5c-5ced-4b1f-b541-ab61eb6d6c34", + "model": "evaluation.ratinganswercounter", + "pk": "fef6f6af-478e-4036-a570-aa4a7fa66057", "fields": { - "question": 313, - "contribution": 862, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 3680, + "answer": 0, + "count": 12 } }, { - "model": "evaluation.textanswer", - "pk": "6c42dc25-441b-4b56-b3f5-20fa7f069c27", + "model": "evaluation.ratinganswercounter", + "pk": "fefa1a3f-4ddf-45f2-9afb-2b236e09a042", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 3776, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "6c51067f-6c8f-4933-b857-f4d12bf608bb", + "model": "evaluation.ratinganswercounter", + "pk": "ff00622d-193e-46db-a2f9-3dbbb95f10d5", "fields": { - "question": 342, - "contribution": 3508, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 332, + "contribution": 3598, + "answer": 2, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6c5ee292-24ec-437d-a762-ee4c8bacace9", + "model": "evaluation.ratinganswercounter", + "pk": "ff04f6c9-4654-4733-b40c-939387c13b01", "fields": { - "question": 364, - "contribution": 1783, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 347, + "contribution": 1235, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6c9509b0-d2e2-4e0c-97ec-43f3572158a8", + "model": "evaluation.ratinganswercounter", + "pk": "ff0dd801-a165-403b-8305-1bcf617c2b7e", "fields": { - "question": 364, - "contribution": 1202, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 346, + "contribution": 4021, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6ca4020b-5695-433e-bbd1-cf3fac881f4a", + "model": "evaluation.ratinganswercounter", + "pk": "ff11ad8e-e0f6-4733-9be2-35ba98e79311", "fields": { - "question": 364, - "contribution": 3684, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 3556, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6cbccbc6-3c55-4a3e-a5df-c51d3c3369cb", + "model": "evaluation.ratinganswercounter", + "pk": "ff1e26db-c020-42a0-9372-c5875742e237", "fields": { - "question": 373, - "contribution": 3486, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 1202, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6cd14eed-af3b-42cc-9423-f10367d62cb3", + "model": "evaluation.ratinganswercounter", + "pk": "ff24e8f8-bc22-457d-a4ff-6a839037a2ef", "fields": { - "question": 364, - "contribution": 4047, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 344, + "contribution": 4223, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6d096a75-f59e-4cb8-9987-4a9191e8fc69", + "model": "evaluation.ratinganswercounter", + "pk": "ff24edaf-5855-41f6-a364-e8e44d407e52", "fields": { - "question": 313, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 255, + "contribution": 4028, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6d1a7c44-cf3c-4e52-ae3a-968a35b1bab3", + "model": "evaluation.ratinganswercounter", + "pk": "ff29a7c2-e336-4b8c-a714-68cf8ff4f1bd", "fields": { - "question": 364, - "contribution": 1681, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 363, + "contribution": 1807, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6d349b77-a64f-4796-92ee-91c60c4cc079", + "model": "evaluation.ratinganswercounter", + "pk": "ff354f3b-d877-4b74-ae94-fc74f12ccabd", "fields": { - "question": 342, - "contribution": 4094, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 356, + "contribution": 3545, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6d49321a-5f6a-43bd-aed9-e7e409312354", + "model": "evaluation.ratinganswercounter", + "pk": "ff44ec47-ef39-4d34-be42-6cee53fe0a36", "fields": { - "question": 314, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 326, + "contribution": 4023, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6d7f25e7-238f-4aa6-b1a8-e639f5e4a6c0", + "model": "evaluation.ratinganswercounter", + "pk": "ff49bc15-c426-4eee-a319-8dee2995b5e6", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 343, + "contribution": 3373, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "6db7b3a0-3f39-40e5-801e-3e8be902da50", + "model": "evaluation.ratinganswercounter", + "pk": "ff519bad-7f8a-461f-9436-11b1b5594ffe", "fields": { - "question": 318, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 1242, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "6dd95e21-2a09-4493-b832-2a629236de43", + "model": "evaluation.ratinganswercounter", + "pk": "ff5513e8-4fac-4785-9585-dfda26fab390", "fields": { - "question": 373, - "contribution": 3703, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 4203, + "answer": -1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6ddfbb72-a185-4087-becd-8e534d214de8", + "model": "evaluation.ratinganswercounter", + "pk": "ff568128-b685-4493-bfc3-cf37a9cd1969", "fields": { - "question": 358, - "contribution": 1154, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 477, + "contribution": 909, + "answer": -2, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "6df784a5-6f9e-4460-a0e9-c3b121f0dcc0", + "model": "evaluation.ratinganswercounter", + "pk": "ff572330-a83f-4dee-a323-8d40fa21e791", "fields": { - "question": 373, - "contribution": 3416, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 1658, + "answer": 2, + "count": 4 } }, { - "model": "evaluation.textanswer", - "pk": "6e1a6d2d-4ca5-458c-92d2-78d3ce4ce1dc", + "model": "evaluation.ratinganswercounter", + "pk": "ff611606-a0b7-4749-908c-ef07243ae84a", "fields": { - "question": 314, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 451, + "contribution": 4185, + "answer": 1, + "count": 36 } }, { - "model": "evaluation.textanswer", - "pk": "6e591f6b-7579-484c-a228-0ae0d68c706a", + "model": "evaluation.ratinganswercounter", + "pk": "ff70a8e4-c555-4b62-a0cc-44093af4e6e5", "fields": { - "question": 313, - "contribution": 1626, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 357, + "contribution": 1257, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "6e7a2ec7-1883-440a-833d-ebfb66a8b1f1", + "model": "evaluation.ratinganswercounter", + "pk": "ff752f0e-9020-4382-b1fc-769aa42e569b", "fields": { - "question": 364, - "contribution": 4190, - "answer": "Lorem ipsum dolor sit", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 316, + "contribution": 4138, + "answer": 2, + "count": 13 } }, { - "model": "evaluation.textanswer", - "pk": "6eaa2873-4657-4fdb-8307-b2c79c077bad", + "model": "evaluation.ratinganswercounter", + "pk": "ff7763d0-1248-4b98-81ef-94dd343513f5", "fields": { - "question": 313, - "contribution": 3434, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 361, + "contribution": 1807, + "answer": 5, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6ec52427-e364-4071-936e-ca578b627706", + "model": "evaluation.ratinganswercounter", + "pk": "ff79499d-c43e-468d-be59-c606b6821419", "fields": { - "question": 314, - "contribution": 3725, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 1656, + "answer": -1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6ed8f1fa-c1cb-49a4-9ff6-c3faf784c079", + "model": "evaluation.ratinganswercounter", + "pk": "ff7d050b-73ac-4189-afb3-fab7082aa77b", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 355, + "contribution": 3849, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6f1a2364-d851-45a4-89d6-8f5db1aaac10", + "model": "evaluation.ratinganswercounter", + "pk": "ff81ae94-f3bf-47a9-94cf-32a374d25805", "fields": { - "question": 364, - "contribution": 1207, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 788, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6f1bebb5-5279-4ba4-bcd3-1fe1a6d393ac", + "model": "evaluation.ratinganswercounter", + "pk": "ff91cf92-1938-4f85-baa0-7a586b75f01a", "fields": { - "question": 313, - "contribution": 4100, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 255, + "contribution": 3394, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6f1efcf2-a29b-4e13-988b-5a678db5e5d0", + "model": "evaluation.ratinganswercounter", + "pk": "ff9da2ec-c291-4e44-9c90-a577e117bf6c", "fields": { - "question": 330, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 356, + "contribution": 3517, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6f7389f3-eee0-4986-838b-43ea683a23f1", + "model": "evaluation.ratinganswercounter", + "pk": "ff9fff5f-4564-4770-8538-f34af292fe89", "fields": { - "question": 314, - "contribution": 1837, - "answer": "Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 370, + "contribution": 4039, + "answer": 4, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6f93a3ae-dc2d-4e4d-982a-04666d3eff4b", + "model": "evaluation.ratinganswercounter", + "pk": "ffa47e86-5fcd-4cfe-8731-88fc1f9df5c5", "fields": { - "question": 373, - "contribution": 3693, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 472, + "contribution": 4084, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "6f98e6de-574f-41b9-b94b-e1355dfc6b6c", + "model": "evaluation.ratinganswercounter", + "pk": "ffad24bd-e0af-41c2-ac09-518e0d7b8d54", "fields": { - "question": 314, - "contribution": 1680, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 366, + "contribution": 1812, + "answer": 1, + "count": 2 } }, { - "model": "evaluation.textanswer", - "pk": "6facdb8a-4b13-4e9a-91b7-2fbcb9f5ec82", + "model": "evaluation.ratinganswercounter", + "pk": "ffb26a56-fdc4-474c-9647-d5aefe2bc60b", "fields": { - "question": 373, - "contribution": 3645, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 378, + "contribution": 3711, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6ff7715f-78fc-445c-b5ae-89d612bc2cf5", + "model": "evaluation.ratinganswercounter", + "pk": "ffc8de44-7684-4799-a320-c64a23f1d966", "fields": { - "question": 318, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 331, + "contribution": 3406, + "answer": 1, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "6ffc1d06-9e60-4a33-ab0c-37c7c2a577e8", + "model": "evaluation.ratinganswercounter", + "pk": "ffc95b14-bb96-4220-a5b7-05b91ea8a342", "fields": { - "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 343, + "contribution": 1204, + "answer": 1, + "count": 6 } }, { - "model": "evaluation.textanswer", - "pk": "7018eb15-4db1-48c7-ba50-b7657a590e19", + "model": "evaluation.ratinganswercounter", + "pk": "ffce6563-249a-4043-a858-43835cda66d6", "fields": { - "question": 313, - "contribution": 3721, - "answer": "Lorem ipsum dolor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 262, + "contribution": 1837, + "answer": 1, + "count": 20 } }, { - "model": "evaluation.textanswer", - "pk": "70226318-425c-4b50-86c1-aeee6804f551", + "model": "evaluation.ratinganswercounter", + "pk": "ffd6f539-ee09-4f83-bbd8-15555cd6ff95", "fields": { - "question": 364, - "contribution": 3598, - "answer": "Lorem ipsum dolor sit amet,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 368, + "contribution": 3355, + "answer": 2, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "7026b4ee-b795-48b3-b7ea-fc07b88241e4", + "model": "evaluation.ratinganswercounter", + "pk": "ffe63a5a-7821-4e64-b2d9-d829ed6317c5", "fields": { - "question": 318, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 328, + "contribution": 3395, + "answer": 3, + "count": 1 } }, { - "model": "evaluation.textanswer", - "pk": "702daf6e-f805-4475-9c92-c64e5df5d880", + "model": "evaluation.ratinganswercounter", + "pk": "ffeab8d9-e004-45f4-85c8-79bd84525bd4", "fields": { - "question": 364, - "contribution": 3726, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 353, + "contribution": 4244, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "703121cf-b49d-4d88-968f-a1dd596d80d4", + "model": "evaluation.ratinganswercounter", + "pk": "fff0fa66-0363-4795-98aa-952e5b30de7e", "fields": { - "question": 324, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 258, + "contribution": 4128, + "answer": 4, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "703bd543-ea29-44b1-9ad7-8fbd3b68c8df", + "model": "evaluation.ratinganswercounter", + "pk": "fff1f462-37db-416f-893c-a9dafb204fde", "fields": { - "question": 324, - "contribution": 864, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 473, + "contribution": 3466, + "answer": 1, + "count": 3 } }, { - "model": "evaluation.textanswer", - "pk": "703f336e-1bcc-451c-b5ed-b0af415a7735", + "model": "evaluation.ratinganswercounter", + "pk": "fff2dde9-bf0f-49a6-b423-8cda556edb0f", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false + "question": 475, + "contribution": 3735, + "answer": 0, + "count": 1 } }, { "model": "evaluation.textanswer", - "pk": "70860c4c-0dda-479a-b7b2-bdbab3f069ab", + "pk": "00347b40-3f1e-4c56-92cd-4978c5f8c39f", "fields": { - "question": 358, - "contribution": 3475, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 324, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -96904,10 +105915,10 @@ }, { "model": "evaluation.textanswer", - "pk": "70dfe349-c077-4ba1-ab81-649164e84297", + "pk": "0039a89d-e912-4f4d-a662-7dd5dedcf431", "fields": { "question": 313, - "contribution": 1837, + "contribution": 3739, "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", @@ -96916,23 +105927,11 @@ }, { "model": "evaluation.textanswer", - "pk": "70f16cc8-9d1d-43e8-bb6b-af59ecc7764d", + "pk": "00630396-2148-41dc-b167-32af262dfd88", "fields": { "question": 342, - "contribution": 3416, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false - } -}, -{ - "model": "evaluation.textanswer", - "pk": "71236865-bb45-4eaa-b7ea-c630a26f4606", - "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "contribution": 1710, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -96940,11 +105939,11 @@ }, { "model": "evaluation.textanswer", - "pk": "71283c69-277e-4095-93b8-78c835ff521e", + "pk": "00637495-1e9f-4d0d-b206-247c7284b310", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit", + "question": 313, + "contribution": 3721, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -96952,11 +105951,11 @@ }, { "model": "evaluation.textanswer", - "pk": "71471a44-b97e-4827-ac91-f00d77fe9965", + "pk": "00b098bb-09d5-44c1-993d-05ae88d7958e", "fields": { - "question": 330, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 313, + "contribution": 908, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -96964,11 +105963,11 @@ }, { "model": "evaluation.textanswer", - "pk": "717a70a3-2c2e-4d07-8942-efff7a185b8a", + "pk": "00d049fc-e4db-4247-9211-bb6226c92a57", "fields": { - "question": 318, + "question": 324, "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -96976,11 +105975,11 @@ }, { "model": "evaluation.textanswer", - "pk": "71ba9b16-9204-4591-908a-866c7edab2e4", + "pk": "00df89d0-6885-4750-888d-c13714b51f2e", "fields": { - "question": 342, - "contribution": 3486, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 364, + "contribution": 4190, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -96988,11 +105987,11 @@ }, { "model": "evaluation.textanswer", - "pk": "71f6567b-1b06-4855-8148-e2eddea43aec", + "pk": "01277eff-55fb-463f-972f-5bd182e0c6c5", "fields": { - "question": 324, + "question": 318, "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97000,23 +105999,11 @@ }, { "model": "evaluation.textanswer", - "pk": "723114ce-0ecb-485c-bfb2-93ce612ff2c3", + "pk": "0144d7bc-e694-4a17-b357-e97bc18bbf13", "fields": { "question": 364, - "contribution": 4204, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false - } -}, -{ - "model": "evaluation.textanswer", - "pk": "729dae43-ec9b-44e5-949d-77029c90a66a", - "fields": { - "question": 342, - "contribution": 3693, - "answer": "Lorem ipsum dolor sit amet,", + "contribution": 3473, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97024,11 +106011,11 @@ }, { "model": "evaluation.textanswer", - "pk": "72a8e260-0b98-4912-b98f-7118c96ad28a", + "pk": "015fce61-3858-4ec3-b30e-1aae8aac756f", "fields": { "question": 314, - "contribution": 3665, - "answer": "Lorem", + "contribution": 4128, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97036,11 +106023,11 @@ }, { "model": "evaluation.textanswer", - "pk": "72b31cf9-f55b-4116-a13b-a3a2cb07d315", + "pk": "01860507-3572-426c-8796-1197ec0b44ae", "fields": { - "question": 324, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait", + "question": 330, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97048,11 +106035,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7408f9d6-eba2-461e-883e-e701a4fd4fcc", + "pk": "01920cd1-f7a4-4fad-9634-a55fe3ce2e1a", "fields": { - "question": 313, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "question": 364, + "contribution": 1206, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97060,11 +106047,11 @@ }, { "model": "evaluation.textanswer", - "pk": "74753be9-3bbd-43aa-91c8-665d5ea80d44", + "pk": "0193154f-3061-4995-b51b-357c3551bd7f", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", + "question": 314, + "contribution": 3721, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97072,11 +106059,11 @@ }, { "model": "evaluation.textanswer", - "pk": "74897800-7f55-4636-973b-1702dfcce2b3", + "pk": "01e6b981-1065-4abf-a160-342048970ec6", "fields": { "question": 364, - "contribution": 3545, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "contribution": 3552, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97084,11 +106071,11 @@ }, { "model": "evaluation.textanswer", - "pk": "748a9004-b299-4f2a-a50c-d07d064ce415", + "pk": "0200fd45-567b-407e-bcbb-151b96b3c3b9", "fields": { - "question": 330, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 364, + "contribution": 3649, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97096,11 +106083,11 @@ }, { "model": "evaluation.textanswer", - "pk": "74cc5bd8-e60b-4b33-b98d-d9fffe6f9125", + "pk": "0202ea2d-b861-4433-8d02-99b2c0d6ae65", "fields": { - "question": 318, - "contribution": 822, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97108,10 +106095,10 @@ }, { "model": "evaluation.textanswer", - "pk": "74f7825e-9938-45b6-860c-b70653219efc", + "pk": "020e766b-4727-4901-9119-64a7794e438b", "fields": { "question": 318, - "contribution": 3434, + "contribution": 3422, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", @@ -97120,11 +106107,11 @@ }, { "model": "evaluation.textanswer", - "pk": "75208952-6fe1-4473-92dc-004f3ac79026", + "pk": "021aa94f-7d79-41ac-b3d2-25702147bf8d", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "question": 330, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97132,11 +106119,11 @@ }, { "model": "evaluation.textanswer", - "pk": "75238202-4ecd-4ffc-acf7-528f7aae1ac1", + "pk": "023a70fe-6f85-4993-ba41-a3a25cea4ff5", "fields": { - "question": 330, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 411, + "contribution": 4038, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97144,11 +106131,11 @@ }, { "model": "evaluation.textanswer", - "pk": "753dd5a2-e484-416c-976b-600eca9653e7", + "pk": "025119d0-064e-4014-8942-0a8ac686b468", "fields": { - "question": 324, - "contribution": 3725, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 364, + "contribution": 4117, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97156,11 +106143,11 @@ }, { "model": "evaluation.textanswer", - "pk": "754581d1-40f6-46a6-88b9-254ad324a4a1", + "pk": "0257c065-3823-4592-b8fa-84f3006606db", "fields": { - "question": 324, - "contribution": 4120, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 364, + "contribution": 1776, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97168,11 +106155,11 @@ }, { "model": "evaluation.textanswer", - "pk": "754820e0-864a-4753-95a2-78670c7b2654", + "pk": "02853356-6c95-49ba-a013-8262c6ca5dcf", "fields": { - "question": 364, - "contribution": 3847, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "question": 381, + "contribution": 3781, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97180,11 +106167,11 @@ }, { "model": "evaluation.textanswer", - "pk": "756384b1-d041-40c1-bbd8-1a85a55fe248", + "pk": "02992474-477d-4c2f-aecf-15deedcf6cc3", "fields": { - "question": 318, - "contribution": 3725, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 342, + "contribution": 4094, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97192,23 +106179,23 @@ }, { "model": "evaluation.textanswer", - "pk": "7565df73-ccaa-4863-82b1-49adafcc9ddd", + "pk": "02be6c00-9782-44a3-92dd-ee316fd5ef12", "fields": { - "question": 364, - "contribution": 3786, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "7570b529-2ed9-4ea7-b100-e0445071e6a6", + "pk": "03184e12-7655-49b1-8123-cf687b312b53", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor", + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97216,23 +106203,23 @@ }, { "model": "evaluation.textanswer", - "pk": "75d5067f-e7d2-41db-aee7-92ca2f22d642", + "pk": "036d8e8e-4f09-433e-a782-a15acdd365a1", "fields": { "question": 364, - "contribution": 4141, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "contribution": 4073, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "75e419d4-f659-4d59-8057-9c977ce68779", + "pk": "036e2e59-df24-4b3b-9fff-b1af0819342c", "fields": { "question": 364, - "contribution": 4117, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "contribution": 1617, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97240,11 +106227,11 @@ }, { "model": "evaluation.textanswer", - "pk": "75fd63b9-9312-4dda-be30-58762e67f588", + "pk": "0382cab3-9b7f-423c-b791-b98248c447e1", "fields": { - "question": 387, - "contribution": 3781, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "question": 342, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97252,11 +106239,11 @@ }, { "model": "evaluation.textanswer", - "pk": "763815dd-92d2-457a-a821-c2ff5de58566", + "pk": "03e414fc-4955-4516-8926-98a60d1f6335", "fields": { - "question": 330, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", + "question": 318, + "contribution": 4120, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97264,11 +106251,11 @@ }, { "model": "evaluation.textanswer", - "pk": "763c9a6b-fb30-4ced-8314-3c8f10470aa3", + "pk": "03f9de68-c449-48b3-bfff-6ded1fac4776", "fields": { - "question": 314, - "contribution": 3721, - "answer": "Lorem", + "question": 364, + "contribution": 3607, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97276,11 +106263,11 @@ }, { "model": "evaluation.textanswer", - "pk": "76402f73-fe72-49b9-9358-3f530e5ca868", + "pk": "04526dd6-8244-49c7-af16-ee9e16208d46", "fields": { - "question": 330, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 419, + "contribution": 4038, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97288,11 +106275,11 @@ }, { "model": "evaluation.textanswer", - "pk": "76561ed6-73e7-4fbd-afb1-bb86bd82e719", + "pk": "0483d892-75d9-4c6c-810b-4440cb4652c8", "fields": { "question": 364, - "contribution": 3553, - "answer": "Lorem ipsum dolor sit amet,", + "contribution": 3391, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97300,11 +106287,11 @@ }, { "model": "evaluation.textanswer", - "pk": "76919cbe-a26d-4cac-879e-3acf9739eeea", + "pk": "0487db00-f57f-452a-a038-f5e137de9129", "fields": { - "question": 318, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 342, + "contribution": 3416, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97312,10 +106299,10 @@ }, { "model": "evaluation.textanswer", - "pk": "76bf1938-347d-4d3b-b6eb-6c0344012906", + "pk": "048e1b67-ea49-419b-9e05-9e92ecbb428d", "fields": { - "question": 314, - "contribution": 4084, + "question": 313, + "contribution": 4118, "answer": "Lorem", "original_answer": null, "review_decision": "PU", @@ -97324,10 +106311,10 @@ }, { "model": "evaluation.textanswer", - "pk": "76d72351-1c6f-470f-a89c-b6d0f1d72157", + "pk": "0498cdd6-5bad-4410-bce5-b093aa551dea", "fields": { "question": 313, - "contribution": 4138, + "contribution": 1634, "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", @@ -97336,11 +106323,11 @@ }, { "model": "evaluation.textanswer", - "pk": "771c3aca-0099-4e60-b5ed-48e60b2f2ebe", + "pk": "04c6a5ba-2677-4f8b-a7da-3097a48a38aa", "fields": { - "question": 342, - "contribution": 3416, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97348,11 +106335,11 @@ }, { "model": "evaluation.textanswer", - "pk": "77347285-e36d-4f8d-a468-1746467a3f24", + "pk": "04cb69a0-a590-4237-87fc-f69841e0271b", "fields": { "question": 330, "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97360,11 +106347,11 @@ }, { "model": "evaluation.textanswer", - "pk": "776bacea-7c16-45f9-b03e-5d59051b1d29", + "pk": "04dfaff6-5cbe-4f37-985a-90ae6b10f5d0", "fields": { - "question": 364, - "contribution": 3684, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", + "question": 313, + "contribution": 912, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97372,11 +106359,11 @@ }, { "model": "evaluation.textanswer", - "pk": "779320df-5242-4a0e-9734-3028ced29cbb", + "pk": "0534300c-93e1-4f0a-93b0-21a5efa11f23", "fields": { - "question": 364, - "contribution": 3893, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 342, + "contribution": 1662, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97384,11 +106371,11 @@ }, { "model": "evaluation.textanswer", - "pk": "77bdb244-d068-4d57-82d7-d2b7c0ab284e", + "pk": "058b073d-9392-4e33-8f78-c01b2b652020", "fields": { - "question": 364, - "contribution": 3648, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97396,11 +106383,11 @@ }, { "model": "evaluation.textanswer", - "pk": "77cbd50e-f56b-4270-a5d6-73797064fb14", + "pk": "058c53b8-6537-4203-acf0-b6f175835cad", "fields": { - "question": 373, - "contribution": 3372, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "question": 364, + "contribution": 4095, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97408,11 +106395,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7810791d-68ad-4140-ad2b-e4ab35049d52", + "pk": "058dfa40-5a7f-4e1a-a784-bfc09b193391", "fields": { - "question": 358, - "contribution": 859, - "answer": "Lorem ipsum dolor sit amet,", + "question": 324, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97420,11 +106407,11 @@ }, { "model": "evaluation.textanswer", - "pk": "784ce6f7-ad54-400d-8436-8f675d7efb52", + "pk": "0599212a-e9c5-49bc-9abd-c42dca20b737", "fields": { "question": 324, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "contribution": 4100, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97432,11 +106419,11 @@ }, { "model": "evaluation.textanswer", - "pk": "78bc2472-e7d6-40e4-8aae-a095868e0ee7", + "pk": "05b22d38-faeb-4fc9-8ca0-2f5c523b08c5", "fields": { - "question": 313, - "contribution": 1837, - "answer": "Lorem ipsum dolor", + "question": 373, + "contribution": 1640, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97444,11 +106431,11 @@ }, { "model": "evaluation.textanswer", - "pk": "78ce7a6a-7c43-4bc9-9f39-fe6b60a315d2", + "pk": "05bada5a-3aa2-43f8-9aae-7cc2e7b8f131", "fields": { "question": 313, - "contribution": 3462, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "contribution": 1612, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97456,11 +106443,11 @@ }, { "model": "evaluation.textanswer", - "pk": "790cd7bb-9d03-4e91-9be4-eee0cea8f414", + "pk": "05c01e74-0c18-4491-87ee-134e9a174394", "fields": { - "question": 314, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 318, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97468,11 +106455,11 @@ }, { "model": "evaluation.textanswer", - "pk": "793342a8-03c9-4aca-a93e-edb7bb0bd615", + "pk": "05ea8f7a-df23-49d6-8066-b244da23f7f1", "fields": { "question": 313, - "contribution": 4100, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97480,11 +106467,11 @@ }, { "model": "evaluation.textanswer", - "pk": "79575fa4-2c00-4253-b462-8f1b12bdcaf4", + "pk": "05f5d222-5ff5-4997-a7aa-f43886701039", "fields": { - "question": 313, - "contribution": 884, - "answer": "Lorem ipsum dolor", + "question": 314, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97492,11 +106479,11 @@ }, { "model": "evaluation.textanswer", - "pk": "797bb5cf-37ba-4376-b748-efc9a56317f0", + "pk": "0611e7d3-009d-483e-809c-61a96604c68e", "fields": { - "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 342, + "contribution": 1726, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97504,11 +106491,11 @@ }, { "model": "evaluation.textanswer", - "pk": "797ee501-e630-4567-a89c-ed0054bd3552", + "pk": "064260b1-2de6-4f63-8a72-da2833bd6c2a", "fields": { - "question": 330, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97516,11 +106503,11 @@ }, { "model": "evaluation.textanswer", - "pk": "798cc16c-bc5c-4c46-9ad1-7d5f72083fdb", + "pk": "066e2de7-a4ec-42dc-858a-fd9ca21ef28e", "fields": { - "question": 342, - "contribution": 3404, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", + "question": 313, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97528,11 +106515,11 @@ }, { "model": "evaluation.textanswer", - "pk": "79e1dc7e-534c-4a0e-8f68-fbc75d4213a8", + "pk": "067e6c7b-54b3-45b7-b595-d2d5bcee482d", "fields": { - "question": 318, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 364, + "contribution": 1635, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97540,11 +106527,11 @@ }, { "model": "evaluation.textanswer", - "pk": "79eefb72-4322-47d9-bf3d-f02d68516c1f", + "pk": "06cf1ef2-a56f-4ccc-8be7-db32d63a637d", "fields": { - "question": 364, - "contribution": 4117, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", + "question": 373, + "contribution": 3440, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97552,11 +106539,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7afd8475-2f64-475f-b318-9da3e9c1494f", + "pk": "06d65df8-3894-43c2-a806-bce8fcab3d88", "fields": { - "question": 313, + "question": 314, "contribution": 4084, - "answer": "Lorem ipsum", + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97564,10 +106551,10 @@ }, { "model": "evaluation.textanswer", - "pk": "7b5af69e-e1e0-4f33-b755-74f2b767e1f9", + "pk": "06ea5a71-af98-437e-8401-50c7c5e39e0b", "fields": { "question": 313, - "contribution": 3394, + "contribution": 912, "answer": "Lorem", "original_answer": null, "review_decision": "PU", @@ -97576,11 +106563,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7b7d8937-2852-48cb-9f76-0038428a71da", + "pk": "06f0d712-c200-42f9-8a7e-651c567c1232", "fields": { - "question": 364, - "contribution": 3849, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 342, + "contribution": 3685, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97588,11 +106575,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7bcca34c-26f5-44c0-8f42-18248d26f069", + "pk": "079575f2-8140-4fa8-9919-d2b1235db74d", "fields": { - "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "question": 314, + "contribution": 4138, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97600,11 +106587,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7c04a300-d50f-492a-b045-d315baf399be", + "pk": "07b8e087-9793-46c6-a29a-50739be52d15", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 314, + "contribution": 884, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97612,11 +106599,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7c203a15-db6a-4fec-a007-a12e858e73b8", + "pk": "07b9ce30-6ccf-4ab7-a21d-531431beb16d", "fields": { - "question": 330, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "question": 318, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97624,11 +106611,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7c271d24-17a4-4e55-81d9-92b9d84bb2e0", + "pk": "083acb03-feec-4e5f-a76d-328a38b81f1b", "fields": { - "question": 364, - "contribution": 3939, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 358, + "contribution": 4152, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97636,11 +106623,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7c330516-6e24-4ad5-a6d4-d0706b387a8c", + "pk": "083b537b-a960-4e5a-a813-7455bee0641d", "fields": { - "question": 318, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel", + "question": 314, + "contribution": 3474, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97648,11 +106635,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7c4cc38d-5949-4a88-acbd-49838f2f6e2a", + "pk": "0844c25d-d7ba-4908-b4b3-925f591675a9", "fields": { - "question": 313, - "contribution": 884, - "answer": "Lorem ipsum dolor sit", + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97660,7 +106647,7 @@ }, { "model": "evaluation.textanswer", - "pk": "7c6d06a1-2b98-448b-a356-0f8e481f7fa8", + "pk": "084ddbfc-5fb4-4160-a081-eb49548d6c2e", "fields": { "question": 330, "contribution": 1626, @@ -97672,11 +106659,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7c8026c3-fd51-4dd4-b40f-e6207c7d5c12", + "pk": "0852fb51-49c6-496c-9803-5072c3c9a840", "fields": { - "question": 318, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 373, + "contribution": 1660, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97684,11 +106671,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7cd008a6-3c1b-465f-86f6-7594d1462572", + "pk": "0858a563-2b31-4961-b1f7-ade6e08364e9", "fields": { "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "contribution": 1626, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97696,11 +106683,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7cde22aa-551e-40d0-bdec-63c430c8297f", + "pk": "0858b8b3-ac68-406a-bcd2-f6c66d44debd", "fields": { - "question": 324, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", + "question": 330, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97708,11 +106695,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7ce0d4c0-487b-4c73-abe4-8c2f9a559eb0", + "pk": "0872759e-5319-4a55-aaf3-11e62d8736e7", "fields": { - "question": 314, - "contribution": 884, - "answer": "Lorem ipsum", + "question": 373, + "contribution": 3372, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97720,11 +106707,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7d0e440c-b40f-4ebe-8811-c752a358cc26", + "pk": "089e4a39-196d-4a8b-a41b-efe30c3da9ff", "fields": { - "question": 342, - "contribution": 3466, - "answer": "Lorem ipsum dolor sit", + "question": 364, + "contribution": 1250, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97732,11 +106719,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7d1be1bb-a489-4d2e-af21-cbcce3ab493b", + "pk": "08a12153-1afb-4788-aa56-27f5899bc09e", "fields": { - "question": 330, - "contribution": 1626, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 4139, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97744,11 +106731,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7d1de422-1f72-4d45-bf1a-ad6d19e230f2", + "pk": "08acadde-fea5-4d95-b59a-886e6b6f40d3", "fields": { - "question": 313, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 318, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97756,22 +106743,22 @@ }, { "model": "evaluation.textanswer", - "pk": "7d70ef45-11ad-43af-9739-ef13ea4f57dc", + "pk": "08bf612d-d9b4-46c3-a1e1-fd8e67e22ec1", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "question": 373, + "contribution": 4072, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "7db0e7af-1b4d-4f86-be4c-0d114b497147", + "pk": "08d236b5-d0a5-45f0-9ac8-e85a33cfd23b", "fields": { - "question": 324, - "contribution": 1200, + "question": 454, + "contribution": 4185, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", @@ -97780,10 +106767,10 @@ }, { "model": "evaluation.textanswer", - "pk": "7de7a91b-b04d-4e07-a454-504b62c0ad85", + "pk": "08fbd53e-1d0b-4137-802d-6e07f9f845f1", "fields": { - "question": 373, - "contribution": 3486, + "question": 364, + "contribution": 3647, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", @@ -97792,11 +106779,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7e0405d6-9d85-4c2e-86fe-6bae6520693c", + "pk": "090a92a3-27bd-40ae-9748-52adfc106b37", "fields": { - "question": 330, - "contribution": 3462, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 313, + "contribution": 3406, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97804,11 +106791,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7e0b3923-a114-4ff9-b41e-344071b2e598", + "pk": "093939f3-a499-4c4b-ad50-7ff47d0ed73e", "fields": { - "question": 318, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "question": 313, + "contribution": 4028, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97816,11 +106803,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7e768e09-d701-4918-97c6-447e76491d3d", + "pk": "09b6de6b-f4e6-4e14-9c8c-6b7e4f5e0cf1", "fields": { - "question": 429, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 364, + "contribution": 4117, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97828,11 +106815,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7e852b7c-2199-47f5-8fa3-4340b0a11875", + "pk": "0a02ac22-a551-46df-8190-f1df5dda4868", "fields": { - "question": 313, - "contribution": 3422, - "answer": "Lorem ipsum dolor", + "question": 314, + "contribution": 1626, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97840,11 +106827,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7ed53e55-0e7c-441a-b9f1-1c315c212cef", + "pk": "0a27d728-6ae1-4b93-8cf3-b97492840df2", "fields": { - "question": 318, - "contribution": 3462, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 364, + "contribution": 1228, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97852,11 +106839,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7ee1c7de-391f-4116-965a-2d1e9fbd02a4", + "pk": "0a804e2d-f2f5-43e2-ae17-fc4c8ed73d20", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 373, + "contribution": 3685, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97864,11 +106851,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7eefd874-c20e-40bf-bb09-5379211d404a", + "pk": "0a95d097-4ceb-4d07-966f-d1b86e5e9818", "fields": { - "question": 373, - "contribution": 4094, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97876,11 +106863,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7f318737-1416-4bac-b23b-45b58f6424ce", + "pk": "0ad76c22-4021-4446-8ef1-302a54e55312", "fields": { - "question": 373, - "contribution": 3440, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 364, + "contribution": 3556, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97888,11 +106875,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7fb4955f-c808-4e57-8617-07711f7e12e8", + "pk": "0ae62f8f-1018-46fe-89ff-9c7ce2befdc5", "fields": { - "question": 364, - "contribution": 1812, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", + "question": 373, + "contribution": 3440, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97900,11 +106887,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7fb69ee1-d5c8-4fed-8096-fae0a8023f6e", + "pk": "0aefcc05-920d-43d0-8cc7-12ee3de74b81", "fields": { - "question": 364, - "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 330, + "contribution": 3739, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97912,22 +106899,22 @@ }, { "model": "evaluation.textanswer", - "pk": "7fb9e592-a40b-48d3-abab-60bad6059c89", + "pk": "0b130ef7-c41b-4e27-a374-75eb48ed0efa", "fields": { - "question": 324, - "contribution": 4090, - "answer": "Other stuff", + "question": 330, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "7fc5a594-9523-42e9-a889-51730554c9ff", + "pk": "0b2e892f-4a6e-4ce0-ad67-dc9ad1e1b1ea", "fields": { - "question": 313, - "contribution": 4084, + "question": 314, + "contribution": 4116, "answer": "Lorem", "original_answer": null, "review_decision": "PU", @@ -97936,11 +106923,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7fdf4543-6e63-437b-9860-f56cdb4478da", + "pk": "0b57d39a-cd3c-47e0-b910-bea27d4c2a10", "fields": { - "question": 314, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 393, + "contribution": 3711, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97948,11 +106935,11 @@ }, { "model": "evaluation.textanswer", - "pk": "7ff44dad-d102-4424-b737-93e3c778ecd1", + "pk": "0bb5b0d5-3a6c-4c5d-89e7-00c17b809f5d", "fields": { - "question": 399, - "contribution": 3711, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "question": 364, + "contribution": 3595, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97960,23 +106947,23 @@ }, { "model": "evaluation.textanswer", - "pk": "7ff9bb80-275a-4db3-8690-e94808abac1d", + "pk": "0bc025bb-335d-4df7-a46b-3bc862f8d758", "fields": { "question": 342, - "contribution": 3723, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "contribution": 3785, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "801c1390-e746-494f-ab45-7578c085c136", + "pk": "0c70c59c-4c2b-4a2f-b108-f753809b91ce", "fields": { "question": 330, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -97984,10 +106971,10 @@ }, { "model": "evaluation.textanswer", - "pk": "80290305-2f3f-4b2e-8578-6aa66c474920", + "pk": "0ca2766b-cfda-4124-9be9-c4b1cf0091d0", "fields": { - "question": 364, - "contribution": 1205, + "question": 324, + "contribution": 1634, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", @@ -97996,11 +106983,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8037a64b-d43a-4177-8dbb-10e6fd016486", + "pk": "0ce479bc-c036-493b-917d-243946bd1742", "fields": { - "question": 313, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 318, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98008,11 +106995,11 @@ }, { "model": "evaluation.textanswer", - "pk": "804a780c-274f-4738-880e-cbdd4d890410", + "pk": "0cfcf43d-d2fc-49ff-aa2d-b49286f25d0a", "fields": { - "question": 367, - "contribution": 864, - "answer": "Lorem ipsum dolor sit amet", + "question": 330, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98020,11 +107007,11 @@ }, { "model": "evaluation.textanswer", - "pk": "807a743d-6140-4c86-ba91-d2c1ada16692", + "pk": "0cfdb76a-6790-4b93-abbf-a16b7547f0b8", "fields": { - "question": 318, - "contribution": 3739, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 330, + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98032,11 +107019,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8097b393-f6b1-4b6f-b173-b12477b9d8e3", + "pk": "0d5d8f34-cb27-49c8-8848-b21a370ff6e1", "fields": { - "question": 314, - "contribution": 4118, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 318, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98044,11 +107031,11 @@ }, { "model": "evaluation.textanswer", - "pk": "80db48bb-c067-496e-ba7a-9d1fadfa071c", + "pk": "0d66d053-e057-4c45-b0b4-4626e730222b", "fields": { - "question": 364, - "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "question": 381, + "contribution": 3711, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98056,11 +107043,11 @@ }, { "model": "evaluation.textanswer", - "pk": "80e98f8d-0bae-44fb-9057-9cc822dd90aa", + "pk": "0da9262a-18a3-4fd8-a93d-79746c7f3978", "fields": { - "question": 314, - "contribution": 1626, - "answer": "Lorem ipsum", + "question": 318, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98068,11 +107055,11 @@ }, { "model": "evaluation.textanswer", - "pk": "80f459fd-a40d-488c-9141-36cd32c42b45", + "pk": "0db3d301-de11-4688-8f66-11a50cceb65d", "fields": { - "question": 358, - "contribution": 859, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 314, + "contribution": 4100, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98080,11 +107067,11 @@ }, { "model": "evaluation.textanswer", - "pk": "810a44e5-8a6a-4c91-9685-607ae5bd31a7", + "pk": "0dbd813d-097d-48ce-a901-cb33cd902bca", "fields": { - "question": 318, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 313, + "contribution": 4046, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98092,11 +107079,11 @@ }, { "model": "evaluation.textanswer", - "pk": "81b4f82d-1027-480b-8665-8fa1f415dbaa", + "pk": "0dd21090-486e-4c18-8462-b2bf0b266672", "fields": { - "question": 313, - "contribution": 3665, - "answer": "Lorem ipsum dolor", + "question": 364, + "contribution": 1206, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98104,11 +107091,11 @@ }, { "model": "evaluation.textanswer", - "pk": "81fae325-d168-4591-9443-317a63d1c05e", + "pk": "0dd3ebc2-7356-4c1e-8c36-12c2db098394", "fields": { - "question": 364, - "contribution": 3646, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "question": 313, + "contribution": 4138, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98116,11 +107103,11 @@ }, { "model": "evaluation.textanswer", - "pk": "81fea08b-e066-460c-8ffa-6c57a32be7db", + "pk": "0dd58519-0667-4529-b27c-f6a39a7fa8d6", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 342, + "contribution": 788, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98128,11 +107115,11 @@ }, { "model": "evaluation.textanswer", - "pk": "820e66d4-3400-437b-abc9-bf42adcae34b", + "pk": "0e4ce10b-076f-408e-bcba-6c63cd38f1d7", "fields": { - "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 364, + "contribution": 4148, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98140,11 +107127,11 @@ }, { "model": "evaluation.textanswer", - "pk": "821af4f0-3fa0-47e9-82f8-97807ae0df35", + "pk": "0e5d9ed9-89da-457b-9f63-9b74def62898", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 364, + "contribution": 3776, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98152,11 +107139,11 @@ }, { "model": "evaluation.textanswer", - "pk": "82998aff-f415-4718-8e62-9cfecdcc9883", + "pk": "0ef70dcf-b86d-4bf3-96f5-50214e6305d8", "fields": { - "question": 318, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 324, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98164,11 +107151,11 @@ }, { "model": "evaluation.textanswer", - "pk": "82cf09ba-b838-41ff-addf-624c051f0402", + "pk": "0f1d6bc5-52b7-4011-8c8c-3e62eda6d8c7", "fields": { - "question": 313, - "contribution": 4100, - "answer": "Lorem", + "question": 324, + "contribution": 836, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98176,11 +107163,11 @@ }, { "model": "evaluation.textanswer", - "pk": "82e60ab1-d8f6-46e7-8f7e-88e2d1e00621", + "pk": "0f562700-3193-4306-b58e-dc3098ddbac2", "fields": { - "question": 324, - "contribution": 3721, - "answer": "Lorem", + "question": 318, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98188,23 +107175,23 @@ }, { "model": "evaluation.textanswer", - "pk": "83263e96-ab6c-4afc-a224-f38ff67fff5b", + "pk": "0f70f4f7-74c6-4b84-a7cd-5693f88070f2", "fields": { - "question": 364, - "contribution": 4188, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "question": 324, + "contribution": 3785, + "answer": "Lorem ipsum", "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "83389ea6-3d60-4a9b-aea4-895c71e4da91", + "pk": "0f74dfc1-1381-4f47-be4a-c3d718864b1b", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98212,11 +107199,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8338a338-44ff-462d-b220-05e3205ab36d", + "pk": "0fcd53a8-2e3d-4dee-b550-cbc00fac875f", "fields": { - "question": 364, - "contribution": 1802, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", + "question": 318, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98224,11 +107211,11 @@ }, { "model": "evaluation.textanswer", - "pk": "83541b87-312d-4dfe-bcbf-7c2044747d91", + "pk": "0fdbad0d-1cda-41fb-bafb-cb4d09c19d82", "fields": { - "question": 314, - "contribution": 4120, - "answer": "Lorem", + "question": 358, + "contribution": 859, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98236,11 +107223,11 @@ }, { "model": "evaluation.textanswer", - "pk": "83e1f8f1-8c7f-4c4a-8b2c-8b9f57285f5e", + "pk": "0fdf0fae-366e-40d8-8c7a-3b996b1b3fb0", "fields": { - "question": 324, - "contribution": 862, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 364, + "contribution": 4139, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98248,11 +107235,11 @@ }, { "model": "evaluation.textanswer", - "pk": "83f70a61-a4d1-48b1-91b9-82b0ab0dac1f", + "pk": "1042c758-a4a7-4163-aeb0-bcdc4ebd7c8c", "fields": { - "question": 342, - "contribution": 804, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "question": 324, + "contribution": 3683, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98260,23 +107247,23 @@ }, { "model": "evaluation.textanswer", - "pk": "84247258-6aee-450c-9732-5ec7fbf6cc75", + "pk": "1090cbd8-458d-41ef-a64d-b489b24e5e8d", "fields": { - "question": 314, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit amet,", + "question": 429, + "contribution": 864, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, - "review_decision": "PU", + "review_decision": "DE", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "84a315ca-7f63-4ad3-9907-666fb2d1088c", + "pk": "109c64cb-f859-461f-8424-bcc834090340", "fields": { - "question": 314, - "contribution": 3725, - "answer": "Lorem", + "question": 342, + "contribution": 3508, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98284,11 +107271,11 @@ }, { "model": "evaluation.textanswer", - "pk": "84a3f1b9-8fa9-4ce7-9210-4d8e4e5fdfd8", + "pk": "10d586af-81d8-4d7e-b2ac-440601251cdf", "fields": { - "question": 318, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 364, + "contribution": 3519, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98296,11 +107283,11 @@ }, { "model": "evaluation.textanswer", - "pk": "84bff4c9-dcd3-404a-a140-03bcc38ccdc6", + "pk": "10d87cff-a995-4334-a42f-22b412c7c0e8", "fields": { - "question": 439, - "contribution": 4008, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 454, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98308,10 +107295,10 @@ }, { "model": "evaluation.textanswer", - "pk": "84ca2f32-7011-4838-a093-06dff6267b1b", + "pk": "10da5192-3224-4e37-a668-c6b58a725f90", "fields": { - "question": 342, - "contribution": 3645, + "question": 324, + "contribution": 804, "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", @@ -98320,10 +107307,10 @@ }, { "model": "evaluation.textanswer", - "pk": "84f14144-3d68-42ca-9a35-da7364f13a23", + "pk": "10e094c7-8ad0-44d2-8812-cff4217e0389", "fields": { - "question": 318, - "contribution": 4084, + "question": 313, + "contribution": 4100, "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", @@ -98332,11 +107319,11 @@ }, { "model": "evaluation.textanswer", - "pk": "852c1cf3-8bb0-46db-84c1-e841d0d09544", + "pk": "10ff33f6-a30a-4b3d-881e-50ec070befca", "fields": { "question": 313, - "contribution": 4100, - "answer": "Lorem", + "contribution": 4084, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98344,11 +107331,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8595717d-2f85-4c7a-8f88-06a76eefeb8c", + "pk": "114cef6d-d903-47b0-a6cb-410ceeebff95", "fields": { "question": 330, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98356,11 +107343,11 @@ }, { "model": "evaluation.textanswer", - "pk": "85a9fb48-1001-4cae-b0e0-851488956cdf", + "pk": "1152942f-d289-41be-bd58-473a6a42a011", "fields": { - "question": 314, - "contribution": 1837, - "answer": "Lorem", + "question": 324, + "contribution": 4128, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98368,11 +107355,11 @@ }, { "model": "evaluation.textanswer", - "pk": "85e1420e-3d5e-43b9-bf11-6d0e35c1ea78", + "pk": "115f4f26-0ed8-4122-ad1c-bce1686ae8c2", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", + "question": 364, + "contribution": 885, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98380,11 +107367,11 @@ }, { "model": "evaluation.textanswer", - "pk": "85f0938a-a682-4061-88d7-f0b1f0d270b4", + "pk": "116b081d-6bf2-48b0-93a3-844d46ec3861", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 3650, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98392,11 +107379,11 @@ }, { "model": "evaluation.textanswer", - "pk": "85f0cf46-6177-4769-88be-ac6c6da3c1d3", + "pk": "118f53c0-c91c-40b6-a76b-4c8efa8f523b", "fields": { - "question": 364, - "contribution": 3391, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "question": 318, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98404,11 +107391,11 @@ }, { "model": "evaluation.textanswer", - "pk": "860d3357-3e1d-4377-af0e-ea71307877a2", + "pk": "11a3eb32-713e-4766-ada0-c87072556ceb", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 364, + "contribution": 3473, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98416,11 +107403,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8619bd06-078f-433d-9998-8a475a35fcc3", + "pk": "11a3ec51-db5f-403a-afce-92a762d806be", "fields": { - "question": 364, - "contribution": 3894, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "question": 324, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98428,11 +107415,11 @@ }, { "model": "evaluation.textanswer", - "pk": "863d0373-4ca6-4cfa-b51e-294b8052737a", + "pk": "11afd65c-d8f7-4d08-8718-569ad830576a", "fields": { - "question": 373, - "contribution": 4094, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", + "question": 313, + "contribution": 3679, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98440,11 +107427,11 @@ }, { "model": "evaluation.textanswer", - "pk": "864e46ad-8afa-4a99-af71-3c682b8766ae", + "pk": "11d62ee8-6fdb-46a7-a032-bb8243b65857", "fields": { - "question": 364, - "contribution": 885, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98452,11 +107439,11 @@ }, { "model": "evaluation.textanswer", - "pk": "86743bbb-c118-4831-a0d5-456731042992", + "pk": "1209d6ed-a3e5-44db-b08e-fb3a6887bb5a", "fields": { "question": 330, "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98464,11 +107451,11 @@ }, { "model": "evaluation.textanswer", - "pk": "86808372-5932-4479-b40f-c8dd08b7b9c6", + "pk": "126dc816-81e6-4527-b0b1-5e0abec4f856", "fields": { "question": 314, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit", + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98476,11 +107463,11 @@ }, { "model": "evaluation.textanswer", - "pk": "868bb984-9027-4917-9c65-dc1ed765e632", + "pk": "12a105cc-1e76-4e97-a0c9-09861b594c03", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 364, + "contribution": 4121, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98488,11 +107475,11 @@ }, { "model": "evaluation.textanswer", - "pk": "86de27d8-e116-4481-88c7-a1a35e4cb4d2", + "pk": "12a5b715-b36b-4a53-8762-7610f1a1fec1", "fields": { - "question": 330, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "question": 373, + "contribution": 3404, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98500,11 +107487,11 @@ }, { "model": "evaluation.textanswer", - "pk": "86f5fbfb-36bf-4ca9-977c-9f0da5fc0159", + "pk": "12aa664d-7a38-4d0d-bd4c-92e42a7f1dbc", "fields": { - "question": 314, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", + "question": 364, + "contribution": 3391, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98512,11 +107499,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8708b305-6618-4f0c-8879-3f321a16858a", + "pk": "12c54ebd-f0a3-4b0b-a0c3-911c1ff499af", "fields": { - "question": 455, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 313, + "contribution": 4128, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98524,11 +107511,11 @@ }, { "model": "evaluation.textanswer", - "pk": "870cc179-73ee-4096-a394-5f9d08e6493f", + "pk": "12f8774a-b06a-4d62-af0c-b7ebeab6a68c", "fields": { "question": 324, - "contribution": 3725, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", + "contribution": 3727, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98536,23 +107523,23 @@ }, { "model": "evaluation.textanswer", - "pk": "8729afb2-1aa6-4f5a-8863-ea806e93e54e", + "pk": "1346a57e-5804-4ad7-b981-a75ee5c10c4c", "fields": { - "question": 364, - "contribution": 4073, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 330, + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "875bca71-63ca-420d-a1e8-b0bc374d05e4", + "pk": "13560ff9-5a1d-418c-81d9-fa601abceaf9", "fields": { - "question": 364, - "contribution": 1202, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 373, + "contribution": 3486, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98560,11 +107547,11 @@ }, { "model": "evaluation.textanswer", - "pk": "875c4761-67b7-4fbc-962b-0174eed23845", + "pk": "136339b3-ef6f-48ec-bec1-6abce948f74c", "fields": { - "question": 440, - "contribution": 4140, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98572,11 +107559,11 @@ }, { "model": "evaluation.textanswer", - "pk": "878b9f45-1d49-426c-8e5e-bf304f7dcf9c", + "pk": "1370b508-7503-4ad3-895f-1a84bc2e3518", "fields": { - "question": 313, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98584,11 +107571,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8864c8f8-958d-48ff-8a73-d2c10f69152e", + "pk": "13c97136-4c7f-4df3-94da-d58110ecdeb6", "fields": { - "question": 324, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 330, + "contribution": 3434, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98596,11 +107583,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8874e03e-c454-4d25-a212-6a5d6cf1c202", + "pk": "13e6c0f7-83fa-40d5-a62a-3291713b3855", "fields": { "question": 318, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98608,23 +107595,23 @@ }, { "model": "evaluation.textanswer", - "pk": "887c57a7-e5f4-46ec-969e-e4507e9b7e8b", + "pk": "14205039-f0fd-4a88-aaf3-55ce05d56515", "fields": { - "question": 318, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", + "question": 342, + "contribution": 3785, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "88926375-6806-475e-a0a2-f1b364bc8619", + "pk": "144570fa-8fa5-400f-b09e-b945d59d859a", "fields": { - "question": 330, - "contribution": 3739, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 314, + "contribution": 836, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98632,11 +107619,11 @@ }, { "model": "evaluation.textanswer", - "pk": "88ba5d51-ab86-4a20-9d3c-d910ccbc6990", + "pk": "1452e456-6d1c-48e0-b427-1357d2abe175", "fields": { - "question": 364, - "contribution": 4139, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 318, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98644,11 +107631,11 @@ }, { "model": "evaluation.textanswer", - "pk": "88d01798-50f7-40bb-aa2a-32480d5870a6", + "pk": "148c52a6-a1c2-4de7-b387-056de969f8fa", "fields": { "question": 364, - "contribution": 4204, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "contribution": 3726, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98656,11 +107643,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8987e8a3-e890-4021-833c-323513faf3e7", + "pk": "14aa3d5b-8fc1-4886-aa03-26cb1fa7b918", "fields": { - "question": 314, - "contribution": 3390, - "answer": "Lorem ipsum", + "question": 313, + "contribution": 4138, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98668,11 +107655,11 @@ }, { "model": "evaluation.textanswer", - "pk": "89a305e1-057a-4fd3-84c6-a650181094e2", + "pk": "14af71a5-bc8b-418a-8cc6-8e42b128e7f5", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 313, + "contribution": 3354, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98680,11 +107667,11 @@ }, { "model": "evaluation.textanswer", - "pk": "89a8060c-524f-4ceb-8e70-e23579ccee50", + "pk": "14c8ce86-701d-4d3f-bdd3-3cfe834912ff", "fields": { "question": 330, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98692,11 +107679,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8a12cc1e-d613-46eb-8300-e61066b420df", + "pk": "14f7858d-f82f-4790-879d-d0a1299d9a91", "fields": { - "question": 373, - "contribution": 1638, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 1206, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98704,11 +107691,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8a209b84-5710-4c19-a7e4-5f688d57f736", + "pk": "150ce45d-bb7f-4773-a993-f692f7fa6e2f", "fields": { "question": 318, - "contribution": 3725, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98716,11 +107703,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8a507fe8-66a5-44c6-a82d-5dc9e1d85959", + "pk": "153e879c-c123-4055-abd1-6825d270e263", "fields": { - "question": 455, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "question": 373, + "contribution": 3645, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98728,11 +107715,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8a56fd1b-52f6-4b12-b605-ec8dda964ef0", + "pk": "15449bc8-0af5-4f3c-ac56-b451ac9f9a1a", "fields": { - "question": 342, - "contribution": 4122, - "answer": "Lorem ipsum dolor", + "question": 364, + "contribution": 1217, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98740,11 +107727,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8a5a1ece-4cc5-4071-bb27-edce1c83e689", + "pk": "1555b052-54a7-456e-825d-eda35cec35f9", "fields": { - "question": 364, - "contribution": 4188, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "question": 342, + "contribution": 1662, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98752,11 +107739,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8a6048b4-da85-4a89-8b48-3e1c308850af", + "pk": "155f0071-723e-4136-9bc7-13e35feb5032", "fields": { - "question": 358, - "contribution": 3608, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "question": 364, + "contribution": 3553, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98764,11 +107751,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8a797170-f85e-42f3-ad19-643d7aeec579", + "pk": "1627ad80-3637-439d-bfcf-39b0831d5d15", "fields": { - "question": 330, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 313, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98776,11 +107763,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8aca85cc-d958-424a-9476-5c4518c00409", + "pk": "165f8b55-5169-4446-951e-e61991e428a8", "fields": { - "question": 342, - "contribution": 1638, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "question": 314, + "contribution": 908, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98788,11 +107775,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8acfeea2-86f1-4625-ba9e-a984b241cd1e", + "pk": "16646537-af1e-4f0c-9dd6-7f2ed5bd7648", "fields": { "question": 364, - "contribution": 3608, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", + "contribution": 4203, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98800,11 +107787,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8ad3838e-c8d9-46bc-8e74-01e1ecd79e95", + "pk": "1679743f-a5ff-481f-b94c-6f54b396d9bd", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 364, + "contribution": 1659, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98812,11 +107799,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8ad3c168-ba10-4be2-a395-3c0972e4dd7e", + "pk": "167c07cf-d96a-45d4-ba64-ea938f498b5e", "fields": { - "question": 314, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "question": 365, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98824,10 +107811,10 @@ }, { "model": "evaluation.textanswer", - "pk": "8aec040a-5c12-40c6-a6d0-dce9861a4d88", + "pk": "16fc0809-4dd9-47e4-a54a-8d50ca54f074", "fields": { - "question": 342, - "contribution": 3645, + "question": 364, + "contribution": 881, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", @@ -98836,23 +107823,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8b26d9a0-a092-4210-952e-b50d305ba60b", - "fields": { - "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false - } -}, -{ - "model": "evaluation.textanswer", - "pk": "8b3b8e93-bd14-47fe-8464-7b1466d4cd6b", + "pk": "17032243-a4a8-442d-906c-283f94a96b6f", "fields": { - "question": 364, - "contribution": 1287, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 330, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98860,11 +107835,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8b42d622-cb47-4f88-8615-832098e72a7a", + "pk": "1727b506-049a-42e6-82a8-e1fa353a6059", "fields": { - "question": 324, - "contribution": 864, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat", + "question": 318, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98872,35 +107847,23 @@ }, { "model": "evaluation.textanswer", - "pk": "8bb7c053-cb20-470f-9611-5179cf84bc05", + "pk": "176c70ed-0a94-4d34-a51f-c50f307fbdd6", "fields": { "question": 342, - "contribution": 886, + "contribution": 3785, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, - "review_decision": "PU", - "is_flagged": false - } -}, -{ - "model": "evaluation.textanswer", - "pk": "8bdc1f1c-e5aa-4b20-a195-924fc98f7859", - "fields": { - "question": 314, - "contribution": 3354, - "answer": "Lorem ipsum", - "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "8bf94f09-68b5-4080-8327-094718cc5024", + "pk": "1775456e-f37c-42d4-a535-b2396f8de55f", "fields": { "question": 364, - "contribution": 3786, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "contribution": 4115, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, "review_decision": "UN", "is_flagged": false @@ -98908,11 +107871,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8c9117dd-6e84-4823-97f9-57d70ccbf0be", + "pk": "17aa795e-091b-40a9-a948-c4f3fda9e246", "fields": { "question": 318, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98920,11 +107883,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8c9f8118-ed3d-4c34-96fb-25e8eb9c4df0", + "pk": "17d9c749-708a-4ab6-8d85-dd8bcaffb6d2", "fields": { - "question": 314, - "contribution": 4046, - "answer": "Lorem ipsum dolor", + "question": 318, + "contribution": 3354, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98932,11 +107895,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8ca27d5c-4aee-468a-a5c8-37a48603febe", + "pk": "17dc231f-855e-438f-a688-081c972559f0", "fields": { - "question": 330, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 342, + "contribution": 1656, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98944,11 +107907,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8cbb562e-675d-4e06-9dd4-4d9e1975e5ad", + "pk": "17df95ba-fb67-48b4-88bd-669533e8a98b", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 318, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98956,11 +107919,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8d02e690-f016-4bc7-8636-7a35c349cbe6", + "pk": "17e3753d-3fd4-4532-9fa2-31361c9a2797", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem ipsum dolor", + "question": 318, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98968,11 +107931,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8d080da2-d5da-41df-be0d-92524037439e", + "pk": "1835d03d-9a82-45f1-b93b-506455efd1b3", "fields": { - "question": 430, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", + "question": 318, + "contribution": 3462, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98980,11 +107943,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8d22fb5e-4f7f-4e35-853f-196f0ddbd057", + "pk": "188d0c67-0c37-4fd8-9c69-841a6a5215ee", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", + "question": 342, + "contribution": 3685, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -98992,10 +107955,10 @@ }, { "model": "evaluation.textanswer", - "pk": "8d626461-9755-4405-b940-1f730ff642de", + "pk": "18928a21-d4d4-43d9-98fa-3f2aa457c244", "fields": { - "question": 313, - "contribution": 836, + "question": 364, + "contribution": 1297, "answer": "Lorem", "original_answer": null, "review_decision": "PU", @@ -99004,11 +107967,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8d763547-eb19-410a-8cdb-2ccb466ce5f4", + "pk": "18dad92a-0fa7-4bad-9e09-c8955d2851c9", "fields": { - "question": 318, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 313, + "contribution": 3434, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99016,11 +107979,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8d872672-a283-4baa-8673-5825136f6ec9", + "pk": "18ddaf5f-7a08-419e-9fb8-089c02eb1f3e", "fields": { - "question": 313, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet,", + "question": 364, + "contribution": 1203, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99028,11 +107991,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8d8e4f18-f55c-4d46-a702-7b1201a71500", + "pk": "1921413d-18e4-4ec2-8425-d0cc7a50608c", "fields": { - "question": 318, - "contribution": 4100, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "question": 313, + "contribution": 1634, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99040,11 +108003,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8d943a08-3974-4160-a8df-dcaf6b706868", + "pk": "193718ae-5558-4b48-ad09-e039b87a1bd4", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 3598, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99052,11 +108015,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8d95df1b-907d-4265-b28a-92e654478edc", + "pk": "19f0793d-6f79-4bd8-8653-0d823963243b", "fields": { "question": 364, - "contribution": 1669, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "contribution": 1802, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99064,11 +108027,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8df5343e-8972-45fb-9076-4000d42b4640", + "pk": "19f4ba0e-dd07-4fc6-90bf-93cec0c82eb8", "fields": { "question": 330, - "contribution": 4120, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99076,11 +108039,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8e378d07-d42a-467c-9bc5-9861c58562b1", + "pk": "19fc1f6d-6e0d-4ce1-a31c-4ecc8a4d7364", "fields": { "question": 364, - "contribution": 1207, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "contribution": 1288, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99088,11 +108051,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8e5ca825-58d6-4b51-8378-d3614b2f498d", + "pk": "1a1901cb-9359-4aa7-9aea-cf08c435215d", "fields": { - "question": 373, - "contribution": 3404, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit", + "question": 314, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99100,11 +108063,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8e97eaaf-bc22-4ef8-9c40-02c9f55ec8f7", + "pk": "1a6108f4-ab7d-44c4-addb-54601f433172", "fields": { - "question": 318, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 364, + "contribution": 1250, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99112,10 +108075,10 @@ }, { "model": "evaluation.textanswer", - "pk": "8ea279c9-f967-4f25-b243-07bae5f0adfc", + "pk": "1a82cf64-2298-48a5-89cb-63e89bf41ac3", "fields": { "question": 314, - "contribution": 3462, + "contribution": 4128, "answer": "Lorem", "original_answer": null, "review_decision": "PU", @@ -99124,23 +108087,23 @@ }, { "model": "evaluation.textanswer", - "pk": "8ecc2aef-66fa-4595-9405-b71f4d9a825a", + "pk": "1a8a3047-3c08-4ba0-8511-99a2bd123d9f", "fields": { "question": 364, - "contribution": 3848, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse", + "contribution": 1297, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, - "review_decision": "PU", + "review_decision": "PR", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "8ed7321e-436d-4312-a678-5761bc722c92", + "pk": "1ac081cb-1da0-4ea0-af23-038d213fa924", "fields": { - "question": 364, - "contribution": 1804, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99148,10 +108111,10 @@ }, { "model": "evaluation.textanswer", - "pk": "8ee2cf19-ad8a-4c3d-9496-ccd912e3a5cc", + "pk": "1ac9c8d5-a45f-4487-8e73-dd9404a68b4a", "fields": { - "question": 342, - "contribution": 1656, + "question": 314, + "contribution": 4128, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", @@ -99160,10 +108123,10 @@ }, { "model": "evaluation.textanswer", - "pk": "8ef02521-5837-46fc-a284-2a27ffa0459d", + "pk": "1af37281-376d-46a9-94ef-02166887ad8f", "fields": { "question": 318, - "contribution": 836, + "contribution": 3721, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", @@ -99172,11 +108135,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8efabe68-ae68-4a54-9870-6f9ddad681c5", + "pk": "1b53fadf-0cfb-4988-8d67-4c122c261445", "fields": { - "question": 342, - "contribution": 1702, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 324, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99184,11 +108147,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8f2fddf4-35ee-43dd-a20a-2b4ced0bad67", + "pk": "1b78a23c-2b4d-4ec3-9769-af52194df07e", "fields": { - "question": 324, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 330, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99196,11 +108159,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8f32ba02-d3ea-450d-a3f4-8ecff39b9aed", + "pk": "1b8983cd-976e-4254-9ea0-e51b0b4818f5", "fields": { - "question": 314, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet,", + "question": 313, + "contribution": 3725, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99208,11 +108171,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8f49070e-a2e8-4ae7-8e56-ec48766a9167", + "pk": "1b9127cc-549d-4498-aff1-55504fb88080", "fields": { - "question": 373, - "contribution": 1710, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99220,11 +108183,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8f896847-8a7e-41ef-9b58-6555c1197896", + "pk": "1bb8db78-fbb6-4c90-9306-06b635b8da95", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "question": 314, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99232,11 +108195,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8f97115d-5372-4efc-8d6d-1a6c4f069018", + "pk": "1bedd7bf-fee0-4ace-a5ce-14344fa2dbaa", "fields": { "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99244,11 +108207,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8f9b3e66-90a9-4717-853a-1ec7bdd263d0", + "pk": "1c021dc4-61cd-42aa-8464-a57fed860be8", "fields": { - "question": 364, - "contribution": 1204, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", + "question": 324, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99256,11 +108219,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8fde9323-76d7-43dc-853e-28503ba2de67", + "pk": "1c2a2322-25e4-42a6-8080-9e7f3abccdb6", "fields": { - "question": 373, - "contribution": 3685, - "answer": "Lorem ipsum dolor sit", + "question": 364, + "contribution": 1784, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99268,11 +108231,11 @@ }, { "model": "evaluation.textanswer", - "pk": "8ff46c76-fd77-4419-93b7-efaa5e59527e", + "pk": "1c2c6e69-ae02-402b-9e68-4313d684fd90", "fields": { - "question": 373, - "contribution": 1726, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "question": 313, + "contribution": 908, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99280,11 +108243,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9054b9e9-87db-4431-8f17-56db7ef00c5d", + "pk": "1c3ab986-3c74-421d-821b-3f63eaebf991", "fields": { - "question": 313, - "contribution": 912, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 3551, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99292,11 +108255,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9070eb13-ef48-4fb7-8e6c-a092592c496f", + "pk": "1c3c3324-d9c3-4ce2-bd86-7d3a9d61a94c", "fields": { "question": 364, - "contribution": 1782, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "contribution": 3551, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99304,11 +108267,11 @@ }, { "model": "evaluation.textanswer", - "pk": "908f72cd-946a-42bd-8c1b-e572ec6264ad", + "pk": "1c8a378e-45dd-4f38-88ac-11257b2d599f", "fields": { - "question": 324, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "question": 342, + "contribution": 3727, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99316,11 +108279,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9093fb38-9dc9-4e7d-93c2-638b24c7c505", + "pk": "1c91db23-97c2-4294-8236-1880fd874762", "fields": { - "question": 314, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet,", + "question": 364, + "contribution": 1809, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99328,11 +108291,11 @@ }, { "model": "evaluation.textanswer", - "pk": "90f74b86-355a-43ab-86ed-29c21108c30e", + "pk": "1c95307d-6c73-4829-9cb2-ed0520fcd341", "fields": { - "question": 313, - "contribution": 4118, - "answer": "Lorem", + "question": 364, + "contribution": 1824, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99340,11 +108303,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9111d3aa-c1dc-4310-b28f-db4ddb61e854", + "pk": "1cabf9b9-1100-48b4-bf37-fab09267e214", "fields": { - "question": 314, - "contribution": 3434, - "answer": "Lorem", + "question": 373, + "contribution": 1638, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99352,11 +108315,11 @@ }, { "model": "evaluation.textanswer", - "pk": "91121a1d-f2aa-41b9-9aa3-a147663d297c", + "pk": "1cbd82f6-c241-48f7-b39f-33b783428d2e", "fields": { - "question": 324, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99364,11 +108327,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9134a2d9-1c3a-4104-a462-b10efecd86b3", + "pk": "1cc79a96-671b-4284-8a75-c74fbb89c42a", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99376,11 +108339,11 @@ }, { "model": "evaluation.textanswer", - "pk": "91351220-4c16-467d-93cf-fef57dfaf1b2", + "pk": "1ce2ae8e-f676-41f4-bfdd-ad2e4f51bd04", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem ipsum dolor sit", + "question": 318, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99388,11 +108351,11 @@ }, { "model": "evaluation.textanswer", - "pk": "91376fe2-636e-43a8-bdad-f8d02ed196bc", + "pk": "1d202453-82cb-4c58-8948-479a7b8f697d", "fields": { - "question": 318, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99400,11 +108363,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9151dff8-b0d8-4c77-b61e-1c24b8492090", + "pk": "1d524bc2-64ac-4fcc-9ec3-8549a3c06287", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem", + "question": 365, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99412,11 +108375,11 @@ }, { "model": "evaluation.textanswer", - "pk": "918959fa-9bef-419d-b4a6-6a67adef00ba", + "pk": "1d686acb-0d53-4b37-bf50-7fa31cd3c1de", "fields": { "question": 364, - "contribution": 3894, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "contribution": 1785, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99424,11 +108387,11 @@ }, { "model": "evaluation.textanswer", - "pk": "91906578-d9d3-477c-81bd-3dbedab87938", + "pk": "1d73b5e0-488b-4ad7-9d4c-965c54fe81eb", "fields": { - "question": 313, - "contribution": 3354, - "answer": "Lorem ipsum dolor", + "question": 342, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99436,11 +108399,11 @@ }, { "model": "evaluation.textanswer", - "pk": "91c7140b-312b-4309-a46e-503159255952", + "pk": "1d7d0832-6892-4d24-bd6f-adcb74cac200", "fields": { - "question": 314, - "contribution": 1634, - "answer": "Lorem", + "question": 313, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99448,11 +108411,11 @@ }, { "model": "evaluation.textanswer", - "pk": "92194020-3d80-4212-8dbc-5876e2b21d0d", + "pk": "1d944af2-4253-4759-b8cd-f7e751f34fb0", "fields": { "question": 314, - "contribution": 908, - "answer": "Lorem ipsum dolor", + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99460,11 +108423,11 @@ }, { "model": "evaluation.textanswer", - "pk": "92467be7-cca5-4b98-8771-b4068d8b3417", + "pk": "1dff4f94-28ad-4696-9f1c-4b7764eac0e3", "fields": { - "question": 324, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 313, + "contribution": 4128, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99472,23 +108435,23 @@ }, { "model": "evaluation.textanswer", - "pk": "9267bdda-a18a-48c7-928b-740164d46da8", + "pk": "1e112d52-e012-4842-b144-e0241b8df055", "fields": { - "question": 324, - "contribution": 864, - "answer": "Lorem ipsum dolor sit amet", - "original_answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "original_answer": null, "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "92dbad4d-c20e-4b15-aac2-6a94ce7bee1c", + "pk": "1e243be6-d7b1-406e-8bf5-feecc9389f4e", "fields": { - "question": 330, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "question": 313, + "contribution": 1626, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99496,11 +108459,11 @@ }, { "model": "evaluation.textanswer", - "pk": "93010bb5-3d85-4a4e-9ca9-859f083f28cf", + "pk": "1e53bea4-2f43-4cb9-a177-3a7b56611212", "fields": { "question": 364, - "contribution": 3391, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", + "contribution": 1202, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99508,11 +108471,11 @@ }, { "model": "evaluation.textanswer", - "pk": "931091e7-bd12-47db-8c19-305f3abe4823", + "pk": "1e91d56f-33ce-43dc-8d49-239c6da283ad", "fields": { - "question": 373, - "contribution": 3404, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 342, + "contribution": 1638, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99520,11 +108483,11 @@ }, { "model": "evaluation.textanswer", - "pk": "933b01da-2779-42a6-931c-c6038d2e7fd4", + "pk": "1ee55bda-10c9-46fb-b026-9b087c3d152e", "fields": { - "question": 318, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "question": 373, + "contribution": 3486, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99532,11 +108495,11 @@ }, { "model": "evaluation.textanswer", - "pk": "934af40e-74de-4cf7-aae8-0536ff4ab2da", + "pk": "1efed8cf-406c-473f-a17b-a7ee77be292a", "fields": { "question": 314, - "contribution": 3739, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "contribution": 1658, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99544,11 +108507,11 @@ }, { "model": "evaluation.textanswer", - "pk": "935dd972-4b5e-4352-bca5-9bfa15051241", + "pk": "1f1d9c3c-6b08-4390-a153-7d5b6f59e627", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "question": 364, + "contribution": 3649, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99556,11 +108519,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9362ee67-6af5-4aea-85ad-dcf3ae4bcc44", + "pk": "1f51d8ec-b16a-437c-9f29-d1db83bc6b8c", "fields": { - "question": 342, - "contribution": 1702, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 324, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99568,11 +108531,11 @@ }, { "model": "evaluation.textanswer", - "pk": "936773ae-79e3-43d0-928b-37d27ee34d66", + "pk": "1f54d981-fec1-498f-b309-b03ee565f745", "fields": { "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99580,11 +108543,11 @@ }, { "model": "evaluation.textanswer", - "pk": "93903c2a-a63f-440e-b6af-69d30160947f", + "pk": "1f634ca6-12fd-490f-987d-24ef0d19b610", "fields": { "question": 324, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99592,11 +108555,11 @@ }, { "model": "evaluation.textanswer", - "pk": "93d67524-2f5f-4a49-96bd-d29f7969ebff", + "pk": "1f787614-767a-45f2-a5a2-99a7197c0caa", "fields": { - "question": 364, - "contribution": 913, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "question": 342, + "contribution": 4094, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99604,11 +108567,11 @@ }, { "model": "evaluation.textanswer", - "pk": "93e2c963-403a-4cae-8ce1-f75e6338f8b3", + "pk": "1f830cd7-e79e-430e-9015-8322ff24c933", "fields": { - "question": 411, - "contribution": 3974, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 364, + "contribution": 1806, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99616,11 +108579,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9409ffac-6e8c-4125-a8bc-23d2e1114166", + "pk": "1f86542e-7a37-4bec-877b-2df380f70330", "fields": { - "question": 330, - "contribution": 1634, - "answer": "Lorem ipsum", + "question": 393, + "contribution": 3711, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99628,11 +108591,11 @@ }, { "model": "evaluation.textanswer", - "pk": "940b21e3-1b51-45c6-95c4-9189122b8ca6", + "pk": "1fab4e75-64e4-481c-8965-6446cabe9a11", "fields": { - "question": 364, - "contribution": 4203, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "question": 342, + "contribution": 3681, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99640,11 +108603,11 @@ }, { "model": "evaluation.textanswer", - "pk": "94524672-690b-41a7-aa73-82017cea8eea", + "pk": "1fb65e1d-c5c8-4c9b-a966-d4b0aa7b58c6", "fields": { - "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 429, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99652,11 +108615,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9496e2e6-3f2e-4663-9d4d-f91504d533e1", + "pk": "1fc8b1f5-8fa0-44b7-b962-90bec15b909c", "fields": { - "question": 342, - "contribution": 4002, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "question": 314, + "contribution": 3739, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99664,11 +108627,11 @@ }, { "model": "evaluation.textanswer", - "pk": "94acedf6-ace1-436d-a267-8c6497121a6f", + "pk": "1fd3770f-f49e-410b-869c-62d849a4fd18", "fields": { - "question": 330, - "contribution": 822, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "question": 364, + "contribution": 3847, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99676,11 +108639,11 @@ }, { "model": "evaluation.textanswer", - "pk": "94ed1714-a6b6-4f75-acc5-58ffbf477324", + "pk": "1fd3cd9a-7bd0-49ed-bc0b-ed23a84499e6", "fields": { - "question": 330, - "contribution": 822, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 364, + "contribution": 3916, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99688,11 +108651,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9516f1a7-6039-4047-8763-164e337b11c5", + "pk": "1fd80a3d-f196-4573-86b6-15fee9e36fbe", "fields": { - "question": 373, - "contribution": 3681, - "answer": "Lorem ipsum", + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99700,23 +108663,23 @@ }, { "model": "evaluation.textanswer", - "pk": "951743a7-bb0a-4538-88cb-1da8530be06c", + "pk": "1fe147f2-63c7-41b0-820c-78e4699a71cb", "fields": { - "question": 324, - "contribution": 3785, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 439, + "contribution": 4140, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "952330bd-f746-4a6b-86ec-7932d5c6dee7", + "pk": "1ff1fb02-2880-4017-b70f-89f88f6a0f27", "fields": { - "question": 330, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 454, + "contribution": 4185, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99724,23 +108687,23 @@ }, { "model": "evaluation.textanswer", - "pk": "95427cff-84ce-4e95-b1bc-e8303df853d5", + "pk": "1ffa1592-88a0-4a3f-ba3a-3305f763b400", "fields": { - "question": 440, - "contribution": 4090, - "answer": "Et cetera", + "question": 318, + "contribution": 4100, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "955a37dd-a2e8-4564-a897-957d2f1021af", + "pk": "2011c223-3b21-488d-9da1-02126b20b094", "fields": { "question": 364, "contribution": 4148, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99748,11 +108711,11 @@ }, { "model": "evaluation.textanswer", - "pk": "957138f8-2409-44ab-aed2-2674962d45bf", + "pk": "204742a2-6677-4159-a2ab-c5d61e76f4a0", "fields": { - "question": 314, - "contribution": 4100, - "answer": "Lorem ipsum", + "question": 342, + "contribution": 1662, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99760,11 +108723,11 @@ }, { "model": "evaluation.textanswer", - "pk": "95947e04-a7a3-4622-b64a-61025b90ebc0", + "pk": "2075f7ee-7c64-4837-af19-dab7f21b0827", "fields": { "question": 364, - "contribution": 1836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "contribution": 1802, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99772,11 +108735,11 @@ }, { "model": "evaluation.textanswer", - "pk": "95c8ba37-00f8-4cde-a1be-d9e216ee93d3", + "pk": "2098a889-f4fc-4ea1-bd89-77ba944e650d", "fields": { "question": 364, - "contribution": 3551, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "contribution": 1151, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99784,11 +108747,11 @@ }, { "model": "evaluation.textanswer", - "pk": "95d8a617-3e92-4729-9246-092b58944286", + "pk": "209953b9-ffae-4e77-afad-bb324ed58f59", "fields": { - "question": 313, - "contribution": 3721, - "answer": "Lorem", + "question": 364, + "contribution": 3921, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99796,11 +108759,11 @@ }, { "model": "evaluation.textanswer", - "pk": "95dd5934-1e81-46a8-b3c8-6bf1bb8ac1cd", + "pk": "20a697d0-f0fb-4280-8da6-438dc34e5462", "fields": { - "question": 318, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "question": 314, + "contribution": 3422, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99808,11 +108771,11 @@ }, { "model": "evaluation.textanswer", - "pk": "95f76c8c-d229-412a-ab36-db213b3759c0", + "pk": "20c08f12-55c4-4ab2-89e2-0f0502c072fc", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "question": 365, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99820,11 +108783,11 @@ }, { "model": "evaluation.textanswer", - "pk": "960639f8-d31d-4947-846f-1cf69efd85b3", + "pk": "20dccbde-07f6-4de9-9d92-9ee1565c4ccb", "fields": { "question": 364, - "contribution": 1217, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "contribution": 1246, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99832,11 +108795,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9632e4d4-cb01-4801-b250-d31e5d930547", + "pk": "20df3f4b-ddbc-4dc3-bed2-60b1709bb5a2", "fields": { "question": 364, - "contribution": 1217, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "contribution": 3646, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99844,11 +108807,11 @@ }, { "model": "evaluation.textanswer", - "pk": "963ff3cd-dd95-484f-8d4e-c1292c16f093", + "pk": "20e0309b-8f1b-4426-a943-9f6f0870244c", "fields": { - "question": 364, - "contribution": 1845, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 314, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99856,11 +108819,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9653dfac-3896-4c79-b45b-40126bd5e8cf", + "pk": "20fdc1b3-be88-4613-9ba1-a2435db215c4", "fields": { - "question": 314, - "contribution": 3406, - "answer": "Lorem ipsum", + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99868,11 +108831,11 @@ }, { "model": "evaluation.textanswer", - "pk": "96a7fe32-d32d-465c-8cc0-dd4988807880", + "pk": "2110e9cc-4d4a-4330-8002-daa6e1e2cc9b", "fields": { - "question": 364, - "contribution": 3728, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 313, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99880,11 +108843,11 @@ }, { "model": "evaluation.textanswer", - "pk": "96a8425d-1b7c-4362-9286-7014a80608a9", + "pk": "21364d99-ee30-4ad5-ba35-a409292292f0", "fields": { - "question": 318, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99892,11 +108855,11 @@ }, { "model": "evaluation.textanswer", - "pk": "96c23f79-b025-4867-aedd-7df8b363b7b7", + "pk": "21a2d2bc-8539-4ad6-a427-26bb0ff0de02", "fields": { - "question": 381, - "contribution": 3775, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", + "question": 364, + "contribution": 4203, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99904,11 +108867,11 @@ }, { "model": "evaluation.textanswer", - "pk": "96d83623-12fa-4ba8-b590-f388bb242b94", + "pk": "21e940f1-6e09-4505-a23d-3e24e61e6e9d", "fields": { - "question": 314, - "contribution": 884, - "answer": "Lorem", + "question": 439, + "contribution": 4008, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99916,11 +108879,11 @@ }, { "model": "evaluation.textanswer", - "pk": "97046d36-e1f2-471d-9229-0455eb1fcdea", + "pk": "225097a8-16f3-494a-85d8-7c24991a4444", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99928,11 +108891,11 @@ }, { "model": "evaluation.textanswer", - "pk": "972639aa-0033-4bd4-b75a-11eb46a9630b", + "pk": "2278653b-afe2-41d5-8d07-724d46d9c849", "fields": { - "question": 318, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 364, + "contribution": 3921, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99940,11 +108903,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9748c554-7432-4636-8410-121167cf28df", + "pk": "22cfd607-8a1c-4a4b-b524-ac898a921436", "fields": { - "question": 324, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 364, + "contribution": 3859, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99952,11 +108915,11 @@ }, { "model": "evaluation.textanswer", - "pk": "97543bfd-b069-43f9-aa8d-09ed59b5aa07", + "pk": "22d28f9c-b15f-4140-a8f4-e59f4df03e78", "fields": { - "question": 342, - "contribution": 3508, - "answer": "Lorem ipsum dolor", + "question": 313, + "contribution": 3434, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99964,11 +108927,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9756e14e-be57-4ebf-9fc0-ab0643581009", + "pk": "22d89cac-286c-411f-8415-af70b75a222d", "fields": { "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99976,11 +108939,11 @@ }, { "model": "evaluation.textanswer", - "pk": "97579133-ee68-4377-af5b-4a806adb66c9", + "pk": "22ecd023-b7ed-40d1-92f9-27979f759c76", "fields": { - "question": 330, - "contribution": 4120, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 364, + "contribution": 3722, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -99988,11 +108951,11 @@ }, { "model": "evaluation.textanswer", - "pk": "977fac8c-5b16-4f14-969f-8f88c2831c1b", + "pk": "2311561a-f98a-4c84-9284-20bf2db7c50d", "fields": { - "question": 314, - "contribution": 4118, - "answer": "Lorem", + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100000,11 +108963,11 @@ }, { "model": "evaluation.textanswer", - "pk": "97b444eb-5d45-4753-8ec9-04965f01e54c", + "pk": "23327bee-5911-4449-a276-8aa89bc75cde", "fields": { - "question": 313, + "question": 318, "contribution": 884, - "answer": "Lorem", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100012,11 +108975,11 @@ }, { "model": "evaluation.textanswer", - "pk": "97b47928-e56c-4679-8cdb-77e55339870d", + "pk": "235b0136-3950-4227-8e56-4d9fb1adb45d", "fields": { - "question": 324, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100024,11 +108987,11 @@ }, { "model": "evaluation.textanswer", - "pk": "97c65575-686b-483b-a156-ce5dd6b7becc", + "pk": "237e1f28-b231-4297-98a3-8e2104f6a4db", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit", + "question": 373, + "contribution": 3482, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100036,11 +108999,11 @@ }, { "model": "evaluation.textanswer", - "pk": "981720fc-384d-46e7-b750-9578c2dcb14f", + "pk": "23aa2d21-8be9-447b-aa2c-fb9e9e678651", "fields": { - "question": 324, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 330, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100048,11 +109011,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9884bd2f-8fdf-42c2-a031-264dbe0a3d0b", + "pk": "23f0936c-8f3a-491c-bc16-567f697cdb4d", "fields": { - "question": 342, - "contribution": 3404, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100060,11 +109023,11 @@ }, { "model": "evaluation.textanswer", - "pk": "989657e6-b418-4d97-97dc-1aa3c44d9456", + "pk": "23fa17e0-486a-4b5d-9960-1a69f3d8fe87", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem", + "question": 330, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100072,11 +109035,11 @@ }, { "model": "evaluation.textanswer", - "pk": "98a10cff-4c1c-4fa7-a0be-cbce9862beea", + "pk": "2435dbc0-1253-4248-9709-6a891230e32f", "fields": { - "question": 342, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 314, + "contribution": 3354, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100084,11 +109047,11 @@ }, { "model": "evaluation.textanswer", - "pk": "98cfdca3-4224-4b9f-b5fd-eeb039fbf282", + "pk": "2440b783-5719-4f49-8503-fa25fa215d8a", "fields": { - "question": 330, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "question": 364, + "contribution": 4139, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100096,11 +109059,11 @@ }, { "model": "evaluation.textanswer", - "pk": "98e266f2-c1f4-4aae-a2d6-46c6069bd5df", + "pk": "244a7e12-da67-4024-a8db-cf5f15755559", "fields": { "question": 324, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", + "contribution": 1710, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100108,23 +109071,23 @@ }, { "model": "evaluation.textanswer", - "pk": "98f7ffea-58bf-4538-abb6-567cadd696cb", + "pk": "245b5f3a-980b-420e-abf8-1940fd297ff3", "fields": { - "question": 373, - "contribution": 3452, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 324, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "9942832f-cf64-4f47-9bf4-d50886b94de2", + "pk": "24766431-72ac-462b-a582-f8adfed6e575", "fields": { - "question": 364, - "contribution": 4204, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 318, + "contribution": 4120, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100132,11 +109095,11 @@ }, { "model": "evaluation.textanswer", - "pk": "99545bc7-44d3-4fc1-907f-252487ac9647", + "pk": "24b7370b-a1a7-48df-bb98-538ca5cd5637", "fields": { - "question": 358, - "contribution": 3607, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "question": 324, + "contribution": 822, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100144,11 +109107,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9954cc1d-e4d0-4d65-81cb-2f6187ef3b54", + "pk": "24b8e24e-0b25-4625-abd1-44ba22b59e59", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 314, + "contribution": 3434, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100156,11 +109119,11 @@ }, { "model": "evaluation.textanswer", - "pk": "995e1f5e-8dfc-4b3d-9a5d-91bdb83c64ff", + "pk": "24b95810-0aae-4f5a-be2f-bda9d4c0b2e9", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet,", + "question": 342, + "contribution": 1748, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100168,11 +109131,11 @@ }, { "model": "evaluation.textanswer", - "pk": "996aed0e-1615-4e8d-8b09-e2e09a79844f", + "pk": "24cf9b18-bae0-4295-a7de-fad54249bbc0", "fields": { - "question": 318, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100180,11 +109143,11 @@ }, { "model": "evaluation.textanswer", - "pk": "99858e5d-ac94-439f-b62f-30cb722d2600", + "pk": "24f17bd7-1d3e-4d65-88d7-9c7ea9a97cf7", "fields": { - "question": 318, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 342, + "contribution": 4020, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100192,11 +109155,11 @@ }, { "model": "evaluation.textanswer", - "pk": "99b67589-f47a-4db8-8664-23d88c777a77", + "pk": "24f9cb49-4fa4-4ccb-8b13-f11d944da097", "fields": { - "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 373, + "contribution": 4020, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100204,11 +109167,11 @@ }, { "model": "evaluation.textanswer", - "pk": "99e82d6f-ea22-4cf6-ac38-6fd1b225b7ce", + "pk": "25c1f894-aeba-4ebf-bf68-b21834c0c017", "fields": { - "question": 364, - "contribution": 3355, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 324, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100216,11 +109179,11 @@ }, { "model": "evaluation.textanswer", - "pk": "99f31c37-fa32-441a-ba1b-6c3c295c5ab5", + "pk": "25ea5986-95ef-4758-9943-b06ed77b1359", "fields": { - "question": 455, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet,", + "question": 318, + "contribution": 4128, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100228,10 +109191,10 @@ }, { "model": "evaluation.textanswer", - "pk": "99f37b32-1dd8-4b15-8e7d-e34101eb62ab", + "pk": "26b4432a-c23e-4c9a-824f-6d082f54e5df", "fields": { - "question": 324, - "contribution": 1200, + "question": 364, + "contribution": 4121, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", @@ -100240,23 +109203,23 @@ }, { "model": "evaluation.textanswer", - "pk": "99ffbf2c-d280-4910-a2f4-12391ebd5429", + "pk": "26c267af-c3c9-404a-9b00-1bcf0fc007c9", "fields": { - "question": 440, - "contribution": 4090, - "answer": "Dolor sit amet", + "question": 314, + "contribution": 836, + "answer": "Lorem", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "9a0b053b-8dee-49ec-bf3f-9841e1f85dc6", + "pk": "26d52bc5-3be0-4997-9beb-a405774d6c79", "fields": { - "question": 373, - "contribution": 3508, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "question": 314, + "contribution": 3434, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100264,11 +109227,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9a2ef4af-90e1-43e3-9a0c-c139c2a46ba1", + "pk": "27030513-415a-4ff1-b4cc-3e3ca5735aa1", "fields": { - "question": 318, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 314, + "contribution": 4028, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100276,11 +109239,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9a548a20-8d5a-44b6-b276-0ba17b4a913d", + "pk": "27089b12-2df5-41a1-a096-5648e9022cac", "fields": { "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "contribution": 3354, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100288,10 +109251,10 @@ }, { "model": "evaluation.textanswer", - "pk": "9a8202a6-b7f5-498d-a202-562d7fbe6b83", + "pk": "270ea7b7-13d3-49b8-bfb1-63df496a5ed5", "fields": { - "question": 419, - "contribution": 4038, + "question": 324, + "contribution": 1634, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", @@ -100300,11 +109263,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9aa3026f-64db-4c68-aee9-ff57863ab2b6", + "pk": "274e8e25-08a3-45f0-b627-31e7639a129d", "fields": { - "question": 313, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit", + "question": 364, + "contribution": 3712, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100312,11 +109275,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9b197fd3-3b49-4820-b8ca-55ad54740820", + "pk": "276c87ef-c7d8-4260-8553-117b9f1fb331", "fields": { "question": 364, - "contribution": 3776, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "contribution": 3528, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100324,11 +109287,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9b258db6-6f03-4f2a-b4cc-de77b5008a34", + "pk": "280c834e-048a-4884-9a19-3939bed09b9d", "fields": { - "question": 364, - "contribution": 3391, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "question": 330, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100336,11 +109299,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9b289968-9d3d-4658-b95c-9b6ccab59d55", + "pk": "287fb100-c852-4319-aa9e-7306f09ab4cb", "fields": { - "question": 342, - "contribution": 3727, - "answer": "Lorem ipsum", + "question": 313, + "contribution": 4084, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100348,11 +109311,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9b42354e-822d-4e07-9beb-959b96140bd2", + "pk": "28952686-d2d0-4ce3-8cbe-3ff1c58d0755", "fields": { - "question": 387, - "contribution": 3711, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "question": 313, + "contribution": 884, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100360,11 +109323,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9b60688d-5bc7-4a8a-84ec-acca787b3a8b", + "pk": "28c94d80-2dc6-43c6-96eb-5df23dfc7711", "fields": { - "question": 324, - "contribution": 1734, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 314, + "contribution": 4084, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100372,11 +109335,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9b84b6af-bcb2-493c-acf7-307c3b8dc0c0", + "pk": "2955a0d7-3d47-483e-8b5b-27f71394412b", "fields": { - "question": 342, - "contribution": 3685, - "answer": "Lorem ipsum dolor sit amet,", + "question": 364, + "contribution": 3463, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100384,10 +109347,10 @@ }, { "model": "evaluation.textanswer", - "pk": "9b86fc86-da22-4a64-8283-25518fb2604a", + "pk": "29a0ea24-d887-41c5-9370-b5fde5615824", "fields": { - "question": 313, - "contribution": 884, + "question": 314, + "contribution": 912, "answer": "Lorem", "original_answer": null, "review_decision": "PU", @@ -100396,11 +109359,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9b96c230-8a2e-4feb-a802-c46b952cebf8", + "pk": "29cbf502-0564-40aa-80c7-272e68f6c11e", "fields": { - "question": 324, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 364, + "contribution": 3435, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100408,11 +109371,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9b9dfec7-3719-4018-ad07-a2a4bea259a7", + "pk": "29ee5b39-d4ac-4918-82d9-ef8624d32be7", "fields": { - "question": 364, - "contribution": 1797, - "answer": "Lorem ipsum", + "question": 314, + "contribution": 3394, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100420,11 +109383,23 @@ }, { "model": "evaluation.textanswer", - "pk": "9c1bfd33-6a5f-4a1c-a648-2b195a9411f4", + "pk": "29f26bad-4421-4fc6-ab67-a7d3065b123a", + "fields": { + "question": 313, + "contribution": 4128, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "2a024bcd-e4ba-42d2-80d6-bb688e3f7cb0", "fields": { "question": 364, - "contribution": 1228, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "contribution": 4188, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100432,11 +109407,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9c4db90d-4868-43f2-8030-ac413359e710", + "pk": "2a0dd2bf-901c-493c-acad-a3ed83ff6abf", "fields": { "question": 324, "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100444,11 +109419,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9c620c61-3b91-4c2e-b15e-65f88fd9b5dc", + "pk": "2a1b0015-94ce-4fe4-bb42-bdb5c07017ac", "fields": { - "question": 364, - "contribution": 3776, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 318, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100456,11 +109431,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9c787556-2c2f-46a1-9dcd-f7fcca78f630", + "pk": "2a544ed0-a729-4dd8-a177-22ca1f9ab1f6", "fields": { - "question": 364, - "contribution": 4203, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 314, + "contribution": 3665, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100468,11 +109443,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9c96f342-5616-4687-b2cf-3361d7f89c87", + "pk": "2a627774-f5ad-498f-87f1-fb14377a4989", "fields": { "question": 364, - "contribution": 3509, - "answer": "Lorem ipsum", + "contribution": 3391, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100480,23 +109455,23 @@ }, { "model": "evaluation.textanswer", - "pk": "9ca499a4-277c-4a9a-95d4-0f0ab28ab0c1", + "pk": "2a6cfdca-4e21-472a-89f9-d62103a119c6", "fields": { - "question": 447, - "contribution": 4114, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 342, + "contribution": 3645, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "9cd8911d-10c4-4ab6-9314-b11707328393", + "pk": "2a7409ad-112c-4fc3-ab23-dae2e6fcef1a", "fields": { - "question": 364, - "contribution": 3609, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 318, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100504,11 +109479,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9ce7fb0f-1b82-4ca9-a525-bac9f469847b", + "pk": "2a77f733-6ba5-4d8d-985a-a44d439ae6e7", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "question": 313, + "contribution": 836, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100516,11 +109491,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9cfbf419-e6cd-4d04-bcb3-a83141c9f9fa", + "pk": "2aaec2cf-7042-459c-aa62-308724d6635f", "fields": { "question": 314, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100528,11 +109503,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9d1ee6d7-15aa-405d-a2d8-b3226c6f9293", + "pk": "2adf12e5-c802-449f-bb69-55e7ca28b3d8", "fields": { - "question": 373, - "contribution": 1638, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "question": 318, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100540,11 +109515,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9d53b5a0-e63b-43fa-a4dd-a6960956a803", + "pk": "2ae5cb3f-0c80-4a65-9690-29afc7f86993", "fields": { "question": 313, - "contribution": 912, - "answer": "Lorem", + "contribution": 4100, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100552,11 +109527,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9d5c01d1-c3a5-439a-86a4-9236decedf73", + "pk": "2aefa342-5e0e-435a-87cc-7a798876ad19", "fields": { - "question": 430, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 454, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100564,11 +109539,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9d9e0451-0529-4cc8-854f-4bc36d008a9a", + "pk": "2afb55c6-2172-44dd-8439-f64e46a14326", "fields": { "question": 313, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "contribution": 912, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100576,11 +109551,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9dd29a7b-eea2-428e-88ee-e36303d8c42c", + "pk": "2afcd596-3844-4ee7-a5f2-dcf98478cc39", "fields": { - "question": 318, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 381, + "contribution": 3775, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100588,11 +109563,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9e2212b1-2c61-4437-8669-a62d2c261f0b", + "pk": "2b2e3174-bfa3-41ea-87b6-c656a49b196b", "fields": { "question": 364, - "contribution": 3859, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "contribution": 3553, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100600,11 +109575,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9e6c110f-95bf-444b-93c0-35fe543ca599", + "pk": "2b47ed3e-df59-4a31-9aca-1baf77ff9d14", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "question": 364, + "contribution": 885, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100612,11 +109587,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9ec2e335-ad39-4826-a213-869fb29dcedf", + "pk": "2b9c7a6a-94bd-4f59-831a-79f3dbf93238", "fields": { - "question": 358, - "contribution": 1154, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", + "question": 314, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100624,11 +109599,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9ef75136-1659-43e4-a2ec-515952ebac32", + "pk": "2bacf55d-8424-4e94-9cb3-286bbb061164", "fields": { - "question": 314, - "contribution": 1634, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 1782, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100636,11 +109611,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9f0ecc0f-7d95-46f4-ad2f-945fb80663d5", + "pk": "2bb05ec6-462a-4e6c-af35-ee886eb51713", "fields": { - "question": 313, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit", + "question": 364, + "contribution": 3647, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100648,11 +109623,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9f14b154-6b2d-45c1-af1a-75fb2520ded2", + "pk": "2bc4f003-4871-4ed3-a720-f089af61a807", "fields": { - "question": 314, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 364, + "contribution": 3680, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100660,11 +109635,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9f55a6e1-dab2-4181-acb5-149992046ccf", + "pk": "2be4d5d8-79ad-40e2-a453-5b5090aad0a1", "fields": { - "question": 330, - "contribution": 4120, - "answer": "Lorem ipsum", + "question": 358, + "contribution": 1154, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100672,11 +109647,11 @@ }, { "model": "evaluation.textanswer", - "pk": "9fb175a6-fa8a-48b7-87b7-a948e2c32ab5", + "pk": "2bf8d095-3fc6-443f-b91a-eca5f50f75e8", "fields": { "question": 364, - "contribution": 1663, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "contribution": 1613, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100684,11 +109659,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a00e9a79-e9f9-424b-bfbe-07a4d79e2051", + "pk": "2c42f6be-0170-4c9d-8ebb-2b18215deba5", "fields": { - "question": 342, - "contribution": 3508, - "answer": "Lorem ipsum dolor sit amet,", + "question": 324, + "contribution": 886, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100696,11 +109671,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a01de392-9ed3-40bd-9cb3-1a9ae2c7ef4c", + "pk": "2c439200-d01b-478b-a339-da0404a3a9cf", "fields": { - "question": 314, - "contribution": 3422, - "answer": "Lorem", + "question": 364, + "contribution": 1617, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100708,11 +109683,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a02ed02a-39cf-453c-9ba0-19c53b1f3190", + "pk": "2c4d02f8-bd1b-4882-99c1-884abe7c77ca", "fields": { - "question": 358, - "contribution": 1201, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 364, + "contribution": 3373, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100720,11 +109695,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a05d5ae7-1125-46f2-9594-db62e18f6cbb", + "pk": "2cb87417-da18-4385-acdc-d6aeb7c3d3a4", "fields": { - "question": 373, - "contribution": 4094, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 342, + "contribution": 3645, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100732,11 +109707,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a075a987-7b8a-4bbc-9059-b1c362f4840e", + "pk": "2cf00850-a0d9-4368-a247-b3e8a517fa2a", "fields": { "question": 364, - "contribution": 3552, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "contribution": 1217, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100744,11 +109719,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a0a440be-5ac8-4c0c-9492-a98c7fc37c93", + "pk": "2d17189e-37b2-4774-b711-d4f205d02a92", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "question": 313, + "contribution": 1837, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100756,11 +109731,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a0be81b4-9abb-42d7-ad4c-3d04373af3e0", + "pk": "2d1d3be0-66b1-44d9-bef4-03c8b643cedc", "fields": { - "question": 314, - "contribution": 3679, - "answer": "Lorem", + "question": 364, + "contribution": 3649, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100768,10 +109743,22 @@ }, { "model": "evaluation.textanswer", - "pk": "a0f0f976-60df-418a-a728-7f39409b570d", + "pk": "2d21c01b-8896-4a50-b3e9-4f4edc4bbd51", "fields": { - "question": 313, - "contribution": 4100, + "question": 364, + "contribution": 3589, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "2d3d5aae-4665-4f99-97d4-c3d6d091730e", + "fields": { + "question": 314, + "contribution": 912, "answer": "Lorem", "original_answer": null, "review_decision": "PU", @@ -100780,11 +109767,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a11e7d0b-682f-494f-a14b-4f4c2612f024", + "pk": "2d74e7cc-9161-4d5f-becb-851a84bf0b8b", "fields": { - "question": 364, - "contribution": 1635, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "question": 313, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100792,11 +109779,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a172aa6f-f363-49c5-9397-69c7e9742ec7", + "pk": "2d79647c-68bf-4dd7-8cec-ddf5fdf001d1", "fields": { - "question": 364, - "contribution": 4129, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", + "question": 330, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100804,11 +109791,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a1b3b23d-40bf-4d13-b093-199a71391955", + "pk": "2db70870-30df-4400-9c0b-18b65ed03ddb", "fields": { - "question": 364, - "contribution": 4101, - "answer": "Lorem ipsum dolor", + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100816,11 +109803,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a224e195-db1e-4077-b75c-7e12d1672b2e", + "pk": "2de693c3-37ad-46b9-993e-3f1b70ad86d0", "fields": { - "question": 324, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 313, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100828,11 +109815,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a22a31ee-5d1b-41f8-b235-814f2ff1d48c", + "pk": "2df2560e-db75-4da3-882e-85d02f031030", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 373, + "contribution": 3685, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100840,11 +109827,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a22d28ee-6c77-48f4-947b-e951dacce701", + "pk": "2e042bf1-df2e-4815-8520-731c11e52292", "fields": { "question": 330, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit", + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100852,11 +109839,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a3228486-8a98-442f-a48f-b697674940d3", + "pk": "2e05d6b6-dc1d-4efb-bdd0-4c804508cd02", "fields": { - "question": 314, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 373, + "contribution": 3821, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100864,11 +109851,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a3529ea4-dbf1-457f-9a78-e9b7c68acc04", + "pk": "2e070b1b-e62a-477f-b8d8-efbbbec34580", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100876,11 +109863,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a3afa8ec-cd64-4e85-a8c4-9bd8566ef5d4", + "pk": "2e0aea72-9889-4ba1-acbf-0d899c16203b", "fields": { - "question": 314, - "contribution": 3434, - "answer": "Lorem", + "question": 364, + "contribution": 885, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100888,10 +109875,10 @@ }, { "model": "evaluation.textanswer", - "pk": "a3b68d0c-a452-40f5-a02c-da3ad3ee3e85", + "pk": "2e174771-992d-45c2-be65-747a22c0b306", "fields": { - "question": 439, - "contribution": 4140, + "question": 364, + "contribution": 3528, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", @@ -100900,11 +109887,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a3c52436-ed19-4d00-8984-6f2eb4c0e393", + "pk": "2e368414-807f-45f0-8a72-f289b25d3473", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum", + "question": 330, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100912,11 +109899,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a3c52991-e56e-4c55-81e1-50dfe95a4eab", + "pk": "2e6751dd-84ab-4030-a351-f1ff064676f4", "fields": { - "question": 318, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "question": 364, + "contribution": 3592, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100924,11 +109911,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a4411771-7589-4631-86cd-fe0e2cdb1595", + "pk": "2e6b9917-f7d0-4954-86c1-95121c158b74", "fields": { - "question": 324, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 364, + "contribution": 4203, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100936,11 +109923,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a453b750-215e-433b-ae15-ef973997f956", + "pk": "2e96552c-b2c6-4556-9666-c056c3c8f13a", "fields": { "question": 313, - "contribution": 836, - "answer": "Lorem ipsum dolor", + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100948,11 +109935,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a4b42893-6b9d-4c23-86a5-27575cb2d25d", + "pk": "2ea1c45f-04cd-4c86-abb7-147c118dc8f3", "fields": { - "question": 314, - "contribution": 4120, - "answer": "Lorem ipsum", + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100960,11 +109947,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a4caa8ff-9c8b-44a9-9d0a-af109ca8c399", + "pk": "2ebbd4df-02e6-4046-8dbc-b878879f18d6", "fields": { - "question": 318, - "contribution": 4100, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 313, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100972,11 +109959,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a4e9a25e-b2ce-472d-8dde-69c6c3ae1f63", + "pk": "2ecc59f5-dae9-4646-a7b2-5854070b5eda", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", + "question": 318, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100984,11 +109971,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a4ebb5df-a1ce-4fc8-a82d-8a7ea54a4a36", + "pk": "2f5adb6d-647c-4512-ac1c-a11eb8b05de1", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 314, + "contribution": 1634, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -100996,11 +109983,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a4ec786a-c5fa-4c46-bce0-0715cb4ccada", + "pk": "2f6f0508-8477-4c66-bd87-0f53983d536d", "fields": { - "question": 318, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "question": 365, + "contribution": 1662, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101008,11 +109995,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a4f40e2b-8122-4524-a48c-f7294a5d0804", + "pk": "2fac8575-9763-40e8-b34e-542a920bd7a6", "fields": { - "question": 430, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit", + "question": 365, + "contribution": 864, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101020,11 +110007,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a5275455-221f-425f-89a0-49c46bd35aa3", + "pk": "2fb28537-e745-485b-9000-5c53cd08250b", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "question": 358, + "contribution": 3560, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101032,11 +110019,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a5d5697f-0f3b-4a66-991b-f4cc1c8cd090", + "pk": "2fb68fae-cd82-4f3f-9101-21bdd9e3a6cb", "fields": { - "question": 318, - "contribution": 4120, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 342, + "contribution": 826, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101044,11 +110031,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a5da2d38-c7c6-4118-95c8-4c31fe38341f", + "pk": "2fbac03e-b075-460f-aaa2-00f7c17ebe67", "fields": { - "question": 373, - "contribution": 3723, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 318, + "contribution": 822, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101056,11 +110043,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a620ba24-913c-4dd7-b302-6e36a6b228c1", + "pk": "2fd99f87-5129-4db7-834c-1876a75ccd7b", "fields": { - "question": 364, - "contribution": 1217, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 342, + "contribution": 894, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101068,23 +110055,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a6381183-5429-4158-8c49-cdd71eb75950", - "fields": { - "question": 373, - "contribution": 4072, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false - } -}, -{ - "model": "evaluation.textanswer", - "pk": "a679cd88-a24d-447d-90e4-5fee1d0128b0", + "pk": "3012b3ab-1272-4e6f-8800-cc51eaf29a1b", "fields": { - "question": 313, - "contribution": 4116, - "answer": "Lorem", + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101092,11 +110067,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a67b70c8-81fc-4d32-9766-ddb44f5ccff9", + "pk": "301590bc-f760-4bc0-b27d-7600be7ddb4b", "fields": { - "question": 364, - "contribution": 885, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "question": 318, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101104,11 +110079,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a67d4d98-177f-4eda-ad35-109a92d5e74a", + "pk": "3027aa79-1c84-42bd-98c3-25e64648514d", "fields": { "question": 314, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit", + "contribution": 3354, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101116,11 +110091,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a6cbcea4-2005-4280-b015-f5d4d7302379", + "pk": "30857608-c83b-4023-9db5-c4d125cd38dd", "fields": { - "question": 318, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 342, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101128,11 +110103,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a6e43600-1438-4ee4-a035-182f1261eb89", + "pk": "308b5c7a-3c1a-4909-ba68-430d85ab3d67", "fields": { - "question": 364, - "contribution": 1287, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "question": 313, + "contribution": 1634, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101140,11 +110115,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a6ebbe96-8537-4915-adf6-356f22d057ad", + "pk": "310ab9b1-b078-4c95-87d2-d1b86c0296b5", "fields": { - "question": 364, - "contribution": 3551, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "question": 373, + "contribution": 3795, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101152,11 +110127,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a7095a93-d1c8-4599-86e6-0c450c192f27", + "pk": "312f50cd-2c81-45be-b271-e6bba1ce9de0", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 313, + "contribution": 1634, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101164,11 +110139,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a7428cf6-1dba-4193-8a6f-ad8002b5dd29", + "pk": "313b1ca3-6287-4c28-be56-9d6839e023e2", "fields": { - "question": 342, - "contribution": 858, - "answer": "Lorem ipsum", + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101176,23 +110151,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a751520a-c8e7-473d-a55b-1ce480a43ac0", - "fields": { - "question": 342, - "contribution": 4072, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false - } -}, -{ - "model": "evaluation.textanswer", - "pk": "a78e2e5f-85ae-4a81-bad4-614617dcd61f", + "pk": "314bca21-7c71-4773-bd34-4f7ceb04e945", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", + "question": 318, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101200,10 +110163,10 @@ }, { "model": "evaluation.textanswer", - "pk": "a7a46dd5-7eb9-4045-8fa5-7463599be222", + "pk": "318b92ce-3916-4181-926d-7ebb9a844072", "fields": { - "question": 330, - "contribution": 1612, + "question": 342, + "contribution": 3727, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", @@ -101212,11 +110175,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a7a91b88-c343-4c7b-82e5-e66fa7daf8d4", + "pk": "319c9bc4-291e-45a4-856b-45acb6ae996a", "fields": { - "question": 364, - "contribution": 4117, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 318, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101224,11 +110187,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a7c1a288-82d9-43bb-8060-ccac6127c1c2", + "pk": "31cb3f0d-d23e-4772-b024-7a55e9476ffd", "fields": { - "question": 330, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "question": 342, + "contribution": 3440, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101236,11 +110199,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a7cb38a7-e8bf-42ac-af37-e967ca9478f3", + "pk": "31f24169-d7e9-4034-8e4b-fb1f5548a0fd", "fields": { - "question": 313, + "question": 318, "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101248,11 +110211,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a7d5c787-271f-4f25-9ba0-f0deca03dd25", + "pk": "3217f686-6b1d-4c7c-b09d-308e33934e40", "fields": { - "question": 313, - "contribution": 822, - "answer": "Lorem ipsum dolor", + "question": 318, + "contribution": 3462, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101260,11 +110223,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a7ffe3f1-334a-45ba-8c5d-0065b6520270", + "pk": "3292d753-a8c9-42cb-bfd4-95480f65d2bc", "fields": { "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "contribution": 3462, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101272,11 +110235,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a8290ea8-c9f1-41e6-8587-f6b04b743799", + "pk": "32a4b669-3550-49fa-8682-a62c91f2f594", "fields": { "question": 342, - "contribution": 3751, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "contribution": 3454, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101284,11 +110247,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a82dcd17-0f64-4cab-97aa-a57b0ad9a3c6", + "pk": "32bf0edb-ba90-4284-a7fa-3be15dcaba60", "fields": { - "question": 330, - "contribution": 1658, - "answer": "Lorem ipsum dolor", + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101296,11 +110259,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a83a4deb-2772-4ec4-9ef0-ebb41e3281b8", + "pk": "32d36603-ec1d-4cad-8861-a7ad4a8f9f30", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 314, + "contribution": 3679, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101308,10 +110271,10 @@ }, { "model": "evaluation.textanswer", - "pk": "a88569ad-743b-42dd-adac-659a693bdb8d", + "pk": "330745a3-b208-410b-aaec-f7fef114988f", "fields": { - "question": 313, - "contribution": 4028, + "question": 314, + "contribution": 1626, "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", @@ -101320,11 +110283,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a88c92c5-02b1-47f4-9654-4074e17e92ee", + "pk": "33c20406-d829-416b-b857-c812207746fe", "fields": { - "question": 364, - "contribution": 4177, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", + "question": 318, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101332,11 +110295,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a8abb798-1160-4ac9-9c86-a691af40c5fe", + "pk": "33d2b926-7269-4fa7-9e95-c7aab6a3db80", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 364, + "contribution": 1253, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101344,11 +110307,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a8b0ff27-35bd-4ab0-a700-bd5c84ecfc0e", + "pk": "34004268-56f2-4d42-8600-cf2b41d18a4b", "fields": { - "question": 364, - "contribution": 1785, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 313, + "contribution": 4084, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101356,11 +110319,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a8b9b38a-4f0c-40c7-b784-4b61802b9097", + "pk": "3405fad5-206e-4e84-96c6-3ce03f04c728", "fields": { - "question": 364, - "contribution": 4153, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 324, + "contribution": 3745, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101368,11 +110331,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a8c24b43-983d-4011-ae63-cbb1e1a02840", + "pk": "34123483-6bff-4006-8508-cbc7be59e663", "fields": { - "question": 324, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 314, + "contribution": 1837, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101380,23 +110343,23 @@ }, { "model": "evaluation.textanswer", - "pk": "a8c99172-b441-44ed-8cca-3bc41ca1e3b5", + "pk": "342f0323-0314-49a4-9011-bbacfe6aca1e", "fields": { - "question": 330, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 448, + "contribution": 4114, + "answer": "Lorem ipsum dolor sit amet", "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "a8d13d6d-7854-4792-89b9-b3bd972d43c9", + "pk": "345f4f10-5cbc-43c5-81c6-faaed255736b", "fields": { - "question": 364, - "contribution": 3373, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 342, + "contribution": 3645, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101404,23 +110367,23 @@ }, { "model": "evaluation.textanswer", - "pk": "a8e04557-002f-4eea-a5f6-a30bfc54153e", + "pk": "35007349-120a-4518-a71b-60922a9197a5", "fields": { - "question": 364, - "contribution": 3862, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "question": 342, + "contribution": 3727, + "answer": "Lorem ipsum", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "a8f93222-ca16-4e29-9b10-65d31fb5f609", + "pk": "35048565-a9ef-4487-82a7-7fc6f12a9fb6", "fields": { - "question": 330, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 324, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101428,11 +110391,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a9104ca8-4dad-4828-931e-d8b3d97ffc17", + "pk": "35436495-719b-42ac-ac01-5a0063e4f905", "fields": { "question": 342, - "contribution": 832, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "contribution": 3723, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101440,11 +110403,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a922e383-c2ed-4526-a0b7-18b3e1705bd1", + "pk": "355ef4f8-c2c4-4345-9798-95cc16f1f5cc", "fields": { "question": 364, - "contribution": 1807, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "contribution": 3929, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101452,11 +110415,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a9b6585f-7a84-4597-bfd7-11fc31185ec9", + "pk": "355f7947-f19c-40a9-820a-d504bd496fe4", "fields": { "question": 313, - "contribution": 908, - "answer": "Lorem ipsum", + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101464,11 +110427,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a9d39b29-618b-4b8b-b521-c365eb026259", + "pk": "3572a4d8-e4f6-4de3-bc27-1ac8a5e4a543", "fields": { - "question": 364, - "contribution": 1217, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 314, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101476,11 +110439,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a9ebf674-9e85-4e69-9a0d-90fd13ed0695", + "pk": "35b7922a-1ccf-4376-b547-4d8adbad3fd6", "fields": { "question": 364, - "contribution": 3895, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "contribution": 1250, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101488,11 +110451,11 @@ }, { "model": "evaluation.textanswer", - "pk": "a9fe23c3-010d-4d87-9e66-80a95397a000", + "pk": "35ca1468-639c-4af3-88e1-d28ff125fbf1", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem ipsum", + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101500,11 +110463,11 @@ }, { "model": "evaluation.textanswer", - "pk": "aa447251-cfa3-4f44-a9f9-356d96b596bb", + "pk": "35d95562-29a6-448a-ace5-b2ec6a05b693", "fields": { - "question": 429, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 330, + "contribution": 1724, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101512,11 +110475,11 @@ }, { "model": "evaluation.textanswer", - "pk": "aa505ff4-975b-44b3-87c9-62377148bd97", + "pk": "35f50bf2-cd98-4a6a-9479-4709e582cf11", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "question": 313, + "contribution": 1612, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101524,11 +110487,11 @@ }, { "model": "evaluation.textanswer", - "pk": "aaa99a41-fa38-48bf-aa2a-93c7710ba837", + "pk": "360a148f-c056-44dc-9e1e-7a3608ae6395", "fields": { - "question": 324, - "contribution": 4100, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 318, + "contribution": 4120, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101536,11 +110499,11 @@ }, { "model": "evaluation.textanswer", - "pk": "aab3f3f9-4857-4a69-839d-46d71d29963c", + "pk": "36155727-107b-4ec4-9f9a-97af10036d11", "fields": { - "question": 364, - "contribution": 1639, - "answer": "Lorem ipsum", + "question": 342, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101548,11 +110511,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ab1dce2f-f094-40a4-bf29-2d0e5a0a3ef4", + "pk": "3698ba38-0a6a-4d3a-a371-845ce1fd4078", "fields": { "question": 364, - "contribution": 3712, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "contribution": 1657, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101560,11 +110523,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ab5e83f1-e06e-4554-82cc-fd269260c3c7", + "pk": "36bc0e95-a5d4-4246-afeb-10e5225d02f0", "fields": { - "question": 364, - "contribution": 3519, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "question": 313, + "contribution": 4118, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101572,11 +110535,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ab63ee98-dddd-4a26-ac57-5ea9bf185469", + "pk": "36ea866f-c651-4f29-87cb-e59169c5a872", "fields": { "question": 314, - "contribution": 3462, - "answer": "Lorem ipsum", + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101584,11 +110547,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ab887621-bf03-4a93-9d3f-6ddb090ff77b", + "pk": "36fc6c8a-51b7-498c-9977-46be5d1c4ac0", "fields": { - "question": 330, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "question": 318, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101596,11 +110559,11 @@ }, { "model": "evaluation.textanswer", - "pk": "abd72bd8-89a4-4c11-acb8-796244b103d3", + "pk": "370a21b5-31aa-420b-ae2f-6d95433b34de", "fields": { - "question": 313, - "contribution": 1680, - "answer": "Lorem ipsum", + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101608,11 +110571,11 @@ }, { "model": "evaluation.textanswer", - "pk": "abf42822-7824-4db1-af85-f5d4b5150a99", + "pk": "374c1c47-36d8-4bb3-b056-2caa40c05e95", "fields": { - "question": 330, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 364, + "contribution": 1645, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101620,11 +110583,11 @@ }, { "model": "evaluation.textanswer", - "pk": "abf6b635-cb17-422d-824e-cac102e80a30", + "pk": "3752816b-282a-4521-a69c-26f475b12f28", "fields": { - "question": 364, - "contribution": 1202, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "question": 393, + "contribution": 3775, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101632,11 +110595,11 @@ }, { "model": "evaluation.textanswer", - "pk": "abfd3a3b-4d69-485f-8784-d45ca2b0cc83", + "pk": "37540c3c-5c5f-4ecb-8734-c06c7a6f7f91", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet,", + "question": 318, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101644,11 +110607,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ac0b2f56-4ca2-417e-9598-f7eb9d875836", + "pk": "377c1fa9-be00-4cb4-9c12-fa360d9af6d3", "fields": { "question": 364, - "contribution": 4139, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", + "contribution": 3610, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101656,23 +110619,23 @@ }, { "model": "evaluation.textanswer", - "pk": "ac99a86c-2cc5-4917-aaa5-c79b6a8df22f", + "pk": "37c4fb67-0a01-439c-af28-dbd6d7f35262", "fields": { - "question": 342, - "contribution": 1710, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 364, + "contribution": 3936, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", "original_answer": null, - "review_decision": "PU", + "review_decision": "PR", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "acc03518-b833-48ce-8ae3-ecb57404788f", + "pk": "37f5474a-f831-4d47-9a81-a4ba9493220d", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 313, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101680,11 +110643,11 @@ }, { "model": "evaluation.textanswer", - "pk": "acc342a1-060b-4ed9-a98b-58f7403df9fb", + "pk": "37f84fdb-976a-485e-81d5-44d841c2aab3", "fields": { - "question": 415, - "contribution": 3974, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "question": 364, + "contribution": 3684, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101692,11 +110655,11 @@ }, { "model": "evaluation.textanswer", - "pk": "acd3e68f-e3b1-4a05-a277-cadbaf800914", + "pk": "380ab68b-3b19-48d5-be6e-7a22e04d56e5", "fields": { "question": 313, - "contribution": 908, - "answer": "Lorem ipsum dolor", + "contribution": 1626, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101704,11 +110667,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ad365eea-5585-41eb-ae76-03e47173d240", + "pk": "3816e589-4265-4b4b-a016-d102b92b9bd8", "fields": { - "question": 330, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 318, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101716,11 +110679,11 @@ }, { "model": "evaluation.textanswer", - "pk": "adb34b9b-7503-480d-bae0-30e23db8e0e1", + "pk": "3833ed5d-71bb-4ab9-b2a9-cc849a80acda", "fields": { - "question": 364, - "contribution": 1799, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 313, + "contribution": 3725, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101728,11 +110691,11 @@ }, { "model": "evaluation.textanswer", - "pk": "adbf1c69-1b31-4a6e-a17c-22fd46e3dd23", + "pk": "3847d1ac-de91-400e-9643-49b0ef441471", "fields": { - "question": 330, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 318, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101740,11 +110703,11 @@ }, { "model": "evaluation.textanswer", - "pk": "adcba739-4849-4657-8075-8a37127432aa", + "pk": "38583561-7613-413e-87b1-b32c9bea55d9", "fields": { - "question": 330, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "question": 364, + "contribution": 3609, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101752,11 +110715,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ae001141-925d-46de-aa63-e482d7ea4042", + "pk": "38752046-2277-4c58-8c46-3e183b582b59", "fields": { - "question": 358, - "contribution": 1852, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 342, + "contribution": 3454, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101764,11 +110727,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ae0e1be4-9a62-49d6-995c-f62d72b8e0a8", + "pk": "38add169-4d8d-4fcb-b861-4965882ee1a7", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "question": 330, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101776,23 +110739,23 @@ }, { "model": "evaluation.textanswer", - "pk": "ae113cf0-1d70-4f80-add4-0ac957d2ad98", + "pk": "39075652-14dc-4f38-8f73-c563b722036e", "fields": { "question": 324, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "contribution": 4114, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "ae42e433-ff77-4b41-a475-0ec40e3a3bec", + "pk": "390c2dfe-3ed9-4e43-89fa-0758af3056a6", "fields": { "question": 314, - "contribution": 908, - "answer": "Lorem", + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101800,11 +110763,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ae587d35-5b94-480b-b1de-f70b01637679", + "pk": "3939db98-7cf4-4789-b273-2d43b291ff1f", "fields": { - "question": 342, - "contribution": 3454, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "question": 313, + "contribution": 4138, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101812,11 +110775,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ae5a5992-7021-4230-8a35-4d30f28d46cf", + "pk": "394bac3f-6b76-4f8a-adbe-f67c0c719ff0", "fields": { "question": 364, - "contribution": 4095, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "contribution": 1780, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101824,11 +110787,11 @@ }, { "model": "evaluation.textanswer", - "pk": "aeb892e8-28b8-4f11-846b-538513c9c81b", + "pk": "397cba6b-150d-4a30-ad2f-19718a946f44", "fields": { - "question": 373, - "contribution": 1660, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 324, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101836,11 +110799,11 @@ }, { "model": "evaluation.textanswer", - "pk": "aec49c1e-bbb5-4442-8a30-b2dc52d44776", + "pk": "39a62090-02f8-4988-a697-c2b73946abac", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem", + "question": 364, + "contribution": 4204, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101848,11 +110811,11 @@ }, { "model": "evaluation.textanswer", - "pk": "af36c5b2-2a8e-4430-87d6-62d83370e497", + "pk": "39ea5a2d-bfba-4e60-8a12-00992fed82cd", "fields": { - "question": 313, - "contribution": 4100, - "answer": "Lorem ipsum", + "question": 318, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101860,11 +110823,11 @@ }, { "model": "evaluation.textanswer", - "pk": "af6cd25b-9f7e-480d-9631-c9e8aa2f3617", + "pk": "39efdee5-a477-4f8a-a7d8-205ba4ba2aae", "fields": { "question": 364, - "contribution": 3519, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent", + "contribution": 4148, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101872,11 +110835,11 @@ }, { "model": "evaluation.textanswer", - "pk": "afb2409f-f45d-497a-bb6e-4bdd7f21bd3a", + "pk": "39f20030-07ba-42d6-b682-14cd68695ec7", "fields": { - "question": 330, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 342, + "contribution": 886, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101884,11 +110847,11 @@ }, { "model": "evaluation.textanswer", - "pk": "afbbb699-9492-4d43-b4ce-b9f6c0edc73b", + "pk": "3a1a43a4-4853-419e-87eb-1eec0fb75f1b", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", + "question": 314, + "contribution": 3725, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101896,23 +110859,11 @@ }, { "model": "evaluation.textanswer", - "pk": "afd5c0ef-561d-4b4e-ad1d-302daba839d3", - "fields": { - "question": 324, - "contribution": 3785, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", - "original_answer": null, - "review_decision": "UN", - "is_flagged": false - } -}, -{ - "model": "evaluation.textanswer", - "pk": "aff5aab0-e22e-414d-b973-c4f174f95c1f", + "pk": "3a1ed5f7-aea2-425d-a93f-734d9c6a2b14", "fields": { "question": 314, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "contribution": 1837, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101920,11 +110871,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b02159d6-ba65-4b3f-91db-48fcf5d4a1c2", + "pk": "3a43707c-a03f-43fb-83ed-c2e07de79844", "fields": { - "question": 358, - "contribution": 895, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "question": 430, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101932,11 +110883,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b02df147-9d48-42d0-a073-0bab4e9f47da", + "pk": "3a4dacc1-76fc-4056-90c5-0252fc773e1c", "fields": { "question": 324, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101944,11 +110895,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b02f8388-0f46-4af8-936f-27974783eefc", + "pk": "3a4e63ae-d4e6-46f1-a661-9e77f4220d98", "fields": { - "question": 313, - "contribution": 912, - "answer": "Lorem ipsum dolor", + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101956,11 +110907,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b03a068c-6c6f-4f30-8989-da9ad9986fe6", + "pk": "3a535707-5894-4713-9133-4f0b579861a6", "fields": { - "question": 330, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 364, + "contribution": 1288, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101968,11 +110919,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b04e3d89-b3df-41ea-addb-e85e522ce9f4", + "pk": "3a542885-c536-4f66-bd48-e4ff4dcad725", "fields": { - "question": 342, - "contribution": 3486, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "question": 313, + "contribution": 1634, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101980,11 +110931,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b05fe10a-66db-40b2-af25-50ea3400e025", + "pk": "3a567280-b2e5-4e28-8f1a-8c9d2b9fd4ea", "fields": { - "question": 387, - "contribution": 3711, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 313, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -101992,11 +110943,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b061fe29-7c03-4f07-9f80-e62d201cf054", + "pk": "3ae3edfe-547f-4cf2-8f4f-1c0e1d36c52b", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 318, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102004,11 +110955,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b07931b8-cb25-4d70-af46-e94f759f4668", + "pk": "3b04a17c-2d5d-4b82-be33-5a9cb6e3422a", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 313, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102016,11 +110967,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b08c7083-75ef-4121-92d7-1f5ce2be43d6", + "pk": "3b8a437c-31f9-4e7d-a26e-378711777dbb", "fields": { - "question": 364, - "contribution": 1884, - "answer": "Lorem ipsum dolor sit", + "question": 324, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102028,11 +110979,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b0ccfd3f-aa48-4af6-ad47-6d3e4d6f65f4", + "pk": "3b9c0485-c62b-4a3f-a754-ba0efc2d5b1e", "fields": { - "question": 365, - "contribution": 862, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "question": 454, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102040,11 +110991,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b111ae90-b9e4-466e-8c0f-c33e4883d8cc", + "pk": "3b9d0a9e-0aa4-44bd-818f-37f495727822", "fields": { - "question": 342, - "contribution": 3727, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 314, + "contribution": 1626, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102052,11 +111003,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b129f38d-9f45-475c-a07b-c986967d1ff9", + "pk": "3bcb464d-744f-4a07-9281-b746eaf8b183", "fields": { "question": 313, - "contribution": 822, - "answer": "Lorem ipsum dolor sit amet,", + "contribution": 884, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102064,11 +111015,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b136a9e8-e82d-4200-83e8-102724e7a546", + "pk": "3c1aeffb-99c9-4bd5-afe9-d3f62a06ebb4", "fields": { - "question": 364, - "contribution": 4261, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 313, + "contribution": 908, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102076,11 +111027,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b16bb590-6bfc-4ac4-9f86-0cfd0f2c9638", + "pk": "3c2e8d05-23af-4383-b734-4b3fb2207dfa", "fields": { - "question": 364, - "contribution": 4047, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 314, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102088,11 +111039,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b16ed6a0-34cf-425a-a564-726f69b8e265", + "pk": "3c3d1391-4c8a-427d-9864-cd773cfbbba8", "fields": { - "question": 324, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "question": 313, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102100,11 +111051,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b17caa13-b54f-4dfb-b7a0-86f227dd6f3e", + "pk": "3c94a521-b8ec-4f2b-8bbd-afd8672b8d13", "fields": { - "question": 313, - "contribution": 3725, - "answer": "Lorem ipsum dolor sit", + "question": 373, + "contribution": 3372, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102112,11 +111063,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b19696e1-a5cb-445c-975e-f07f78edf916", + "pk": "3cc05607-ff5f-496b-8d60-14ca3a7bc082", "fields": { - "question": 324, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102124,10 +111075,10 @@ }, { "model": "evaluation.textanswer", - "pk": "b1cd09ed-3440-4af4-8856-ff2527f3f516", + "pk": "3cd84266-9de3-4372-b8d6-cc32a92c9ff7", "fields": { - "question": 364, - "contribution": 3680, + "question": 313, + "contribution": 880, "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", @@ -102136,11 +111087,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b1eb2219-a612-4cad-9e8b-50146fb62e08", + "pk": "3d5c5171-3c7c-4735-8668-b93689007d24", "fields": { - "question": 364, - "contribution": 3552, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "question": 318, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102148,11 +111099,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b1f412b9-d037-4f5a-a0de-6078ee628b3a", + "pk": "3d6480cd-e289-4e84-8600-916cf7818907", "fields": { - "question": 318, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "question": 330, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102160,11 +111111,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b2094151-623c-42f2-9260-a34624e4b482", + "pk": "3da8feac-a16d-4996-b194-a4c9acf5d86c", "fields": { "question": 313, - "contribution": 3739, - "answer": "Lorem", + "contribution": 1837, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102172,11 +111123,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b228eec0-e562-480e-a16c-8f5f93453bbe", + "pk": "3db67ce5-9627-4812-80a8-44ccf2810f6d", "fields": { - "question": 364, - "contribution": 4095, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102184,11 +111135,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b265bb69-eaa2-497b-a309-4694d01db039", + "pk": "3e07c876-f8a5-4b0b-b816-79f31cf52b9a", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "question": 330, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102196,11 +111147,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b2669ab7-7993-411c-b53d-a02336a49be1", + "pk": "3e0f411c-171f-4e0b-adca-57e34c8120f5", "fields": { "question": 364, - "contribution": 3551, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "contribution": 4154, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102208,11 +111159,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b26e8298-b1e8-4e72-8dde-a95fad10de28", + "pk": "3e2d2d71-9ec1-44b7-87a5-cd15f27ae3e8", "fields": { - "question": 314, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet,", + "question": 373, + "contribution": 3450, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102220,10 +111171,10 @@ }, { "model": "evaluation.textanswer", - "pk": "b29904d7-b7bc-4489-9173-48d6d644825a", + "pk": "3e3cffec-103d-44f0-a2f5-fd2154aed7bb", "fields": { - "question": 314, - "contribution": 3354, + "question": 313, + "contribution": 3422, "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", @@ -102232,11 +111183,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b2d8094b-1bac-4067-a394-7bc1dc5e7938", + "pk": "3ea69df6-e55d-4074-af2f-2e0c6600266a", "fields": { - "question": 313, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet,", + "question": 373, + "contribution": 1644, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102244,11 +111195,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b2e90959-3747-4a5d-990a-05f487ff64df", + "pk": "3eaa5be6-79f1-4c57-bc9c-19f00807ba92", "fields": { - "question": 364, - "contribution": 3355, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 324, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102256,11 +111207,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b2eed862-8064-4b0c-91a7-50b3dba81d0a", + "pk": "3eacbc55-e83b-43b7-8ceb-7c0bc53e8958", "fields": { "question": 314, - "contribution": 836, - "answer": "Lorem ipsum dolor", + "contribution": 1837, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102268,11 +111219,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b2f934ce-a30f-483c-a64a-8886924b23cb", + "pk": "3eea1441-6035-4512-a288-5bf5baf409a7", "fields": { "question": 364, - "contribution": 3552, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "contribution": 3546, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102280,11 +111231,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b30a911c-9583-4929-ad95-2d4d95b06c5c", + "pk": "3f34f2a6-b022-4a9b-827f-18e83a36983c", "fields": { - "question": 364, - "contribution": 1639, - "answer": "Lorem ipsum", + "question": 318, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102292,11 +111243,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b336a08b-d376-4af7-aaac-8f644a088aed", + "pk": "3f67e6e6-6408-4efb-b873-b636b05a618a", "fields": { - "question": 342, - "contribution": 3372, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 364, + "contribution": 3680, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102304,11 +111255,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b3571475-b4c5-4d71-8d00-49572f580b99", + "pk": "3f9d4e11-bfeb-487f-9337-e9bbc30346ed", "fields": { "question": 364, - "contribution": 3515, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", + "contribution": 3516, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102316,11 +111267,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b3853f33-cbcc-4bcb-ab09-cacf5eb64e96", + "pk": "3fb879f7-335f-4cab-8c70-0062ae8af841", "fields": { "question": 364, "contribution": 1217, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102328,11 +111279,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b39daf5f-e3bd-4afa-854c-69e79d3d5ce1", + "pk": "3fb98d30-76ed-4442-afdc-5f58de9309c7", "fields": { - "question": 313, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102340,11 +111291,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b3df5155-ba11-4115-a13f-237556bb178f", + "pk": "3fdd46b2-52af-468b-bf55-c645aedbe5e1", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 324, + "contribution": 1726, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102352,11 +111303,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b3f616da-9075-46aa-b549-7178561eccb7", + "pk": "3fe31f68-87e0-41e8-8251-13d972f39699", "fields": { "question": 364, - "contribution": 1205, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", + "contribution": 885, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102364,10 +111315,10 @@ }, { "model": "evaluation.textanswer", - "pk": "b4061417-f635-4549-82e0-b462a559f548", + "pk": "400cba9e-879d-4e65-9146-3a327aa3e00e", "fields": { - "question": 314, - "contribution": 3422, + "question": 342, + "contribution": 4094, "answer": "Lorem", "original_answer": null, "review_decision": "PU", @@ -102376,11 +111327,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b422b432-617f-4de9-a413-78315ca6294a", + "pk": "4013bf61-3a47-4f3f-9089-1fbe43776253", "fields": { - "question": 318, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102388,11 +111339,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b4442b2f-c2b5-4b10-ad90-2853cc9f5c7e", + "pk": "4029edb2-4d38-4c50-abf5-fa1c1e613592", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem ipsum dolor", + "question": 364, + "contribution": 3666, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102400,11 +111351,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b463c1ea-f9be-4806-9bd8-499bf0115129", + "pk": "4035fdf1-923d-4645-825b-234429ebd6ca", "fields": { - "question": 324, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102412,11 +111363,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b4746337-0ed6-419f-9861-d3e7cc161426", + "pk": "40724ff4-10c1-4a3f-8c4a-a5bb0c12a320", "fields": { - "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", + "question": 314, + "contribution": 884, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102424,11 +111375,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b4ca7398-9db1-4892-a23d-a8cf379e968e", + "pk": "4072991f-85aa-46f1-9ac5-a69010b1946f", "fields": { - "question": 364, - "contribution": 3391, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "question": 387, + "contribution": 3775, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102436,11 +111387,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b5125516-f6e9-458f-8d5f-1d7061030e50", + "pk": "40937bca-a482-4206-86fa-7c890923de9d", "fields": { - "question": 342, - "contribution": 3486, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 313, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102448,11 +111399,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b51be452-8c24-4cdb-9792-57123d60453a", + "pk": "409d0b76-160d-46b7-aff7-f0f43b724830", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "question": 364, + "contribution": 4283, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102460,11 +111411,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b5201d58-5f3e-42da-9a59-c3196a051b22", + "pk": "40a0b37b-6709-4b0b-843e-8c2a7e43620b", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "question": 314, + "contribution": 3462, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102472,11 +111423,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b5560cbe-24f2-437a-8ebe-5f1eb96d192a", + "pk": "40a9edc1-bf54-4d7d-8419-b3de90748a46", "fields": { - "question": 324, - "contribution": 3723, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 381, + "contribution": 3775, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102484,10 +111435,10 @@ }, { "model": "evaluation.textanswer", - "pk": "b59f1e93-60db-4733-8fc9-4dd2d059ca25", + "pk": "40cb3168-8561-4a95-95dc-1a622781673e", "fields": { - "question": 364, - "contribution": 1202, + "question": 330, + "contribution": 4084, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", @@ -102496,11 +111447,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b5a63ab8-f3dd-40ff-8c95-475ae03be34d", + "pk": "40dd0fce-77da-4d9a-ab00-c6449b40f461", "fields": { - "question": 364, - "contribution": 3566, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102508,11 +111459,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b5aa1706-1c18-4ea8-93aa-da97fe2f697d", + "pk": "410749d0-3a9a-4df2-8438-99fa8d93ee9a", "fields": { - "question": 364, - "contribution": 4155, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102520,11 +111471,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b5ab56ed-baa6-444e-9ddb-b0e39df081c8", + "pk": "4107ce8c-1ab9-49da-9ae5-0b0c0064e1e3", "fields": { - "question": 373, - "contribution": 3454, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 313, + "contribution": 884, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102532,11 +111483,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b5c0302a-fe1f-4036-9dd4-82833b6ad9d8", + "pk": "412581a5-62c8-48a7-9b75-d446b9af00db", "fields": { - "question": 364, - "contribution": 3556, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", + "question": 313, + "contribution": 4120, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102544,11 +111495,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b5c782e3-ef25-4dd0-82ac-ba4341e8204d", + "pk": "4134c4df-e18c-4122-93af-be42274315ca", "fields": { - "question": 364, - "contribution": 3589, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 373, + "contribution": 3727, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102556,11 +111507,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b5dd8691-be65-43b7-a979-aafbe7879135", + "pk": "415c43d8-1bc0-411e-90d5-f5b5a8da550a", "fields": { - "question": 364, - "contribution": 3355, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 440, + "contribution": 4090, + "answer": "Text answer", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102568,11 +111519,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b5e19c02-3612-44c9-8584-5f744415db31", + "pk": "41765d8c-d9ee-4615-a6ba-db35b981b0fa", "fields": { - "question": 364, - "contribution": 3916, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 330, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102580,11 +111531,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b5e27439-9b5c-445a-870e-c1a610e7b1d4", + "pk": "4222c6e2-310a-44da-b610-9950d6c6964e", "fields": { - "question": 313, - "contribution": 1634, - "answer": "Lorem", + "question": 373, + "contribution": 3645, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102592,11 +111543,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b61013fe-999b-4945-97dc-4beb9ec7c39d", + "pk": "42b050b9-3680-4b5e-a05d-fc16daa75e22", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem", + "question": 330, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102604,11 +111555,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b61d9de1-5f58-4637-8a87-3f5940974ee8", + "pk": "42f8bb9c-fd55-401a-b4c0-9d6af2f02f3f", "fields": { - "question": 373, - "contribution": 3416, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "question": 364, + "contribution": 3435, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102616,23 +111567,23 @@ }, { "model": "evaluation.textanswer", - "pk": "b655db53-eea3-4aec-8b77-ac68a10c8eae", + "pk": "4305cf23-0d21-4a1c-84d8-1480c6492b3c", "fields": { - "question": 318, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "question": 324, + "contribution": 4072, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "b66a5172-7ecd-4696-8d24-f9e55890e758", + "pk": "43111d77-96cb-40d9-9394-86bb2a6531a7", "fields": { - "question": 364, - "contribution": 3726, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 313, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102640,11 +111591,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b6957bb3-0bfd-47e0-a115-e354637f7f7d", + "pk": "432c1353-5792-4e0c-a979-46abcb880c4c", "fields": { - "question": 342, - "contribution": 1734, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102652,11 +111603,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b74178ed-d019-48e1-bc89-46ca9dee6d54", + "pk": "43819b37-16f9-487b-968d-c5df0493f4bc", "fields": { - "question": 313, - "contribution": 884, - "answer": "Lorem ipsum", + "question": 318, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102664,11 +111615,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b743ba80-019d-4c37-9a67-c3248bd0cfff", + "pk": "43a749d4-2279-455d-a2e2-3551d49b40d4", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "question": 364, + "contribution": 3423, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102676,11 +111627,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b76cbc4f-33e9-4db9-b832-52a7a45fd676", + "pk": "43adf877-cad7-490c-81ad-f0d9f58c9259", "fields": { - "question": 324, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", + "question": 313, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102688,11 +111639,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b7722cbe-5941-4ce7-ac1b-f23386572671", + "pk": "43dff058-432f-47b8-a3a6-0cc54fc499e1", "fields": { - "question": 313, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 318, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102700,11 +111651,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b77dd8f2-b037-4f06-b0c6-fc5a94d0c443", + "pk": "43e0ce40-b7f4-40e4-b529-28fb3e159694", "fields": { - "question": 330, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 364, + "contribution": 3515, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102712,11 +111663,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b7ab344f-8261-413a-9254-6ebbb798d72c", + "pk": "43e4e8da-7237-4ee9-874e-599723bb60da", "fields": { - "question": 364, - "contribution": 3463, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "question": 318, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102724,11 +111675,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b7d2d8fd-9598-482b-8f5f-347a7e8164d8", + "pk": "43e7f76b-6078-4c7d-89ee-1b291f39a1c5", "fields": { "question": 330, - "contribution": 4120, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102736,11 +111687,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b7ef7de5-5f4d-41c4-8757-7f9c19a5e8ac", + "pk": "43f497bd-f9a0-4e55-a39c-7e58961e34f6", "fields": { - "question": 314, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "question": 318, + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102748,11 +111699,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b7ff9397-1607-459e-9f7d-6368828d8c8d", + "pk": "441dc129-aabf-4014-9c28-6d39fe4f07d9", "fields": { "question": 364, - "contribution": 4177, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "contribution": 3407, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102760,10 +111711,10 @@ }, { "model": "evaluation.textanswer", - "pk": "b85d9463-11b4-476b-a89a-56807ba84765", + "pk": "44205eae-b1be-40a0-9342-98472bfab463", "fields": { "question": 314, - "contribution": 4116, + "contribution": 4084, "answer": "Lorem", "original_answer": null, "review_decision": "PU", @@ -102772,11 +111723,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b877a373-e50d-48dd-ad1e-b988a085da4e", + "pk": "44208874-e06d-426e-b8d6-86b848c205bf", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 364, + "contribution": 3553, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102784,11 +111735,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b8864c38-9b94-46b9-b488-b5c52dc04410", + "pk": "446d122f-2841-4182-945a-8a81ec021b7f", "fields": { "question": 313, - "contribution": 912, - "answer": "Lorem ipsum dolor", + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102796,11 +111747,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b8afe954-6bae-4728-bdcc-bd95fb31eb42", + "pk": "44b0fa06-27bc-4e6e-9aae-1dbb6328c3dd", "fields": { "question": 364, - "contribution": 885, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "contribution": 4191, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102808,11 +111759,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b8edc6a2-e01a-48ae-8663-4737820d360d", + "pk": "44bf9e68-b88f-4f3b-82ca-1669fd201ee1", "fields": { - "question": 313, - "contribution": 3422, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 3435, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102820,11 +111771,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b909e527-5f06-4877-9e8c-594454f72f61", + "pk": "44c4ad4c-1b4d-4e53-955e-d30174c3d33f", "fields": { - "question": 318, - "contribution": 836, - "answer": "Lorem ipsum dolor sit", + "question": 342, + "contribution": 1662, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102832,11 +111783,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b93ea03c-5dab-46a5-9bfc-2bbce392326e", + "pk": "4552dd76-67ce-4068-975b-e64a7a8032b4", "fields": { "question": 364, - "contribution": 3593, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "contribution": 1617, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102844,11 +111795,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b93fb049-e23b-4c36-8347-64993d5a186f", + "pk": "455496e6-3c3f-43c9-9ce8-bb84f4ad5f6f", "fields": { - "question": 313, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 314, + "contribution": 4084, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102856,11 +111807,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b9633ccb-7d4b-46c7-9076-e6b4e67a921b", + "pk": "45620dbc-fcec-4d94-a882-3d54c8c4594c", "fields": { - "question": 330, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 364, + "contribution": 913, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102868,11 +111819,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b9d6f69e-8dff-480f-b61b-867e694744c9", + "pk": "45dcedbf-8ff9-41b7-b31a-54295dd75816", "fields": { - "question": 330, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 364, + "contribution": 3893, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102880,11 +111831,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b9e6462b-3345-45ec-ae01-b2f2d46150f5", + "pk": "46048f69-ba43-4c5b-83f7-c1805c39df64", "fields": { - "question": 313, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit", + "question": 318, + "contribution": 3665, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102892,11 +111843,11 @@ }, { "model": "evaluation.textanswer", - "pk": "b9f8a33c-122a-4193-a166-87634c6fe0f5", + "pk": "460d7e33-8026-47cb-bbda-e24e21b34785", "fields": { - "question": 364, - "contribution": 3680, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102904,11 +111855,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ba08ffff-aba9-4a31-870e-254e6ca150c2", + "pk": "460fb716-286a-40ff-99e2-7370ca39244a", "fields": { - "question": 313, - "contribution": 3725, - "answer": "Lorem ipsum dolor", + "question": 318, + "contribution": 1680, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102916,11 +111867,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ba1d851b-fd7d-4bd3-b5ed-818351c860f0", + "pk": "461413ef-2b13-4e26-8999-8229378a727a", "fields": { - "question": 324, + "question": 314, "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102928,23 +111879,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ba1f8e10-30f9-4456-a65f-657ed2b5bb5f", + "pk": "462a49a7-aa91-4b5e-a454-b617f0192a07", "fields": { "question": 318, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false - } -}, -{ - "model": "evaluation.textanswer", - "pk": "ba4a8fbd-e2ed-4d16-a618-ec288c50b1b8", - "fields": { - "question": 324, - "contribution": 1662, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102952,11 +111891,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ba5f7aa6-d28e-4866-90c2-f090acc7ecf6", + "pk": "462f9392-e742-42f7-9b03-9944a3382571", "fields": { "question": 313, - "contribution": 3665, - "answer": "Lorem ipsum", + "contribution": 1626, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102964,11 +111903,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ba778172-d1b8-4e1c-89ab-0111cf068c83", + "pk": "467c460b-b659-44d4-b018-68ffade78a9b", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 314, + "contribution": 4118, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102976,11 +111915,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ba77b916-5768-4b6d-80d7-f8568a67e95a", + "pk": "46834af8-6421-4bb6-93a5-3b4e8b24e0ce", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "question": 364, + "contribution": 3923, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -102988,11 +111927,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ba7ad6b2-92c1-4197-9d1b-d7e0a461c794", + "pk": "46dadf21-521c-413d-90dc-82c3eec20427", "fields": { - "question": 318, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", + "question": 313, + "contribution": 3739, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103000,11 +111939,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ba82dd7d-9ea6-49ee-8f1a-6c9fd2648d02", + "pk": "4708bddc-aece-4601-b30d-c3e7d259c26c", "fields": { - "question": 324, - "contribution": 1680, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "question": 313, + "contribution": 3406, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103012,23 +111951,23 @@ }, { "model": "evaluation.textanswer", - "pk": "ba94f702-3b46-4782-ba7b-b0454f8368b4", + "pk": "470ebbbb-7cd9-4395-87a2-6bfe4a026f5e", "fields": { - "question": 324, - "contribution": 4072, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 313, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "bacb9d60-0ae3-4dd6-86f9-9e40a2bc6d90", + "pk": "47225d6c-93a0-4657-ac9a-37a91fe5485c", "fields": { - "question": 358, - "contribution": 4152, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "question": 313, + "contribution": 4128, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103036,11 +111975,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bb085fc9-d91a-45e7-a9b3-3dba408516b9", + "pk": "472634a2-7a8c-4ba2-a7d2-952cb17d1f18", "fields": { - "question": 373, - "contribution": 3751, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103048,11 +111987,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bb157caa-cf15-4987-a0b0-fa507586f6d6", + "pk": "474dbc56-7c8b-41a3-b8df-3b8b4bfbef8a", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103060,11 +111999,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bb264da5-73fa-42e5-b8f2-fb4b977b08e6", + "pk": "476cbea3-f422-464b-8acb-c03a5fd66a77", "fields": { - "question": 324, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "question": 314, + "contribution": 836, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103072,11 +112011,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bb547b0f-e90e-4380-88b5-669077726c40", + "pk": "47a13a8f-e525-4238-9d1e-08a33b350073", "fields": { - "question": 430, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "question": 364, + "contribution": 3593, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103084,11 +112023,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bbabf2e5-9925-48a9-90ba-075a249bcd4d", + "pk": "47ef8682-1165-43d3-a0d2-73f2d73ca29b", "fields": { - "question": 387, - "contribution": 3775, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 330, + "contribution": 822, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103096,11 +112035,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bbaf9d6b-fa89-43a9-9361-a11f55d686ed", + "pk": "47f44a00-1692-4fb1-afe4-8a1cda4fe525", "fields": { - "question": 364, - "contribution": 3852, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "question": 313, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103108,11 +112047,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bbbb5906-a8c8-406e-8980-f0cdcadd876e", + "pk": "48455575-0656-49e9-8bec-eeef657d5c9b", "fields": { - "question": 364, - "contribution": 4095, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "question": 318, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103120,11 +112059,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bbc3166e-8636-4714-b25f-f3558220284e", + "pk": "489d8bd5-26df-48cb-8ac1-48e94ee3fcf0", "fields": { - "question": 364, - "contribution": 3929, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "question": 324, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103132,11 +112071,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bbd5bb0a-5ef8-4d7a-b3ea-2cec1ec0f703", + "pk": "48a17d43-a5dd-4a81-bdc6-d82b018b30af", "fields": { - "question": 364, - "contribution": 885, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "question": 324, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103144,11 +112083,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bbe6131b-a9d1-40e7-ba39-09974948ee11", + "pk": "48c9d119-da00-4fae-9d32-366dde86154c", "fields": { - "question": 324, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103156,11 +112095,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bc5a7b8d-b8ba-41a0-970b-3b49ada3e89c", + "pk": "4907a858-77b9-4807-8c27-f7343ed34ad9", "fields": { - "question": 313, - "contribution": 912, - "answer": "Lorem", + "question": 364, + "contribution": 4204, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103168,11 +112107,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bc70a492-95f0-4108-807b-4e8a63d1e64c", + "pk": "490d637c-cca2-4e4e-a0b7-899723b35771", "fields": { - "question": 314, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 318, + "contribution": 1626, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103180,11 +112119,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bc7c2a36-c8ec-4bef-8c81-80e33c7eb179", + "pk": "491cbaee-5d71-4a12-8bab-a8202d40d535", "fields": { "question": 373, "contribution": 3745, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103192,11 +112131,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bc7d1566-c2fe-4650-8c7f-d46c1c17aea6", + "pk": "492ba8e7-6031-49ee-b3a4-64d9ed95a6af", "fields": { - "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", + "question": 342, + "contribution": 3645, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103204,11 +112143,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bc9f92b4-0115-4d33-a0e7-c4d461509411", + "pk": "4933340e-4f4d-4cd6-8af1-50b2647ef6d4", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 318, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103216,11 +112155,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bca57d28-8d74-4fd0-a589-5080e88cb6b4", + "pk": "4954f4b2-e567-40cd-b017-2952144cb5d8", "fields": { - "question": 324, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103228,11 +112167,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bcad6d45-277e-4b3a-886e-169b499afaf3", + "pk": "495c2b8a-c64f-416d-a85c-02611cc9f80f", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem ipsum dolor", + "question": 364, + "contribution": 3607, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103240,11 +112179,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bcb1e53c-944e-427b-92a3-0002f91e9d73", + "pk": "49762cb6-51dc-4ffb-b6d3-bd4d92bf1a13", "fields": { "question": 364, - "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "contribution": 4148, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103252,11 +112191,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bcb43c21-8b99-4dba-b858-415d757d1968", + "pk": "49826305-3f9d-4c24-87d4-32b82a73cbcc", "fields": { - "question": 330, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "question": 439, + "contribution": 4140, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103264,11 +112203,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bcbc3492-95e4-4891-908c-e0e6f4d3dcad", + "pk": "49b9acfc-7368-4df7-9d05-409b8fb07e3e", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem", + "question": 364, + "contribution": 3859, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103276,11 +112215,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bcd73c64-6de7-4259-af60-7d1f9bf220c4", + "pk": "49f285d0-53af-4432-b03d-abcd6fa89f80", "fields": { - "question": 318, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 324, + "contribution": 822, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103288,11 +112227,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bd10ef25-39f0-48af-b7b3-bba932c66f9a", + "pk": "4a4cf5ad-5b11-4324-b14f-018ff65b4cc0", "fields": { - "question": 330, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 373, + "contribution": 3727, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103300,11 +112239,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bd114b8e-b036-4694-89b1-eff62967bb34", + "pk": "4a9156c1-02f4-4dc3-94c3-4f0909d0836a", "fields": { "question": 313, - "contribution": 4084, - "answer": "Lorem", + "contribution": 3665, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103312,11 +112251,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bd3bf89d-683d-4e34-900d-245099891e14", + "pk": "4ab25d08-eac3-47ca-bb67-6c232ad48f5c", "fields": { - "question": 324, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103324,11 +112263,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bd4fe21f-2200-4432-8c22-7236e4245ec3", + "pk": "4ac26a49-346e-4ce6-987c-d94d6004fcb2", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "question": 364, + "contribution": 4189, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103336,11 +112275,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bd9fa655-76b4-44fe-a044-c2dd897a25a5", + "pk": "4adc4fe8-ccd5-4b66-ab75-cb6e1c993f2d", "fields": { "question": 364, - "contribution": 3609, - "answer": "Lorem ipsum dolor sit amet,", + "contribution": 1777, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103348,11 +112287,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bdab6427-e68d-46b5-a95f-6dfb8aa40fc1", + "pk": "4b1c0dab-62cb-4f36-9837-13ef5f00ccaa", "fields": { - "question": 358, - "contribution": 3417, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 364, + "contribution": 3893, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103360,11 +112299,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bdf48c55-28da-4e1c-8a81-3f3048edcba1", + "pk": "4b1e9c74-3fb6-4090-82d2-a8edbdd4d2cc", "fields": { - "question": 318, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 342, + "contribution": 3508, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103372,11 +112311,11 @@ }, { "model": "evaluation.textanswer", - "pk": "be28d85b-565a-4c44-8ba9-5d9fd292fdcf", + "pk": "4b79cf74-53c5-4ee9-9fe8-2a7357a49c11", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", + "question": 324, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103384,11 +112323,11 @@ }, { "model": "evaluation.textanswer", - "pk": "be7c4c45-e241-495c-968f-5ec4442cb460", + "pk": "4ba60d8e-4abe-49d6-884b-3d15307adede", "fields": { - "question": 330, - "contribution": 4120, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "question": 313, + "contribution": 3434, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103396,11 +112335,11 @@ }, { "model": "evaluation.textanswer", - "pk": "be861cba-02b1-4c21-8942-c64f7d2c7be1", + "pk": "4bcb6e00-db00-4563-9cc2-bd5f3149a33f", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem", + "question": 313, + "contribution": 4028, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103408,11 +112347,11 @@ }, { "model": "evaluation.textanswer", - "pk": "beaab8f3-a2aa-4652-8057-b771122a8b0e", + "pk": "4befa097-61a3-4a99-afa9-20c6f6a833c5", "fields": { "question": 364, - "contribution": 4283, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "contribution": 1217, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103420,11 +112359,11 @@ }, { "model": "evaluation.textanswer", - "pk": "beb76c84-d30d-48b5-9807-9ac7b290fb01", + "pk": "4c0137ca-1727-4cc0-8ed9-7091899aa19c", "fields": { "question": 313, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "contribution": 880, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103432,11 +112371,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bf704f5e-4a0d-4ae0-858d-f6acc19954d7", + "pk": "4c04faeb-5425-45d1-94cb-ae6610f44590", "fields": { - "question": 330, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", + "question": 373, + "contribution": 3723, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103444,11 +112383,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bfca2b0b-d8db-4f0b-a831-383b6bfd25ae", + "pk": "4c122568-680b-46fd-a358-9d87b57cbbe4", "fields": { - "question": 318, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103456,11 +112395,11 @@ }, { "model": "evaluation.textanswer", - "pk": "bff68834-f5be-4f06-a7b6-5a871f4466f4", + "pk": "4c12ba72-5ff4-4b97-b270-39032cd1f562", "fields": { - "question": 364, - "contribution": 3423, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 330, + "contribution": 3422, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103468,11 +112407,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c00b4db4-e959-4b2d-b2c4-cfa5fb69c9d7", + "pk": "4c1c85ff-9568-48de-9033-1c98aa0dbaa0", "fields": { - "question": 330, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 364, + "contribution": 1808, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103480,11 +112419,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c022de76-c1a0-453f-af7f-d183fa299ee1", + "pk": "4c25afe6-640f-4d3c-a1c3-16b604e9485d", "fields": { - "question": 324, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "question": 342, + "contribution": 826, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103492,11 +112431,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c034ab39-6e9a-4302-ba9b-4323b5b2e607", + "pk": "4c344ccb-f45b-4dec-af80-2cdb0cd2d39d", "fields": { - "question": 364, - "contribution": 4003, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "question": 313, + "contribution": 908, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103504,10 +112443,10 @@ }, { "model": "evaluation.textanswer", - "pk": "c0ae89e9-32e7-4114-ad32-0a71813dbe53", + "pk": "4c668aca-647c-417c-a3b4-b8dd60f4a518", "fields": { - "question": 364, - "contribution": 4121, + "question": 318, + "contribution": 3422, "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", @@ -103516,11 +112455,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c0e43291-3d89-41bc-bdee-190cb2be2ef1", + "pk": "4cc86083-ae5b-434b-a44c-f06af9b4bf62", "fields": { "question": 313, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "contribution": 862, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103528,11 +112467,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c0fcad0c-c001-4c04-b7f9-c6f0afce83e4", + "pk": "4ccab46d-5d45-46ad-9a3c-4198b95f4881", "fields": { - "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "question": 330, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103540,11 +112479,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c120bdb3-7e2b-46e1-bcd5-b717ed855f9b", + "pk": "4d38a133-9c83-4426-8107-f96c4a5bba91", "fields": { - "question": 364, - "contribution": 1613, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "question": 330, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103552,11 +112491,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c12f2ed6-0b76-4012-9dd2-57bac676aa5c", + "pk": "4d6cbfff-21df-4a27-861c-5e59dd0b649b", "fields": { - "question": 429, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "question": 342, + "contribution": 3727, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103564,11 +112503,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c14d3c6c-1be9-4846-92e0-465dbe02f2a3", + "pk": "4d6f774d-f258-4238-9a1c-7aafdf350a4d", "fields": { - "question": 314, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 313, + "contribution": 4100, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103576,11 +112515,23 @@ }, { "model": "evaluation.textanswer", - "pk": "c15ccb58-66c6-41db-8a45-271f35b518cd", + "pk": "4d92e0b1-a6ba-44b2-99fe-289a461704d8", + "fields": { + "question": 324, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "4d97f065-48ae-4bdc-9f04-65ef3e4db1a2", "fields": { "question": 342, - "contribution": 858, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "contribution": 3685, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103588,11 +112539,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c16024c9-d7fc-42ec-8784-43b122a8a440", + "pk": "4d9f4c9b-ae4a-4599-a68d-dbbf7b8c546f", "fields": { - "question": 364, - "contribution": 4228, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", + "question": 314, + "contribution": 4084, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103600,11 +112551,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c1a6a29a-e604-4e37-aa72-82c1b7a4bf1c", + "pk": "4dca95c0-bcff-4069-947a-dc5b09198d63", "fields": { - "question": 364, - "contribution": 3455, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 342, + "contribution": 788, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103612,11 +112563,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c1a79bc6-d3a8-475f-805e-52e11ad17571", + "pk": "4e21028a-788f-4ba1-a533-bebe18e9a1f7", "fields": { - "question": 314, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "question": 364, + "contribution": 4119, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103624,11 +112575,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c1c660d0-5f28-4523-acf1-fd65bd2015cc", + "pk": "4e3f4dae-a715-46b1-aa6b-db0d20367858", "fields": { - "question": 314, - "contribution": 3422, - "answer": "Lorem ipsum", + "question": 342, + "contribution": 3466, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103636,11 +112587,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c20e4d91-b79b-416f-a073-89f7cbfb9bd8", + "pk": "4e810f0c-e9a6-4b5c-88aa-ba139d628f2f", "fields": { - "question": 364, - "contribution": 3722, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103648,11 +112599,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c2378951-0f15-44e6-a09c-b99042370778", + "pk": "4e8aa32e-ad31-4582-81d2-6644b9f0af8a", "fields": { "question": 313, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "contribution": 3474, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103660,11 +112611,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c24e137e-c6de-40a6-aba3-f12dec509a47", + "pk": "4e8e04a7-9582-4b40-b60e-e4eda21e2e5b", "fields": { - "question": 373, - "contribution": 1660, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 324, + "contribution": 3685, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103672,11 +112623,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c2b62d55-5a47-4774-b3f3-8f07c047db42", + "pk": "4e95bc5e-0ba9-41e4-83e4-ae3940f32d83", "fields": { - "question": 314, - "contribution": 4046, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 3649, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103684,11 +112635,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c2dbf565-deea-4a49-bc6f-ef679dbcba80", + "pk": "4ea3b592-818d-4a98-8fd8-32c878a6d6fa", "fields": { - "question": 364, - "contribution": 3859, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "question": 313, + "contribution": 908, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103696,11 +112647,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c3063939-a941-46c8-b807-f3a950455352", + "pk": "4ea71209-71ef-4cb4-aa12-315e768645c1", "fields": { - "question": 342, - "contribution": 3404, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "question": 318, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103708,11 +112659,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c3136bbc-0b2e-4cd9-b6f7-feef8c1aa48b", + "pk": "4f4d6656-ce7b-4b2b-aa2d-983a55509976", "fields": { - "question": 373, - "contribution": 3727, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 364, + "contribution": 3646, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103720,11 +112671,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c3304fa2-9702-45d2-94f4-4e094892c896", + "pk": "4f74750e-4112-443d-87b2-eca614bd20e2", "fields": { - "question": 342, - "contribution": 4094, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 364, + "contribution": 3919, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103732,11 +112683,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c33cf336-47bc-4d74-af7c-a55fca3d5041", + "pk": "4fa4d5a1-b72e-44dc-b25d-d9a9046ba4cd", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 313, + "contribution": 1680, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103744,11 +112695,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c3793f53-1355-4469-9ab5-a486e7f40ebc", + "pk": "4fbcfc23-4c0e-451b-ba1f-9932c3f08cb4", "fields": { - "question": 318, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 364, + "contribution": 4117, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103756,11 +112707,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c3add162-7c02-402c-bb3a-f0887630f6de", + "pk": "4fc98b1a-9ad5-4a97-a605-a2237714947f", "fields": { - "question": 314, - "contribution": 822, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 4047, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103768,11 +112719,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c3cba9ef-d000-436a-aa6d-c6cf9c812cf3", + "pk": "5006681e-dae3-4c45-8b5d-007900802611", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem ipsum dolor", + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103780,11 +112731,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c3e077b1-cde8-4f9f-b970-b5c0c7c3f738", + "pk": "50152f46-6c4f-4440-9dae-2cbc7296406a", "fields": { "question": 318, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103792,11 +112743,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c3f6ee3d-b48f-495f-9285-df74ed60de16", + "pk": "5031e0da-1ff1-4e63-a26e-12d1260af522", "fields": { "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum", + "contribution": 884, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103804,11 +112755,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c4079cae-f6dc-43da-b7d8-3c624ccf758a", + "pk": "508cf24d-e8cd-4ba5-adf0-e35e50946903", "fields": { - "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 314, + "contribution": 4084, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103816,11 +112767,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c422ae2a-a485-49d2-b718-60dc3a1df7cf", + "pk": "50b8c500-0a94-4104-ae4b-27bc02284e24", "fields": { - "question": 364, - "contribution": 1617, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "question": 454, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103828,11 +112779,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c446fa0b-8cb4-4b43-917b-33b9e25bf359", + "pk": "50be1301-dca3-4dba-9f6c-28bb0d630626", "fields": { - "question": 342, - "contribution": 3440, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 313, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103840,11 +112791,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c44f93c0-cc6b-4406-96d8-d3d96e6c3e62", + "pk": "50c3e5c4-7fe7-461e-87df-6ab4c8075866", "fields": { - "question": 365, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 364, + "contribution": 887, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103852,11 +112803,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c49575a9-97e3-4293-aa90-d3e1103b988d", + "pk": "51278d78-ad69-40e6-abd4-62c42f9665e6", "fields": { - "question": 313, - "contribution": 3434, - "answer": "Lorem", + "question": 324, + "contribution": 4128, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103864,11 +112815,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c4e6acd4-38c1-4978-a4d1-2233cdc4dc25", + "pk": "513831ab-f3b3-4db9-b58c-bba42c80b7cc", "fields": { "question": 364, - "contribution": 4148, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "contribution": 3423, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103876,11 +112827,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c4fa6f7f-0926-4411-a509-f45e04e9557f", + "pk": "515ea0ee-3b14-4305-ac47-738b66c2c178", "fields": { - "question": 342, - "contribution": 1660, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 318, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103888,11 +112839,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c51ee82a-0616-424a-be73-8e97ec10ed18", + "pk": "5165901f-1872-4f4e-9444-7759f445efa1", "fields": { - "question": 330, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 358, + "contribution": 4186, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103900,11 +112851,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c527b375-7ee6-4fe3-9662-943fd250f225", + "pk": "51761ce0-1591-4ba9-a503-7b0e9844095f", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 364, + "contribution": 1287, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103912,11 +112863,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c5a07d96-58ae-47c8-92f6-cf3596f2b621", + "pk": "5181ad29-d47e-45eb-a019-1c552c4f76e4", "fields": { "question": 364, - "contribution": 4139, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "contribution": 3515, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103924,11 +112875,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c5affb39-d882-4291-bcf5-94ed32dbf781", + "pk": "51b71f07-0656-458b-a7a8-432551e1e0bc", "fields": { - "question": 313, - "contribution": 3721, - "answer": "Lorem", + "question": 358, + "contribution": 863, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103936,22 +112887,22 @@ }, { "model": "evaluation.textanswer", - "pk": "c5cef807-dfaa-4ccf-a43c-e931f68fe4f7", + "pk": "51d8f1f1-95be-4262-9215-1adc3920fd3b", "fields": { - "question": 342, - "contribution": 3821, - "answer": "Lorem ipsum dolor sit amet,", + "question": 373, + "contribution": 4072, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat", "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "c5d34cd6-7206-4f2a-a267-db1c95442f23", + "pk": "51dd0011-6867-4595-b78e-6b9e5d057820", "fields": { - "question": 314, - "contribution": 1634, + "question": 342, + "contribution": 3372, "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", @@ -103960,11 +112911,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c5d8cc2a-a6ee-4a8b-87a9-d545e304af0e", + "pk": "526bfe9f-4ca4-4892-878f-c160a06cab2b", "fields": { - "question": 364, - "contribution": 4121, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 358, + "contribution": 909, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103972,11 +112923,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c5f0ae6c-7d22-49c8-b3a6-0e39d5372595", + "pk": "52721e47-d1bd-4e92-b04d-4669cb2f4514", "fields": { "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103984,11 +112935,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c613adb6-35d0-4f5e-bb10-664c76fb056f", + "pk": "52a583ca-a5a5-4bb9-b164-95081cf2f11b", "fields": { "question": 318, - "contribution": 1680, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -103996,11 +112947,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c62056a8-7f3a-4871-932c-b1d909a27801", + "pk": "52b3dc45-cf67-4e92-b1bd-12a4224155b0", "fields": { "question": 364, - "contribution": 3355, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "contribution": 4148, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104008,11 +112959,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c652027e-73d8-4c2f-b3f1-8b2a89d4db5c", + "pk": "52fe4b28-8170-40dc-90dd-2c32b804b0d2", "fields": { - "question": 313, - "contribution": 4046, - "answer": "Lorem", + "question": 373, + "contribution": 3466, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104020,11 +112971,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c677929d-553d-40ab-8c81-03e292e19831", + "pk": "5328fea8-a28c-4e61-8a0c-5d10f1dec0c9", "fields": { - "question": 364, - "contribution": 3859, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", + "question": 314, + "contribution": 908, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104032,11 +112983,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c6e06086-2f49-4e63-822b-76d0dbca9eb7", + "pk": "5342def4-6380-4803-b2b5-6739724dd5ff", "fields": { - "question": 364, - "contribution": 3553, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 324, + "contribution": 918, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104044,11 +112995,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c6e49040-c2c2-412e-8f08-765108b996e0", + "pk": "5346bf22-6986-41a9-a578-b8aab74df311", "fields": { - "question": 314, - "contribution": 1658, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 313, + "contribution": 3434, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104056,11 +113007,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c714685b-58dd-45a1-92cc-2dc27d9843df", + "pk": "535676a0-0ac2-4a69-9ea6-5d491ad64c9a", "fields": { - "question": 324, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "question": 342, + "contribution": 3795, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104068,11 +113019,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c71cef9e-08c1-4616-b661-6eb3745cb32e", + "pk": "536db01d-7182-4580-8e59-990dccc281f5", "fields": { "question": 358, - "contribution": 1201, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "contribution": 3736, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104080,11 +113031,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c7659a45-02d6-4ba1-a8c0-f0563f76baab", + "pk": "53a81886-3d23-442b-8d9b-dc620b8f2bb9", "fields": { "question": 364, - "contribution": 3607, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "contribution": 1217, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104092,11 +113043,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c7a3295b-b6ad-480b-9a5c-d4d5ab5986a6", + "pk": "53b36b90-e4ce-40ad-bfac-185841b9d01c", "fields": { - "question": 314, - "contribution": 4022, - "answer": "Lorem ipsum dolor sit", + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104104,11 +113055,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c7d7c2b9-df22-4250-b757-05da98a85c3e", + "pk": "53be696f-dc21-4682-af03-3957b69f8a60", "fields": { - "question": 342, - "contribution": 3723, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "question": 313, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104116,11 +113067,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c7f3994d-1f59-4f1c-b5d1-eab6727ddced", + "pk": "54150e91-a0e9-481a-8c0b-87e3194d4ff3", "fields": { - "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 364, + "contribution": 4129, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104128,11 +113079,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c7fd9d22-d47d-4b97-8325-5155a8633c5a", + "pk": "5427c2f2-1588-4d5b-8287-766233453dbd", "fields": { - "question": 364, - "contribution": 1288, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 411, + "contribution": 4038, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104140,11 +113091,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c833127a-8a89-4faa-bda9-3aec2652caa4", + "pk": "544a3f27-2120-48aa-afea-a9abaff62c91", "fields": { - "question": 342, - "contribution": 1660, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 318, + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104152,23 +113103,23 @@ }, { "model": "evaluation.textanswer", - "pk": "c841437a-a515-471a-bb16-d8d1a5781baf", + "pk": "5460ddd5-6dd1-4685-86c0-3e2dcc0f267a", "fields": { "question": 364, - "contribution": 3862, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "contribution": 3556, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "c8558ab8-9b71-4bc1-a043-447b0501ac83", + "pk": "54e4ede8-7a95-428d-b852-b749959d0ca8", "fields": { - "question": 358, - "contribution": 1201, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 364, + "contribution": 4139, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104176,11 +113127,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c871733d-e533-4170-bd45-213e7bfed2e7", + "pk": "55088787-6295-4500-952b-8e39d59de899", "fields": { - "question": 364, - "contribution": 3822, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", + "question": 330, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104188,11 +113139,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c8b9610a-43cd-4dd9-b044-7a3352bc33bc", + "pk": "551de1bf-fb92-4ba9-a0e5-bbb3858b48c9", "fields": { - "question": 364, - "contribution": 3473, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 430, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104200,11 +113151,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c8cc2358-1a31-46ff-84a0-1dad45ebc88b", + "pk": "552bcd79-3d6d-4d26-b1dc-d5b8d0163228", "fields": { - "question": 324, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,", + "question": 313, + "contribution": 908, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104212,11 +113163,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c8dd7bc7-08a9-4046-bcc2-09df60d46eab", + "pk": "552ccbc1-2c5c-4427-a6e7-12cccf52eaff", "fields": { - "question": 373, - "contribution": 3486, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 381, + "contribution": 3711, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104224,11 +113175,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c8e91850-5dd7-4236-b5c9-0e76ff85acda", + "pk": "55560920-3c79-417e-aa42-1afffb688980", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 314, + "contribution": 3472, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104236,11 +113187,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c8f0f314-1bcc-48d3-852a-f13b13915697", + "pk": "5578ad5f-2e53-48fd-9675-9ab9497453a9", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet,", + "question": 330, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104248,11 +113199,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c8faf027-bf6b-4379-9913-5ff8bb28be7c", + "pk": "559f4b91-a025-4452-b0ad-85cdcded99af", "fields": { - "question": 358, - "contribution": 3475, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 342, + "contribution": 1662, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104260,11 +113211,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c95811f7-2f92-4d6f-a6ed-8afeeb814037", + "pk": "55ad9b39-df01-4b4c-95a8-4af17e9efe8b", "fields": { - "question": 330, - "contribution": 3462, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 313, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104272,11 +113223,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c98847e0-cf25-4e44-8230-ebef01a96488", + "pk": "55ae0e6f-ea54-4ac4-b02f-aa3593c65e2c", "fields": { - "question": 364, - "contribution": 3553, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 324, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104284,11 +113235,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c99413ff-6fd1-4a25-b829-837b5ed85b66", + "pk": "55b5edc0-72c1-461f-96e4-be570cd851cf", "fields": { - "question": 364, - "contribution": 1812, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", + "question": 358, + "contribution": 909, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104296,10 +113247,10 @@ }, { "model": "evaluation.textanswer", - "pk": "c99a648a-efe7-493c-8d31-1f26e78c1b7f", + "pk": "55da14fd-38f9-43c7-9d94-86894e59fb7d", "fields": { "question": 318, - "contribution": 1626, + "contribution": 3725, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", @@ -104308,11 +113259,11 @@ }, { "model": "evaluation.textanswer", - "pk": "c9c83eb2-b585-422b-aafd-ce1acd34f76f", + "pk": "55e971a9-3147-41ba-884c-755a28829a34", "fields": { - "question": 313, - "contribution": 912, - "answer": "Lorem ipsum", + "question": 454, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104320,11 +113271,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ca040233-663d-45ae-877a-6d00ee42c366", + "pk": "56387d0e-ef73-4765-939d-2e7470d83f92", "fields": { - "question": 330, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "question": 393, + "contribution": 3775, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104332,11 +113283,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ca2c49c2-7d26-4615-b118-427c5dcdcef1", + "pk": "5651e68c-6909-4ca0-8935-44c689deabdb", "fields": { - "question": 314, - "contribution": 3721, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 1735, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104344,11 +113295,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ca882bb8-0520-4917-a2d9-08f99e4f7e14", + "pk": "56525ff3-f1ea-4cdf-b752-83e72d61816f", "fields": { - "question": 342, - "contribution": 3440, - "answer": "Lorem", + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104356,11 +113307,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ca91c2ec-c2e7-4eba-8e8e-259e1823d306", + "pk": "565ab66f-adc2-4876-9978-e93e1e88d871", "fields": { - "question": 313, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 342, + "contribution": 886, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104368,11 +113319,11 @@ }, { "model": "evaluation.textanswer", - "pk": "caa7d389-42eb-493d-b4d5-c36996c484f4", + "pk": "565f5f73-cf9f-42d8-8f6b-5a3eed1ac25f", "fields": { "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104380,11 +113331,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cabcd198-4108-4383-a41c-6e4d93849506", + "pk": "5675c5c8-593f-4704-8d18-8879d05df2bd", "fields": { "question": 364, - "contribution": 3879, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", + "contribution": 3355, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104392,11 +113343,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cae277cb-ad6a-4231-b4fd-22ad8ef64522", + "pk": "56a4f8de-ff1c-4e3d-b7ad-f37373d7a41c", "fields": { - "question": 330, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 342, + "contribution": 4002, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104404,11 +113355,11 @@ }, { "model": "evaluation.textanswer", - "pk": "caf3101e-8817-4e92-ae7f-f4dae27c7feb", + "pk": "56ac8fa3-007a-441d-9025-e241af00edfe", "fields": { - "question": 455, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "question": 313, + "contribution": 862, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104416,11 +113367,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cb0b07e1-4f79-424f-bbf3-f8caa9b01e03", + "pk": "56b15df2-d33b-4559-8112-50f1549dd3b4", "fields": { - "question": 364, - "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem", + "question": 318, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104428,11 +113379,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cb2a88a0-7bfa-4e02-86e2-898284dbe93b", + "pk": "56c4f601-6362-4af6-9838-8d91d40b6275", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem ipsum dolor", + "question": 373, + "contribution": 3685, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104440,11 +113391,23 @@ }, { "model": "evaluation.textanswer", - "pk": "cb43e75b-99a2-4296-bf66-4ad2210bc51e", + "pk": "56fed1de-894a-4d8f-8ee7-acd7e270fc67", + "fields": { + "question": 318, + "contribution": 3354, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "5721ae4d-ff9a-4d33-96f9-2ad9d00c05bb", "fields": { "question": 314, - "contribution": 3390, - "answer": "Lorem ipsum", + "contribution": 822, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104452,11 +113415,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cb4d428c-6a81-45ed-b53e-c3da6b260480", + "pk": "572ed081-ac33-44a2-b37d-29ec5f6f9303", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 330, + "contribution": 4120, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104464,11 +113427,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cb760c10-5f29-453f-9d88-72a47fdc82c7", + "pk": "5744385d-baa1-483e-a15e-5495ec92d3b1", "fields": { - "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "question": 314, + "contribution": 3721, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104476,11 +113439,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cbd973bd-1a4a-4d69-a202-b4fe5ee10639", + "pk": "578fe7b5-f972-4d92-b9d7-c553b7bdc1d9", "fields": { - "question": 330, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 342, + "contribution": 894, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104488,11 +113451,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cbf7cdb5-2ced-4e45-9b59-94eb91cbad21", + "pk": "57c755cc-605c-470c-b2ff-c433954f977d", "fields": { "question": 364, - "contribution": 4156, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "contribution": 3893, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104500,11 +113463,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cc007e92-2b8e-43b2-b63f-8dd584186336", + "pk": "58460c96-58e9-4a48-8a5a-eff321be8629", "fields": { - "question": 373, - "contribution": 4002, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 318, + "contribution": 4118, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104512,11 +113475,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cc1306ac-5061-4b1c-bed5-611122076216", + "pk": "5856ea1f-7724-4625-8987-f87e7491b54c", "fields": { - "question": 330, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 364, + "contribution": 3893, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104524,11 +113487,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cc569187-c16d-4549-96d5-fae7d0cf7a9e", + "pk": "586b0ba2-1f4c-4dd9-a7c8-1606ab29802d", "fields": { "question": 330, - "contribution": 822, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "contribution": 3354, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104536,11 +113499,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cc715089-5a20-43d0-9824-574bc75f0fe9", + "pk": "58783dfa-0813-4e9e-b8dd-009c2a7686e6", "fields": { - "question": 318, + "question": 313, "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104548,11 +113511,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cc7c7dc2-ca53-4dd5-b37a-952f9c43aae5", + "pk": "587c51ba-858a-4e6e-a3ac-2dc04795f417", "fields": { - "question": 342, - "contribution": 918, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104560,11 +113523,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cc7e6701-55fb-451a-a3ee-891dd2d69fcd", + "pk": "58b9127d-0c33-4f2c-858c-1a1a284756e9", "fields": { - "question": 364, - "contribution": 4204, - "answer": "Lorem ipsum dolor sit", + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104572,11 +113535,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ccc3369e-843c-4ec8-880b-2a8a67b6f22f", + "pk": "58d73162-d9bb-4fff-88d9-b26816e3ff70", "fields": { "question": 342, - "contribution": 3685, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104584,11 +113547,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ccc56194-df22-4112-9b64-bf3e25e4cd74", + "pk": "59100fba-7a96-4b95-990a-68b5663c007a", "fields": { - "question": 373, - "contribution": 3723, - "answer": "Lorem ipsum dolor sit amet,", + "question": 364, + "contribution": 4192, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104596,11 +113559,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ccd165a5-dc98-4bc9-bf77-829bebffd43a", + "pk": "593337a7-060c-47ea-ac52-5afc9c92d007", "fields": { - "question": 314, - "contribution": 4120, - "answer": "Lorem", + "question": 364, + "contribution": 4129, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104608,11 +113571,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ccf08a19-3ee2-4d98-b3ba-f88f530d8a9d", + "pk": "595448ff-c531-4562-adb8-2795f927eeaa", "fields": { "question": 318, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "contribution": 3739, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104620,11 +113583,23 @@ }, { "model": "evaluation.textanswer", - "pk": "ccfc5b2d-171b-407a-9bab-ea28d6b8e4f3", + "pk": "596b1a98-f75f-4251-9646-708455d0cc5f", + "fields": { + "question": 314, + "contribution": 1680, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "599fb8d0-72b1-410c-aa06-4c363db41776", "fields": { "question": 313, - "contribution": 1724, - "answer": "Lorem ipsum dolor sit amet,", + "contribution": 3406, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104632,11 +113607,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cd02eff2-2cec-4abf-a6a8-660b620a3e79", + "pk": "59a6faa1-1a76-48f8-93bc-6f2e64f4b91d", "fields": { - "question": 364, - "contribution": 3859, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 365, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104644,11 +113619,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cd199117-05b1-4a2d-9a55-c11e6f7c1c52", + "pk": "59b42708-0dcc-49ce-b630-8f3edea7cdd7", "fields": { - "question": 342, - "contribution": 3723, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 314, + "contribution": 908, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104656,11 +113631,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cd29f011-8a5b-4b9b-b031-9defe6bc280d", + "pk": "5a0565a8-5944-47e0-8838-e3d2644c4537", "fields": { - "question": 358, - "contribution": 1154, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 313, + "contribution": 908, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104668,11 +113643,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cd36bd2a-73da-4db5-8cf1-a34ecd8a993c", + "pk": "5a30edd8-edaf-47fd-9091-cbb19ee6770a", "fields": { - "question": 358, - "contribution": 3646, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 313, + "contribution": 4028, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104680,10 +113655,10 @@ }, { "model": "evaluation.textanswer", - "pk": "cd3c8c48-79da-4386-b795-a349debc311c", + "pk": "5a450c64-0adb-426e-bc40-3c6960d06793", "fields": { - "question": 364, - "contribution": 3355, + "question": 313, + "contribution": 880, "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", @@ -104692,11 +113667,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cd6a71ce-5c5c-4e66-a9a2-1a1ac667af12", + "pk": "5a556bb2-e36c-406a-ad33-e3abf294dda4", "fields": { "question": 330, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "contribution": 1612, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104704,11 +113679,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cd734450-4a52-4646-b84e-8690e8cdba6c", + "pk": "5a67150f-572b-4e86-93cb-84fb9e26be05", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 353, + "contribution": 1256, + "answer": "Lorem ipsum dolor sit amet", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104716,11 +113691,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cd8a592e-6ff2-481d-afd4-d02f09c7d547", + "pk": "5a7ccdab-041e-46a9-94f9-9416e748998f", "fields": { - "question": 342, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "question": 364, + "contribution": 3594, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104728,11 +113703,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cda171d1-6c7c-4bbc-a508-cd353a6ffb19", + "pk": "5a98a6e8-48c2-4a38-a297-c1963fe00b47", "fields": { "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "contribution": 3422, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104740,11 +113715,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cda2e637-ba3c-4ac3-a21d-8c83a143ebae", + "pk": "5aaefb7f-f223-4f93-a838-ea665552ef56", "fields": { - "question": 324, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", + "question": 364, + "contribution": 3666, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104752,11 +113727,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cdaa5e55-6bcf-4f60-8979-d7b9e91550de", + "pk": "5b128b36-868e-481c-add3-9748570fc248", "fields": { - "question": 313, - "contribution": 3406, - "answer": "Lorem ipsum", + "question": 330, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104764,11 +113739,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cdb57121-5e1b-47ee-9df8-4a8838441710", + "pk": "5b4a45e8-4b5f-41d2-a887-d35d91081f0a", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem ipsum dolor", + "question": 364, + "contribution": 4117, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104776,11 +113751,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cdd39e99-7ab7-4801-b7b6-5c8e8fc4da0b", + "pk": "5b5d0481-5485-4834-8182-ad32b6bae552", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", + "question": 313, + "contribution": 3434, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104788,11 +113763,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ce12ebf7-7ee0-4a43-85d5-6aadb3633d24", + "pk": "5b66a4f3-8225-484d-9963-2528514654dc", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum dolor", + "question": 314, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104800,11 +113775,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ce16aea7-45d6-45e5-a7ea-faaf34e471f3", + "pk": "5b96abf1-202d-44a6-990e-7758b87375c0", "fields": { - "question": 342, - "contribution": 3454, - "answer": "Lorem ipsum dolor sit", + "question": 313, + "contribution": 4100, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104812,11 +113787,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ce18625e-4045-4f2d-8613-728da5d6d708", + "pk": "5bc6dc7f-1278-4cb6-be00-d481c662c285", "fields": { "question": 373, - "contribution": 1702, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", + "contribution": 1748, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104824,11 +113799,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ce247b98-6a73-474e-8498-6317b6568b74", + "pk": "5bf093e9-7100-4c33-ad72-3bbf951534eb", "fields": { - "question": 364, - "contribution": 4204, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104836,11 +113811,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ce4636fd-0ed2-4e05-b9d2-f8827034c0fc", + "pk": "5c38dee4-13e7-439e-b4b9-353301b0f7a9", "fields": { - "question": 364, - "contribution": 3608, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 313, + "contribution": 880, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104848,11 +113823,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ce472393-0066-4205-8ef6-9447206e208b", + "pk": "5c3b7976-fd49-4607-9d5d-f837bff008ab", "fields": { - "question": 364, - "contribution": 3473, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 313, + "contribution": 1634, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104860,11 +113835,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ce64bf90-0314-40b3-bfc0-9dbb6bc3d2dc", + "pk": "5c5e7749-dcf8-4d1e-bf52-6f804a51cec5", "fields": { - "question": 364, - "contribution": 4039, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 342, + "contribution": 886, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104872,11 +113847,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ce650621-383a-4432-a66c-9b6247ed02ed", + "pk": "5c5ff514-8af1-47a4-a285-af7c5dd30669", "fields": { "question": 364, "contribution": 885, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104884,11 +113859,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ce6ab58f-79e0-4f0f-b615-51e13432fa76", + "pk": "5c83c577-373a-4701-9e1f-c27257f0eeaf", "fields": { - "question": 364, - "contribution": 1781, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104896,11 +113871,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ce8ae046-5d78-4b72-8399-707a69628e46", + "pk": "5cbc90e9-676a-4441-a737-7eb1667f7924", "fields": { "question": 364, - "contribution": 3848, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "contribution": 4047, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104908,11 +113883,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ce91ceee-eafa-4897-af73-1e816ed544fc", + "pk": "5cc8216e-e7f3-4323-9cf6-3320cf0172b9", "fields": { - "question": 342, - "contribution": 1656, - "answer": "Lorem", + "question": 364, + "contribution": 4187, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104920,11 +113895,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ce9ed908-202b-457d-a20f-8993149d34d9", + "pk": "5ccfa6d3-2a74-4c9c-87c7-2202be3d4ba8", "fields": { - "question": 342, - "contribution": 4020, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 318, + "contribution": 3725, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104932,11 +113907,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cec7fbbc-3750-48cd-8286-563214e5e10f", + "pk": "5cd7cc55-2174-445e-ae55-35d1cafeaa71", "fields": { - "question": 313, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 364, + "contribution": 3921, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104944,11 +113919,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cef05434-0e09-40f0-96fb-bb1a26ef1ab1", + "pk": "5cd8320c-0730-40e8-9c57-2f7ca3874610", "fields": { - "question": 393, - "contribution": 3781, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104956,11 +113931,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cf02c8e9-812f-4f74-9fd2-9c47ba948368", + "pk": "5d118f30-73eb-481f-9393-a04eff7faa74", "fields": { "question": 313, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit", + "contribution": 880, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104968,11 +113943,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cf0e9f39-628c-4c6b-aaca-0152e0dd2755", + "pk": "5d1aff42-8d35-4909-b72a-1a2080cfeeaa", "fields": { - "question": 330, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 318, + "contribution": 4128, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104980,11 +113955,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cf100bab-bf19-495e-9102-a6bfe321ae5d", + "pk": "5d5b0184-e057-42f9-99d1-7d0431478e8a", "fields": { - "question": 342, - "contribution": 3508, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "question": 319, + "contribution": 864, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -104992,11 +113967,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cf1577b7-ff21-466a-8f22-ebc018f1943d", + "pk": "5d63e00c-76ff-4d19-a2a2-2133ef0f61b2", "fields": { "question": 364, - "contribution": 3917, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "contribution": 4129, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105004,11 +113979,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cf1f8fac-9b02-4868-9d4c-18a5ce13f014", + "pk": "5d63e70f-4c2b-4dc9-bde1-d1b149d2ac56", "fields": { "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "contribution": 3740, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105016,11 +113991,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cf42e4f8-b438-4f7d-b46c-cf0ada7d7044", + "pk": "5d73b8bd-aff4-4848-954b-9eb575e7e415", "fields": { - "question": 313, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit", + "question": 330, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105028,11 +114003,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cf4578b9-1ed6-4695-b801-87e16455dca6", + "pk": "5d9e8560-9b03-4aab-a920-84117d253406", "fields": { - "question": 342, - "contribution": 1710, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "question": 364, + "contribution": 3852, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105040,11 +114015,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cf61c488-b808-4b8d-8f8a-4d0d7100d66d", + "pk": "5db3151d-056a-4c64-9354-ca8fa2ba60f2", "fields": { - "question": 324, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 364, + "contribution": 3855, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105052,11 +114027,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cf77e1f7-7b1d-46bf-b612-bacfed60dc48", + "pk": "5dc39e78-9f63-4ef8-832a-e66dce0347b1", "fields": { - "question": 318, - "contribution": 3462, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "question": 324, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105064,11 +114039,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cf7b6835-e76e-40e0-acb1-080258b3e60e", + "pk": "5dffe771-b7d0-4d0f-8fea-f7aa2058768f", "fields": { - "question": 364, - "contribution": 4203, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate", + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105076,11 +114051,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cfa51d5f-f024-4751-b5fa-bdc0e4ef73d5", + "pk": "5e408edb-b9da-4ac0-82f7-6516c8d88d20", "fields": { - "question": 364, - "contribution": 885, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105088,11 +114063,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cfcd9eed-2719-4f82-98cd-251acd04970a", + "pk": "5ea62151-8a82-439e-940c-479d1aa587ab", "fields": { - "question": 313, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet,", + "question": 373, + "contribution": 3454, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105100,11 +114075,11 @@ }, { "model": "evaluation.textanswer", - "pk": "cff34c58-7844-458d-93fe-c82a4a0b3a88", + "pk": "5eccbb30-1fc1-43f4-8a8e-b28b5a4f142e", "fields": { - "question": 365, - "contribution": 1662, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 3608, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105112,11 +114087,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d0465f6f-80c8-4401-a58f-e98c699c0698", + "pk": "5ef136d7-a495-4368-9e2c-d536e9415615", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 318, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105124,11 +114099,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d046a910-e7fa-44dd-8a01-6e5491a9b726", + "pk": "5ef3b847-a63b-4e6c-b584-b5ab8e989e68", "fields": { "question": 324, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105136,11 +114111,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d062b741-c76f-4e97-bd60-814860504045", + "pk": "5efa5086-a4be-42b3-b316-85e5e930b50c", "fields": { - "question": 364, - "contribution": 3556, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "question": 313, + "contribution": 1634, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105148,11 +114123,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d077442b-e81e-42ae-9787-d52f6e6f6dc7", + "pk": "5f156288-ed1d-4c42-9b84-bfa5cee5cd8c", "fields": { - "question": 330, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 324, + "contribution": 918, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105160,11 +114135,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d08a447b-1663-4147-9ccd-98d9d2c32436", + "pk": "5f15e0e3-00e0-4356-8149-8e73357156f2", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "question": 324, + "contribution": 886, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105172,11 +114147,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d0a3a741-bea9-4c71-bd88-f322b88e514c", + "pk": "5f20546c-0869-42b9-a40c-97cd213cc287", "fields": { - "question": 330, - "contribution": 3422, - "answer": "Lorem ipsum", + "question": 324, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105184,11 +114159,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d0c11bf4-2560-44a4-b75d-47963e2640de", + "pk": "5f2f7abd-7a21-4d2c-994e-e6f5ef1a1b3e", "fields": { "question": 318, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "contribution": 4100, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105196,11 +114171,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d0c6e650-0107-423f-b050-956048ad8558", + "pk": "5f80ad80-5b78-4fa1-9a78-0be344cefbe4", "fields": { - "question": 342, - "contribution": 804, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "question": 364, + "contribution": 3536, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105208,11 +114183,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d14596e1-4601-41f9-a2e7-886b21c915d6", + "pk": "5f8995cf-1382-4b80-9d0c-6f2324f5772b", "fields": { - "question": 358, - "contribution": 3475, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 314, + "contribution": 880, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105220,11 +114195,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d1506606-5bcb-49cd-9314-849df6286322", + "pk": "5fb14d45-a7ac-436a-a929-4b09c1868d3c", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "question": 330, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105232,11 +114207,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d154fa4a-a92d-48bc-a743-679b4cfca72f", + "pk": "5fc192c3-397a-4b6f-86ae-89a3b962664c", "fields": { - "question": 364, - "contribution": 3555, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 373, + "contribution": 3508, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105244,11 +114219,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d155a793-1623-4559-a278-79235fcb252a", + "pk": "5fe510cb-4e3d-4f12-9b14-baaba58c2b10", "fields": { - "question": 324, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "question": 364, + "contribution": 1635, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105256,11 +114231,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d179ecde-25ff-40a1-96e7-168cdad37a5f", + "pk": "5ff1e8bd-3954-44a7-9b0a-87eb974c70ea", "fields": { - "question": 330, - "contribution": 4120, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 364, + "contribution": 1802, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105268,11 +114243,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d1aecf65-7bff-44a9-acf9-6fd5a031bf1c", + "pk": "60278d13-0d39-4ac5-bd43-63df9812e0f6", "fields": { - "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 364, + "contribution": 3391, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105280,11 +114255,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d1b987c8-0012-4483-aa5a-30d2731f0fe4", + "pk": "6034f728-da7a-4038-93e1-79bc44698b1e", "fields": { - "question": 330, - "contribution": 3354, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 318, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105292,11 +114267,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d1ca08d1-050d-4e16-a560-2621c8b917af", + "pk": "60582678-c49a-48c1-8dbd-fd9886833553", "fields": { - "question": 318, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 314, + "contribution": 884, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105304,10 +114279,10 @@ }, { "model": "evaluation.textanswer", - "pk": "d1e1d32b-4faa-4f18-addc-85a61ef5799f", + "pk": "606692c6-ef06-46c8-b6b8-6efe7a17c361", "fields": { - "question": 364, - "contribution": 4148, + "question": 314, + "contribution": 880, "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", @@ -105316,11 +114291,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d1feb886-65b3-4b78-8c38-0ff550446b55", + "pk": "609172d8-3878-4677-bce8-1eef255fcdda", "fields": { "question": 364, - "contribution": 3934, - "answer": "Lorem ipsum dolor sit", + "contribution": 1779, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105328,11 +114303,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d21b5c62-a231-41d7-a0ee-6c7847d6f0ea", + "pk": "60eb919a-768d-493c-8fd7-70c9bcf3e770", "fields": { "question": 330, - "contribution": 4120, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105340,11 +114315,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d2427e3e-f133-4c82-be15-d68b9215c88f", + "pk": "60f75fd2-413b-4b9b-a1fd-949283ed2f64", "fields": { - "question": 330, - "contribution": 3434, - "answer": "Lorem ipsum", + "question": 314, + "contribution": 1837, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105352,11 +114327,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d2430db3-27c1-4ece-aa2c-ebe86f073c38", + "pk": "60fc4c77-6424-4339-9e8e-0342da7699ff", "fields": { - "question": 330, - "contribution": 3721, - "answer": "Lorem ipsum", + "question": 342, + "contribution": 3466, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105364,11 +114339,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d2482ec9-fe4f-4aac-8686-f85a0e1a769d", + "pk": "610a4438-caf7-46fa-99f4-127aca5a644b", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem ipsum dolor", + "question": 364, + "contribution": 4204, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105376,11 +114351,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d2550dc1-4569-45d2-b1cb-267655d07fe5", + "pk": "613fd5dd-a4eb-4302-af74-2dc6e0b0092e", "fields": { - "question": 313, - "contribution": 884, - "answer": "Lorem", + "question": 314, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105388,11 +114363,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d27bb503-6bed-43df-9115-dcf113ea248f", + "pk": "6158f1d5-fc28-4245-9ca3-b7747966012b", "fields": { "question": 313, - "contribution": 4128, - "answer": "Lorem ipsum dolor", + "contribution": 3434, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105400,11 +114375,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d29e72eb-dc9e-4fbe-8d8e-af1b6cb24244", + "pk": "615efdba-13b2-4c02-aabf-ab09adc7590d", "fields": { - "question": 330, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105412,11 +114387,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d2a20cfe-2fb7-48e3-9b43-c679a6a5eb44", + "pk": "6164d07e-e528-469a-8bea-7a04ac55564f", "fields": { - "question": 330, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "question": 364, + "contribution": 1204, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105424,11 +114399,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d2abd2b3-ba01-422d-a0b3-77929c08e290", + "pk": "6167de9a-e325-4a86-88d6-4aa9138d9e96", "fields": { - "question": 313, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit", + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105436,11 +114411,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d2dc621b-ef57-45e6-b4d5-036f0730bf14", + "pk": "617a842a-fe6e-472e-bbb8-0ee651da502e", "fields": { - "question": 364, - "contribution": 3796, - "answer": "Lorem ipsum dolor", + "question": 318, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105448,11 +114423,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d31b8889-ebd9-404a-bb47-07b79a6f44f3", + "pk": "6190e19a-c74c-459f-8769-a0368df41c7d", "fields": { - "question": 342, - "contribution": 1656, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105460,11 +114435,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d335acb8-87a0-41e5-af6b-e94263e5c398", + "pk": "61b0dd87-c26d-4432-800f-bb9f676a4147", "fields": { - "question": 364, - "contribution": 4204, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "question": 314, + "contribution": 4084, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105472,11 +114447,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d3562ed4-9d6b-40f4-a9d8-42c12a5ff2c3", + "pk": "61b8eba7-1b58-4fc8-82a9-01e954d33678", "fields": { "question": 364, - "contribution": 1776, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "contribution": 3435, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105484,11 +114459,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d35c62ef-23ab-489c-9225-5fee51d80f66", + "pk": "61c1208a-5b67-4545-a02a-f2d0b64929e9", "fields": { - "question": 364, - "contribution": 3896, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "question": 324, + "contribution": 1710, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105496,11 +114471,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d36621b5-3088-427f-8613-bbff51295c5d", + "pk": "61f6142a-3663-4e56-87db-b9129f0553b8", "fields": { - "question": 364, - "contribution": 3610, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105508,11 +114483,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d37a192c-ce7d-4543-8d97-1b7e3af7eea2", + "pk": "61f7e13c-ee56-41c9-902d-0584591dc472", "fields": { - "question": 314, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 364, + "contribution": 4205, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105520,11 +114495,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d389ae04-7b51-407a-be9b-132668ad832d", + "pk": "61fa63f7-5277-40d6-a70a-e81ebb842113", "fields": { - "question": 324, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", + "question": 364, + "contribution": 3895, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105532,11 +114507,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d3c75676-5946-47fe-ba73-9c39420e00e7", + "pk": "62009b2d-5183-4ca1-8b14-64327beaefdd", "fields": { - "question": 364, - "contribution": 1298, - "answer": "Lorem", + "question": 330, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105544,11 +114519,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d3dddb68-ba72-4911-a02e-79e888caf106", + "pk": "62031216-fa7b-42b6-90b1-c42f709b7e32", "fields": { - "question": 358, - "contribution": 909, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 318, + "contribution": 4138, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105556,11 +114531,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d3e8bdd3-5836-4931-bb1b-47aaa9dec6d4", + "pk": "6207a9d3-ad6c-4b68-82e7-4b2b6157fcf7", "fields": { - "question": 364, - "contribution": 3620, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 314, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105568,11 +114543,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d3eb7f9e-a145-4e61-b446-f1809e6fbd96", + "pk": "621b886a-ffa8-4e9c-a6f4-b0a6dd16490f", "fields": { - "question": 330, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 364, + "contribution": 3556, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105580,11 +114555,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d4174231-2e23-47a0-afdb-513f8131acb8", + "pk": "6244e5c2-22d1-415d-a868-9a8bd5ec9ccb", "fields": { - "question": 364, - "contribution": 1784, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 330, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105592,11 +114567,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d419bbea-df0b-4903-b319-211d3c9fca80", + "pk": "62b882a2-1996-48b2-b3db-068dba911136", "fields": { "question": 364, "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105604,11 +114579,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d4216ce0-9989-465f-8327-c390603effcf", + "pk": "62e7d732-f86c-4c48-afdc-6a2eea1557f2", "fields": { - "question": 330, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105616,11 +114591,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d4485428-a4a9-46c8-b60e-a6b940c0d1e8", + "pk": "62f832bc-17b6-4bf3-8a60-3b09264cdd94", "fields": { "question": 313, - "contribution": 912, - "answer": "Lorem", + "contribution": 4128, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105628,11 +114603,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d44bfc6c-882e-4676-9e0f-e4d1449fadf2", + "pk": "631d7ad0-3176-4280-ada0-dc60d2c8ae06", "fields": { "question": 314, - "contribution": 3434, - "answer": "Lorem", + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105640,11 +114615,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d4870cf4-fd96-4dde-92c5-42f4395201a4", + "pk": "633eacd9-fe29-49a1-8031-130365b18561", "fields": { - "question": 364, - "contribution": 1799, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 318, + "contribution": 3472, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105652,11 +114627,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d48ae2ad-8ca2-45ac-9902-fd1f016428d6", + "pk": "634fb610-faf1-4f72-a70f-40afd0b39cbf", "fields": { - "question": 318, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 313, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105664,11 +114639,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d4aa358a-e525-477f-98e4-038fadd724f5", + "pk": "634fea82-b86a-4be6-92a8-26cae25fc283", "fields": { - "question": 342, - "contribution": 1734, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105676,11 +114651,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d4ab5292-9de0-4985-a611-92e907c17cd4", + "pk": "638ad7ff-7ff6-4ec1-b1fd-9143ebb7ed7e", "fields": { - "question": 342, - "contribution": 4094, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 330, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105688,11 +114663,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d4afc33b-1ecc-4050-a0bb-9f188300cdeb", + "pk": "638c5d80-71e7-4844-b0fe-f2969998773d", "fields": { - "question": 313, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 314, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105700,11 +114675,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d4b050c2-d024-4b1c-a226-81f9922dbe58", + "pk": "639376db-87b1-48d1-9c56-5ce0a1521706", "fields": { - "question": 318, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 330, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105712,11 +114687,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d4b0efc5-5e51-4f8f-8df0-b356ca6d2733", + "pk": "63dc185d-b33a-4f35-a1f2-ef42b5998ffe", "fields": { - "question": 373, - "contribution": 3727, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105724,11 +114699,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d4c9993b-7ccd-4dd7-b661-422a9b75a00c", + "pk": "640e20f1-d3b2-463b-8e71-1d2da798ea4b", "fields": { - "question": 364, - "contribution": 881, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 318, + "contribution": 3739, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105736,11 +114711,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d4dde4a5-a453-4f50-b39f-3a4231e218ac", + "pk": "64222f40-c181-4ae0-8b0f-f0aa229a56c2", "fields": { - "question": 330, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 313, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105748,23 +114723,23 @@ }, { "model": "evaluation.textanswer", - "pk": "d4e91893-bcfa-464a-bc06-b99066d17d91", + "pk": "6422f8e2-b683-49ed-aa3d-891f51a08a62", "fields": { - "question": 373, - "contribution": 3785, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 342, + "contribution": 3404, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "d50a5d69-8a30-4978-8e08-810421ab61be", + "pk": "642cf128-b9ae-474c-a6b0-4a4f4a83efbb", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 364, + "contribution": 4190, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105772,11 +114747,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d520349b-38fb-44c0-8cb4-1bda314550d0", + "pk": "647faaaa-e10f-4e2f-89ba-73b42257daf0", "fields": { - "question": 342, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", + "question": 364, + "contribution": 4129, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105784,11 +114759,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d52382c3-6f12-42ac-9298-5671d2e41df9", + "pk": "64a26856-2eb8-4989-8812-ec13c78fc06b", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "question": 364, + "contribution": 3373, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105796,11 +114771,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d52bb6d9-e339-4d57-8800-0b73c68ed50f", + "pk": "64c5c7c9-b4f5-45af-8757-a3a61e3a2809", "fields": { - "question": 318, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "question": 314, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105808,11 +114783,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d550abf7-4dff-435a-a74d-25a797ddcd88", + "pk": "64ceca50-443b-4137-88c6-de51ce995f11", "fields": { - "question": 313, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 440, + "contribution": 4008, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105820,11 +114795,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d58829d1-3680-40d0-b4e4-881166146c5b", + "pk": "64ea4781-29aa-4970-8715-6d13e56d8b42", "fields": { - "question": 358, - "contribution": 4152, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 313, + "contribution": 912, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105832,11 +114807,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d594f076-e95c-4b1d-b529-a71e36779870", + "pk": "64f6d3c8-c557-41fd-88cf-dde2f8d9282a", "fields": { - "question": 342, - "contribution": 4002, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "question": 373, + "contribution": 3685, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105844,11 +114819,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d5b55bb0-54eb-4a4d-9e27-3df8eefb650d", + "pk": "64fc5fde-ada3-4191-abd5-316dda013b62", "fields": { - "question": 342, - "contribution": 3723, - "answer": "Lorem ipsum dolor sit amet,", + "question": 313, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105856,11 +114831,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d6136c3f-94cd-4919-b84d-86bad21dfdb5", + "pk": "65134aec-3b0f-4093-94ca-e81a21b46523", "fields": { - "question": 318, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "question": 324, + "contribution": 3693, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105868,11 +114843,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d62b8f48-f731-4eb9-9973-a0edc588d5da", + "pk": "6515984f-2c63-4a1d-a580-e6e10a3a84db", "fields": { - "question": 313, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 364, + "contribution": 1235, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105880,11 +114855,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d679a131-0714-4ba8-94da-610a795fdc31", + "pk": "6516d2f3-044e-4c88-b4fb-4bd497450ab2", "fields": { "question": 342, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "contribution": 1644, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105892,11 +114867,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d6827284-82f3-4c94-94c8-e0994edeeed1", + "pk": "6537b906-6202-45d6-b4f1-255c09f7d9be", "fields": { - "question": 313, - "contribution": 4100, - "answer": "Lorem", + "question": 324, + "contribution": 804, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105904,11 +114879,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d6b7c7de-b30d-4f9c-931a-316c1a044107", + "pk": "653c0c8e-516a-47fe-91d0-213584d402cd", "fields": { - "question": 330, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 358, + "contribution": 4152, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105916,11 +114891,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d6c9a5b5-3000-4302-ae06-387fdddb6d0a", + "pk": "654ec66a-fb24-4401-ab4c-90648ed19cff", "fields": { "question": 313, "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105928,11 +114903,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d6d029dd-4395-4b95-9a95-ba3a66b44304", + "pk": "65560cb0-b0d1-4cbe-9636-6fa9eb1d25e2", "fields": { - "question": 324, + "question": 314, "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105940,11 +114915,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d6e0ce04-6d42-4259-962b-b1e3138f76d7", + "pk": "657e7729-6106-43b9-9ff1-4be4ba4bed94", "fields": { - "question": 373, - "contribution": 3645, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "question": 324, + "contribution": 3685, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105952,7 +114927,7 @@ }, { "model": "evaluation.textanswer", - "pk": "d706a22a-c97c-43ec-a82f-e01bfe430676", + "pk": "6599730b-f03c-4b01-bf6d-80727defc57d", "fields": { "question": 314, "contribution": 884, @@ -105964,11 +114939,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d74927a7-c99d-4742-8116-852f7e9d973e", + "pk": "65b79d84-b103-4a08-b9a0-37b8fc481d22", "fields": { "question": 313, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "contribution": 3462, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105976,11 +114951,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d7725f94-f725-4449-8724-33c8dbeb28dd", + "pk": "65bd285d-39aa-416e-9972-e3d07daf78ed", "fields": { - "question": 364, - "contribution": 1217, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 313, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -105988,11 +114963,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d78732a1-8c67-4d7d-bd9c-2c6343b7ecb8", + "pk": "66329076-1c8a-463a-94c8-4bd535a47478", "fields": { - "question": 314, - "contribution": 1634, - "answer": "Lorem ipsum dolor", + "question": 440, + "contribution": 4140, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106000,11 +114975,23 @@ }, { "model": "evaluation.textanswer", - "pk": "d7902461-ce43-49f6-ad75-1a206df49475", + "pk": "66373a8a-fafe-4942-9b97-92576e65e2cf", + "fields": { + "question": 324, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "664a2a0f-5b14-4111-9d51-1f5a9a0da53e", "fields": { "question": 313, "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106012,11 +114999,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d790b33f-bb4e-4b3d-b123-7f13cc9fd2bf", + "pk": "6660ea3b-ef40-4271-b593-96d3c2e66734", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 330, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106024,11 +115011,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d7d397e8-ee92-4bd4-8a95-87474bcd4501", + "pk": "6665e047-c284-46c3-a924-47db94187437", "fields": { "question": 364, - "contribution": 1249, - "answer": "Lorem ipsum dolor sit", + "contribution": 4261, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106036,11 +115023,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d7e6d0fb-5c72-4552-bd14-e88bd019c92a", + "pk": "6677637c-86e6-4005-9dca-1709cfe3b317", "fields": { - "question": 324, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 364, + "contribution": 3726, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106048,9 +115035,9 @@ }, { "model": "evaluation.textanswer", - "pk": "d7f7aa5a-2488-4010-bb39-4fda609f4f65", + "pk": "667c8f6b-6cad-4bfc-b85c-e59a8671ed74", "fields": { - "question": 314, + "question": 313, "contribution": 4084, "answer": "Lorem", "original_answer": null, @@ -106060,11 +115047,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d7fd05d1-bf3b-4ac5-aa11-b679f90cba61", + "pk": "66a70bbe-ba7b-412a-9703-712d66c2d63c", "fields": { - "question": 364, - "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106072,11 +115059,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d8717529-5c52-4ab6-93f3-db2b183c3e3c", + "pk": "66c3e471-bb07-4bd6-8f15-810c858acdb3", "fields": { - "question": 364, - "contribution": 4203, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "question": 313, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106084,23 +115071,23 @@ }, { "model": "evaluation.textanswer", - "pk": "d88ad474-0649-4b49-8162-c191a74dfca3", + "pk": "674d2624-e066-4a46-999a-44e04b420b4b", "fields": { - "question": 342, - "contribution": 3452, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 314, + "contribution": 908, + "answer": "Lorem ipsum", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "d896c0bb-3083-4c53-922b-107ee6ef95fd", + "pk": "675daca4-8933-487f-917a-e1237572ad65", "fields": { - "question": 314, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "question": 330, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106108,11 +115095,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d8c0c421-e7b7-4e51-98c6-742c9fe56276", + "pk": "676bc97c-6f93-4150-906c-a4bef834b583", "fields": { - "question": 324, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "question": 318, + "contribution": 3739, + "answer": "Lorem ipsum dolor sit amet, sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106120,11 +115107,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d901a17b-72ba-4a47-96aa-d85e6beea55f", + "pk": "67834870-3dfb-4084-8c09-30c896a19e9a", "fields": { - "question": 318, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet,", + "question": 364, + "contribution": 1802, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106132,11 +115119,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d9049dc3-d1b2-44d3-94fa-9f03f84f40bb", + "pk": "6795a485-c933-4c62-a834-834bc5c3944d", "fields": { - "question": 364, - "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 313, + "contribution": 3462, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106144,11 +115131,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d950666d-c30c-4bcb-bebe-5aad9137c944", + "pk": "67e3756f-98e3-46ef-b562-c8e4b538ec2d", "fields": { "question": 313, - "contribution": 4128, - "answer": "Lorem ipsum dolor", + "contribution": 1658, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106156,11 +115143,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d96becd6-b5aa-44be-8ba0-b7c744861f69", + "pk": "6837a9a7-219a-47f7-8109-9e8eb1c18097", "fields": { - "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "question": 373, + "contribution": 4094, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106168,11 +115155,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d9854535-7d46-41bf-8120-231edd3f8d29", + "pk": "6856f2f5-9b16-4680-b9a5-6adc5c49555b", "fields": { - "question": 364, - "contribution": 3918, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "question": 342, + "contribution": 918, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106180,11 +115167,23 @@ }, { "model": "evaluation.textanswer", - "pk": "d9d91e20-83c6-4ae7-9635-bf43b508954a", + "pk": "6870e33e-ea8f-4fa4-b4ca-455664493452", + "fields": { + "question": 324, + "contribution": 4094, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "689d391e-833b-4f42-a675-27b72f393f1e", "fields": { "question": 314, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106192,11 +115191,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d9e4a058-a107-407e-a171-26435bbb41b1", + "pk": "68b4ca0a-c1ae-433e-980e-dee0e85d905a", "fields": { - "question": 342, - "contribution": 3440, - "answer": "Lorem ipsum", + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106204,11 +115203,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d9e8fd8d-de93-4e08-9f4e-4215687a169b", + "pk": "68d42875-3adb-4e22-bcc5-fa54d15b463b", "fields": { - "question": 313, - "contribution": 912, - "answer": "Lorem", + "question": 318, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106216,11 +115215,11 @@ }, { "model": "evaluation.textanswer", - "pk": "d9fd779d-1dba-4318-bd16-e61572478ed8", + "pk": "68fb91df-d688-4993-82a9-ef807253a5e2", "fields": { "question": 364, - "contribution": 3919, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "contribution": 1201, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106228,11 +115227,11 @@ }, { "model": "evaluation.textanswer", - "pk": "da70fc6d-68c3-4965-ba0a-079d53964b99", + "pk": "6909e93c-4e49-44e6-8d24-3afe05c61dfe", "fields": { "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "contribution": 4128, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106240,10 +115239,10 @@ }, { "model": "evaluation.textanswer", - "pk": "dab9c2fa-15a5-4834-a300-490cb4417a40", + "pk": "690a2e2b-e16a-424e-8966-ab0e9d20b0d0", "fields": { - "question": 364, - "contribution": 1217, + "question": 313, + "contribution": 3474, "answer": "Lorem", "original_answer": null, "review_decision": "PU", @@ -106252,11 +115251,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dad3c4d7-5b52-4fd3-847c-65182dee6509", + "pk": "691aeb36-1662-4956-9196-c244acf9167b", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit", + "question": 430, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106264,11 +115263,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dadfd66e-995d-4e95-b93f-c5148483b167", + "pk": "696f483d-736d-48cb-83b1-eaa2d43abbc7", "fields": { - "question": 364, - "contribution": 1228, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 314, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106276,11 +115275,11 @@ }, { "model": "evaluation.textanswer", - "pk": "db8cb454-0a08-4a45-a63a-044ca434b777", + "pk": "6981860f-287d-44c4-bd8c-ffb3718d38d9", "fields": { "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106288,11 +115287,11 @@ }, { "model": "evaluation.textanswer", - "pk": "db8ddc79-db46-45f5-a92b-19697210d0cd", + "pk": "69aaaf10-bccb-4d6f-a97a-11714c499ced", "fields": { - "question": 313, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106300,11 +115299,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dbe6bab9-8bbc-476c-8e32-809dd6fa4874", + "pk": "69b3534e-3e2f-4e13-80ce-bea909117f6f", "fields": { - "question": 318, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106312,11 +115311,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dc17b6fb-4f24-4c51-9327-554923ee04ff", + "pk": "69c5f599-bc38-4955-b8b6-5996241c85ca", "fields": { - "question": 373, - "contribution": 4094, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 330, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106324,11 +115323,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dc31beed-070d-4586-8f12-e3fa694c2c47", + "pk": "69cc970b-d295-492b-83b9-421f3061cc7c", "fields": { "question": 364, - "contribution": 3680, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "contribution": 1206, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106336,11 +115335,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dc34985b-35cf-4b4f-a8a8-8074eb3505ca", + "pk": "69d49e41-8058-4a44-8ac8-9407ff7db317", "fields": { "question": 364, - "contribution": 1217, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "contribution": 1860, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106348,11 +115347,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dc414687-27f4-430d-90c0-fe1096123ce0", + "pk": "69dbcff6-de39-4f55-8105-b10b4be87c5d", "fields": { - "question": 440, - "contribution": 4140, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "question": 313, + "contribution": 3725, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106360,11 +115359,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dc5518c4-9b87-4398-a17a-62f45956decc", + "pk": "69f3e10d-dc24-4fe2-97c4-5e7165968901", "fields": { - "question": 373, - "contribution": 3466, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 342, + "contribution": 3486, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106372,11 +115371,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dc58ee97-c4e5-4c75-9c86-b3fbb9b73bcd", + "pk": "6a354e1b-0255-489c-91fb-8e2d1531ed31", "fields": { - "question": 313, - "contribution": 836, - "answer": "Lorem ipsum", + "question": 318, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106384,11 +115383,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dcb5c14b-b243-4537-bb3c-897113ca39e6", + "pk": "6a4b8ce0-e700-4bb0-9303-7c949f54d0cf", "fields": { - "question": 373, - "contribution": 1702, - "answer": "Lorem ipsum", + "question": 313, + "contribution": 4116, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106396,11 +115395,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dcf48a25-ecfa-49b2-9108-35483ff70068", + "pk": "6aa0529b-58fc-4b49-a111-5358acb06ea5", "fields": { - "question": 314, - "contribution": 3434, - "answer": "Lorem", + "question": 330, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106408,11 +115407,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dcfa9d87-17f8-4574-8889-0ab13347b1d1", + "pk": "6ad73aaa-46fe-42b5-8588-db8e45c91093", "fields": { - "question": 330, + "question": 313, "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros", + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106420,11 +115419,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dd0b153f-5a67-4235-9285-8ee592a30233", + "pk": "6b62319f-3641-4337-b4ed-718b2338524e", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 313, + "contribution": 1837, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106432,11 +115431,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dd229458-8630-4e2c-a811-1647b5931d3a", + "pk": "6b63083a-db10-46ea-bd2c-8a2db3e163d9", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem", + "question": 358, + "contribution": 1154, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106444,11 +115443,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dd456843-5baa-41c5-b71d-cd1395331fd5", + "pk": "6b7712ce-b009-486a-9c3e-de22a1054983", "fields": { - "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 330, + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106456,11 +115455,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dd5f192b-9487-494c-9b52-bd40a2a68617", + "pk": "6bbcd4b4-615b-4bc0-b1f9-da27478ebb2e", "fields": { - "question": 373, - "contribution": 3645, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 330, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106468,11 +115467,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dd73eb30-39fc-4209-a99c-f4a4b7860ce6", + "pk": "6bca2885-27d1-440e-a698-a7cab087e708", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106480,11 +115479,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dd7e3318-965a-4359-87ed-405d9cff22d8", + "pk": "6bda199c-e121-4081-8414-7007ede52cf6", "fields": { - "question": 364, - "contribution": 3435, - "answer": "Lorem", + "question": 318, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106492,11 +115491,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ddac2015-3685-47c1-894b-81edd5467edc", + "pk": "6c213c5c-5ced-4b1f-b541-ab61eb6d6c34", "fields": { - "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 313, + "contribution": 862, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106504,11 +115503,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dde41594-6ac9-469e-abe9-13de56f64c10", + "pk": "6c42dc25-441b-4b56-b3f5-20fa7f069c27", "fields": { - "question": 364, - "contribution": 3859, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106516,11 +115515,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dde5ca98-6e8c-41a3-86f1-9153af9d1d92", + "pk": "6c51067f-6c8f-4933-b857-f4d12bf608bb", "fields": { - "question": 365, - "contribution": 912, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 342, + "contribution": 3508, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106528,11 +115527,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ddf86658-3af9-41bc-8631-33f2ed521047", + "pk": "6c5ee292-24ec-437d-a762-ee4c8bacace9", "fields": { "question": 364, - "contribution": 4101, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "contribution": 1783, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106540,11 +115539,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ddf9d88f-39da-4d3e-8e5b-4b62682ccdf0", + "pk": "6c9509b0-d2e2-4e0c-97ec-43f3572158a8", "fields": { "question": 364, - "contribution": 4148, - "answer": "Lorem ipsum dolor", + "contribution": 1202, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106552,11 +115551,11 @@ }, { "model": "evaluation.textanswer", - "pk": "de0516ff-97fa-4eec-93d3-b5b89d86068b", + "pk": "6ca4020b-5695-433e-bbd1-cf3fac881f4a", "fields": { - "question": 318, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 364, + "contribution": 3684, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106564,11 +115563,11 @@ }, { "model": "evaluation.textanswer", - "pk": "de521f49-888d-44d9-975a-8914d4a6c4a8", + "pk": "6cbccbc6-3c55-4a3e-a5df-c51d3c3369cb", "fields": { "question": 373, - "contribution": 1734, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "contribution": 3486, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106576,11 +115575,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dec8eab2-6eea-44b9-ac44-0e3fd71ef897", + "pk": "6cd14eed-af3b-42cc-9423-f10367d62cb3", "fields": { "question": 364, - "contribution": 3894, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "contribution": 4047, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106588,11 +115587,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ded2eaf8-531a-4dc9-a0a9-225e79ea5bd9", + "pk": "6d096a75-f59e-4cb8-9987-4a9191e8fc69", "fields": { - "question": 373, - "contribution": 3693, - "answer": "Lorem ipsum dolor", + "question": 313, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106600,11 +115599,11 @@ }, { "model": "evaluation.textanswer", - "pk": "deda7a2c-8c58-4d81-9bc8-e09b919eb234", + "pk": "6d1a7c44-cf3c-4e52-ae3a-968a35b1bab3", "fields": { - "question": 330, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "question": 364, + "contribution": 1681, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106612,11 +115611,11 @@ }, { "model": "evaluation.textanswer", - "pk": "def49c3e-5cec-4fab-b491-44582180e756", + "pk": "6d349b77-a64f-4796-92ee-91c60c4cc079", "fields": { - "question": 330, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "question": 342, + "contribution": 4094, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106624,11 +115623,11 @@ }, { "model": "evaluation.textanswer", - "pk": "df1db29d-f3fd-496e-a190-c77abb6f48da", + "pk": "6d49321a-5f6a-43bd-aed9-e7e409312354", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "question": 314, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106636,11 +115635,11 @@ }, { "model": "evaluation.textanswer", - "pk": "df21e66d-f4bf-4808-89bc-409149df1232", + "pk": "6d7f25e7-238f-4aa6-b1a8-e639f5e4a6c0", "fields": { - "question": 324, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", + "question": 314, + "contribution": 4084, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106648,11 +115647,11 @@ }, { "model": "evaluation.textanswer", - "pk": "df3541fd-2e8f-4a70-8030-42fa848cbdbd", + "pk": "6db7b3a0-3f39-40e5-801e-3e8be902da50", "fields": { - "question": 313, - "contribution": 1837, - "answer": "Lorem ipsum dolor", + "question": 318, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106660,11 +115659,11 @@ }, { "model": "evaluation.textanswer", - "pk": "df4aadd7-bf92-43fd-9c6e-6ed3446af3a4", + "pk": "6dd95e21-2a09-4493-b832-2a629236de43", "fields": { - "question": 352, - "contribution": 864, - "answer": "Lorem ipsum dolor", + "question": 373, + "contribution": 3703, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106672,11 +115671,11 @@ }, { "model": "evaluation.textanswer", - "pk": "df70bdfe-deb3-4f79-8ffe-908c2df50e99", + "pk": "6ddfbb72-a185-4087-becd-8e534d214de8", "fields": { - "question": 364, - "contribution": 3859, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 358, + "contribution": 1154, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106684,11 +115683,11 @@ }, { "model": "evaluation.textanswer", - "pk": "df726b1f-235c-44d6-9208-8bca8d655faa", + "pk": "6df784a5-6f9e-4460-a0e9-c3b121f0dcc0", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem", + "question": 373, + "contribution": 3416, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106696,11 +115695,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dfaf4746-efee-47ab-b007-a9bc04fb518d", + "pk": "6e1a6d2d-4ca5-458c-92d2-78d3ce4ce1dc", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "question": 314, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106708,10 +115707,10 @@ }, { "model": "evaluation.textanswer", - "pk": "dfb877ce-0e60-4a16-ba12-204797070b12", + "pk": "6e591f6b-7579-484c-a228-0ae0d68c706a", "fields": { - "question": 364, - "contribution": 4189, + "question": 313, + "contribution": 1626, "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", @@ -106720,11 +115719,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dfd48610-41de-4869-b016-c17fb0f8d51b", + "pk": "6e7a2ec7-1883-440a-833d-ebfb66a8b1f1", "fields": { "question": 364, - "contribution": 3610, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "contribution": 4190, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106732,11 +115731,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dfde1282-f63e-4421-94dd-a8f04c9086c9", + "pk": "6eaa2873-4657-4fdb-8307-b2c79c077bad", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 313, + "contribution": 3434, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106744,11 +115743,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dfe5954b-3dce-4332-96d8-f311c3e2d245", + "pk": "6ec52427-e364-4071-936e-ca578b627706", "fields": { "question": 314, - "contribution": 884, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "contribution": 3725, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106756,11 +115755,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dfedc96d-ef94-423c-81b2-be8277266e34", + "pk": "6ed8f1fa-c1cb-49a4-9ff6-c3faf784c079", "fields": { - "question": 342, - "contribution": 832, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106768,11 +115767,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dfee49cd-2035-4974-9ab6-0165d634a8b3", + "pk": "6f1a2364-d851-45a4-89d6-8f5db1aaac10", "fields": { "question": 364, - "contribution": 3939, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", + "contribution": 1207, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106780,11 +115779,11 @@ }, { "model": "evaluation.textanswer", - "pk": "dff313f4-c1fd-42fb-865d-91f65849ac9e", + "pk": "6f1bebb5-5279-4ba4-bcd3-1fe1a6d393ac", "fields": { - "question": 318, - "contribution": 3725, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 313, + "contribution": 4100, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106792,11 +115791,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e0125baf-92f3-4e16-a217-27dd09d49134", + "pk": "6f1efcf2-a29b-4e13-988b-5a678db5e5d0", "fields": { - "question": 364, - "contribution": 3740, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 330, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106804,11 +115803,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e053cfe7-ac55-4a8f-8a4d-5321e1eb32d5", + "pk": "6f7389f3-eee0-4986-838b-43ea683a23f1", "fields": { - "question": 313, - "contribution": 3434, - "answer": "Lorem ipsum", + "question": 314, + "contribution": 1837, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106816,11 +115815,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e0716613-e5af-425b-b8af-276a0902d17d", + "pk": "6f93a3ae-dc2d-4e4d-982a-04666d3eff4b", "fields": { - "question": 314, - "contribution": 3434, - "answer": "Lorem ipsum", + "question": 373, + "contribution": 3693, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106828,11 +115827,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e0a56db4-cfde-4333-930b-c0fe63daad55", + "pk": "6f98e6de-574f-41b9-b94b-e1355dfc6b6c", "fields": { - "question": 313, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet,", + "question": 314, + "contribution": 1680, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106840,11 +115839,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e0aaf338-65b0-45e7-9359-15e33790f649", + "pk": "6facdb8a-4b13-4e9a-91b7-2fbcb9f5ec82", "fields": { - "question": 324, - "contribution": 3821, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 373, + "contribution": 3645, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106852,11 +115851,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e0c67ce9-83f8-4e9b-a9a5-a41060abe63e", + "pk": "6ff7715f-78fc-445c-b5ae-89d612bc2cf5", "fields": { - "question": 314, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet,", + "question": 318, + "contribution": 4128, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106864,11 +115863,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e103c1a3-1c42-4f5c-a1c3-950a1eb1a82e", + "pk": "6ffc1d06-9e60-4a33-ab0c-37c7c2a577e8", "fields": { "question": 330, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106876,11 +115875,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e11fb25d-9ba9-4ed9-8048-411087cfe61a", + "pk": "7018eb15-4db1-48c7-ba50-b7657a590e19", "fields": { "question": 313, - "contribution": 3679, - "answer": "Lorem", + "contribution": 3721, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106888,11 +115887,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e123104d-e2fb-4817-b637-a38c1ccc1b52", + "pk": "70226318-425c-4b50-86c1-aeee6804f551", "fields": { - "question": 330, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", + "question": 364, + "contribution": 3598, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106900,11 +115899,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e127024b-8555-49dd-9237-f47fbd40e422", + "pk": "7026b4ee-b795-48b3-b7ea-fc07b88241e4", "fields": { "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit", + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106912,10 +115911,10 @@ }, { "model": "evaluation.textanswer", - "pk": "e12cdd95-c0a3-402a-8729-04635946fe47", + "pk": "702daf6e-f805-4475-9c92-c64e5df5d880", "fields": { - "question": 439, - "contribution": 4090, + "question": 364, + "contribution": 3726, "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", @@ -106924,11 +115923,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e12facc6-b4d9-4041-89f2-3ca2b4efd99f", + "pk": "703121cf-b49d-4d88-968f-a1dd596d80d4", "fields": { - "question": 314, - "contribution": 884, - "answer": "Lorem ipsum dolor", + "question": 324, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106936,11 +115935,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e15cb949-e017-44e9-bae7-4d4df304554c", + "pk": "703bd543-ea29-44b1-9ad7-8fbd3b68c8df", "fields": { - "question": 373, - "contribution": 3454, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 324, + "contribution": 864, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106948,11 +115947,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e1990e14-d25c-42a1-a5ee-5e807532b473", + "pk": "703f336e-1bcc-451c-b5ed-b0af415a7735", "fields": { - "question": 318, - "contribution": 1837, - "answer": "Lorem ipsum dolor sit", + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106960,11 +115959,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e1c8f258-b7b2-40a6-8cc9-a4d7d8b53fde", + "pk": "70860c4c-0dda-479a-b7b2-bdbab3f069ab", "fields": { - "question": 314, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit", + "question": 358, + "contribution": 3475, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106972,11 +115971,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e1eb87b7-c1ec-4ef2-8064-51c34efd40b4", + "pk": "70dfe349-c077-4ba1-ab81-649164e84297", "fields": { - "question": 358, - "contribution": 3746, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 313, + "contribution": 1837, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106984,11 +115983,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e23a33da-c2ab-4fab-8764-c3938091880e", + "pk": "70f16cc8-9d1d-43e8-bb6b-af59ecc7764d", "fields": { - "question": 324, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "question": 342, + "contribution": 3416, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -106996,11 +115995,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e254a87c-8047-46e0-b2bb-11c1d0bb6602", + "pk": "71236865-bb45-4eaa-b7ea-c630a26f4606", "fields": { - "question": 313, + "question": 314, "contribution": 4084, - "answer": "Lorem ipsum dolor", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107008,11 +116007,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e2cd2600-7fee-4dcf-909b-930f388fe941", + "pk": "71283c69-277e-4095-93b8-78c835ff521e", "fields": { - "question": 358, - "contribution": 4085, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107020,11 +116019,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e2edcae6-6e7b-4450-b5eb-cc2dd10fd855", + "pk": "71471a44-b97e-4827-ac91-f00d77fe9965", "fields": { - "question": 364, - "contribution": 4228, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 330, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107032,11 +116031,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e3229abd-3fbf-42c9-beb9-129cf478d43d", + "pk": "717a70a3-2c2e-4d07-8942-efff7a185b8a", "fields": { - "question": 314, - "contribution": 3390, - "answer": "Lorem", + "question": 318, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107044,11 +116043,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e32d5bca-de84-443b-adfb-749b528bd815", + "pk": "71ba9b16-9204-4591-908a-866c7edab2e4", "fields": { - "question": 314, - "contribution": 4046, - "answer": "Lorem ipsum", + "question": 342, + "contribution": 3486, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107056,11 +116055,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e33352d1-5fe2-4519-963d-6a1ecc7bc3f0", + "pk": "71f6567b-1b06-4855-8148-e2eddea43aec", "fields": { "question": 324, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107068,11 +116067,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e343e20d-2a1d-479d-a19f-6b02c9a34ff1", + "pk": "723114ce-0ecb-485c-bfb2-93ce612ff2c3", "fields": { - "question": 358, - "contribution": 1154, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "question": 364, + "contribution": 4204, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107080,11 +116079,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e34c08dc-3af8-42ce-bb6e-eb47a3f82f74", + "pk": "729dae43-ec9b-44e5-949d-77029c90a66a", "fields": { "question": 342, - "contribution": 4094, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "contribution": 3693, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107092,11 +116091,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e3691f7d-3419-4cc2-836e-fe9310900049", + "pk": "72a8e260-0b98-4912-b98f-7118c96ad28a", "fields": { - "question": 364, - "contribution": 3391, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu", + "question": 314, + "contribution": 3665, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107104,11 +116103,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e37b06a9-8cff-4dfb-8e27-e2a2a69fa6ef", + "pk": "72b31cf9-f55b-4116-a13b-a3a2cb07d315", "fields": { "question": 324, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107116,23 +116115,23 @@ }, { "model": "evaluation.textanswer", - "pk": "e3f6c3c0-d29c-4f61-865a-1dfe0c4f7b1a", + "pk": "7408f9d6-eba2-461e-883e-e701a4fd4fcc", "fields": { - "question": 373, - "contribution": 3785, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 313, + "contribution": 3354, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "e42cb97c-db98-4300-8cad-719b062ca081", + "pk": "74753be9-3bbd-43aa-91c8-665d5ea80d44", "fields": { - "question": 324, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107140,11 +116139,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e46058ec-15c2-43fc-86fc-4918ef6292b9", + "pk": "74897800-7f55-4636-973b-1702dfcce2b3", "fields": { "question": 364, - "contribution": 3648, - "answer": "Lorem ipsum dolor sit amet,", + "contribution": 3545, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107152,11 +116151,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e4a14f36-afb9-4b86-9409-12da50c345e9", + "pk": "748a9004-b299-4f2a-a50c-d07d064ce415", "fields": { - "question": 364, - "contribution": 3473, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 330, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107164,11 +116163,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e4e863d2-4a71-4845-9813-62feb44f94dd", + "pk": "74cc5bd8-e60b-4b33-b98d-d9fffe6f9125", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "question": 318, + "contribution": 822, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107176,11 +116175,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e4ea7d0c-4b10-42b0-b85f-0568236e59dd", + "pk": "74f7825e-9938-45b6-860c-b70653219efc", "fields": { - "question": 313, - "contribution": 1837, - "answer": "Lorem ipsum dolor", + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107188,11 +116187,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e52263c6-6960-46e5-9820-fc59fd7d38af", + "pk": "75208952-6fe1-4473-92dc-004f3ac79026", "fields": { "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107200,10 +116199,10 @@ }, { "model": "evaluation.textanswer", - "pk": "e5c7b67f-cc73-4d56-8c87-fdd5fcb64fb4", + "pk": "75238202-4ecd-4ffc-acf7-528f7aae1ac1", "fields": { - "question": 364, - "contribution": 3885, + "question": 330, + "contribution": 836, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", @@ -107212,11 +116211,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e5d09e60-c53c-42e0-91d2-87cab0c774d4", + "pk": "753dd5a2-e484-416c-976b-600eca9653e7", "fields": { - "question": 364, - "contribution": 887, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "question": 324, + "contribution": 3725, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107224,11 +116223,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e5e609ab-b176-4783-b573-c565446cc39e", + "pk": "754581d1-40f6-46a6-88b9-254ad324a4a1", "fields": { - "question": 364, - "contribution": 3463, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", + "question": 324, + "contribution": 4120, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107236,11 +116235,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e5fb8c59-3ed8-4201-aaa8-8748e80cea5f", + "pk": "754820e0-864a-4753-95a2-78670c7b2654", "fields": { "question": 364, - "contribution": 3849, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "contribution": 3847, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107248,11 +116247,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e60121f2-cab0-4cf0-a010-9f022d73ef16", + "pk": "756384b1-d041-40c1-bbd8-1a85a55fe248", "fields": { "question": 318, - "contribution": 3406, - "answer": "Lorem ipsum dolor", + "contribution": 3725, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107260,23 +116259,23 @@ }, { "model": "evaluation.textanswer", - "pk": "e6091a9f-af26-4352-a9a1-677b39864b2a", + "pk": "7565df73-ccaa-4863-82b1-49adafcc9ddd", "fields": { "question": 364, - "contribution": 3595, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "contribution": 3786, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "e626abe3-a250-479a-a97f-363bd6ff0e01", + "pk": "7570b529-2ed9-4ea7-b100-e0445071e6a6", "fields": { - "question": 342, - "contribution": 3454, - "answer": "Lorem ipsum dolor sit", + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107284,11 +116283,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e642916c-66a4-483c-bee5-b02d51c33d24", + "pk": "75d5067f-e7d2-41db-aee7-92ca2f22d642", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem", + "question": 364, + "contribution": 4141, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107296,11 +116295,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e6434592-6774-464d-b812-feeda29ca908", + "pk": "75e419d4-f659-4d59-8057-9c977ce68779", "fields": { - "question": 318, - "contribution": 3422, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 4117, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107308,11 +116307,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e6512ac6-61af-4c6a-be7c-c4ae5264504a", + "pk": "75fd63b9-9312-4dda-be30-58762e67f588", "fields": { - "question": 313, - "contribution": 1626, - "answer": "Lorem", + "question": 387, + "contribution": 3781, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107320,11 +116319,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e65c44ac-1c37-417b-8032-f790242a586c", + "pk": "763815dd-92d2-457a-a821-c2ff5de58566", "fields": { - "question": 364, - "contribution": 3646, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "question": 330, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107332,11 +116331,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e65c96b7-7a5d-48e1-8d02-3be795efc0f8", + "pk": "763c9a6b-fb30-4ced-8314-3c8f10470aa3", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 314, + "contribution": 3721, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107344,11 +116343,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e662bbbc-a250-49b5-b8f7-4b67c3259289", + "pk": "76402f73-fe72-49b9-9358-3f530e5ca868", "fields": { - "question": 313, - "contribution": 4028, - "answer": "Lorem", + "question": 330, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107356,11 +116355,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e66ffaad-d1e3-4da0-b3bb-7cf3e438cc9c", + "pk": "76561ed6-73e7-4fbd-afb1-bb86bd82e719", "fields": { - "question": 330, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "question": 364, + "contribution": 3553, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107368,11 +116367,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e6c5117d-d955-443c-8331-b86985ea831f", + "pk": "76919cbe-a26d-4cac-879e-3acf9739eeea", "fields": { "question": 318, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107380,11 +116379,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e6caaca0-ecc7-4ed4-94a6-4aa7eacf6281", + "pk": "76bf1938-347d-4d3b-b6eb-6c0344012906", "fields": { "question": 314, - "contribution": 836, - "answer": "Lorem ipsum dolor sit", + "contribution": 4084, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107392,11 +116391,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e6e9aed7-e4da-4b49-998a-ed98033bee45", + "pk": "76d72351-1c6f-470f-a89c-b6d0f1d72157", "fields": { - "question": 364, - "contribution": 4119, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 313, + "contribution": 4138, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107404,11 +116403,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e6fd08e2-6903-40d8-9f90-5f97728611bd", + "pk": "771c3aca-0099-4e60-b5ed-48e60b2f2ebe", "fields": { - "question": 373, - "contribution": 1656, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", + "question": 342, + "contribution": 3416, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107416,11 +116415,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e720d342-4152-4ae9-925d-65e7c21473c7", + "pk": "77347285-e36d-4f8d-a468-1746467a3f24", "fields": { - "question": 364, - "contribution": 3849, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 330, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107428,11 +116427,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e754ed97-cc25-455e-bcec-30a29759389f", + "pk": "776bacea-7c16-45f9-b03e-5d59051b1d29", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem", + "question": 364, + "contribution": 3684, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107440,11 +116439,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e7952a42-e2db-4229-88a9-e5c92bdffd29", + "pk": "779320df-5242-4a0e-9734-3028ced29cbb", "fields": { - "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", + "question": 364, + "contribution": 3893, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107452,11 +116451,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e7c9b98f-303f-4d6f-b386-eda9fb0523f6", + "pk": "77bdb244-d068-4d57-82d7-d2b7c0ab284e", "fields": { "question": 364, - "contribution": 3722, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "contribution": 3648, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107464,11 +116463,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e7da098e-498a-481f-8868-470b3f5a20fa", + "pk": "77cbd50e-f56b-4270-a5d6-73797064fb14", "fields": { - "question": 313, - "contribution": 912, - "answer": "Lorem", + "question": 373, + "contribution": 3372, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107476,11 +116475,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e7dc00cf-972e-4d18-a415-97f08849cdaa", + "pk": "7810791d-68ad-4140-ad2b-e4ab35049d52", "fields": { - "question": 342, - "contribution": 1640, - "answer": "Lorem ipsum dolor", + "question": 358, + "contribution": 859, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107488,11 +116487,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e817ea77-790f-4276-9477-3367ca787279", + "pk": "784ce6f7-ad54-400d-8436-8f675d7efb52", "fields": { - "question": 429, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "question": 324, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107500,11 +116499,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e81f9cd1-2a03-4c6a-b615-0d48d44bc8fe", + "pk": "78bc2472-e7d6-40e4-8aae-a095868e0ee7", "fields": { - "question": 373, - "contribution": 1710, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 313, + "contribution": 1837, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107512,11 +116511,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e83b370e-8939-4ebd-83b3-b186410545db", + "pk": "78ce7a6a-7c43-4bc9-9f39-fe6b60a315d2", "fields": { - "question": 330, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "question": 313, + "contribution": 3462, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107524,11 +116523,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e856d602-7bc3-4bb4-9a54-43b804ede61a", + "pk": "790cd7bb-9d03-4e91-9be4-eee0cea8f414", "fields": { - "question": 324, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "question": 314, + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107536,11 +116535,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e88c0890-aabd-4261-84d5-0578bcea80bb", + "pk": "793342a8-03c9-4aca-a93e-edb7bb0bd615", "fields": { - "question": 342, - "contribution": 3693, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 313, + "contribution": 4100, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107548,11 +116547,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e8981149-6653-4a51-8a00-546d4628db77", + "pk": "79575fa4-2c00-4253-b462-8f1b12bdcaf4", "fields": { - "question": 364, - "contribution": 1202, - "answer": "Lorem ipsum", + "question": 313, + "contribution": 884, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107560,11 +116559,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e8999719-22da-401a-a295-5340673a35e1", + "pk": "797bb5cf-37ba-4376-b748-efc9a56317f0", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 318, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107572,11 +116571,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e8d9d70a-4c97-4eca-90b9-b7ce9a9b88d8", + "pk": "797ee501-e630-4567-a89c-ed0054bd3552", "fields": { - "question": 313, - "contribution": 4120, - "answer": "Lorem ipsum", + "question": 330, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107584,11 +116583,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e8df5b1a-d7ec-4c4e-a810-7b0fd4e248be", + "pk": "798cc16c-bc5c-4c46-9ad1-7d5f72083fdb", "fields": { - "question": 364, - "contribution": 1287, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", + "question": 342, + "contribution": 3404, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107596,11 +116595,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e90bb738-9fd9-4c97-9e6c-c75e3fda9796", + "pk": "79e1dc7e-534c-4a0e-8f68-fbc75d4213a8", "fields": { - "question": 342, - "contribution": 1200, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 318, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107608,11 +116607,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e924dfb0-8786-49ef-8eda-95dd6e9e706e", + "pk": "79eefb72-4322-47d9-bf3d-f02d68516c1f", "fields": { "question": 364, - "contribution": 1202, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "contribution": 4117, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107620,11 +116619,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e939c536-5b34-4c8a-b376-96cf7ac7c182", + "pk": "7afd8475-2f64-475f-b318-9da3e9c1494f", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107632,11 +116631,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e9448529-a70f-4199-b10b-a8b35c016649", + "pk": "7b5af69e-e1e0-4f33-b755-74f2b767e1f9", "fields": { - "question": 318, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 313, + "contribution": 3394, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107644,11 +116643,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e959dfc0-5177-490f-adea-437b697aeb06", + "pk": "7b7d8937-2852-48cb-9f76-0038428a71da", "fields": { - "question": 373, - "contribution": 3440, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 364, + "contribution": 3849, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107656,11 +116655,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e964b339-8691-4a76-be31-4191ef89c559", + "pk": "7bcca34c-26f5-44c0-8f42-18248d26f069", "fields": { - "question": 314, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 318, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107668,11 +116667,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e965b559-d773-44e6-9bb3-ccdef6bd69b2", + "pk": "7c04a300-d50f-492a-b045-d315baf399be", "fields": { "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107680,11 +116679,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e98e9401-a07d-4a8b-9662-07742fc6e236", + "pk": "7c203a15-db6a-4fec-a007-a12e858e73b8", "fields": { "question": 330, - "contribution": 3422, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107692,11 +116691,11 @@ }, { "model": "evaluation.textanswer", - "pk": "e9cd2936-44bc-4b6b-93fb-ffe68c0830f9", + "pk": "7c271d24-17a4-4e55-81d9-92b9d84bb2e0", "fields": { - "question": 313, - "contribution": 1634, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 3939, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107704,11 +116703,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ea35e339-ea8a-400e-8141-15cbacf857b2", + "pk": "7c330516-6e24-4ad5-a6d4-d0706b387a8c", "fields": { - "question": 364, - "contribution": 3610, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 318, + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107716,11 +116715,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ea64a5e3-4714-40b2-a825-267c0756bc06", + "pk": "7c4cc38d-5949-4a88-acbd-49838f2f6e2a", "fields": { - "question": 364, - "contribution": 3593, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 313, + "contribution": 884, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107728,11 +116727,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ead92ad6-0eb0-4db4-8645-a77ced299ceb", + "pk": "7c6d06a1-2b98-448b-a356-0f8e481f7fa8", "fields": { - "question": 455, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 330, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107740,11 +116739,11 @@ }, { "model": "evaluation.textanswer", - "pk": "eadaefe7-e041-407d-a268-23d1cdb6fd31", + "pk": "7c8026c3-fd51-4dd4-b40f-e6207c7d5c12", "fields": { - "question": 313, - "contribution": 3422, - "answer": "Lorem ipsum", + "question": 318, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107752,11 +116751,11 @@ }, { "model": "evaluation.textanswer", - "pk": "eb712521-4d2e-46a2-8a79-1b92334f6c80", + "pk": "7cd008a6-3c1b-465f-86f6-7594d1462572", "fields": { - "question": 364, - "contribution": 1835, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107764,11 +116763,11 @@ }, { "model": "evaluation.textanswer", - "pk": "eb714bb2-ea98-4ef5-bdf3-acb25f40bbc9", + "pk": "7cde22aa-551e-40d0-bdec-63c430c8297f", "fields": { - "question": 314, - "contribution": 1634, - "answer": "Lorem ipsum", + "question": 324, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107776,11 +116775,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ebcb1632-8a81-4113-9964-f67533516e8b", + "pk": "7ce0d4c0-487b-4c73-abe4-8c2f9a559eb0", "fields": { - "question": 358, - "contribution": 3483, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 314, + "contribution": 884, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107788,11 +116787,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ebdcf4c1-9a77-4188-a3b4-e2f6bf62cc5c", + "pk": "7d0e440c-b40f-4ebe-8811-c752a358cc26", "fields": { - "question": 324, - "contribution": 1710, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 342, + "contribution": 3466, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107800,11 +116799,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ec41dc5c-c309-4254-846c-c1013f8a62dc", + "pk": "7d1be1bb-a489-4d2e-af21-cbcce3ab493b", "fields": { - "question": 373, - "contribution": 1710, - "answer": "Lorem ipsum dolor sit amet,", + "question": 330, + "contribution": 1626, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107812,11 +116811,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ec756dea-8d03-4f50-912d-9783c8f317b5", + "pk": "7d1de422-1f72-4d45-bf1a-ad6d19e230f2", "fields": { - "question": 330, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 313, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107824,11 +116823,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ec8e12a4-d35b-4fe5-aa83-22ccc99cee9e", + "pk": "7d70ef45-11ad-43af-9739-ef13ea4f57dc", "fields": { "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107836,11 +116835,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ec9bffda-a81a-4a4a-b321-a05493227649", + "pk": "7db0e7af-1b4d-4f86-be4c-0d114b497147", "fields": { - "question": 364, - "contribution": 3519, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "question": 324, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107848,11 +116847,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ecc3c860-b847-4b77-b302-d095bf8c9081", + "pk": "7de7a91b-b04d-4e07-a454-504b62c0ad85", "fields": { - "question": 324, - "contribution": 4118, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", + "question": 373, + "contribution": 3486, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107860,11 +116859,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ecc5a61d-b427-43ac-a92a-b82beedce5ac", + "pk": "7e0405d6-9d85-4c2e-86fe-6bae6520693c", "fields": { - "question": 373, - "contribution": 3454, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 330, + "contribution": 3462, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107872,11 +116871,11 @@ }, { "model": "evaluation.textanswer", - "pk": "eceee0e7-8191-4452-b971-1f69c021de01", + "pk": "7e0b3923-a114-4ff9-b41e-344071b2e598", "fields": { - "question": 373, - "contribution": 3645, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "question": 318, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107884,11 +116883,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ed123045-d6b3-4256-9616-d1011f1270bf", + "pk": "7e768e09-d701-4918-97c6-447e76491d3d", "fields": { - "question": 324, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,", + "question": 429, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107896,11 +116895,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ed6768b8-51df-4a13-9cdf-3ca15606c1e9", + "pk": "7e852b7c-2199-47f5-8fa3-4340b0a11875", "fields": { - "question": 364, - "contribution": 4129, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 313, + "contribution": 3422, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107908,11 +116907,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ed7783fe-455b-46f0-9572-d484ea315adf", + "pk": "7ed53e55-0e7c-441a-b9f1-1c315c212cef", "fields": { - "question": 393, - "contribution": 3775, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 318, + "contribution": 3462, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107920,11 +116919,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ed80f26d-da69-48e8-8367-e81d39878904", + "pk": "7ee1c7de-391f-4116-965a-2d1e9fbd02a4", "fields": { - "question": 364, - "contribution": 3649, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107932,10 +116931,10 @@ }, { "model": "evaluation.textanswer", - "pk": "ed8fbb45-7603-4f2f-9b39-5b93668569cf", + "pk": "7eefd874-c20e-40bf-bb09-5379211d404a", "fields": { - "question": 364, - "contribution": 3896, + "question": 373, + "contribution": 4094, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", @@ -107944,11 +116943,11 @@ }, { "model": "evaluation.textanswer", - "pk": "eda57ce8-b288-44b3-a75b-a42a236f35c8", + "pk": "7f318737-1416-4bac-b23b-45b58f6424ce", "fields": { - "question": 342, - "contribution": 1200, - "answer": "Lorem ipsum", + "question": 373, + "contribution": 3440, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107956,11 +116955,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ede5641f-5309-4319-8111-79958a266b12", + "pk": "7fb4955f-c808-4e57-8617-07711f7e12e8", "fields": { - "question": 330, - "contribution": 822, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 364, + "contribution": 1812, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107968,11 +116967,11 @@ }, { "model": "evaluation.textanswer", - "pk": "edfa2949-9238-4e04-bfcf-7e621a476760", + "pk": "7fb69ee1-d5c8-4fed-8096-fae0a8023f6e", "fields": { - "question": 314, - "contribution": 3434, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 3435, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -107980,23 +116979,23 @@ }, { "model": "evaluation.textanswer", - "pk": "ee4bfbfa-c054-4166-84c1-9e6c728d40d4", + "pk": "7fb9e592-a40b-48d3-abab-60bad6059c89", "fields": { - "question": 364, - "contribution": 3391, - "answer": "Lorem ipsum dolor sit amet,", + "question": 324, + "contribution": 4090, + "answer": "Other stuff", "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "ee4dda82-c473-4ed3-ade4-0e05127ed799", + "pk": "7fc5a594-9523-42e9-a889-51730554c9ff", "fields": { "question": 313, "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108004,11 +117003,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ee97d9d2-89f2-45af-8306-07ef18d3c690", + "pk": "7fdf4543-6e63-437b-9860-f56cdb4478da", "fields": { - "question": 342, - "contribution": 3486, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 314, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108016,11 +117015,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ee99c548-40e7-4e83-8776-58bdf3bdbdb8", + "pk": "7ff44dad-d102-4424-b737-93e3c778ecd1", "fields": { - "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 399, + "contribution": 3711, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108028,11 +117027,11 @@ }, { "model": "evaluation.textanswer", - "pk": "eee5cc34-1507-466f-b1af-4669cc907019", + "pk": "7ff9bb80-275a-4db3-8690-e94808abac1d", "fields": { - "question": 364, - "contribution": 3597, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 342, + "contribution": 3723, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108040,11 +117039,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ef127f70-4e5c-4f33-8a31-5737165216ad", + "pk": "801c1390-e746-494f-ab45-7578c085c136", "fields": { - "question": 364, - "contribution": 913, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 330, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108052,11 +117051,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ef1cbb45-a81f-4be1-a333-e2b2ba176b67", + "pk": "80290305-2f3f-4b2e-8578-6aa66c474920", "fields": { "question": 364, - "contribution": 885, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "contribution": 1205, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108064,11 +117063,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ef1fe85e-aaab-4c0f-abfc-efb147609b93", + "pk": "8037a64b-d43a-4177-8dbb-10e6fd016486", "fields": { - "question": 373, - "contribution": 3454, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "question": 313, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108076,11 +117075,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ef279595-a12c-4a4c-858d-4d1e8b4664e5", + "pk": "804a780c-274f-4738-880e-cbdd4d890410", "fields": { - "question": 324, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet,", + "question": 367, + "contribution": 864, + "answer": "Lorem ipsum dolor sit amet", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108088,23 +117087,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ef33df89-7fbb-49de-bf32-7faa33f89a57", + "pk": "807a743d-6140-4c86-ba91-d2c1ada16692", "fields": { "question": 318, - "contribution": 1626, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false - } -}, -{ - "model": "evaluation.textanswer", - "pk": "ef4811dc-9a42-4839-9a41-aad9ab4fcb46", - "fields": { - "question": 313, - "contribution": 3474, - "answer": "Lorem", + "contribution": 3739, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108112,11 +117099,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ef49cc8d-6be3-4127-8b1a-cc69080d2c7d", + "pk": "8097b393-f6b1-4b6f-b173-b12477b9d8e3", "fields": { "question": 314, - "contribution": 3721, - "answer": "Lorem ipsum dolor", + "contribution": 4118, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108124,11 +117111,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ef544aca-46fb-4df1-84b2-af6b2022eb4e", + "pk": "80db48bb-c067-496e-ba7a-9d1fadfa071c", "fields": { - "question": 358, - "contribution": 3475, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "question": 364, + "contribution": 3435, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108136,11 +117123,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ef5b2c83-8f5e-4c8d-b275-6811a561b039", + "pk": "80e98f8d-0bae-44fb-9057-9cc822dd90aa", "fields": { - "question": 324, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "question": 314, + "contribution": 1626, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108148,10 +117135,10 @@ }, { "model": "evaluation.textanswer", - "pk": "ef78c58e-6ff8-4021-af82-96b73bf880f4", + "pk": "80f459fd-a40d-488c-9141-36cd32c42b45", "fields": { - "question": 364, - "contribution": 4121, + "question": 358, + "contribution": 859, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", @@ -108160,11 +117147,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ef8f2d4b-bf87-4908-af43-ba8a3611f693", + "pk": "810a44e5-8a6a-4c91-9685-607ae5bd31a7", "fields": { "question": 318, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108172,11 +117159,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ef99d841-54ce-49ca-b2cb-c008d0222203", + "pk": "81b4f82d-1027-480b-8665-8fa1f415dbaa", "fields": { - "question": 324, - "contribution": 4100, - "answer": "Lorem ipsum dolor sit", + "question": 313, + "contribution": 3665, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108184,11 +117171,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ef9f1746-2ce8-4fbc-999a-910acb099c5a", + "pk": "81fae325-d168-4591-9443-317a63d1c05e", "fields": { - "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 364, + "contribution": 3646, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108196,11 +117183,11 @@ }, { "model": "evaluation.textanswer", - "pk": "efb27afa-e8f4-414a-ab04-334715c6aa2c", + "pk": "81fea08b-e066-460c-8ffa-6c57a32be7db", "fields": { - "question": 454, - "contribution": 4185, - "answer": "Lorem ipsum dolor", + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108208,11 +117195,11 @@ }, { "model": "evaluation.textanswer", - "pk": "efb47f24-75de-40c1-b9ab-b0662ee0a483", + "pk": "820e66d4-3400-437b-abc9-bf42adcae34b", "fields": { - "question": 455, - "contribution": 4185, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108220,11 +117207,11 @@ }, { "model": "evaluation.textanswer", - "pk": "efbf43c1-2567-428a-b8e0-437ccb3d4b04", + "pk": "821af4f0-3fa0-47e9-82f8-97807ae0df35", "fields": { - "question": 324, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 454, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108232,11 +117219,11 @@ }, { "model": "evaluation.textanswer", - "pk": "efc39094-aa61-4453-b191-724ba806854e", + "pk": "82998aff-f415-4718-8e62-9cfecdcc9883", "fields": { - "question": 324, - "contribution": 886, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 318, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108244,11 +117231,11 @@ }, { "model": "evaluation.textanswer", - "pk": "efce8b61-717b-48fb-9d35-5927ad7e9e2e", + "pk": "82cf09ba-b838-41ff-addf-624c051f0402", "fields": { - "question": 342, - "contribution": 3723, - "answer": "Lorem ipsum", + "question": 313, + "contribution": 4100, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108256,11 +117243,11 @@ }, { "model": "evaluation.textanswer", - "pk": "eff4dad7-4cea-48e0-a46c-70a773566bd1", + "pk": "82e60ab1-d8f6-46e7-8f7e-88e2d1e00621", "fields": { "question": 324, - "contribution": 3727, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "contribution": 3721, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108268,11 +117255,11 @@ }, { "model": "evaluation.textanswer", - "pk": "effc236d-d3bc-42bb-bdb0-ed434fbc5cc6", + "pk": "83263e96-ab6c-4afc-a224-f38ff67fff5b", "fields": { "question": 364, - "contribution": 3740, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "contribution": 4188, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108280,11 +117267,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f00b74a9-fbe4-4dd6-ab8d-17b029ad7515", + "pk": "83389ea6-3d60-4a9b-aea4-895c71e4da91", "fields": { - "question": 324, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 314, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108292,11 +117279,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f0265da0-18df-40a6-b221-d3e7ecfdd76f", + "pk": "8338a338-44ff-462d-b220-05e3205ab36d", "fields": { "question": 364, - "contribution": 3463, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "contribution": 1802, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108304,10 +117291,10 @@ }, { "model": "evaluation.textanswer", - "pk": "f02eab6d-c7bc-4529-bf92-745f81b19a94", + "pk": "83541b87-312d-4dfe-bcbf-7c2044747d91", "fields": { "question": 314, - "contribution": 880, + "contribution": 4120, "answer": "Lorem", "original_answer": null, "review_decision": "PU", @@ -108316,11 +117303,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f06c38c0-2e0b-46b8-a8d1-91d57a266ef4", + "pk": "83e1f8f1-8c7f-4c4a-8b2c-8b9f57285f5e", "fields": { - "question": 373, - "contribution": 3416, - "answer": "Lorem ipsum dolor sit amet,", + "question": 324, + "contribution": 862, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108328,11 +117315,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f07e42a6-0261-4586-82e6-64c691d4bc6d", + "pk": "83f70a61-a4d1-48b1-91b9-82b0ab0dac1f", "fields": { - "question": 364, - "contribution": 3680, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 342, + "contribution": 804, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108340,11 +117327,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f0941cf8-6354-4f1e-be91-8024d9605438", + "pk": "84247258-6aee-450c-9732-5ec7fbf6cc75", "fields": { - "question": 364, - "contribution": 3722, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "question": 314, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108352,11 +117339,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f09cd503-6f09-4e81-b054-654b4e6f9ce2", + "pk": "84a315ca-7f63-4ad3-9907-666fb2d1088c", "fields": { - "question": 318, - "contribution": 3434, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 314, + "contribution": 3725, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108364,11 +117351,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f0be8e6f-a539-4eb6-a5a7-49027f4457cc", + "pk": "84a3f1b9-8fa9-4ce7-9210-4d8e4e5fdfd8", "fields": { - "question": 364, - "contribution": 4095, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 318, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108376,11 +117363,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f0dc92c8-e1b3-4a35-8804-6113d0dd52a2", + "pk": "84bff4c9-dcd3-404a-a140-03bcc38ccdc6", "fields": { - "question": 318, - "contribution": 4128, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "question": 439, + "contribution": 4008, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108388,10 +117375,10 @@ }, { "model": "evaluation.textanswer", - "pk": "f0fb5fde-6cec-4682-b1c6-5dc19ff70caa", + "pk": "84ca2f32-7011-4838-a093-06dff6267b1b", "fields": { - "question": 324, - "contribution": 788, + "question": 342, + "contribution": 3645, "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", @@ -108400,11 +117387,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f0fd0f48-6456-4060-a710-6089aab46aac", + "pk": "84f14144-3d68-42ca-9a35-da7364f13a23", "fields": { "question": 318, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "contribution": 4084, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108412,10 +117399,10 @@ }, { "model": "evaluation.textanswer", - "pk": "f10c53b9-a622-4b63-bb77-e7c5006e7666", + "pk": "852c1cf3-8bb0-46db-84c1-e841d0d09544", "fields": { "question": 313, - "contribution": 4084, + "contribution": 4100, "answer": "Lorem", "original_answer": null, "review_decision": "PU", @@ -108424,11 +117411,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f114d1c3-fb9c-4575-bb97-a6912cfbe8ca", + "pk": "8595717d-2f85-4c7a-8f88-06a76eefeb8c", "fields": { - "question": 342, - "contribution": 804, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "question": 330, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108436,11 +117423,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f135821e-6134-4d7d-a21f-ecf84511c149", + "pk": "85a9fb48-1001-4cae-b0e0-851488956cdf", "fields": { - "question": 342, - "contribution": 862, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "question": 314, + "contribution": 1837, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108448,11 +117435,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f13fbced-1128-4541-aebf-87734f0be775", + "pk": "85e1420e-3d5e-43b9-bf11-6d0e35c1ea78", "fields": { - "question": 364, - "contribution": 4227, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 454, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108460,10 +117447,10 @@ }, { "model": "evaluation.textanswer", - "pk": "f1646640-d023-44ed-9c46-5c3982c4cf5a", + "pk": "85f0938a-a682-4061-88d7-f0b1f0d270b4", "fields": { - "question": 313, - "contribution": 1626, + "question": 454, + "contribution": 4185, "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", @@ -108472,23 +117459,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f16e6352-4632-48a5-ae85-a4b13556c3ac", - "fields": { - "question": 364, - "contribution": 4204, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", - "original_answer": null, - "review_decision": "PU", - "is_flagged": false - } -}, -{ - "model": "evaluation.textanswer", - "pk": "f172a869-3a75-4a70-bab4-2d88742b0df0", + "pk": "85f0cf46-6177-4769-88be-ac6c6da3c1d3", "fields": { "question": 364, - "contribution": 3726, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "contribution": 3391, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108496,11 +117471,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f17d6a19-69c9-4916-b016-bf74af5e2594", + "pk": "860d3357-3e1d-4377-af0e-ea71307877a2", "fields": { "question": 330, - "contribution": 836, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108508,11 +117483,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f1aeb4ae-9042-4b6f-a594-fb6c180de4e5", + "pk": "8619bd06-078f-433d-9998-8a475a35fcc3", "fields": { - "question": 314, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "question": 364, + "contribution": 3894, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108520,11 +117495,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f1d0d076-341c-48f3-b262-1e6924100b99", + "pk": "863d0373-4ca6-4cfa-b51e-294b8052737a", "fields": { - "question": 318, - "contribution": 4116, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 373, + "contribution": 4094, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108532,11 +117507,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f1d2011f-f9cd-4cab-a377-32f036cf9014", + "pk": "864e46ad-8afa-4a99-af71-3c682b8766ae", "fields": { "question": 364, - "contribution": 1785, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "contribution": 885, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108544,11 +117519,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f23d0bfb-ef8e-45cf-8b3e-77b81f8b7318", + "pk": "86743bbb-c118-4831-a0d5-456731042992", "fields": { - "question": 342, - "contribution": 918, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108556,11 +117531,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f25a81ea-701a-4d1f-9daa-c6a91f537a1a", + "pk": "86808372-5932-4479-b40f-c8dd08b7b9c6", "fields": { - "question": 364, - "contribution": 1204, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "question": 314, + "contribution": 3474, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108568,11 +117543,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f26bf8fc-6246-4c28-bfed-84e499723a20", + "pk": "868bb984-9027-4917-9c65-dc1ed765e632", "fields": { - "question": 342, - "contribution": 858, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108580,11 +117555,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f27d39f9-570d-44a9-9694-0ac9f26ecf71", + "pk": "86de27d8-e116-4481-88c7-a1a35e4cb4d2", "fields": { - "question": 430, - "contribution": 4046, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "question": 330, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108592,11 +117567,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f2bf3ab5-d136-4fdd-bf1c-848fae6dbb60", + "pk": "86f5fbfb-36bf-4ca9-977c-9f0da5fc0159", "fields": { - "question": 313, - "contribution": 862, - "answer": "Lorem", + "question": 314, + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108604,11 +117579,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f2c65428-dc4b-4606-a303-f7e27467f574", + "pk": "8708b305-6618-4f0c-8879-3f321a16858a", "fields": { - "question": 324, - "contribution": 864, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "question": 455, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108616,11 +117591,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f2dfba95-e31b-4910-aaff-38e6f51cb6b7", + "pk": "870cc179-73ee-4096-a394-5f9d08e6493f", "fields": { - "question": 342, - "contribution": 3440, - "answer": "Lorem ipsum dolor sit", + "question": 324, + "contribution": 3725, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108628,23 +117603,23 @@ }, { "model": "evaluation.textanswer", - "pk": "f2eb6423-5c69-438c-9455-676967605366", + "pk": "8729afb2-1aa6-4f5a-8863-ea806e93e54e", "fields": { - "question": 330, - "contribution": 3679, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 364, + "contribution": 4073, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "f2eec4a9-c094-4ce7-82fd-399ea5bc70b1", + "pk": "875bca71-63ca-420d-a1e8-b0bc374d05e4", "fields": { "question": 364, - "contribution": 4187, - "answer": "Lorem ipsum dolor", + "contribution": 1202, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108652,11 +117627,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f32aadcd-5c18-4e49-8b0c-a9d8f1f54c75", + "pk": "875c4761-67b7-4fbc-962b-0174eed23845", "fields": { - "question": 324, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 440, + "contribution": 4140, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108664,11 +117639,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f34674e2-1bf2-423e-b1bb-9c236cdac0db", + "pk": "878b9f45-1d49-426c-8e5e-bf304f7dcf9c", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "question": 313, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108676,11 +117651,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f3a3c11e-843b-4021-be09-6ada73a1a13d", + "pk": "8864c8f8-958d-48ff-8a73-d2c10f69152e", "fields": { - "question": 364, - "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", + "question": 324, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108688,11 +117663,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f3bc0bd3-0b08-46e1-a012-62113b079677", + "pk": "8874e03e-c454-4d25-a212-6a5d6cf1c202", "fields": { "question": 318, - "contribution": 3474, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108700,11 +117675,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f3f3b994-507e-42ef-a017-3503d1798f95", + "pk": "887c57a7-e5f4-46ec-969e-e4507e9b7e8b", "fields": { - "question": 330, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "question": 318, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108712,11 +117687,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f3ff959e-11ec-419a-87a7-0a8f8a69ff78", + "pk": "88926375-6806-475e-a0a2-f1b364bc8619", "fields": { - "question": 324, - "contribution": 3711, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 330, + "contribution": 3739, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108724,11 +117699,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f4430506-ae9c-4322-9c06-258d2a87672d", + "pk": "88ba5d51-ab86-4a20-9d3c-d910ccbc6990", "fields": { - "question": 373, - "contribution": 3440, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", + "question": 364, + "contribution": 4139, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108736,11 +117711,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f44de851-d8b1-4d16-90e0-76237cacb7bc", + "pk": "88d01798-50f7-40bb-aa2a-32480d5870a6", "fields": { - "question": 318, - "contribution": 3721, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 364, + "contribution": 4204, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108748,11 +117723,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f4959298-129a-4a21-99cc-dd69304b72df", + "pk": "8987e8a3-e890-4021-833c-323513faf3e7", "fields": { "question": 314, - "contribution": 4028, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "contribution": 3390, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108760,11 +117735,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f4cddb6e-937d-4550-ba63-e578e0ff537b", + "pk": "89a305e1-057a-4fd3-84c6-a650181094e2", "fields": { "question": 318, - "contribution": 4120, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108772,11 +117747,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f4d26b3c-e479-48f4-b818-bd2159458f82", + "pk": "89a8060c-524f-4ceb-8e70-e23579ccee50", "fields": { - "question": 313, + "question": 330, "contribution": 3434, - "answer": "Lorem", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108784,11 +117759,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f5067899-8fc8-4a98-b24c-c0f622b3ee83", + "pk": "8a12cc1e-d613-46eb-8300-e61066b420df", "fields": { - "question": 364, - "contribution": 789, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 373, + "contribution": 1638, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108796,11 +117771,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f5149f90-2b77-49db-86b7-661396a842ad", + "pk": "8a209b84-5710-4c19-a7e4-5f688d57f736", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet,", + "question": 318, + "contribution": 3725, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108808,11 +117783,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f545fe6d-401f-4355-8476-015b9bc33073", + "pk": "8a507fe8-66a5-44c6-a82d-5dc9e1d85959", "fields": { - "question": 324, - "contribution": 3727, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "question": 455, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108820,11 +117795,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f555c357-6059-41e3-963d-30983be9f146", + "pk": "8a56fd1b-52f6-4b12-b605-ec8dda964ef0", "fields": { - "question": 324, - "contribution": 884, - "answer": "Lorem ipsum dolor sit", + "question": 342, + "contribution": 4122, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108832,11 +117807,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f5658f0c-219d-48e1-a9bb-e4e5160cd8d9", + "pk": "8a5a1ece-4cc5-4071-bb27-edce1c83e689", "fields": { - "question": 313, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 364, + "contribution": 4188, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108844,11 +117819,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f594a981-b3c6-4eb7-8901-c5b944affe69", + "pk": "8a6048b4-da85-4a89-8b48-3e1c308850af", "fields": { - "question": 314, - "contribution": 3406, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 358, + "contribution": 3608, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108856,11 +117831,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f5ef2825-832e-44f3-bd06-e14fa97bd5ea", + "pk": "8a797170-f85e-42f3-ad19-643d7aeec579", "fields": { - "question": 324, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "question": 330, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108868,11 +117843,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f6268c06-161f-4552-bd5b-a274bcebf7a2", + "pk": "8aca85cc-d958-424a-9476-5c4518c00409", "fields": { - "question": 318, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 342, + "contribution": 1638, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108880,11 +117855,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f6354757-3a4d-440e-b5fd-cdc298a60742", + "pk": "8acfeea2-86f1-4625-ba9e-a984b241cd1e", "fields": { - "question": 324, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "question": 364, + "contribution": 3608, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108892,11 +117867,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f66e8d96-63d9-4ac6-8771-cad70bf69141", + "pk": "8ad3838e-c8d9-46bc-8e74-01e1ecd79e95", "fields": { - "question": 313, - "contribution": 912, - "answer": "Lorem ipsum", + "question": 454, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108904,11 +117879,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f678dfea-cbc5-4132-b2e4-ec55e4212b22", + "pk": "8ad3c168-ba10-4be2-a395-3c0972e4dd7e", "fields": { - "question": 415, - "contribution": 4038, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", + "question": 314, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108916,11 +117891,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f6ad4098-10b2-40c2-abd2-f51dca0ec305", + "pk": "8aec040a-5c12-40c6-a6d0-dce9861a4d88", "fields": { "question": 342, - "contribution": 4094, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "contribution": 3645, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108928,11 +117903,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f6ffb327-5a08-47eb-b008-f5b15b68297e", + "pk": "8b26d9a0-a092-4210-952e-b50d305ba60b", "fields": { - "question": 364, - "contribution": 3922, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108940,11 +117915,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f7040cfc-addf-4ced-a848-13d26f6d5aea", + "pk": "8b3b8e93-bd14-47fe-8464-7b1466d4cd6b", "fields": { - "question": 313, - "contribution": 4138, - "answer": "Lorem ipsum dolor sit", + "question": 364, + "contribution": 1287, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108952,11 +117927,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f70f7a9f-d467-4c8f-9691-2bad48447643", + "pk": "8b42d622-cb47-4f88-8615-832098e72a7a", "fields": { - "question": 358, - "contribution": 1154, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "question": 324, + "contribution": 864, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108964,11 +117939,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f73f662c-8e00-4e94-aca3-a94605459766", + "pk": "8bb7c053-cb20-470f-9611-5179cf84bc05", "fields": { - "question": 313, - "contribution": 908, - "answer": "Lorem ipsum dolor", + "question": 342, + "contribution": 886, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -108976,10 +117951,10 @@ }, { "model": "evaluation.textanswer", - "pk": "f76c113a-2b5d-4c6d-8f89-4f19a1f98215", + "pk": "8bdc1f1c-e5aa-4b20-a195-924fc98f7859", "fields": { - "question": 313, - "contribution": 4120, + "question": 314, + "contribution": 3354, "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", @@ -108988,23 +117963,23 @@ }, { "model": "evaluation.textanswer", - "pk": "f7a6ca55-6be3-45de-ad62-5a2da7285348", + "pk": "8bf94f09-68b5-4080-8327-094718cc5024", "fields": { - "question": 324, - "contribution": 3739, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "question": 364, + "contribution": 3786, + "answer": "Lorem ipsum dolor sit amet, consetetur", "original_answer": null, - "review_decision": "PU", + "review_decision": "UN", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "f7c0168a-a583-4808-a676-8176af494e73", + "pk": "8c9117dd-6e84-4823-97f9-57d70ccbf0be", "fields": { - "question": 313, - "contribution": 4084, - "answer": "Lorem ipsum", + "question": 318, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109012,11 +117987,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f7cf3fd7-a08b-4606-82ba-fa3c728f5755", + "pk": "8c9f8118-ed3d-4c34-96fb-25e8eb9c4df0", "fields": { - "question": 324, - "contribution": 880, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "question": 314, + "contribution": 4046, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109024,11 +117999,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f7d1bb29-e7c2-408e-935b-b55247a628bb", + "pk": "8ca27d5c-4aee-468a-a5c8-37a48603febe", "fields": { "question": 330, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109036,11 +118011,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f817aeca-95c4-4192-a38e-72100380e029", + "pk": "8cbb562e-675d-4e06-9dd4-4d9e1975e5ad", "fields": { - "question": 324, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "question": 314, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109048,11 +118023,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f83f0cdc-cfc1-49b3-824b-715832ff1412", + "pk": "8d02e690-f016-4bc7-8636-7a35c349cbe6", "fields": { - "question": 364, - "contribution": 4121, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 313, + "contribution": 908, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109060,11 +118035,23 @@ }, { "model": "evaluation.textanswer", - "pk": "f8469b2c-5a8f-4cff-b080-02bc3bd91c24", + "pk": "8d080da2-d5da-41df-be0d-92524037439e", + "fields": { + "question": 430, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "8d22fb5e-4f7f-4e35-853f-196f0ddbd057", "fields": { "question": 318, - "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109072,11 +118059,23 @@ }, { "model": "evaluation.textanswer", - "pk": "f8710982-441f-4358-b691-923a808b50b4", + "pk": "8d626461-9755-4405-b940-1f730ff642de", + "fields": { + "question": 313, + "contribution": 836, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "8d763547-eb19-410a-8cdb-2ccb466ce5f4", "fields": { "question": 318, "contribution": 1634, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109084,11 +118083,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f87dd779-560a-43ef-928a-adeaba2551af", + "pk": "8d872672-a283-4baa-8673-5825136f6ec9", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem", + "question": 313, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109096,11 +118095,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f89dc247-2ea1-428e-855e-843aa79684e1", + "pk": "8d8e4f18-f55c-4d46-a702-7b1201a71500", "fields": { - "question": 314, - "contribution": 1626, - "answer": "Lorem ipsum dolor", + "question": 318, + "contribution": 4100, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109108,11 +118107,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f8c68df7-030e-4dee-9dcb-2ed3f7ddb411", + "pk": "8d943a08-3974-4160-a8df-dcaf6b706868", "fields": { - "question": 399, - "contribution": 3775, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "question": 314, + "contribution": 4084, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109120,11 +118119,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f8cf810d-5340-4e05-84a4-7c3d43389a81", + "pk": "8d95df1b-907d-4265-b28a-92e654478edc", "fields": { - "question": 313, - "contribution": 1634, - "answer": "Lorem", + "question": 364, + "contribution": 1669, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109132,11 +118131,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f90d0400-1181-4c79-b1c5-d1953e2e25ff", + "pk": "8df5343e-8972-45fb-9076-4000d42b4640", "fields": { "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "contribution": 4120, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109144,11 +118143,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f921baeb-41ff-479c-bb96-bb09e182cacc", + "pk": "8e378d07-d42a-467c-9bc5-9861c58562b1", "fields": { - "question": 314, - "contribution": 4084, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 1207, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109156,11 +118155,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f9392e4d-7272-4c7c-b283-4c35c7c652d3", + "pk": "8e5ca825-58d6-4b51-8378-d3614b2f498d", "fields": { - "question": 342, - "contribution": 3508, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "question": 373, + "contribution": 3404, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109168,11 +118167,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f947646e-2baf-467c-823c-bf8d3c22bd23", + "pk": "8e97eaaf-bc22-4ef8-9c40-02c9f55ec8f7", "fields": { "question": 318, - "contribution": 908, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109180,11 +118179,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f95ffa6c-5e84-42ee-b32b-d9d7b54f7f4a", + "pk": "8ea279c9-f967-4f25-b243-07bae5f0adfc", "fields": { - "question": 358, - "contribution": 909, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "question": 314, + "contribution": 3462, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109192,11 +118191,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f960aac3-4a4c-45b6-a8a2-f11f932a652f", + "pk": "8ecc2aef-66fa-4595-9405-b71f4d9a825a", "fields": { - "question": 313, - "contribution": 3434, - "answer": "Lorem", + "question": 364, + "contribution": 3848, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109204,11 +118203,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f96f7230-10dc-499a-b2fe-f63197aa6a06", + "pk": "8ed7321e-436d-4312-a678-5761bc722c92", "fields": { "question": 364, - "contribution": 3391, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", + "contribution": 1804, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109216,11 +118215,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f97c3fdc-c3a4-4026-961e-e4e19837d90a", + "pk": "8ee2cf19-ad8a-4c3d-9496-ccd912e3a5cc", "fields": { - "question": 364, - "contribution": 1635, - "answer": "Lorem ipsum dolor sit", + "question": 342, + "contribution": 1656, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109228,11 +118227,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f9943dfc-bdb8-4ba2-9085-10804a6a7f33", + "pk": "8ef02521-5837-46fc-a284-2a27ffa0459d", "fields": { - "question": 364, - "contribution": 3552, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "question": 318, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109240,23 +118239,23 @@ }, { "model": "evaluation.textanswer", - "pk": "f99777b0-63a7-41be-b743-d10d46641f0b", + "pk": "8efabe68-ae68-4a54-9870-6f9ddad681c5", "fields": { "question": 342, - "contribution": 4072, - "answer": "Lorem ipsum dolor sit amet, consetetur", + "contribution": 1702, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, - "review_decision": "UN", + "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "f9b9d46b-924a-4c99-b587-8f24a81ad8e3", + "pk": "8f2fddf4-35ee-43dd-a20a-2b4ced0bad67", "fields": { - "question": 314, - "contribution": 3390, - "answer": "Lorem ipsum", + "question": 324, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109264,11 +118263,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f9c8808a-93f6-4f6d-b37d-98ec1f445b36", + "pk": "8f32ba02-d3ea-450d-a3f4-8ecff39b9aed", "fields": { - "question": 313, + "question": 314, "contribution": 3406, - "answer": "Lorem ipsum dolor sit", + "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109276,11 +118275,11 @@ }, { "model": "evaluation.textanswer", - "pk": "f9f85d65-bb7f-4840-822e-e5323bc8afc2", + "pk": "8f49070e-a2e8-4ae7-8e56-ec48766a9167", "fields": { - "question": 313, - "contribution": 3472, - "answer": "Lorem ipsum dolor", + "question": 373, + "contribution": 1710, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109288,11 +118287,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fa4f817e-f525-4304-a83b-9299368b68c2", + "pk": "8f896847-8a7e-41ef-9b58-6555c1197896", "fields": { - "question": 314, - "contribution": 908, - "answer": "Lorem", + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109300,11 +118299,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fa7d16be-729b-4c5a-8c38-ea933fbfdd81", + "pk": "8f97115d-5372-4efc-8d6d-1a6c4f069018", "fields": { - "question": 318, - "contribution": 3462, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109312,11 +118311,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fabdcbf2-4dfd-42ba-a7d9-c9462bdfaadf", + "pk": "8f9b3e66-90a9-4717-853a-1ec7bdd263d0", "fields": { - "question": 314, - "contribution": 912, - "answer": "Lorem ipsum dolor sit", + "question": 364, + "contribution": 1204, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109324,11 +118323,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fad050e1-2599-4e82-979d-34bc39cc900b", + "pk": "8fde9323-76d7-43dc-853e-28503ba2de67", "fields": { - "question": 314, - "contribution": 4128, - "answer": "Lorem", + "question": 373, + "contribution": 3685, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109336,11 +118335,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fb1c608c-3a51-489e-9e4f-6d5b5ee2bc0b", + "pk": "8ff46c76-fd77-4419-93b7-efaa5e59527e", "fields": { - "question": 342, - "contribution": 3440, - "answer": "Lorem ipsum", + "question": 373, + "contribution": 1726, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109348,11 +118347,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fb1dc569-f81a-4c88-bfd0-a2cbbd08d1d9", + "pk": "9054b9e9-87db-4431-8f17-56db7ef00c5d", "fields": { - "question": 330, - "contribution": 3390, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", + "question": 313, + "contribution": 912, + "answer": "Lorem ipsum", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109360,11 +118359,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fb4c02c5-2113-4480-8680-36a67e57f44c", + "pk": "9070eb13-ef48-4fb7-8e6c-a092592c496f", "fields": { "question": 364, "contribution": 1782, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109372,10 +118371,22 @@ }, { "model": "evaluation.textanswer", - "pk": "fb6d53e9-8c57-44c0-a679-dbd57bd8a3f1", + "pk": "908f72cd-946a-42bd-8c1b-e572ec6264ad", "fields": { - "question": 313, - "contribution": 1837, + "question": 324, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "9093fb38-9dc9-4e7d-93c2-638b24c7c505", + "fields": { + "question": 314, + "contribution": 880, "answer": "Lorem ipsum dolor sit amet,", "original_answer": null, "review_decision": "PU", @@ -109384,11 +118395,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fba7107b-2d9a-4a82-989e-c3267a642b40", + "pk": "90f74b86-355a-43ab-86ed-29c21108c30e", "fields": { - "question": 373, - "contribution": 3727, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 313, + "contribution": 4118, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109396,11 +118407,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fbc22330-c0e4-440c-837d-bc7ee88ac8ed", + "pk": "9111d3aa-c1dc-4310-b28f-db4ddb61e854", "fields": { - "question": 364, - "contribution": 3435, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "question": 314, + "contribution": 3434, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109408,11 +118419,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fbf89e2c-27ac-4ff8-b684-314ce681fca6", + "pk": "91121a1d-f2aa-41b9-9aa3-a147663d297c", "fields": { - "question": 318, - "contribution": 4100, - "answer": "Lorem ipsum dolor", + "question": 324, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109420,11 +118431,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fc8790fa-80f3-413d-9456-7624422c843b", + "pk": "9134a2d9-1c3a-4104-a462-b10efecd86b3", "fields": { - "question": 318, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "question": 314, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109432,11 +118443,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fc950d3e-c6d7-4008-a1e8-ad62a9dfadbf", + "pk": "91351220-4c16-467d-93cf-fef57dfaf1b2", "fields": { - "question": 364, - "contribution": 1202, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "question": 314, + "contribution": 908, + "answer": "Lorem ipsum dolor sit", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109444,11 +118455,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fcb711fb-1e80-4c25-9761-93823d3382cc", + "pk": "91376fe2-636e-43a8-bdad-f8d02ed196bc", "fields": { "question": 318, "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109456,11 +118467,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fcf16890-565d-41d4-8116-c5b2c416d1d0", + "pk": "9151dff8-b0d8-4c77-b61e-1c24b8492090", "fields": { - "question": 364, - "contribution": 1217, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "question": 314, + "contribution": 908, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109468,11 +118479,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fd20f85a-06cc-43b4-b1e6-7d140f34d1bc", + "pk": "918959fa-9bef-419d-b4a6-6a67adef00ba", "fields": { - "question": 313, - "contribution": 3665, - "answer": "Lorem ipsum", + "question": 364, + "contribution": 3894, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109480,11 +118491,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fd2ae049-5865-49af-b620-822942897b4e", + "pk": "91906578-d9d3-477c-81bd-3dbedab87938", "fields": { - "question": 324, - "contribution": 4100, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "question": 313, + "contribution": 3354, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109492,11 +118503,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fda7d27c-5d74-46c7-810f-8bc996dc4668", + "pk": "91c7140b-312b-4309-a46e-503159255952", "fields": { - "question": 373, - "contribution": 3508, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "question": 314, + "contribution": 1634, + "answer": "Lorem", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109504,11 +118515,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fdeb3f09-29fb-4397-acbf-263adbf6265f", + "pk": "92194020-3d80-4212-8dbc-5876e2b21d0d", "fields": { - "question": 364, - "contribution": 4203, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "question": 314, + "contribution": 908, + "answer": "Lorem ipsum dolor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109516,11 +118527,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fe18b4fd-b52e-4bd5-95a6-9a791317c90f", + "pk": "92467be7-cca5-4b98-8771-b4068d8b3417", "fields": { "question": 324, - "contribution": 3665, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109528,23 +118539,23 @@ }, { "model": "evaluation.textanswer", - "pk": "fe344172-508d-4d76-9394-552a49a5d6f5", + "pk": "9267bdda-a18a-48c7-928b-740164d46da8", "fields": { - "question": 381, - "contribution": 3775, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", - "original_answer": null, + "question": 324, + "contribution": 864, + "answer": "Lorem ipsum dolor sit amet", + "original_answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "review_decision": "PU", "is_flagged": false } }, { "model": "evaluation.textanswer", - "pk": "fe565833-8afc-42a5-81d0-9b6b3838e9e9", + "pk": "92dbad4d-c20e-4b15-aac2-6a94ce7bee1c", "fields": { - "question": 313, - "contribution": 3462, - "answer": "Lorem ipsum dolor sit", + "question": 330, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109552,11 +118563,11 @@ }, { "model": "evaluation.textanswer", - "pk": "fe62df77-fc7f-4510-a797-5c51921f02b3", + "pk": "93010bb5-3d85-4a4e-9ca9-859f083f28cf", "fields": { - "question": 330, - "contribution": 4084, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", + "question": 364, + "contribution": 3391, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109564,11 +118575,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ff72f363-0456-4f47-93fd-93beb2ebd9a6", + "pk": "931091e7-bd12-47db-8c19-305f3abe4823", "fields": { - "question": 318, - "contribution": 1612, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,", + "question": 373, + "contribution": 3404, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109576,11 +118587,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ffaf7b56-d8fa-4354-b387-ef788250d2e9", + "pk": "933b01da-2779-42a6-931c-c6038d2e7fd4", "fields": { - "question": 364, - "contribution": 4233, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", + "question": 318, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109588,10 +118599,10 @@ }, { "model": "evaluation.textanswer", - "pk": "ffd03d45-2100-46d1-8518-9af752c28d57", + "pk": "934af40e-74de-4cf7-aae8-0536ff4ab2da", "fields": { - "question": 358, - "contribution": 4085, + "question": 314, + "contribution": 3739, "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", "original_answer": null, "review_decision": "PU", @@ -109600,11 +118611,11 @@ }, { "model": "evaluation.textanswer", - "pk": "ffd147a6-5afa-482c-834f-f5ae56c0cd07", + "pk": "935dd972-4b5e-4352-bca5-9bfa15051241", "fields": { - "question": 358, - "contribution": 1201, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "question": 454, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", "original_answer": null, "review_decision": "PU", "is_flagged": false @@ -109612,18984 +118623,10450 @@ }, { "model": "evaluation.textanswer", - "pk": "fffad0b3-866f-42f8-99ba-b1937f2e189a", + "pk": "9362ee67-6af5-4aea-85ad-dcf3ae4bcc44", "fields": { - "question": 324, - "contribution": 822, - "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "question": 342, + "contribution": 1702, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", "original_answer": null, "review_decision": "PU", "is_flagged": false } }, { - "model": "evaluation.faqsection", - "pk": 1, + "model": "evaluation.textanswer", + "pk": "936773ae-79e3-43d0-928b-37d27ee34d66", "fields": { - "order": 1, - "title_de": "Die Plattform", - "title_en": "The Platform" + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqsection", - "pk": 2, + "model": "evaluation.textanswer", + "pk": "93903c2a-a63f-440e-b6af-69d30160947f", "fields": { - "order": 2, - "title_de": "Evaluierung", - "title_en": "The Evaluation" + "question": 324, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqsection", - "pk": 3, + "model": "evaluation.textanswer", + "pk": "93d67524-2f5f-4a49-96bd-d29f7969ebff", "fields": { - "order": 3, - "title_de": "Evaluierungs-Ergebnisse", - "title_en": "The Evaluation Results" + "question": 364, + "contribution": 913, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqsection", - "pk": 4, + "model": "evaluation.textanswer", + "pk": "93e2c963-403a-4cae-8ce1-f75e6338f8b3", "fields": { - "order": 4, - "title_de": "Details für Mitwirkende", - "title_en": "Details for Lecturers" + "question": 411, + "contribution": 3974, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqsection", - "pk": 5, + "model": "evaluation.textanswer", + "pk": "9409ffac-6e8c-4125-a8bc-23d2e1114166", "fields": { - "order": 5, - "title_de": "Details für Studierende", - "title_en": "Details for Students" + "question": 330, + "contribution": 1634, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 1, + "model": "evaluation.textanswer", + "pk": "940b21e3-1b51-45c6-95c4-9189122b8ca6", "fields": { - "section": 1, - "order": 1, - "question_de": "Was ist EvaP?", - "question_en": "What is EvaP?", - "answer_de": "EvaP ist eine Evaluierungsplattform für Lehrveranstaltungen an Universitäten.
Entwickelt wurde sie ursprünglich am Hasso-Plattner-Institut (HPI) an der Universität Potsdam und ist mittlerweile ein Open-Source-Projekt auf GitHub.
Von 2005 bis 2011 war am HPI die Plattform EvaJ – eine von Studierenden im Rahmen eines Seminars entwickelte Java-Anwendung – im Einsatz. 2011 entschied sich der Fachschaftsrat, die Evaluierungssoftware neu zu entwickeln, da eine Wartung technisch zu aufwändig geworden war. Das neue System namens EvaP basiert nun auf der Programmiersprache Python.", - "answer_en": "EvaP is an online platform being used for evaluation of university courses.
At first developed at Hasso Plattner Institute (HPI) at the University of Potsdam in Germany, it is now an Open Source project on GitHub.
From 2005 to 2011 HPI used the older platform EvaJ – a Java application implemented by students during a seminar. In 2011 the student representatives decided to redevelop the evaluation platform when the old system became unmaintainable. The new platform called EvaP is now written in the Python programming language." + "question": 364, + "contribution": 4203, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 2, + "model": "evaluation.textanswer", + "pk": "94524672-690b-41a7-aa73-82017cea8eea", "fields": { - "section": 1, - "order": 2, - "question_de": "Wer betreibt die Plattform?", - "question_en": "Who runs the platform?", - "answer_de": "Für den Betrieb der Plattform und den Ablauf der Evaluierung ist das Evaluierungsteam verantwortlich.", - "answer_en": "The evaluation team is running the platform and is responsible for the evaluation process." + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 3, + "model": "evaluation.textanswer", + "pk": "9496e2e6-3f2e-4663-9d4d-f91504d533e1", "fields": { - "section": 1, - "order": 3, - "question_de": "Wie melde ich mich auf der Plattform an?", - "question_en": "How do I login on the platform?", - "answer_de": "Für die Anmeldung gibt es zwei Möglichkeiten:", - "answer_en": "There are two options to login:" + "question": 342, + "contribution": 4002, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 4, + "model": "evaluation.textanswer", + "pk": "94acedf6-ace1-436d-a267-8c6497121a6f", "fields": { - "section": 1, - "order": 4, - "question_de": "Warum braucht man als externe Nutzer·in einen Anmeldeschlüssel und wie funktioniert dieser?", - "question_en": "Why do external users need a login key and how does it work?", - "answer_de": "Externe Nutzer·innen besitzen keinen Login. Dennoch muss sichergestellt werden, dass sie sich mit dem richtigen Account auf der Plattform anmelden können.
Um sich einen Anmeldeschlüssel generieren zu lassen, müssen Sie Ihre E-Mail-Adresse angeben. Verwenden Sie dazu bitte die Adresse, die bei der Anmeldung für die Veranstaltung verwendet wurde, da nur diese an das Evaluierungsteam weitergegeben und somit auf der Plattform hinterlegt wird.
Sie erhalten Ihren Schlüssel anschließend per E-Mail zugeschickt und können sich mit diesem anmelden. Da der Schlüssel eindeutig Ihrer E-Mail-Adresse zugeordnet werden kann, weiß die Plattform, welche Nutzer·in sich gerade anmeldet.", - "answer_en": "External lecturers and students don't have login credentials. But the platform still needs to make sure that they can login as the correct user.
If you want to get a login key for yourself, you need to enter your email address on the login page. Please make sure to use the email address which was used during enrolment for the course, as that one is given to the evaluation team and is already registered on the platform.
You will immediately get your key via email. This key is linked to your email address, so the platform can identify you when using the key to login." + "question": 330, + "contribution": 822, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 5, + "model": "evaluation.textanswer", + "pk": "94ed1714-a6b6-4f75-acc5-58ffbf477324", "fields": { - "section": 1, - "order": 5, - "question_de": "Wie kann ich mich registrieren?", - "question_en": "How can I register?", - "answer_de": "Accounts werden für neue Studierende und Mitwirkende automatisch angelegt. Zusätzlich kann das Evaluierungsteam weitere Accounts anlegen, falls dies notwendig ist.
Eine selbstständige Registrierung ist nicht möglich.", - "answer_en": "Users are created automatically for new students and lecturers. Additional users can be added by the evaluation team if necessary.
An autonomous registration is not possible." + "question": 330, + "contribution": 822, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 6, + "model": "evaluation.textanswer", + "pk": "9516f1a7-6039-4047-8763-164e337b11c5", "fields": { - "section": 2, - "order": 1, - "question_de": "Was ist die Evaluierung?", - "question_en": "What is the evaluation?", - "answer_de": "Die Evaluierung ist die Beurteilung von Lehrveranstaltungen. Ziel ist es, die Qualität der Lehre zu verbessern, indem Lehrende, Studierende und Verwaltung Feedback zu den einzelnen Veranstaltungen erhalten.
Die Studierenden können auf dieser Online-Plattform anonym Fragebögen für ihre belegten Lehrveranstaltungen ausfüllen. Die Auswertung der Fragebögen wird anschließend veröffentlicht und ist ebenfalls online zugänglich.", - "answer_en": "Evaluation is the process of getting feedback for courses. It aims at helping to improve the quality of teaching by providing this feedback to lecturers, students and management.
This online platform allows students to anonymously complete questionnaires for all the courses they are enrolled in. Afterwards the results will be published online." + "question": 373, + "contribution": 3681, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 7, + "model": "evaluation.textanswer", + "pk": "951743a7-bb0a-4538-88cb-1da8530be06c", "fields": { - "section": 2, - "order": 2, - "question_de": "Woher kommen die Daten?", - "question_en": "Where does the data come from?", - "answer_de": "In jedem Semester erhält das Evaluierungsteam vom Studienreferat die Belegungsdaten. Diese Informationen enthalten alle Lehrveranstaltungen, die jeweilige verantwortliche Person und die Belegungen der Studierenden. Somit ist sichergestellt, dass in EvaP alle Lehrveranstaltungen eingetragen sind und die Studierenden nur Veranstaltungen bewerten können, die sie auch tatsächlich belegt haben. Sollten Sie Fehler in den Daten bemerken, wenden Sie sich bitte an das Evaluierungsteam.", - "answer_en": "Every semester the evaluation team is getting the enrolment data by the by the office of student affairs. This includes all courses, their responsible lecturers and the enrolment information of all students. In this way it's ensured that all courses are available for evaluation and that students can only vote for the courses they are enrolled in. If you should find any mistake, please send a message to the evaluation team." + "question": 324, + "contribution": 3785, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 8, + "model": "evaluation.textanswer", + "pk": "952330bd-f746-4a6b-86ec-7932d5c6dee7", "fields": { - "section": 2, - "order": 3, - "question_de": "Wie sind Fragebögen aufgebaut?", - "question_en": "How are the questionnaires created?", - "answer_de": "Die Evaluierung einer Lehrveranstaltung besteht aus mehreren Fragebögen, z.B. Fragen zu Lehrmitteln, einer Übungsleiter·in oder dem Inhalt der Veranstaltung. Jeder dieser Fragebögen wiederum besteht aus einer oder mehreren Fragen.", - "answer_en": "The evaluation of a course consists of several questionnaires, e.g. questions about learning materials, exercise supervisors or the contents of the lecture. Each of these questionnaires holds one or several questions." + "question": 330, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 9, + "model": "evaluation.textanswer", + "pk": "95427cff-84ce-4e95-b1bc-e8303df853d5", "fields": { - "section": 2, - "order": 4, - "question_de": "Welche Arten von Fragen gibt es?", - "question_en": "What types of questions are asked?", - "answer_de": "Grundsätzlich gibt es drei Fragetypen:", - "answer_en": "There are three types of questions:" + "question": 440, + "contribution": 4090, + "answer": "Et cetera", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 10, + "model": "evaluation.textanswer", + "pk": "955a37dd-a2e8-4564-a897-957d2f1021af", "fields": { - "section": 2, - "order": 5, - "question_de": "Wie werden Fragebögen einer Lehrveranstaltung zugeordnet?", - "question_en": "How are the questionnaires for a course selected?", - "answer_de": "Zu Beginn nimmt das Evaluierungsteam die Zuordnung passender Fragebögen vor. Außerdem können Mitwirkende weitere Fragebögen ergänzen, falls Sie zusätzliche Fragen stellen wollen.", - "answer_en": "The initial selection is done by the evaluation team. In addition lecturers can add more questionnaires if they would like to ask further questions." + "question": 364, + "contribution": 4148, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 11, + "model": "evaluation.textanswer", + "pk": "957138f8-2409-44ab-aed2-2674962d45bf", "fields": { - "section": 3, - "order": 1, - "question_de": "Wann sind die Ergebnisse verfügbar?", - "question_en": "When are the results published?", - "answer_de": "Die Ergebnisse der Evaluierung werden veröffentlicht, nachdem der Evaluierungszeitraum abgelaufen ist und alle Noten der Veranstaltung bekanntgegeben wurden.", - "answer_en": "The results of the evaluation will be published after the evaluation period ended and after all grades of the course have been published." + "question": 314, + "contribution": 4100, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 12, + "model": "evaluation.textanswer", + "pk": "95947e04-a7a3-4622-b64a-61025b90ebc0", "fields": { - "section": 3, - "order": 2, - "question_de": "In welcher Form werden die Ergebnisse veröffentlicht?", - "question_en": "In which form will the results be published?", - "answer_de": "Die Plattform bietet jeder angemeldeten Nutzer·in die Möglichkeit, die Ergebnisse der vergangenen Semester einzusehen. Für jede Lehrveranstaltung werden eine Gesamtnote und eine Note pro gestellte Likert-Frage angezeigt.
Mitwirkende einer Lehrveranstaltung können zudem die Textantworten sehen, die über sie selbst abgegeben wurden.", - "answer_en": "Every logged-in user can see the results of past semesters on the platform. There are total grades per course and per Likert question.
Contributors of a course can also see the text answers that were given to them." + "question": 364, + "contribution": 1836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 13, + "model": "evaluation.textanswer", + "pk": "95c8ba37-00f8-4cde-a1be-d9e216ee93d3", "fields": { - "section": 3, - "order": 3, - "question_de": "Wie werden die Noten berechnet?", - "question_en": "How are the grades calculated?", - "answer_de": "Die Gesamtnote ist der gewichtete Mittelwert aller Teilnoten. Die Teilnoten werden über den Durchschnitt aller abgegebenen Likert-Fragen berechnet. Volle Zustimmung entspricht einer 1, volle Ablehnung einer 5. Alle Personennoten werden zusammen mit 50% gewichtet und die Noten der Sachfragen ergeben zusammen die restlichen 50%.", - "answer_en": "The total grade is the weighted average of all intermediate grades. The intermediate grades are calculated as the average of all Likert results. Strong agreement counts as 1, strong disagreement as 5. All person-related grades weigh 50% and all the other grades contribute to the remaining 50%." + "question": 364, + "contribution": 3551, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 14, + "model": "evaluation.textanswer", + "pk": "95d8a617-3e92-4729-9246-092b58944286", "fields": { - "section": 3, - "order": 4, - "question_de": "Warum sind manche Noten nicht sichtbar?", - "question_en": "Why are not all grades visible?", - "answer_de": "Um zumindest eine grundlegende Aussagekraft zu haben, werden Noten erst dann angezeigt, wenn 20% der Teilnehmenden der Lehrveranstaltung – mindestens aber zwei Teilnehmende – die entsprechende Frage beantwortet haben („keine Angabe“ zählt dabei nicht als Stimme). Eine Gesamtnote wird ebenfalls erst ab dieser Grenze angezeigt.", - "answer_en": "To get at least a basic significance, grades are only shown when at least 20% of the participants of a course – and not less than two participants – answered the related question (\"No answer\" is not counted as an answer). The total grades are also not shown before this threshold was reached." + "question": 313, + "contribution": 3721, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 15, + "model": "evaluation.textanswer", + "pk": "95dd5934-1e81-46a8-b3c8-6bf1bb8ac1cd", "fields": { - "section": 4, - "order": 1, - "question_de": "Was sind Stellvertreter·innen?", - "question_en": "What are delegates?", - "answer_de": "Für die Vorbereitung der Evaluierung werden bestimmte Informationen von den Mitwirkenden benötigt. EvaP bietet Ihnen in Ihrem Profil die Möglichkeit, eine oder mehrere Stellvertreter·innen zu definieren. Diese erhalten die gleichen Bearbeitungsrechte wie Sie selbst und können die benötigten Informationen stellvertretend eintragen.", - "answer_en": "For the preparation of the evaluation some additional data is needed from the lecturers. In your profile EvaP provides the functionality to define one or more delegates who will get edit rights for all your courses and can then add the needed information in your name." + "question": 318, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 16, + "model": "evaluation.textanswer", + "pk": "95f76c8c-d229-412a-ab36-db213b3759c0", "fields": { - "section": 4, - "order": 2, - "question_de": "Welche Informationen muss ich für eine Lehrveranstaltung angeben und warum?", - "question_en": "What information do I have to provide for my courses and why?", - "answer_de": "Alle weiteren Daten sollten bereits korrekt eingetragen sein. Wenn Sie dennoch Fehler feststellen, wenden Sie sich bitte an das Evaluierungsteam.", - "answer_en": "All other information about your courses should already have been entered correctly. If you find any mistakes, please contact the evaluation team." + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 17, + "model": "evaluation.textanswer", + "pk": "960639f8-d31d-4947-846f-1cf69efd85b3", "fields": { - "section": 4, - "order": 3, - "question_de": "Wie sollte der Evaluierungszeitraum festgelegt werden?", - "question_en": "How should the evaluation period be defined?", - "answer_de": "Die Evaluierung darf die Notengebung nicht beeinflussen und umgekehrt. Dies soll dadurch gewährleistet werden, indem die Evaluierung vor der letzten Prüfungsleistung abgeschlossen wird und die Ergebnisse der Evaluierung erst nach Bekanntgabe der Noten veröffentlicht werden. Der Evaluierungszeitraum sollte mindestens eine Woche umfassen und wird standardmäßig auf die letzten Wochen der Vorlesungszeit gesetzt. Im Folgenden werden ein paar Beispiele gegeben:", - "answer_en": "The evaluation must not influence the course's grading and vice versa. This should be ensured by ending the evaluation before the final exam and publishing the evaluation's results not before the grades of the course have been published. The evaluation period should be at least one week and its standard value are the last weeks of the lecture period. Here are some examples:" + "question": 364, + "contribution": 1217, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 18, + "model": "evaluation.textanswer", + "pk": "9632e4d4-cb01-4801-b250-d31e5d930547", "fields": { - "section": 4, - "order": 4, - "question_de": "Was bedeuten die Zustände einer Lehrveranstaltung?", - "question_en": "What do the states of a course mean?", - "answer_de": "Es gibt acht verschiedene Zustände, die eine Lehrveranstaltung durchlaufen kann:
  1. Neu
    Direkt nach dem Import oder dem manuellen Anlegen einer Lehrveranstaltung befindet sie sich in diesem Zustand. Das Evaluierungsteam kontrolliert die Daten und lässt die Lehrveranstaltungen in den nächsten Zustand übergehen. Wenn dies passiert, wird von der Plattform eine E-Mail an die Mitwirkenden und ihre Stellvertreter·innen verschickt.
  2. Vorbereitet
    In diesem Zustand können die Mitwirkenden und ihre Stellvertreter·innen ihre Lehrveranstaltungen bearbeiten und anschließend bestätigen.
  3. Von der verantwortlichen Person bestätigt
    Nachdem die verantwortliche Person eine Lehrveranstaltung bestätigt hat, überprüft das Evaluierungsteam die Daten erneut und bestätigt schließlich den Kurs.
  4. Bestätigt
    Nachdem ein Kurs vom Evaluierungsteam bestätigt wurde, befindet er in diesem Zustand. Die Evaluierung beginnt automatisch, sobald der Evaluierungszeitraum erreicht ist.
  5. In Evaluierung
    In diesem Zustand werden die Stimmen der Teilnehmenden erfasst.
  6. Evaluiert
    Nach Ablauf des Evaluierungszeitraumes gehen evaluierte Lehrveranstaltungen automatisch in diesen Zustand über. Vom Evaluierungsteam werden alle Textantworten durchgesehen und Beleidigungen entfernt.
  7. überprüft
    Sobald alle Textantworten überprüft wurden, verbleibt die Lehrveranstaltung bis zu ihrer Veröffentlichung in diesem Zustand.
  8. Veröffentlicht
    Das Evaluierungsteam veröffentlicht die Ergebnisse der Lehrveranstaltungen manuell. Bei benoteten Veranstaltungen geschieht dies erst nach Veröffentlichung der Noten. Sie, Ihre Stellvertreter·innen und alle Mitwirkenden der Lehrveranstaltung werden per E-Mail darüber benachrichtigt.
    Alle veröffentlichten Veranstaltungen können auf der Plattform eingesehen werden.
", - "answer_en": "There are eight different states in which a course can be:
  1. new
    After importing or manually creating a course it has this state. The evaluation team checks the data and let the course switch to the next state. Once this happens the lecturers and their delegates will get an email from the platform.
  2. prepared
    This is the state where lecturers and their delegates can edit and approve the course.
  3. lecturer approved
    After a lecturer approved a course it will be again checked by the evaluation team who will do the final approval.
  4. approved
    After the evaluation team approved a course it will stay in this state until the evaluation period is reached.
  5. in evaluation
    When the course is in this state its participants can do the evaluation.
  6. evaluated
    After the evaluation period ended the course switches to this state. The evaluation team will now check all text answers and remove personal affronts if necessary.
  7. reviewed
    After reviewing all text answers the course stays in this state until it's published.
  8. published
    The evaluation team publishes the results of the evaluation manually after the grades for the course have been published (in case there are some). The responsible lecturer, defined delegates and all contributors of a course will be notified once the results are published.
    They can then be seen on the platform.
" + "question": 364, + "contribution": 1217, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 19, + "model": "evaluation.textanswer", + "pk": "963ff3cd-dd95-484f-8d4e-c1292c16f093", "fields": { - "section": 4, - "order": 5, - "question_de": "Welche E‑Mail-Benachrichtigungen erhalte ich wann?", - "question_en": "When do I get which emails?", - "answer_de": "Während das Evaluierungsteam die Evaluierung vorbereitet, erhalten Sie und Ihre Stellvertreter·innen eine E-Mail mit einem Link zur Evaluierungsplattform. Darin werden Sie gebeten, die oben aufgeführten Informationen für alle Ihre Lehrveranstaltungen anzupassen und zu ergänzen.
Sobald die Evaluierungsergebnisse Ihrer Lehrveranstaltungen veröffentlicht werden, erhalten Sie, Ihre Stellvertreter·innen und alle Mitwirkenden der Veranstaltung eine E-Mail, die Sie darüber benachrichtigt.", - "answer_en": "After the evaluation team prepared your courses, you and your delegates will receive an email with a link to the evaluation platform. In this email you will be asked to complete the above mentioned information about your courses.
After the evaluation results of your courses have been published, you, your delegates and all contributors of this course will get another email informing about the publication." + "question": 364, + "contribution": 1845, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 20, + "model": "evaluation.textanswer", + "pk": "9653dfac-3896-4c79-b45b-40126bd5e8cf", "fields": { - "section": 4, - "order": 6, - "question_de": "Welche Informationen sehe ich auf den Ergebnisseiten?", - "question_en": "Which information can I see on the result pages?", - "answer_de": "Sie sehen für alle Likert-Fragen die jeweiligen Durchschnittsnoten, eine prozentuale Verteilung und die Zahl der abgegebenen Stimmen. Außerdem können Sie die Antworten auf Textfragen sehen, wenn diese Sie persönlich betreffen. Beleidigungen in Textantworten werden vom Evaluierungsteam entfernt, zusätzliche Filter gibt es nicht.", - "answer_en": "You can see the average grades, percentages of the distribution and the number of total votes for all Likert questions. Furthermore you can see the answers to text answers on your own person. Personal affronts in the text answers are removed by the evaluation team. Other than that there are no filters." + "question": 314, + "contribution": 3406, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 21, + "model": "evaluation.textanswer", + "pk": "96a7fe32-d32d-465c-8cc0-dd4988807880", "fields": { - "section": 5, - "order": 1, - "question_de": "Ist meine Bewertung anonym?", - "question_en": "Is the evaluation anonymous?", - "answer_de": "Ja. Die Plattform stellt sicher, dass die erfassten Stimmen keinem Account zugeordnet werden können. Es wird gespeichert, wer eine Stimme für eine Veranstaltung abgegeben hat, nicht jedoch, welcher Account den Fragebogen wie ausfüllt. Wenn du also nicht gerade die einzige abstimmende Person bist, ist es technisch nicht mehr nachvollziehbar, welche Noten oder Textantworten von dir stammen.
Bei Textfragen gibt es jedoch nur eine technische Anonymität. Durch den gewählten Schreibstil und den Inhalt er Antwort kann es den Mitwirkenden gerade bei kleinen Veranstaltungen möglich sein, die Textantworten einzelnen Personen zuzuschreiben. Beim Formulieren der Textantworten sollte dir das bewusst sein.", - "answer_en": "Yes. The platform ensures that votes can't be related to a user. It saves who participated in a course's evaluation but not who voted how. As long as you are not the only participant in a course's evaluation no relation can be made.
When giving text answers there is only a technical anonymity. Your style of writing and the content of the answer might allow lecturers to guess who wrote the text answer, especially in small courses. When writing your answer you should be aware of that." + "question": 364, + "contribution": 3728, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 22, + "model": "evaluation.textanswer", + "pk": "96a8425d-1b7c-4362-9286-7014a80608a9", "fields": { - "section": 5, - "order": 2, - "question_de": "Wie (vollständig) muss ich den Fragebogen ausfüllen?", - "question_en": "How complete should my answers be?", - "answer_de": "So vollständig wie möglich. Bitte gib eine Stimme für jede Frage ab, die du beurteilen kannst. Nur bei einer hohen Teilnahmequote sind die Ergebnisse aussagekräftig und geben den Mitwirkenden und dem Evaluierungsteam hilfreiches Feedback. Textantworten benötigen zwar mehr Zeit zum Eintippen, sind dafür aber besonders wertvolle Rückmeldungen.", - "answer_en": "As complete as possible. Please vote for everything that you can evaluate. Only high participation rates result in significant values that can help the lecturers and evaluation team. Text answers take more time to write but are very important feedback." + "question": 318, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 23, + "model": "evaluation.textanswer", + "pk": "96c23f79-b025-4867-aedd-7df8b363b7b7", "fields": { - "section": 5, - "order": 3, - "question_de": "Was passiert mit meinen Textantworten?", - "question_en": "What happens to my text answers?", - "answer_de": "Alle Textantworten zu Mitwirkenden der Lehrveranstaltung werden für die jeweilige Person veröffentlicht.
Bevor die Textantworten veröffentlicht werden, entfernt das Evaluierungsteam Beleidigungen und angreifende Äußerungen. Bitte halte deine Kritik also freundlich und konstruktiv – sonst hilft sie keinem weiter.", - "answer_en": "All text answers on contributors of a course will be shown to these persons.
Before text answers are published, the evaluation team will remove personal affronts if necessary. Please provide constructive and polite feedback – only this can lead to positive changes." + "question": 381, + "contribution": 3775, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.faqquestion", - "pk": 24, + "model": "evaluation.textanswer", + "pk": "96d83623-12fa-4ba8-b590-f388bb242b94", "fields": { - "section": 5, - "order": 4, - "question_de": "Kann ich auf bereits zuvor gegebene Antworten verweisen?", - "question_en": "Can I refer to other answers?", - "answer_de": "Nein. Es nicht möglich, sich komplette ausgefüllte Fragebögen anzusehen. Die Stimmen und Textantworten werden pro Frage aggregiert angezeigt. Wenn du in einer Textantwort schreibst „wie oben schon erwähnt“, können andere die zugehörige Antwort nicht finden.", - "answer_en": "No. The questionnaires are not stored as a whole. Votes and text answers will be aggregated per question. If you would write \"see above\", the lecturer can't find the respective answer." + "question": 314, + "contribution": 884, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.infotext", - "pk": 1, + "model": "evaluation.textanswer", + "pk": "97046d36-e1f2-471d-9229-0455eb1fcdea", "fields": { - "title_de": "Informationen zur Evaluierung", - "title_en": "Information about the evaluation", - "content_de": "Anonymität
\nDeine abgegebenen Stimmen und Textantworten können dir technisch nicht zugeordnet werden. Dir sollte aber bewusst sein, dass dich Mitwirkende insbesondere in kleinen Veranstaltungen an deinem Schreibstil erkennen könnten.
\nMehr Infos: FAQ/Anonymität
\n
\nVerweise auf andere Antworten
\nLehrende können sich keine kompletten Fragebögen ansehen. Wenn du in einer Textantwort schreibst \"wie oben schon erwähnt\", können sie die zugehörige Antwort nicht finden.
\nMehr Infos: FAQ/Verweise
\n
\nEvaluierungs-Ergebnisse
\nTextantworten werden den bewerteten Personen und den Verantwortlichen der Veranstaltung angezeigt. Antworten auf Abstimmungsfragen werden für alle Nutzer·innen der Plattform veröffentlicht, wenn mindestens zwei Personen an der Evaluierung teilgenommen haben. Durchschnittsnoten werden berechnet, wenn die Teilnahmequote mindestens 20 Prozent beträgt.
\nMehr Infos: FAQ/Ergebnisse", - "content_en": "Anonymity
\nYour votes and text answers can't be related to you. But you should be aware that your style of writing might allow lecturers to guess who wrote the text answer, especially in small courses.
\nMore details: FAQ/Anonymity
\n
\nReferences to other answers
\nLecturers can't see completed questionnaires as a whole. If you would write \"see above\", the lecturer can't find the respective answer.
\nMore details: FAQ/Reference
\n
\nEvaluation Results
\nText answers will be shown to the people who were evaluated and to the people responsible for the course. Voting answers will be published for all users of the platform if at least two people participated in the evaluation. The average grade is calculated if the participation rate is at least 20 percent.
\nMore details: FAQ/Results", - "page": "student_index" + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.infotext", - "pk": 2, + "model": "evaluation.textanswer", + "pk": "972639aa-0033-4bd4-b75a-11eb46a9630b", "fields": { - "title_de": "Informationen für Mitwirkende", - "title_en": "Information for contributors", - "content_de": "Stellvertretende
\nLehrende können Stellvertretende definieren, die ihnen bei der Vorbereitung der Evaluierung helfen.\nSie können Stellvertretende auf Ihrer Einstellungsseite definieren.
\nEvaluierungen von Lehrenden, von denen Sie als Stellvertreter·in definiert wurden, sind unten mit einem Label markiert.
\nMehr Infos: FAQ/Stellvertretende
\n
\nZustand der Evaluierungen
\nSie können nur Evaluierungen im Zustand \"vorbereitet\" bearbeiten. Nachdem Sie eine Evaluierung bestätigt haben, wechselt diese automatisch in den Zustand \"von Bearbeiter·in bestätigt\" und Ihre Vorbereitung ist abgeschlossen.
\nMehr Infos: FAQ/Zustände
\n
\nEvaluierungs-Ergebnisse
\nTextantworten werden den bewerteten Personen und den Verantwortlichen der Veranstaltung angezeigt. Antworten auf Abstimmungsfragen werden für alle Nutzer·innen der Plattform veröffentlicht, wenn mindestens zwei Personen an der Evaluierung teilgenommen haben. Durchschnittsnoten werden berechnet, wenn die Teilnahmequote mindestens 20 Prozent beträgt.
\nMehr Infos: FAQ/Ergebnisse", - "content_en": "Delegates
\nLecturers can assign delegates to help them with the preparation of the evaluation.\nYou can assign your own delegates on your profile page.
\nEvaluations from lecturers who set you as a delegate are marked with a label below.
\nMore details: FAQ/Delegates
\n
\nStates of the evaluations
\nYou can only edit evaluations which are in the state \"prepared\". After you approved an evaluation it will automatically change to the state \"editor approved\" and your preparation is finished.
\nMore details: FAQ/States
\n
\nEvaluation Results
\nText answers will be shown to the people who were evaluated and to the people responsible for the course. Voting answers will be published for all users of the platform if at least two people participated in the evaluation. The average grade is calculated if the participation rate is at least 20 percent.
\nMore details: FAQ/Results", - "page": "contributor_index" + "question": 318, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.infotext", - "pk": 3, + "model": "evaluation.textanswer", + "pk": "9748c554-7432-4636-8410-121167cf28df", "fields": { - "title_de": "", - "title_en": "", - "content_de": "", - "content_en": "", - "page": "grades_pages" + "question": 324, + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "97543bfd-b069-43f9-aa8d-09ed59b5aa07", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-28T22:41:00.677", - "is_superuser": false, - "email": "luann.schulz@institution.example.com", - "title": "", - "first_name_given": "Luann", - "first_name_chosen": "", - "last_name": "Schulz", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3508, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9756e14e-be57-4ebf-9fc0-ab0643581009", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-03-04T07:06:22.286", - "is_superuser": false, - "email": "fritz.joe@institution.example.com", - "title": "", - "first_name_given": "Fritz", - "first_name_chosen": "", - "last_name": "Joe", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "97579133-ee68-4377-af5b-4a806adb66c9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-14T15:17:07.088", - "is_superuser": false, - "email": "barabara.whitlow@institution.example.com", - "title": "", - "first_name_given": "Barabara", - "first_name_chosen": "", - "last_name": "Whitlow", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4120, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "977fac8c-5b16-4f14-969f-8f88c2831c1b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-13T01:23:38", - "is_superuser": false, - "email": "chanelle.perales@institution.example.com", - "title": "", - "first_name_given": "Chanelle", - "first_name_chosen": "", - "last_name": "Perales", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": "2012-04-21", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4118, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "97b444eb-5d45-4753-8ec9-04965f01e54c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.138", - "is_superuser": false, - "email": "perry.welsh@external.example.com", - "title": "", - "first_name_given": "Perry", - "first_name_chosen": "", - "last_name": "Welsh", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 884, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "97b47928-e56c-4679-8cdb-77e55339870d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.143", - "is_superuser": false, - "email": "arica.armstead@external.example.com", - "title": "", - "first_name_given": "Arica", - "first_name_chosen": "", - "last_name": "Armstead", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "97c65575-686b-483b-a156-ce5dd6b7becc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.147", - "is_superuser": false, - "email": "justa.ponder@external.example.com", - "title": "", - "first_name_given": "Justa", - "first_name_chosen": "", - "last_name": "Ponder", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "981720fc-384d-46e7-b750-9578c2dcb14f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.157", - "is_superuser": false, - "email": "delma.janes@external.example.com", - "title": "", - "first_name_given": "Delma", - "first_name_chosen": "", - "last_name": "Janes", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9884bd2f-8fdf-42c2-a031-264dbe0a3d0b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.162", - "is_superuser": false, - "email": "eloisa.caraway@external.example.com", - "title": "", - "first_name_given": "Eloisa", - "first_name_chosen": "", - "last_name": "Caraway", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3404, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "989657e6-b418-4d97-97dc-1aa3c44d9456", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-25T10:42:22.650", - "is_superuser": false, - "email": "starla.lyons@institution.example.com", - "title": "", - "first_name_given": "Starla", - "first_name_chosen": "", - "last_name": "Lyons", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 908, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "98a10cff-4c1c-4fa7-a0be-cbce9862beea", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-23T08:25:52.643", - "is_superuser": false, - "email": "willena.hemphill@institution.example.com", - "title": "", - "first_name_given": "Willena", - "first_name_chosen": "", - "last_name": "Hemphill", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "98cfdca3-4224-4b9f-b5fd-eeb039fbf282", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.181", - "is_superuser": false, - "email": "polly.honeycutt@external.example.com", - "title": "", - "first_name_given": "Polly", - "first_name_chosen": "", - "last_name": "Honeycutt", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "98e266f2-c1f4-4aae-a2d6-46c6069bd5df", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-22T13:20:12.139", - "is_superuser": false, - "email": "lyndsey.lattimore@institution.example.com", - "title": "", - "first_name_given": "Lyndsey", - "first_name_chosen": "", - "last_name": "Lattimore", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "98f7ffea-58bf-4538-abb6-567cadd696cb", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-07T15:08:42.080", - "is_superuser": false, - "email": "sergio.reichert@external.example.com", - "title": "", - "first_name_given": "Sergio", - "first_name_chosen": "", - "last_name": "Reichert", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3452, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9942832f-cf64-4f47-9bf4-d50886b94de2", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.200", - "is_superuser": false, - "email": "kristine.dixon@external.example.com", - "title": "", - "first_name_given": "Kristine", - "first_name_chosen": "", - "last_name": "Dixon", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4204, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "99545bc7-44d3-4fc1-907f-252487ac9647", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-12T11:22:24.996", - "is_superuser": false, - "email": "maryetta.hollingsworth@institution.example.com", - "title": "", - "first_name_given": "Maryetta", - "first_name_chosen": "", - "last_name": "Hollingsworth", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 3607, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9954cc1d-e4d0-4d65-81cb-2f6187ef3b54", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-13T09:26:24.179", - "is_superuser": false, - "email": "isaiah.chisholm@institution.example.com", - "title": "", - "first_name_given": "Isaiah", - "first_name_chosen": "", - "last_name": "Chisholm", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "995e1f5e-8dfc-4b3d-9a5d-91bdb83c64ff", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.239", - "is_superuser": false, - "email": "pam.starr@external.example.com", - "title": "", - "first_name_given": "Pam", - "first_name_chosen": "", - "last_name": "Starr", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "996aed0e-1615-4e8d-8b09-e2e09a79844f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T16:07:06.040", - "is_superuser": false, - "email": "lynn.baptiste@institution.example.com", - "title": "", - "first_name_given": "Lynn", - "first_name_chosen": "", - "last_name": "Baptiste", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3354, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "99858e5d-ac94-439f-b62f-30cb722d2600", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-22T16:37:26.406", - "is_superuser": false, - "email": "ozella.hooper@institution.example.com", - "title": "", - "first_name_given": "Ozella", - "first_name_chosen": "", - "last_name": "Hooper", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3354, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "99b67589-f47a-4db8-8664-23d88c777a77", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.262", - "is_superuser": false, - "email": "aleisha.brandon@institution.example.com", - "title": "", - "first_name_given": "Aleisha", - "first_name_chosen": "", - "last_name": "Brandon", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "99e82d6f-ea22-4cf6-ac38-6fd1b225b7ce", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-02T13:46:51.253", - "is_superuser": false, - "email": "latosha.moon@institution.example.com", - "title": "", - "first_name_given": "Latosha", - "first_name_chosen": "", - "last_name": "Moon", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3355, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "99f31c37-fa32-441a-ba1b-6c3c295c5ab5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.281", - "is_superuser": false, - "email": "darline.haase@external.example.com", - "title": "", - "first_name_given": "Darline", - "first_name_chosen": "", - "last_name": "Haase", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 455, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "99f37b32-1dd8-4b15-8e7d-e34101eb62ab", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T20:09:05.105", - "is_superuser": false, - "email": "chanell.ly@institution.example.com", - "title": "", - "first_name_given": "Chanell", - "first_name_chosen": "", - "last_name": "Ly", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "99ffbf2c-d280-4910-a2f4-12391ebd5429", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T23:17:23.356", - "is_superuser": false, - "email": "priscilla.shah@institution.example.com", - "title": "", - "first_name_given": "Priscilla", - "first_name_chosen": "", - "last_name": "Shah", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 440, + "contribution": 4090, + "answer": "Dolor sit amet", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9a0b053b-8dee-49ec-bf3f-9841e1f85dc6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T20:29:13.939", - "is_superuser": false, - "email": "alan.lachance@institution.example.com", - "title": "", - "first_name_given": "Alan", - "first_name_chosen": "", - "last_name": "Lachance", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3508, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9a2ef4af-90e1-43e3-9a0c-c139c2a46ba1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.317", - "is_superuser": false, - "email": "shanda.fairbanks@external.example.com", - "title": "", - "first_name_given": "Shanda", - "first_name_chosen": "", - "last_name": "Fairbanks", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9a548a20-8d5a-44b6-b276-0ba17b4a913d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-30T18:44:43.969", - "is_superuser": false, - "email": "yong.shuler@institution.example.com", - "title": "", - "first_name_given": "Yong", - "first_name_chosen": "", - "last_name": "Shuler", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9a8202a6-b7f5-498d-a202-562d7fbe6b83", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.338", - "is_superuser": false, - "email": "clemencia.lea@institution.example.com", - "title": "", - "first_name_given": "Clemencia", - "first_name_chosen": "", - "last_name": "Lea", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 419, + "contribution": 4038, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9aa3026f-64db-4c68-aee9-ff57863ab2b6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T15:22:45.941", - "is_superuser": false, - "email": "oscar.christie@institution.example.com", - "title": "", - "first_name_given": "Oscar", - "first_name_chosen": "", - "last_name": "Christie", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9b197fd3-3b49-4820-b8ca-55ad54740820", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-28T12:59:20.141", - "is_superuser": false, - "email": "alanna.ali@institution.example.com", - "title": "", - "first_name_given": "Alanna", - "first_name_chosen": "", - "last_name": "Ali", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3776, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9b258db6-6f03-4f2a-b4cc-de77b5008a34", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-02T15:19:01.008", - "is_superuser": false, - "email": "sharee.hoskins@institution.example.com", - "title": "", - "first_name_given": "Sharee", - "first_name_chosen": "", - "last_name": "Hoskins", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3391, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9b289968-9d3d-4658-b95c-9b6ccab59d55", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.367", - "is_superuser": false, - "email": "augusta.byers@institution.example.com", - "title": "", - "first_name_given": "Augusta", - "first_name_chosen": "", - "last_name": "Byers", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3727, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9b42354e-822d-4e07-9beb-959b96140bd2", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.377", - "is_superuser": false, - "email": "celesta.york@external.example.com", - "title": "", - "first_name_given": "Celesta", - "first_name_chosen": "", - "last_name": "York", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 387, + "contribution": 3711, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9b60688d-5bc7-4a8a-84ec-acca787b3a8b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.382", - "is_superuser": false, - "email": "inga.varner@external.example.com", - "title": "", - "first_name_given": "Inga", - "first_name_chosen": "", - "last_name": "Varner", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1734, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9b84b6af-bcb2-493c-acf7-307c3b8dc0c0", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.396", - "is_superuser": false, - "email": "denny.caban@external.example.com", - "title": "", - "first_name_given": "Denny", - "first_name_chosen": "", - "last_name": "Caban", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3685, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9b86fc86-da22-4a64-8283-25518fb2604a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-09T11:17:34.455", - "is_superuser": false, - "email": "maegan.mccorkle@institution.example.com", - "title": "", - "first_name_given": "Maegan", - "first_name_chosen": "", - "last_name": "Mccorkle", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 884, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9b96c230-8a2e-4feb-a802-c46b952cebf8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-02T13:49:42.939", - "is_superuser": false, - "email": "eboni.maldonado@external.example.com", - "title": "", - "first_name_given": "Eboni", - "first_name_chosen": "", - "last_name": "Maldonado", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9b9dfec7-3719-4018-ad07-a2a4bea259a7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.415", - "is_superuser": false, - "email": "malia.cooper@external.example.com", - "title": "", - "first_name_given": "Malia", - "first_name_chosen": "", - "last_name": "Cooper", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1797, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9c1bfd33-6a5f-4a1c-a648-2b195a9411f4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.420", - "is_superuser": false, - "email": "rossie.chaffin@external.example.com", - "title": "", - "first_name_given": "Rossie", - "first_name_chosen": "", - "last_name": "Chaffin", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1228, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9c4db90d-4868-43f2-8030-ac413359e710", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-22T16:36:45.099", - "is_superuser": false, - "email": "marna.leboeuf@institution.example.com", - "title": "", - "first_name_given": "Marna", - "first_name_chosen": "", - "last_name": "Leboeuf", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9c620c61-3b91-4c2e-b15e-65f88fd9b5dc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:15:33.557", - "is_superuser": false, - "email": "adriane.strain@institution.example.com", - "title": "", - "first_name_given": "Adriane", - "first_name_chosen": "", - "last_name": "Strain", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3776, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9c787556-2c2f-46a1-9dcd-f7fcca78f630", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-05T08:28:44.887", - "is_superuser": false, - "email": "jeannie.guffey@institution.example.com", - "title": "", - "first_name_given": "Jeannie", - "first_name_chosen": "", - "last_name": "Guffey", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4203, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9c96f342-5616-4687-b2cf-3361d7f89c87", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-01T11:36:03.558", - "is_superuser": false, - "email": "brian.david@external.example.com", - "title": "", - "first_name_given": "Brian", - "first_name_chosen": "", - "last_name": "David", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3509, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9ca499a4-277c-4a9a-95d4-0f0ab28ab0c1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.475", - "is_superuser": false, - "email": "sylvester.sell@external.example.com", - "title": "", - "first_name_given": "Sylvester", - "first_name_chosen": "", - "last_name": "Sell", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 447, + "contribution": 4114, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9cd8911d-10c4-4ab6-9314-b11707328393", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.485", - "is_superuser": false, - "email": "ramona.horvath@external.example.com", - "title": "", - "first_name_given": "Ramona", - "first_name_chosen": "", - "last_name": "Horvath", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3609, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9ce7fb0f-1b82-4ca9-a525-bac9f469847b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-03-03T12:00:50.914", - "is_superuser": false, - "email": "alexis.sandoval@institution.example.com", - "title": "", - "first_name_given": "Alexis", - "first_name_chosen": "", - "last_name": "Sandoval", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9cfbf419-e6cd-4d04-bcb3-a83141c9f9fa", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T21:29:51.683", - "is_superuser": false, - "email": "shela.lowell@institution.example.com", - "title": "", - "first_name_given": "Shela", - "first_name_chosen": "", - "last_name": "Lowell", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9d1ee6d7-15aa-405d-a2d8-b3226c6f9293", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.521", - "is_superuser": false, - "email": "zandra.gerard@external.example.com", - "title": "", - "first_name_given": "Zandra", - "first_name_chosen": "", - "last_name": "Gerard", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 1638, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9d53b5a0-e63b-43fa-a4dd-a6960956a803", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.526", - "is_superuser": false, - "email": "jodee.treadwell@external.example.com", - "title": "", - "first_name_given": "Jodee", - "first_name_chosen": "", - "last_name": "Treadwell", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 912, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9d5c01d1-c3a5-439a-86a4-9236decedf73", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.540", - "is_superuser": false, - "email": "micheal.woodbury@external.example.com", - "title": "", - "first_name_given": "Micheal", - "first_name_chosen": "", - "last_name": "Woodbury", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 430, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9d9e0451-0529-4cc8-854f-4bc36d008a9a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-02T15:42:43.850", - "is_superuser": false, - "email": "evelin.reno@external.example.com", - "title": "", - "first_name_given": "Evelin", - "first_name_chosen": "", - "last_name": "Reno", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9dd29a7b-eea2-428e-88ee-e36303d8c42c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.555", - "is_superuser": false, - "email": "nolan.pope@external.example.com", - "title": "", - "first_name_given": "Nolan", - "first_name_chosen": "", - "last_name": "Pope", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9e2212b1-2c61-4437-8669-a62d2c261f0b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.560", - "is_superuser": false, - "email": "audry.craddock@external.example.com", - "title": "", - "first_name_given": "Audry", - "first_name_chosen": "", - "last_name": "Craddock", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3859, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9e6c110f-95bf-444b-93c0-35fe543ca599", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-26T11:55:18.316", - "is_superuser": false, - "email": "viola.barringer@institution.example.com", - "title": "Dr.", - "first_name_given": "Viola", - "first_name_chosen": "", - "last_name": "Barringer", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9ec2e335-ad39-4826-a213-869fb29dcedf", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.825", - "is_superuser": false, - "email": "roxy.sager@external.example.com", - "title": "", - "first_name_given": "Roxy", - "first_name_chosen": "", - "last_name": "Sager", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 1154, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9ef75136-1659-43e4-a2ec-515952ebac32", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-24T00:08:14.535", - "is_superuser": false, - "email": "sindy.boisvert@institution.example.com", - "title": "", - "first_name_given": "Sindy", - "first_name_chosen": "", - "last_name": "Boisvert", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 1634, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9f0ecc0f-7d95-46f4-ad2f-945fb80663d5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.848", - "is_superuser": false, - "email": "dante.krug@external.example.com", - "title": "", - "first_name_given": "Dante", - "first_name_chosen": "", - "last_name": "Krug", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9f14b154-6b2d-45c1-af1a-75fb2520ded2", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.858", - "is_superuser": false, - "email": "lourie.apodaca@external.example.com", - "title": "", - "first_name_given": "Lourie", - "first_name_chosen": "", - "last_name": "Apodaca", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9f55a6e1-dab2-4181-acb5-149992046ccf", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T21:33:11.053", - "is_superuser": false, - "email": "christie.savage@external.example.com", - "title": "", - "first_name_given": "Christie", - "first_name_chosen": "", - "last_name": "Savage", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4120, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "9fb175a6-fa8a-48b7-87b7-a948e2c32ab5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.869", - "is_superuser": false, - "email": "franchesca.russo@external.example.com", - "title": "", - "first_name_given": "Franchesca", - "first_name_chosen": "", - "last_name": "Russo", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1663, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a00e9a79-e9f9-424b-bfbe-07a4d79e2051", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.888", - "is_superuser": false, - "email": "catherina.andrade@external.example.com", - "title": "", - "first_name_given": "Catherina", - "first_name_chosen": "", - "last_name": "Andrade", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3508, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a01de392-9ed3-40bd-9cb3-1a9ae2c7ef4c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.897", - "is_superuser": false, - "email": "twanna.kent@external.example.com", - "title": "", - "first_name_given": "Twanna", - "first_name_chosen": "", - "last_name": "Kent", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3422, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a02ed02a-39cf-453c-9ba0-19c53b1f3190", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.901", - "is_superuser": false, - "email": "charity.trombley@external.example.com", - "title": "", - "first_name_given": "Charity", - "first_name_chosen": "", - "last_name": "Trombley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 1201, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a05d5ae7-1125-46f2-9594-db62e18f6cbb", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.911", - "is_superuser": false, - "email": "noble.hope@external.example.com", - "title": "", - "first_name_given": "Noble", - "first_name_chosen": "", - "last_name": "Hope", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 4094, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a075a987-7b8a-4bbc-9059-b1c362f4840e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-07T14:28:32.793", - "is_superuser": false, - "email": "hugh.runyon@institution.example.com", - "title": "Dr.-Ing.", - "first_name_given": "Hugh", - "first_name_chosen": "", - "last_name": "Runyon", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3552, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a0a440be-5ac8-4c0c-9492-a98c7fc37c93", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-08T12:55:29.453", - "is_superuser": false, - "email": "diane.carlton@institution.example.com", - "title": "", - "first_name_given": "Diane", - "first_name_chosen": "", - "last_name": "Carlton", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a0be81b4-9abb-42d7-ad4c-3d04373af3e0", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:02.340", - "is_superuser": false, - "email": "octavio.weatherly@external.example.com", - "title": "", - "first_name_given": "Octavio", - "first_name_chosen": "", - "last_name": "Weatherly", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3679, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a0f0f976-60df-418a-a728-7f39409b570d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:02.933", - "is_superuser": false, - "email": "christel.skinner@external.example.com", - "title": "", - "first_name_given": "Christel", - "first_name_chosen": "", - "last_name": "Skinner", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4100, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a11e7d0b-682f-494f-a14b-4f4c2612f024", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-02T13:51:03.991", - "is_superuser": false, - "email": "elena.kline@institution.example.com", - "title": "Prof. Dr.", - "first_name_given": "Elena", - "first_name_chosen": "", - "last_name": "Kline", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "val.crocker@external.example.com" - ], - [ - "hue.fontenot@external.example.com" - ], - [ - "willena.hemphill@institution.example.com" - ], - [ - "sergio.reichert@external.example.com" - ] - ], - "cc_users": [] + "question": 364, + "contribution": 1635, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a172aa6f-f363-49c5-9397-69c7e9742ec7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.313", - "is_superuser": false, - "email": "farrah.rico@external.example.com", - "title": "", - "first_name_given": "Farrah", - "first_name_chosen": "", - "last_name": "Rico", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4129, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a1b3b23d-40bf-4d13-b093-199a71391955", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.321", - "is_superuser": false, - "email": "mercedes.berry@external.example.com", - "title": "", - "first_name_given": "Mercedes", - "first_name_chosen": "", - "last_name": "Berry", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4101, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a224e195-db1e-4077-b75c-7e12d1672b2e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-08T14:50:24.419", - "is_superuser": false, - "email": "orval.cheung@external.example.com", - "title": "", - "first_name_given": "Orval", - "first_name_chosen": "", - "last_name": "Cheung", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a22a31ee-5d1b-41f8-b235-814f2ff1d48c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-11-02T10:53:23.655", - "is_superuser": false, - "email": "cherry.doughty@institution.example.com", - "title": "", - "first_name_given": "Cherry", - "first_name_chosen": "", - "last_name": "Doughty", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a22d28ee-6c77-48f4-947b-e951dacce701", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T13:03:18.412", - "is_superuser": false, - "email": "beth.carlton@institution.example.com", - "title": "", - "first_name_given": "Beth", - "first_name_chosen": "", - "last_name": "Carlton", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a3228486-8a98-442f-a48f-b697674940d3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.372", - "is_superuser": false, - "email": "marge.gilson@external.example.com", - "title": "", - "first_name_given": "Marge", - "first_name_chosen": "", - "last_name": "Gilson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a3529ea4-dbf1-457f-9a78-e9b7c68acc04", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.386", - "is_superuser": false, - "email": "drucilla.tillery@external.example.com", - "title": "", - "first_name_given": "Drucilla", - "first_name_chosen": "", - "last_name": "Tillery", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a3afa8ec-cd64-4e85-a8c4-9bd8566ef5d4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.396", - "is_superuser": false, - "email": "eliza.callahan@external.example.com", - "title": "", - "first_name_given": "Eliza", - "first_name_chosen": "", - "last_name": "Callahan", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3434, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a3b68d0c-a452-40f5-a02c-da3ad3ee3e85", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.400", - "is_superuser": false, - "email": "clarita.healy@external.example.com", - "title": "", - "first_name_given": "Clarita", - "first_name_chosen": "", - "last_name": "Healy", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 439, + "contribution": 4140, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a3c52436-ed19-4d00-8984-6f2eb4c0e393", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.417", - "is_superuser": false, - "email": "verla.krueger@external.example.com", - "title": "", - "first_name_given": "Verla", - "first_name_chosen": "", - "last_name": "Krueger", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a3c52991-e56e-4c55-81e1-50dfe95a4eab", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.421", - "is_superuser": false, - "email": "lakita.palumbo@external.example.com", - "title": "", - "first_name_given": "Lakita", - "first_name_chosen": "", - "last_name": "Palumbo", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a4411771-7589-4631-86cd-fe0e2cdb1595", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.436", - "is_superuser": false, - "email": "elfrieda.brigham@external.example.com", - "title": "", - "first_name_given": "Elfrieda", - "first_name_chosen": "", - "last_name": "Brigham", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a453b750-215e-433b-ae15-ef973997f956", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.440", - "is_superuser": false, - "email": "roslyn.edwards@external.example.com", - "title": "", - "first_name_given": "Roslyn", - "first_name_chosen": "", - "last_name": "Edwards", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 836, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a4b42893-6b9d-4c23-86a5-27575cb2d25d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-25T15:41:02.977", - "is_superuser": false, - "email": "michell.dabbs@institution.example.com", - "title": "", - "first_name_given": "Michell", - "first_name_chosen": "", - "last_name": "Dabbs", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4120, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a4caa8ff-9c8b-44a9-9d0a-af109ca8c399", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.471", - "is_superuser": false, - "email": "joaquina.shackelford@external.example.com", - "title": "", - "first_name_given": "Joaquina", - "first_name_chosen": "", - "last_name": "Shackelford", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4100, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a4e9a25e-b2ce-472d-8dde-69c6c3ae1f63", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.476", - "is_superuser": false, - "email": "arlena.bickford@external.example.com", - "title": "", - "first_name_given": "Arlena", - "first_name_chosen": "", - "last_name": "Bickford", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a4ebb5df-a1ce-4fc8-a82d-8a7ea54a4a36", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-24T14:51:25.860", - "is_superuser": false, - "email": "hue.fontenot@external.example.com", - "title": "", - "first_name_given": "Hue", - "first_name_chosen": "", - "last_name": "Fontenot", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a4ec786a-c5fa-4c46-bce0-0715cb4ccada", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.484", - "is_superuser": false, - "email": "vennie.neil@external.example.com", - "title": "", - "first_name_given": "Vennie", - "first_name_chosen": "", - "last_name": "Neil", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a4f40e2b-8122-4524-a48c-f7294a5d0804", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T09:05:09.526", - "is_superuser": false, - "email": "chieko.lehman@institution.example.com", - "title": "Prof. Dr.", - "first_name_given": "Chieko", - "first_name_chosen": "", - "last_name": "Lehman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 430, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a5275455-221f-425f-89a0-49c46bd35aa3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-10T15:15:03.398", - "is_superuser": false, - "email": "lois.seibert@institution.example.com", - "title": "", - "first_name_given": "Lois", - "first_name_chosen": "", - "last_name": "Seibert", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a5d5697f-0f3b-4a66-991b-f4cc1c8cd090", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-16T14:08:53.821", - "is_superuser": false, - "email": "lindsy.clement@external.example.com", - "title": "", - "first_name_given": "Lindsy", - "first_name_chosen": "", - "last_name": "Clement", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4120, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a5da2d38-c7c6-4118-95c8-4c31fe38341f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.101", - "is_superuser": false, - "email": "dan.jack@external.example.com", - "title": "", - "first_name_given": "Dan", - "first_name_chosen": "", - "last_name": "Jack", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3723, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a620ba24-913c-4dd7-b302-6e36a6b228c1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-08T08:44:34.568", - "is_superuser": false, - "email": "denisha.chance@institution.example.com", - "title": "", - "first_name_given": "Denisha", - "first_name_chosen": "", - "last_name": "Chance", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1217, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a6381183-5429-4158-8c49-cdd71eb75950", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.110", - "is_superuser": false, - "email": "kraig.mcfarlane@external.example.com", - "title": "", - "first_name_given": "Kraig", - "first_name_chosen": "", - "last_name": "Mcfarlane", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 4072, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a679cd88-a24d-447d-90e4-5fee1d0128b0", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-18T16:39:13.623", - "is_superuser": false, - "email": "katherin.vandiver@institution.example.com", - "title": "", - "first_name_given": "Katherin", - "first_name_chosen": "", - "last_name": "Vandiver", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4116, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a67b70c8-81fc-4d32-9766-ddb44f5ccff9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.229", - "is_superuser": false, - "email": "ranae.fry@external.example.com", - "title": "", - "first_name_given": "Ranae", - "first_name_chosen": "", - "last_name": "Fry", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 885, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a67d4d98-177f-4eda-ad35-109a92d5e74a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-05T09:17:42.420", - "is_superuser": false, - "email": "errol.simon@institution.example.com", - "title": "", - "first_name_given": "Errol", - "first_name_chosen": "", - "last_name": "Simon", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a6cbcea4-2005-4280-b015-f5d4d7302379", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-12-17T13:59:04.698", - "is_superuser": false, - "email": "oren.hauser@external.example.com", - "title": "", - "first_name_given": "Oren", - "first_name_chosen": "", - "last_name": "Hauser", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a6e43600-1438-4ee4-a035-182f1261eb89", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:17.058", - "is_superuser": false, - "email": "katelynn.bowers@external.example.com", - "title": "", - "first_name_given": "Katelynn", - "first_name_chosen": "", - "last_name": "Bowers", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1287, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a6ebbe96-8537-4915-adf6-356f22d057ad", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-16T14:09:00.405", - "is_superuser": false, - "email": "randolph.patrick@institution.example.com", - "title": "", - "first_name_given": "Randolph", - "first_name_chosen": "", - "last_name": "Patrick", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3551, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a7095a93-d1c8-4599-86e6-0c450c192f27", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:17.091", - "is_superuser": false, - "email": "flora.ly@external.example.com", - "title": "", - "first_name_given": "Flora", - "first_name_chosen": "", - "last_name": "Ly", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a7428cf6-1dba-4193-8a6f-ad8002b5dd29", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:17.098", - "is_superuser": false, - "email": "genaro.durbin@external.example.com", - "title": "", - "first_name_given": "Genaro", - "first_name_chosen": "", - "last_name": "Durbin", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 858, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a751520a-c8e7-473d-a55b-1ce480a43ac0", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-14T14:18:59.405", - "is_superuser": false, - "email": "lizabeth.steward@institution.example.com", - "title": "Prof. Dr.", - "first_name_given": "Lizabeth", - "first_name_chosen": "", - "last_name": "Steward", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "denisha.chance@institution.example.com" - ] - ], - "cc_users": [] + "question": 342, + "contribution": 4072, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a78e2e5f-85ae-4a81-bad4-614617dcd61f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:22.769", - "is_superuser": false, - "email": "jarvis.woodbury@external.example.com", - "title": "", - "first_name_given": "Jarvis", - "first_name_chosen": "", - "last_name": "Woodbury", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a7a46dd5-7eb9-4045-8fa5-7463599be222", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-23T11:31:00.867", - "is_superuser": false, - "email": "ellsworth.thornburg@institution.example.com", - "title": "Dr.", - "first_name_given": "Ellsworth", - "first_name_chosen": "", - "last_name": "Thornburg", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "harriet.rushing@institution.example.com" - ] - ], - "cc_users": [] + "question": 330, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a7a91b88-c343-4c7b-82e5-e66fa7daf8d4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T07:24:33.096", - "is_superuser": false, - "email": "gabriela.carlisle@institution.example.com", - "title": "", - "first_name_given": "Gabriela", - "first_name_chosen": "", - "last_name": "Carlisle", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4117, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a7c1a288-82d9-43bb-8060-ccac6127c1c2", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:23.106", - "is_superuser": false, - "email": "fleta.hirsch@external.example.com", - "title": "", - "first_name_given": "Fleta", - "first_name_chosen": "", - "last_name": "Hirsch", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a7cb38a7-e8bf-42ac-af37-e967ca9478f3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:23.406", - "is_superuser": false, - "email": "ardath.estrella@external.example.com", - "title": "Dr.", - "first_name_given": "Ardath", - "first_name_chosen": "", - "last_name": "Estrella", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a7d5c787-271f-4f25-9ba0-f0deca03dd25", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:27.512", - "is_superuser": false, - "email": "annice.villalobos@external.example.com", - "title": "", - "first_name_given": "Annice", - "first_name_chosen": "", - "last_name": "Villalobos", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 822, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a7ffe3f1-334a-45ba-8c5d-0065b6520270", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T09:41:52.662", - "is_superuser": false, - "email": "tanna.worsham@external.example.com", - "title": "", - "first_name_given": "Tanna", - "first_name_chosen": "", - "last_name": "Worsham", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a8290ea8-c9f1-41e6-8587-f6b04b743799", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:27.558", - "is_superuser": false, - "email": "wilmer.mcmillian@external.example.com", - "title": "", - "first_name_given": "Wilmer", - "first_name_chosen": "", - "last_name": "Mcmillian", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3751, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a82dcd17-0f64-4cab-97aa-a57b0ad9a3c6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:27.674", - "is_superuser": false, - "email": "mitzi.sparkman@external.example.com", - "title": "", - "first_name_given": "Mitzi", - "first_name_chosen": "", - "last_name": "Sparkman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1658, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a83a4deb-2772-4ec4-9ef0-ebb41e3281b8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T09:25:26.263", - "is_superuser": false, - "email": "evie.martz@institution.example.com", - "title": "Prof. Dr.", - "first_name_given": "Evie", - "first_name_chosen": "", - "last_name": "Martz", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "tonita.gallardo@institution.example.com" - ], - [ - "elias.troy@institution.example.com" - ] - ], - "cc_users": [] + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a88569ad-743b-42dd-adac-659a693bdb8d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:29.850", - "is_superuser": false, - "email": "deborah.ives@external.example.com", - "title": "", - "first_name_given": "Deborah", - "first_name_chosen": "", - "last_name": "Ives", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4028, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a88c92c5-02b1-47f4-9654-4074e17e92ee", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:29.856", - "is_superuser": false, - "email": "rea.parkinson@external.example.com", - "title": "", - "first_name_given": "Rea", - "first_name_chosen": "", - "last_name": "Parkinson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4177, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a8abb798-1160-4ac9-9c86-a691af40c5fe", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-05-03T18:45:59.229", - "is_superuser": false, - "email": "ebony.murray@institution.example.com", - "title": "", - "first_name_given": "Ebony", - "first_name_chosen": "", - "last_name": "Murray", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a8b0ff27-35bd-4ab0-a700-bd5c84ecfc0e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-23T09:38:18.308", - "is_superuser": false, - "email": "lahoma.gage@institution.example.com", - "title": "Prof. Dr.", - "first_name_given": "Lahoma", - "first_name_chosen": "", - "last_name": "Gage", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "laurence.tipton@institution.example.com" - ] - ], - "cc_users": [ - [ - "katheryn.greiner@institution.example.com" - ] - ] + "question": 364, + "contribution": 1785, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a8b9b38a-4f0c-40c7-b784-4b61802b9097", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T20:53:56.568", - "is_superuser": false, - "email": "ingeborg.herring@institution.example.com", - "title": "Prof. Dr.", - "first_name_given": "Ingeborg", - "first_name_chosen": "", - "last_name": "Herring", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "britteny.easley@institution.example.com" - ] - ], - "cc_users": [] + "question": 364, + "contribution": 4153, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a8c24b43-983d-4011-ae63-cbb1e1a02840", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:35.883", - "is_superuser": false, - "email": "justina.huffman@external.example.com", - "title": "Dr.", - "first_name_given": "Justina", - "first_name_chosen": "", - "last_name": "Huffman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a8c99172-b441-44ed-8cca-3bc41ca1e3b5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:36.305", - "is_superuser": false, - "email": "penni.tremblay@external.example.com", - "title": "", - "first_name_given": "Penni", - "first_name_chosen": "", - "last_name": "Tremblay", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a8d13d6d-7854-4792-89b9-b3bd972d43c9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:36.310", - "is_superuser": false, - "email": "yen.booker@external.example.com", - "title": "", - "first_name_given": "Yen", - "first_name_chosen": "", - "last_name": "Booker", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3373, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a8e04557-002f-4eea-a5f6-a30bfc54153e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:36.352", - "is_superuser": false, - "email": "karl.tuttle@external.example.com", - "title": "Dr.", - "first_name_given": "Karl", - "first_name_chosen": "", - "last_name": "Tuttle", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3862, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a8f93222-ca16-4e29-9b10-65d31fb5f609", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-13T15:15:20.699", - "is_superuser": false, - "email": "sunni.hollingsworth@institution.example.com", - "title": "Dr.", - "first_name_given": "Sunni", - "first_name_chosen": "", - "last_name": "Hollingsworth", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ] - ], - "cc_users": [] + "question": 330, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a9104ca8-4dad-4828-931e-d8b3d97ffc17", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-02T10:30:52.845", - "is_superuser": false, - "email": "kindra.hancock@external.example.com", - "title": "Prof.-Dr.", - "first_name_given": "Kindra", - "first_name_chosen": "", - "last_name": "Hancock", - "language": "", - "is_proxy_user": false, - "login_key": 841793788, - "login_key_valid_until": "2013-09-30", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "tracie.shephard@external.example.com" - ], - [ - "lakisha.tisdale@external.example.com" - ] - ], - "cc_users": [] + "question": 342, + "contribution": 832, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a922e383-c2ed-4526-a0b7-18b3e1705bd1", "fields": { - "password": "pbkdf2_sha256$20000$WYMx4NnprgNS$D7foSqb66b1TSi9a1CZRHA2MNXyeSRT/nmcDGXEGvkk=", - "last_login": "2015-11-08T12:21:35.100", - "is_superuser": false, - "email": "responsible@institution.example.com", - "title": "Prof. Dr.", - "first_name_given": "", - "first_name_chosen": "", - "last_name": "responsible", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "delegate@institution.example.com" - ], - [ - "kyra.hart@institution.example.com" - ] - ], - "cc_users": [] + "question": 364, + "contribution": 1807, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a9b6585f-7a84-4597-bfd7-11fc31185ec9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:05.685", - "is_superuser": false, - "email": "jana.faust@external.example.com", - "title": "", - "first_name_given": "Jana", - "first_name_chosen": "", - "last_name": "Faust", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 908, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a9d39b29-618b-4b8b-b521-c365eb026259", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:07.988", - "is_superuser": false, - "email": "virgil.flanagan@external.example.com", - "title": "", - "first_name_given": "Virgil", - "first_name_chosen": "", - "last_name": "Flanagan", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1217, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a9ebf674-9e85-4e69-9a0d-90fd13ed0695", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:07.996", - "is_superuser": false, - "email": "karan.desimone@external.example.com", - "title": "", - "first_name_given": "Karan", - "first_name_chosen": "", - "last_name": "Desimone", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3895, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "a9fe23c3-010d-4d87-9e66-80a95397a000", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-21T15:59:05.727", - "is_superuser": false, - "email": "karine.prater@institution.example.com", - "title": "", - "first_name_given": "Karine", - "first_name_chosen": "", - "last_name": "Prater", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4084, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "aa447251-cfa3-4f44-a9f9-356d96b596bb", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:08.015", - "is_superuser": false, - "email": "daisey.isaacs@external.example.com", - "title": "", - "first_name_given": "Daisey", - "first_name_chosen": "", - "last_name": "Isaacs", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 429, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "aa505ff4-975b-44b3-87c9-62377148bd97", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:08.024", - "is_superuser": false, - "email": "domonique.mayfield@external.example.com", - "title": "", - "first_name_given": "Domonique", - "first_name_chosen": "", - "last_name": "Mayfield", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "aaa99a41-fa38-48bf-aa2a-93c7710ba837", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-16T11:54:45.439", - "is_superuser": false, - "email": "janna.langlois@institution.example.com", - "title": "", - "first_name_given": "Janna", - "first_name_chosen": "", - "last_name": "Langlois", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4100, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "aab3f3f9-4857-4a69-839d-46d71d29963c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:08.037", - "is_superuser": false, - "email": "jospeh.nagle@external.example.com", - "title": "", - "first_name_given": "Jospeh", - "first_name_chosen": "", - "last_name": "Nagle", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1639, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ab1dce2f-f094-40a4-bf29-2d0e5a0a3ef4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:08.042", - "is_superuser": false, - "email": "corliss.isaacson@external.example.com", - "title": "", - "first_name_given": "Corliss", - "first_name_chosen": "", - "last_name": "Isaacson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3712, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ab5e83f1-e06e-4554-82cc-fd269260c3c7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.026", - "is_superuser": false, - "email": "sunny.manson@external.example.com", - "title": "", - "first_name_given": "Sunny", - "first_name_chosen": "", - "last_name": "Manson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3519, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ab63ee98-dddd-4a26-ac57-5ea9bf185469", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:22:35.918", - "is_superuser": false, - "email": "portia.hoffman@institution.example.com", - "title": "Dr.-Ing.", - "first_name_given": "Portia", - "first_name_chosen": "", - "last_name": "Hoffman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3462, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ab887621-bf03-4a93-9d3f-6ddb090ff77b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.052", - "is_superuser": false, - "email": "ema.clevenger@external.example.com", - "title": "", - "first_name_given": "Ema", - "first_name_chosen": "", - "last_name": "Clevenger", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "abd72bd8-89a4-4c11-acb8-796244b103d3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.058", - "is_superuser": false, - "email": "erlene.pinkston@external.example.com", - "title": "", - "first_name_given": "Erlene", - "first_name_chosen": "", - "last_name": "Pinkston", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 1680, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "abf42822-7824-4db1-af85-f5d4b5150a99", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-19T13:57:42.796", - "is_superuser": false, - "email": "darlena.holliman@external.example.com", - "title": "Hr.", - "first_name_given": "Darlena", - "first_name_chosen": "", - "last_name": "Holliman", - "language": "", - "is_proxy_user": false, - "login_key": 1551612459, - "login_key_valid_until": "2013-09-17", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ], - "cc_users": [] + "question": 330, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "abf6b635-cb17-422d-824e-cac102e80a30", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.147", - "is_superuser": false, - "email": "lacy.rudd@external.example.com", - "title": "", - "first_name_given": "Lacy", - "first_name_chosen": "", - "last_name": "Rudd", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1202, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "abfd3a3b-4d69-485f-8784-d45ca2b0cc83", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T19:17:21.456", - "is_superuser": false, - "email": "herb.wicks@institution.example.com", - "title": "", - "first_name_given": "Herb", - "first_name_chosen": "", - "last_name": "Wicks", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ac0b2f56-4ca2-417e-9598-f7eb9d875836", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.673", - "is_superuser": false, - "email": "tarah.steed@external.example.com", - "title": "", - "first_name_given": "Tarah", - "first_name_chosen": "", - "last_name": "Steed", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4139, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ac99a86c-2cc5-4917-aaa5-c79b6a8df22f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:11.045", - "is_superuser": false, - "email": "trudie.clawson@external.example.com", - "title": "", - "first_name_given": "Trudie", - "first_name_chosen": "", - "last_name": "Clawson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1710, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "acc03518-b833-48ce-8ae3-ecb57404788f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:11.292", - "is_superuser": false, - "email": "gavin.clemmons@external.example.com", - "title": "Prof. Dr.", - "first_name_given": "Gavin", - "first_name_chosen": "", - "last_name": "Clemmons", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "acc342a1-060b-4ed9-a98b-58f7403df9fb", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:13.558", - "is_superuser": false, - "email": "ruthie.hermann@external.example.com", - "title": "", - "first_name_given": "Ruthie", - "first_name_chosen": "", - "last_name": "Hermann", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 415, + "contribution": 3974, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "acd3e68f-e3b1-4a05-a277-cadbaf800914", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-11T10:45:55.678", - "is_superuser": false, - "email": "royce.vann@external.example.com", - "title": "", - "first_name_given": "Royce", - "first_name_chosen": "", - "last_name": "Vann", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 908, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ad365eea-5585-41eb-ae76-03e47173d240", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:14.067", - "is_superuser": false, - "email": "charity.leonard@institution.example.com", - "title": "Prof. Dr.", - "first_name_given": "Charity", - "first_name_chosen": "", - "last_name": "Leonard", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "harriet.rushing@institution.example.com" - ] - ], - "cc_users": [] + "question": 330, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "adb34b9b-7503-480d-bae0-30e23db8e0e1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:14.714", - "is_superuser": false, - "email": "nadia.robison@external.example.com", - "title": "", - "first_name_given": "Nadia", - "first_name_chosen": "", - "last_name": "Robison", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1799, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "adbf1c69-1b31-4a6e-a17c-22fd46e3dd23", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T16:59:12.204", - "is_superuser": false, - "email": "amos.benoit@institution.example.com", - "title": "Prof. Dr.-Ing.", - "first_name_given": "Amos", - "first_name_chosen": "", - "last_name": "Benoit", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ], - "cc_users": [] + "question": 330, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "adcba739-4849-4657-8075-8a37127432aa", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:15.916", - "is_superuser": false, - "email": "michele.cano@external.example.com", - "title": "", - "first_name_given": "Michele", - "first_name_chosen": "", - "last_name": "Cano", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3354, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ae001141-925d-46de-aa63-e482d7ea4042", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:17.316", - "is_superuser": false, - "email": "oscar.erickson@external.example.com", - "title": "", - "first_name_given": "Oscar", - "first_name_chosen": "", - "last_name": "Erickson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 1852, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ae0e1be4-9a62-49d6-995c-f62d72b8e0a8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-24T12:36:26.705", - "is_superuser": false, - "email": "laurence.tipton@institution.example.com", - "title": "", - "first_name_given": "Laurence", - "first_name_chosen": "", - "last_name": "Tipton", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ae113cf0-1d70-4f80-add4-0ac957d2ad98", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:46.857", - "is_superuser": false, - "email": "devorah.biddle@external.example.com", - "title": "", - "first_name_given": "Devorah", - "first_name_chosen": "", - "last_name": "Biddle", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ae42e433-ff77-4b41-a475-0ec40e3a3bec", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:46.864", - "is_superuser": false, - "email": "li.hargrove@external.example.com", - "title": "", - "first_name_given": "Li", - "first_name_chosen": "", - "last_name": "Hargrove", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 908, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ae587d35-5b94-480b-b1de-f70b01637679", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-05-07T18:42:15.184", - "is_superuser": false, - "email": "jolene.squires@institution.example.com", - "title": "", - "first_name_given": "Jolene", - "first_name_chosen": "", - "last_name": "Squires", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3454, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ae5a5992-7021-4230-8a35-4d30f28d46cf", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:46.874", - "is_superuser": false, - "email": "cori.luttrell@external.example.com", - "title": "", - "first_name_given": "Cori", - "first_name_chosen": "", - "last_name": "Luttrell", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4095, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "aeb892e8-28b8-4f11-846b-538513c9c81b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:46.950", - "is_superuser": false, - "email": "siu.rhoads@external.example.com", - "title": "", - "first_name_given": "Siu", - "first_name_chosen": "", - "last_name": "Rhoads", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 1660, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "aec49c1e-bbb5-4442-8a30-b2dc52d44776", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-02T17:52:02.729", - "is_superuser": false, - "email": "junie.hicks@institution.example.com", - "title": "", - "first_name_given": "Junie", - "first_name_chosen": "", - "last_name": "Hicks", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4084, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "af36c5b2-2a8e-4430-87d6-62d83370e497", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.847", - "is_superuser": false, - "email": "clara.taber@external.example.com", - "title": "", - "first_name_given": "Clara", - "first_name_chosen": "", - "last_name": "Taber", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4100, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "af6cd25b-9f7e-480d-9631-c9e8aa2f3617", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T18:29:04.997", - "is_superuser": false, - "email": "joette.lindley@institution.example.com", - "title": "", - "first_name_given": "Joette", - "first_name_chosen": "", - "last_name": "Lindley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3519, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "afb2409f-f45d-497a-bb6e-4bdd7f21bd3a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.859", - "is_superuser": false, - "email": "jennette.gracia@external.example.com", - "title": "", - "first_name_given": "Jennette", - "first_name_chosen": "", - "last_name": "Gracia", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3354, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "afbbb699-9492-4d43-b4ce-b9f6c0edc73b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.869", - "is_superuser": false, - "email": "rosamaria.billups@external.example.com", - "title": "", - "first_name_given": "Rosamaria", - "first_name_chosen": "", - "last_name": "Billups", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "afd5c0ef-561d-4b4e-ad1d-302daba839d3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:48.847", - "is_superuser": false, - "email": "brandee.dial@external.example.com", - "title": "", - "first_name_given": "Brandee", - "first_name_chosen": "", - "last_name": "Dial", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 3785, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "aff5aab0-e22e-414d-b973-c4f174f95c1f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:48.936", - "is_superuser": false, - "email": "steffanie.barnette@external.example.com", - "title": "Dr.", - "first_name_given": "Steffanie", - "first_name_chosen": "", - "last_name": "Barnette", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b02159d6-ba65-4b3f-91db-48fcf5d4a1c2", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:49.845", - "is_superuser": false, - "email": "keiko.hadden@external.example.com", - "title": "", - "first_name_given": "Keiko", - "first_name_chosen": "", - "last_name": "Hadden", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 895, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b02df147-9d48-42d0-a073-0bab4e9f47da", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:50.704", - "is_superuser": false, - "email": "deb.lance@external.example.com", - "title": "", - "first_name_given": "Deb", - "first_name_chosen": "", - "last_name": "Lance", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b02f8388-0f46-4af8-936f-27974783eefc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:52.181", - "is_superuser": false, - "email": "rosy.mcgee@external.example.com", - "title": "", - "first_name_given": "Rosy", - "first_name_chosen": "", - "last_name": "Mcgee", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 912, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b03a068c-6c6f-4f30-8989-da9ad9986fe6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:54.326", - "is_superuser": false, - "email": "aileen.gonsalves@external.example.com", - "title": "", - "first_name_given": "Aileen", - "first_name_chosen": "", - "last_name": "Gonsalves", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b04e3d89-b3df-41ea-addb-e85e522ce9f4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:55.890", - "is_superuser": false, - "email": "neville.saddler@external.example.com", - "title": "Prof. Dr.", - "first_name_given": "Neville", - "first_name_chosen": "", - "last_name": "Saddler", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3486, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b05fe10a-66db-40b2-af25-50ea3400e025", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:56.443", - "is_superuser": false, - "email": "damaris.lemke@external.example.com", - "title": "", - "first_name_given": "Damaris", - "first_name_chosen": "", - "last_name": "Lemke", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 387, + "contribution": 3711, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b061fe29-7c03-4f07-9f80-e62d201cf054", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:00.392", - "is_superuser": false, - "email": "yetta.crumpton@external.example.com", - "title": "", - "first_name_given": "Yetta", - "first_name_chosen": "", - "last_name": "Crumpton", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b07931b8-cb25-4d70-af46-e94f759f4668", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:00.438", - "is_superuser": false, - "email": "dominga.leblanc@external.example.com", - "title": "", - "first_name_given": "Dominga", - "first_name_chosen": "", - "last_name": "Leblanc", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b08c7083-75ef-4121-92d7-1f5ce2be43d6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:00.691", - "is_superuser": false, - "email": "cherish.henke@external.example.com", - "title": "", - "first_name_given": "Cherish", - "first_name_chosen": "", - "last_name": "Henke", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1884, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b0ccfd3f-aa48-4af6-ad47-6d3e4d6f65f4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-10-01T09:33:06.080", - "is_superuser": false, - "email": "jina.cushman@institution.example.com", - "title": "", - "first_name_given": "Jina", - "first_name_chosen": "", - "last_name": "Cushman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 365, + "contribution": 862, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b111ae90-b9e4-466e-8c0f-c33e4883d8cc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:03.311", - "is_superuser": false, - "email": "cody.boisvert@external.example.com", - "title": "", - "first_name_given": "Cody", - "first_name_chosen": "", - "last_name": "Boisvert", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3727, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b129f38d-9f45-475c-a07b-c986967d1ff9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:07.646", - "is_superuser": false, - "email": "karole.mata@external.example.com", - "title": "", - "first_name_given": "Karole", - "first_name_chosen": "", - "last_name": "Mata", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 822, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b136a9e8-e82d-4200-83e8-102724e7a546", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-23T10:52:15.011", - "is_superuser": false, - "email": "hipolito.morse@institution.example.com", - "title": "", - "first_name_given": "Hipolito", - "first_name_chosen": "", - "last_name": "Morse", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4261, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b16bb590-6bfc-4ac4-9f86-0cfd0f2c9638", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-02T13:45:22.575", - "is_superuser": false, - "email": "al.jean@institution.example.com", - "title": "", - "first_name_given": "Al", - "first_name_chosen": "", - "last_name": "Jean", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": "2012-10-01", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4047, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b16ed6a0-34cf-425a-a564-726f69b8e265", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:26.165", - "is_superuser": false, - "email": "rosette.judkins@external.example.com", - "title": "", - "first_name_given": "Rosette", - "first_name_chosen": "", - "last_name": "Judkins", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b17caa13-b54f-4dfb-b7a0-86f227dd6f3e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:32.926", - "is_superuser": false, - "email": "shirl.winters@external.example.com", - "title": "", - "first_name_given": "Shirl", - "first_name_chosen": "", - "last_name": "Winters", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3725, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b19696e1-a5cb-445c-975e-f07f78edf916", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:57:03.709", - "is_superuser": false, - "email": "britteny.easley@institution.example.com", - "title": "", - "first_name_given": "Britteny", - "first_name_chosen": "", - "last_name": "Easley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b1cd09ed-3440-4af4-8856-ff2527f3f516", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-12T12:16:07.304", - "is_superuser": false, - "email": "pamula.sims@institution.example.com", - "title": "", - "first_name_given": "Pamula", - "first_name_chosen": "", - "last_name": "Sims", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3680, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b1eb2219-a612-4cad-9e8b-50146fb62e08", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:32.959", - "is_superuser": false, - "email": "donnetta.felts@external.example.com", - "title": "", - "first_name_given": "Donnetta", - "first_name_chosen": "", - "last_name": "Felts", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3552, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b1f412b9-d037-4f5a-a0de-6078ee628b3a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:32.995", - "is_superuser": false, - "email": "lizbeth.israel@external.example.com", - "title": "", - "first_name_given": "Lizbeth", - "first_name_chosen": "", - "last_name": "Israel", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4128, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b2094151-623c-42f2-9260-a34624e4b482", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:33.025", - "is_superuser": false, - "email": "shasta.eaves@external.example.com", - "title": "", - "first_name_given": "Shasta", - "first_name_chosen": "", - "last_name": "Eaves", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3739, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b228eec0-e562-480e-a16c-8f5f93453bbe", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:33.032", - "is_superuser": false, - "email": "kathyrn.crowley@external.example.com", - "title": "", - "first_name_given": "Kathyrn", - "first_name_chosen": "", - "last_name": "Crowley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4095, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b265bb69-eaa2-497b-a309-4694d01db039", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T21:50:22.128", - "is_superuser": false, - "email": "tonita.gallardo@institution.example.com", - "title": "", - "first_name_given": "Tonita", - "first_name_chosen": "", - "last_name": "Gallardo", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b2669ab7-7993-411c-b53d-a02336a49be1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:33.063", - "is_superuser": false, - "email": "lenore.kohler@external.example.com", - "title": "", - "first_name_given": "Lenore", - "first_name_chosen": "", - "last_name": "Kohler", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3551, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b26e8298-b1e8-4e72-8dde-a95fad10de28", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:33.072", - "is_superuser": false, - "email": "marlana.olds@external.example.com", - "title": "", - "first_name_given": "Marlana", - "first_name_chosen": "", - "last_name": "Olds", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b29904d7-b7bc-4489-9173-48d6d644825a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:33.077", - "is_superuser": false, - "email": "sharon.cress@institution.example.com", - "title": "", - "first_name_given": "Sharon", - "first_name_chosen": "", - "last_name": "Cress", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3354, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b2d8094b-1bac-4067-a394-7bc1dc5e7938", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:42.609", - "is_superuser": false, - "email": "latrice.terry@external.example.com", - "title": "", - "first_name_given": "Latrice", - "first_name_chosen": "", - "last_name": "Terry", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b2e90959-3747-4a5d-990a-05f487ff64df", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:54.709", - "is_superuser": false, - "email": "elvina.dill@external.example.com", - "title": "", - "first_name_given": "Elvina", - "first_name_chosen": "", - "last_name": "Dill", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3355, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b2eed862-8064-4b0c-91a7-50b3dba81d0a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:02.417", - "is_superuser": false, - "email": "kiana.fontenot@external.example.com", - "title": "", - "first_name_given": "Kiana", - "first_name_chosen": "", - "last_name": "Fontenot", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 836, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b2f934ce-a30f-483c-a64a-8886924b23cb", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:17.355", - "is_superuser": false, - "email": "lanelle.quintanilla@external.example.com", - "title": "", - "first_name_given": "Lanelle", - "first_name_chosen": "", - "last_name": "Quintanilla", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3552, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b30a911c-9583-4929-ad95-2d4d95b06c5c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:17.566", - "is_superuser": false, - "email": "leonia.burnham@external.example.com", - "title": "", - "first_name_given": "Leonia", - "first_name_chosen": "", - "last_name": "Burnham", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1639, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b336a08b-d376-4af7-aaac-8f644a088aed", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.901", - "is_superuser": false, - "email": "cythia.montanez@external.example.com", - "title": "", - "first_name_given": "Cythia", - "first_name_chosen": "", - "last_name": "Montanez", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3372, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b3571475-b4c5-4d71-8d00-49572f580b99", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.918", - "is_superuser": false, - "email": "dusty.kaplan@external.example.com", - "title": "", - "first_name_given": "Dusty", - "first_name_chosen": "", - "last_name": "Kaplan", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3515, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b3853f33-cbcc-4bcb-ab09-cacf5eb64e96", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.924", - "is_superuser": false, - "email": "tanesha.sharkey@external.example.com", - "title": "", - "first_name_given": "Tanesha", - "first_name_chosen": "", - "last_name": "Sharkey", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1217, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b39daf5f-e3bd-4afa-854c-69e79d3d5ce1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.943", - "is_superuser": false, - "email": "evan.buckingham@external.example.com", - "title": "", - "first_name_given": "Evan", - "first_name_chosen": "", - "last_name": "Buckingham", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b3df5155-ba11-4115-a13f-237556bb178f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.949", - "is_superuser": false, - "email": "rossie.casanova@external.example.com", - "title": "", - "first_name_given": "Rossie", - "first_name_chosen": "", - "last_name": "Casanova", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b3f616da-9075-46aa-b549-7178561eccb7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.966", - "is_superuser": false, - "email": "denyse.murillo@external.example.com", - "title": "", - "first_name_given": "Denyse", - "first_name_chosen": "", - "last_name": "Murillo", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1205, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b4061417-f635-4549-82e0-b462a559f548", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.989", - "is_superuser": false, - "email": "elmira.vest@external.example.com", - "title": "", - "first_name_given": "Elmira", - "first_name_chosen": "", - "last_name": "Vest", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3422, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b422b432-617f-4de9-a413-78315ca6294a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-12-04T14:22:09.856", - "is_superuser": false, - "email": "tabitha.sutter@institution.example.com", - "title": "", - "first_name_given": "Tabitha", - "first_name_chosen": "", - "last_name": "Sutter", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b4442b2f-c2b5-4b10-ad90-2853cc9f5c7e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:04:02.375", - "is_superuser": false, - "email": "eusebia.hagen@external.example.com", - "title": "", - "first_name_given": "Eusebia", - "first_name_chosen": "", - "last_name": "Hagen", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 908, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b463c1ea-f9be-4806-9bd8-499bf0115129", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-03T23:21:57.054", - "is_superuser": false, - "email": "mica.boatright@institution.example.com", - "title": "Dr.", - "first_name_given": "Mica", - "first_name_chosen": "", - "last_name": "Boatright", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b4746337-0ed6-419f-9861-d3e7cc161426", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:04:27.433", - "is_superuser": false, - "email": "amber.dunlap@external.example.com", - "title": "Prof. Dr.", - "first_name_given": "Amber", - "first_name_chosen": "", - "last_name": "Dunlap", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b4ca7398-9db1-4892-a23d-a8cf379e968e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:04:29.615", - "is_superuser": false, - "email": "abbey.davison@external.example.com", - "title": "Prof. Dr.", - "first_name_given": "Abbey", - "first_name_chosen": "", - "last_name": "Davison", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3391, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b5125516-f6e9-458f-8d5f-1d7061030e50", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-15T15:52:42.444", - "is_superuser": false, - "email": "kyra.hart@institution.example.com", - "title": "", - "first_name_given": "Kyra", - "first_name_chosen": "", - "last_name": "Hart", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3486, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b51be452-8c24-4cdb-9792-57123d60453a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:08:05.159", - "is_superuser": false, - "email": "ardella.mays@external.example.com", - "title": "", - "first_name_given": "Ardella", - "first_name_chosen": "", - "last_name": "Mays", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 454, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b5201d58-5f3e-42da-9a59-c3196a051b22", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-06T21:12:21.200", - "is_superuser": false, - "email": "harriet.rushing@institution.example.com", - "title": "Dr.", - "first_name_given": "Harriet", - "first_name_chosen": "", - "last_name": "Rushing", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "diane.carlton@institution.example.com" - ], - [ - "brian.david@external.example.com" - ], - [ - "portia.hoffman@institution.example.com" - ], - [ - "al.jean@institution.example.com" - ], - [ - "eboni.maldonado@external.example.com" - ], - [ - "latosha.moon@institution.example.com" - ], - [ - "damion.navarrete@institution.example.com" - ], - [ - "leola.parrott@external.example.com" - ], - [ - "karine.prater@institution.example.com" - ], - [ - "errol.simon@institution.example.com" - ], - [ - "adriane.strain@institution.example.com" - ] - ], - "cc_users": [] + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b5560cbe-24f2-437a-8ebe-5f1eb96d192a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:08:07.813", - "is_superuser": false, - "email": "mora.barfield@external.example.com", - "title": "", - "first_name_given": "Mora", - "first_name_chosen": "", - "last_name": "Barfield", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 3723, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b59f1e93-60db-4733-8fc9-4dd2d059ca25", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:08:20.071", - "is_superuser": false, - "email": "angela.galbraith@external.example.com", - "title": "", - "first_name_given": "Angela", - "first_name_chosen": "", - "last_name": "Galbraith", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1202, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b5a63ab8-f3dd-40ff-8c95-475ae03be34d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:08:21.867", - "is_superuser": false, - "email": "elbert.baber@external.example.com", - "title": "", - "first_name_given": "Elbert", - "first_name_chosen": "", - "last_name": "Baber", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3566, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b5aa1706-1c18-4ea8-93aa-da97fe2f697d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:08:41.792", - "is_superuser": false, - "email": "dion.rutledge@external.example.com", - "title": "", - "first_name_given": "Dion", - "first_name_chosen": "", - "last_name": "Rutledge", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4155, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b5ab56ed-baa6-444e-9ddb-b0e39df081c8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T10:25:58.389", - "is_superuser": false, - "email": "juanita.kimbrough@institution.example.com", - "title": "", - "first_name_given": "Juanita", - "first_name_chosen": "", - "last_name": "Kimbrough", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3454, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b5c0302a-fe1f-4036-9dd4-82833b6ad9d8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:10:30.880", - "is_superuser": false, - "email": "lorriane.najera@external.example.com", - "title": "", - "first_name_given": "Lorriane", - "first_name_chosen": "", - "last_name": "Najera", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3556, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b5c782e3-ef25-4dd0-82ac-ba4341e8204d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:10:30.898", - "is_superuser": false, - "email": "matthew.hart@external.example.com", - "title": "", - "first_name_given": "Matthew", - "first_name_chosen": "", - "last_name": "Hart", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3589, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b5dd8691-be65-43b7-a979-aafbe7879135", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-23T11:04:09.158", - "is_superuser": false, - "email": "georgann.mcneill@institution.example.com", - "title": "", - "first_name_given": "Georgann", - "first_name_chosen": "", - "last_name": "Mcneill", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3355, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b5e19c02-3612-44c9-8584-5f744415db31", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:10:49", - "is_superuser": false, - "email": "linette.moultrie@external.example.com", - "title": "", - "first_name_given": "Linette", - "first_name_chosen": "", - "last_name": "Moultrie", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3916, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b5e27439-9b5c-445a-870e-c1a610e7b1d4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T20:46:14.335", - "is_superuser": false, - "email": "laura.lamb@institution.example.com", - "title": "", - "first_name_given": "Laura", - "first_name_chosen": "", - "last_name": "Lamb", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, + "question": 313, + "contribution": 1634, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b61013fe-999b-4945-97dc-4beb9ec7c39d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:14:46.010", - "is_superuser": false, - "email": "majorie.godfrey@institution.example.com", - "title": "", - "first_name_given": "Majorie", - "first_name_chosen": "", - "last_name": "Godfrey", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 908, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b61d9de1-5f58-4637-8a87-3f5940974ee8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T19:00:18.169", - "is_superuser": false, - "email": "justa.baughman@institution.example.com", - "title": "", - "first_name_given": "Justa", - "first_name_chosen": "", - "last_name": "Baughman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3416, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b655db53-eea3-4aec-8b77-ac68a10c8eae", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-29T17:02:17.999", - "is_superuser": false, - "email": "hilde.blankenship@institution.example.com", - "title": "", - "first_name_given": "Hilde", - "first_name_chosen": "", - "last_name": "Blankenship", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b66a5172-7ecd-4696-8d24-f9e55890e758", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-01T09:24:22.444", - "is_superuser": false, - "email": "clarence.kirkland@institution.example.com", - "title": "", - "first_name_given": "Clarence", - "first_name_chosen": "", - "last_name": "Kirkland", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3726, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b6957bb3-0bfd-47e0-a115-e354637f7f7d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T09:09:22.294", - "is_superuser": false, - "email": "raymond.bickford@institution.example.com", - "title": "", - "first_name_given": "Raymond", - "first_name_chosen": "", - "last_name": "Bickford", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1734, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b74178ed-d019-48e1-bc89-46ca9dee6d54", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:03.967", - "is_superuser": false, - "email": "kayleen.carper@institution.example.com", - "title": "", - "first_name_given": "Kayleen", - "first_name_chosen": "", - "last_name": "Carper", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 884, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b743ba80-019d-4c37-9a67-c3248bd0cfff", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:03.972", - "is_superuser": false, - "email": "darryl.curtin@external.example.com", - "title": "", - "first_name_given": "Darryl", - "first_name_chosen": "", - "last_name": "Curtin", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b76cbc4f-33e9-4db9-b832-52a7a45fd676", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:03.976", - "is_superuser": false, - "email": "polly.rawlins@external.example.com", - "title": "", - "first_name_given": "Polly", - "first_name_chosen": "", - "last_name": "Rawlins", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b7722cbe-5941-4ce7-ac1b-f23386572671", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:03.986", - "is_superuser": false, - "email": "jacqui.lindsey@institution.example.com", - "title": "", - "first_name_given": "Jacqui", - "first_name_chosen": "", - "last_name": "Lindsey", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b77dd8f2-b037-4f06-b0c6-fc5a94d0c443", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:15:10.501", - "is_superuser": false, - "email": "corine.lunsford@institution.example.com", - "title": "", - "first_name_given": "Corine", - "first_name_chosen": "", - "last_name": "Lunsford", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b7ab344f-8261-413a-9254-6ebbb798d72c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T14:08:23.222", - "is_superuser": false, - "email": "osvaldo.carrier@institution.example.com", - "title": "", - "first_name_given": "Osvaldo", - "first_name_chosen": "", - "last_name": "Carrier", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3463, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b7d2d8fd-9598-482b-8f5f-347a7e8164d8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T22:53:23.599", - "is_superuser": false, - "email": "elma.huynh@institution.example.com", - "title": "", - "first_name_given": "Elma", - "first_name_chosen": "", - "last_name": "Huynh", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4120, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b7ef7de5-5f4d-41c4-8757-7f9c19a5e8ac", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-23T19:14:56.765", - "is_superuser": false, - "email": "mariann.alfonso@institution.example.com", - "title": "", - "first_name_given": "Mariann", - "first_name_chosen": "", - "last_name": "Alfonso", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b7ff9397-1607-459e-9f7d-6368828d8c8d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-08T10:57:35.127", - "is_superuser": false, - "email": "lelia.beall@institution.example.com", - "title": "", - "first_name_given": "Lelia", - "first_name_chosen": "", - "last_name": "Beall", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4177, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b85d9463-11b4-476b-a89a-56807ba84765", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-13T21:08:59.664", - "is_superuser": false, - "email": "damion.aiken@institution.example.com", - "title": "", - "first_name_given": "Damion", - "first_name_chosen": "", - "last_name": "Aiken", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4116, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b877a373-e50d-48dd-ad1e-b988a085da4e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-04T16:46:09.458", - "is_superuser": false, - "email": "stepanie.kimmel@institution.example.com", - "title": "", - "first_name_given": "Stepanie", - "first_name_chosen": "", - "last_name": "Kimmel", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b8864c38-9b94-46b9-b488-b5c52dc04410", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-12T11:50:50.547", - "is_superuser": false, - "email": "ezequiel.brock@institution.example.com", - "title": "", - "first_name_given": "Ezequiel", - "first_name_chosen": "", - "last_name": "Brock", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 912, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b8afe954-6bae-4728-bdcc-bd95fb31eb42", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-03-18T09:10:08.613", - "is_superuser": false, - "email": "marleen.spivey@institution.example.com", - "title": "", - "first_name_given": "Marleen", - "first_name_chosen": "", - "last_name": "Spivey", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 885, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b8edc6a2-e01a-48ae-8663-4737820d360d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T21:11:33.049", - "is_superuser": false, - "email": "raisa.burbank@institution.example.com", - "title": "", - "first_name_given": "Raisa", - "first_name_chosen": "", - "last_name": "Burbank", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3422, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b909e527-5f06-4877-9e8c-594454f72f61", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-03-05T10:43:54.810", - "is_superuser": false, - "email": "conception.belt@institution.example.com", - "title": "", - "first_name_given": "Conception", - "first_name_chosen": "", - "last_name": "Belt", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 836, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b93ea03c-5dab-46a5-9bfc-2bbce392326e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T22:50:33.025", - "is_superuser": false, - "email": "gracia.mullins@institution.example.com", - "title": "", - "first_name_given": "Gracia", - "first_name_chosen": "", - "last_name": "Mullins", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3593, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b93fb049-e23b-4c36-8347-64993d5a186f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-10T11:04:25.120", - "is_superuser": false, - "email": "candie.lugo@institution.example.com", - "title": "", - "first_name_given": "Candie", - "first_name_chosen": "", - "last_name": "Lugo", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b9633ccb-7d4b-46c7-9076-e6b4e67a921b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-22T16:35:15.443", - "is_superuser": false, - "email": "brenda.conway@institution.example.com", - "title": "", - "first_name_given": "Brenda", - "first_name_chosen": "", - "last_name": "Conway", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b9d6f69e-8dff-480f-b61b-867e694744c9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T11:54:38.564", - "is_superuser": false, - "email": "amado.huggins@institution.example.com", - "title": "", - "first_name_given": "Amado", - "first_name_chosen": "", - "last_name": "Huggins", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b9e6462b-3345-45ec-ae01-b2f2d46150f5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-09T11:14:42.030", - "is_superuser": false, - "email": "elvie.chaffin@institution.example.com", - "title": "", - "first_name_given": "Elvie", - "first_name_chosen": "", - "last_name": "Chaffin", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "b9f8a33c-122a-4193-a166-87634c6fe0f5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-03T01:14:47.233", - "is_superuser": false, - "email": "lavonna.burgos@institution.example.com", - "title": "", - "first_name_given": "Lavonna", - "first_name_chosen": "", - "last_name": "Burgos", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3680, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ba08ffff-aba9-4a31-870e-254e6ca150c2", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T15:31:17.944", - "is_superuser": false, - "email": "darnell.aguilera@institution.example.com", - "title": "", - "first_name_given": "Darnell", - "first_name_chosen": "", - "last_name": "Aguilera", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3725, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ba1d851b-fd7d-4bd3-b5ed-818351c860f0", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-15T13:21:11.742", - "is_superuser": false, - "email": "wendie.pike@institution.example.com", - "title": "", - "first_name_given": "Wendie", - "first_name_chosen": "", - "last_name": "Pike", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ba1f8e10-30f9-4456-a65f-657ed2b5bb5f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-28T23:41:42.360", - "is_superuser": false, - "email": "chelsey.fried@institution.example.com", - "title": "", - "first_name_given": "Chelsey", - "first_name_chosen": "", - "last_name": "Fried", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ba4a8fbd-e2ed-4d16-a618-ec288c50b1b8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-16T11:51:36.155", - "is_superuser": false, - "email": "oma.abner@institution.example.com", - "title": "", - "first_name_given": "Oma", - "first_name_chosen": "", - "last_name": "Abner", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1662, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ba5f7aa6-d28e-4866-90c2-f090acc7ecf6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-08-21T08:50:38.747", - "is_superuser": false, - "email": "gilda.soper@institution.example.com", - "title": "", - "first_name_given": "Gilda", - "first_name_chosen": "", - "last_name": "Soper", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3665, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ba778172-d1b8-4e1c-89ab-0111cf068c83", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-15T14:24:51.746", - "is_superuser": false, - "email": "marlana.mclain@institution.example.com", - "title": "", - "first_name_given": "Marlana", - "first_name_chosen": "", - "last_name": "Mclain", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ba77b916-5768-4b6d-80d7-f8568a67e95a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T15:46:39.710", - "is_superuser": false, - "email": "antony.landry@institution.example.com", - "title": "", - "first_name_given": "Antony", - "first_name_chosen": "", - "last_name": "Landry", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ba7ad6b2-92c1-4197-9d1b-d7e0a461c794", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-22T17:06:50.607", - "is_superuser": false, - "email": "lenard.bean@institution.example.com", - "title": "", - "first_name_given": "Lenard", - "first_name_chosen": "", - "last_name": "Bean", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4128, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ba82dd7d-9ea6-49ee-8f1a-6c9fd2648d02", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-29T14:53:17.250", - "is_superuser": false, - "email": "jeni.cloutier@institution.example.com", - "title": "", - "first_name_given": "Jeni", - "first_name_chosen": "", - "last_name": "Cloutier", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1680, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ba94f702-3b46-4782-ba7b-b0454f8368b4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-03T08:39:27.351", - "is_superuser": false, - "email": "delegate@institution.example.com", - "title": "", - "first_name_given": "", - "first_name_chosen": "", - "last_name": "delegate", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4072, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bacb9d60-0ae3-4dd6-86f9-9e40a2bc6d90", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-10T21:35:49.219", - "is_superuser": false, - "email": "giuseppina.waldrop@institution.example.com", - "title": "", - "first_name_given": "Giuseppina", - "first_name_chosen": "", - "last_name": "Waldrop", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 4152, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bb085fc9-d91a-45e7-a9b3-3dba408516b9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-03-01T11:29:27.215", - "is_superuser": false, - "email": "yolanda.farley@institution.example.com", - "title": "", - "first_name_given": "Yolanda", - "first_name_chosen": "", - "last_name": "Farley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3751, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bb157caa-cf15-4987-a0b0-fa507586f6d6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.174", - "is_superuser": false, - "email": "felicitas.culver@external.example.com", - "title": "", - "first_name_given": "Felicitas", - "first_name_chosen": "", - "last_name": "Culver", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bb264da5-73fa-42e5-b8f2-fb4b977b08e6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.179", - "is_superuser": false, - "email": "ardelle.crouse@institution.example.com", - "title": "", - "first_name_given": "Ardelle", - "first_name_chosen": "", - "last_name": "Crouse", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bb547b0f-e90e-4380-88b5-669077726c40", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-08T14:44:45.671", - "is_superuser": false, - "email": "meagan.steed@institution.example.com", - "title": "", - "first_name_given": "Meagan", - "first_name_chosen": "", - "last_name": "Steed", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 430, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bbabf2e5-9925-48a9-90ba-075a249bcd4d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.189", - "is_superuser": false, - "email": "wade.ryan@institution.example.com", - "title": "", - "first_name_given": "Wade", - "first_name_chosen": "", - "last_name": "Ryan", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 387, + "contribution": 3775, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bbaf9d6b-fa89-43a9-9361-a11f55d686ed", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T20:19:53.113", - "is_superuser": false, - "email": "thi.anthony@institution.example.com", - "title": "", - "first_name_given": "Thi", - "first_name_chosen": "", - "last_name": "Anthony", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3852, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bbbb5906-a8c8-406e-8980-f0cdcadd876e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-07T09:27:03.820", - "is_superuser": false, - "email": "corinne.tolliver@institution.example.com", - "title": "", - "first_name_given": "Corinne", - "first_name_chosen": "", - "last_name": "Tolliver", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4095, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bbc3166e-8636-4714-b25f-f3558220284e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-23T12:07:32.181", - "is_superuser": false, - "email": "sunshine.ruby@institution.example.com", - "title": "", - "first_name_given": "Sunshine", - "first_name_chosen": "", - "last_name": "Ruby", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3929, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bbd5bb0a-5ef8-4d7a-b3ea-2cec1ec0f703", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.218", - "is_superuser": false, - "email": "ernest.buford@external.example.com", - "title": "", - "first_name_given": "Ernest", - "first_name_chosen": "", - "last_name": "Buford", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 885, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bbe6131b-a9d1-40e7-ba39-09974948ee11", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-23T15:52:47.145", - "is_superuser": false, - "email": "ilse.switzer@institution.example.com", - "title": "", - "first_name_given": "Ilse", - "first_name_chosen": "", - "last_name": "Switzer", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bc5a7b8d-b8ba-41a0-970b-3b49ada3e89c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-14T15:17:03.287", - "is_superuser": false, - "email": "kathyrn.linder@institution.example.com", - "title": "", - "first_name_given": "Kathyrn", - "first_name_chosen": "", - "last_name": "Linder", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 912, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bc70a492-95f0-4108-807b-4e8a63d1e64c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-02T10:12:40.654", - "is_superuser": false, - "email": "halley.landrum@institution.example.com", - "title": "", - "first_name_given": "Halley", - "first_name_chosen": "", - "last_name": "Landrum", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bc7c2a36-c8ec-4bef-8c81-80e33c7eb179", "fields": { - "password": "pbkdf2_sha256$20000$mHyoq7kQaC2h$BmBzoRMsAHLhkgmY2SIn/GE7rt+XRp3QFvUegeIWdjk=", - "last_login": "2015-11-08T14:34:36.328", - "is_superuser": false, - "email": "valda.antoine@institution.example.com", - "title": "", - "first_name_given": "Valda", - "first_name_chosen": "", - "last_name": "Antoine", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": "2012-05-10", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3745, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bc7d1566-c2fe-4650-8c7f-d46c1c17aea6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.247", - "is_superuser": false, - "email": "lyndia.song@institution.example.com", - "title": "", - "first_name_given": "Lyndia", - "first_name_chosen": "", - "last_name": "Song", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bc9f92b4-0115-4d33-a0e7-c4d461509411", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-03T08:40:18.189", - "is_superuser": false, - "email": "editor@institution.example.com", - "title": "", - "first_name_given": "", - "first_name_chosen": "", - "last_name": "editor", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bca57d28-8d74-4fd0-a589-5080e88cb6b4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-08T17:18:28.575", - "is_superuser": false, - "email": "lavona.pond@institution.example.com", - "title": "", - "first_name_given": "Lavona", - "first_name_chosen": "", - "last_name": "Pond", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bcad6d45-277e-4b3a-886e-169b499afaf3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-15T13:31:11.152", - "is_superuser": false, - "email": "emmaline.voigt@institution.example.com", - "title": "", - "first_name_given": "Emmaline", - "first_name_chosen": "", - "last_name": "Voigt", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 908, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bcb1e53c-944e-427b-92a3-0002f91e9d73", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T09:51:14.360", - "is_superuser": false, - "email": "britany.estrella@institution.example.com", - "title": "", - "first_name_given": "Britany", - "first_name_chosen": "", - "last_name": "Estrella", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3435, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bcb43c21-8b99-4dba-b858-415d757d1968", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.276", - "is_superuser": false, - "email": "nita.jennings@institution.example.com", - "title": "", - "first_name_given": "Nita", - "first_name_chosen": "", - "last_name": "Jennings", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bcbc3492-95e4-4891-908c-e0e6f4d3dcad", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-09T17:55:07.197", - "is_superuser": false, - "email": "maribel.scales@institution.example.com", - "title": "", - "first_name_given": "Maribel", - "first_name_chosen": "", - "last_name": "Scales", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4084, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bcd73c64-6de7-4259-af60-7d1f9bf220c4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-17T22:57:20.798", - "is_superuser": false, - "email": "regan.swank@institution.example.com", - "title": "", - "first_name_given": "Regan", - "first_name_chosen": "", - "last_name": "Swank", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bd10ef25-39f0-48af-b7b3-bba932c66f9a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T15:28:52.173", - "is_superuser": false, - "email": "karly.clapp@institution.example.com", - "title": "", - "first_name_given": "Karly", - "first_name_chosen": "", - "last_name": "Clapp", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bd114b8e-b036-4694-89b1-eff62967bb34", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.314", - "is_superuser": false, - "email": "nana.meador@institution.example.com", - "title": "", - "first_name_given": "Nana", - "first_name_chosen": "", - "last_name": "Meador", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bd3bf89d-683d-4e34-900d-245099891e14", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-24T11:02:13.320", - "is_superuser": false, - "email": "jennifer.yarbrough@institution.example.com", - "title": "", - "first_name_given": "Jennifer", - "first_name_chosen": "", - "last_name": "Yarbrough", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bd4fe21f-2200-4432-8c22-7236e4245ec3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-28T22:37:57.999", - "is_superuser": false, - "email": "odette.chitwood@institution.example.com", - "title": "", - "first_name_given": "Odette", - "first_name_chosen": "", - "last_name": "Chitwood", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bd9fa655-76b4-44fe-a044-c2dd897a25a5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-12T13:15:41.710", - "is_superuser": false, - "email": "leigha.christie@institution.example.com", - "title": "", - "first_name_given": "Leigha", - "first_name_chosen": "", - "last_name": "Christie", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3609, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bdab6427-e68d-46b5-a95f-6dfb8aa40fc1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-09T09:38:31.796", - "is_superuser": false, - "email": "noriko.rau@institution.example.com", - "title": "", - "first_name_given": "Noriko", - "first_name_chosen": "", - "last_name": "Rau", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 3417, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bdf48c55-28da-4e1c-8a81-3f3048edcba1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:55.620", - "is_superuser": false, - "email": "christine.villanueva@external.example.com", - "title": "", - "first_name_given": "Christine", - "first_name_chosen": "", - "last_name": "Villanueva", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "be28d85b-565a-4c44-8ba9-5d9fd292fdcf", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-16T14:17:37.158", - "is_superuser": false, - "email": "wyatt.fairchild@external.example.com", - "title": "", - "first_name_given": "Wyatt", - "first_name_chosen": "", - "last_name": "Fairchild", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "be7c4c45-e241-495c-968f-5ec4442cb460", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:56.152", - "is_superuser": false, - "email": "afton.ceja@external.example.com", - "title": "", - "first_name_given": "Afton", - "first_name_chosen": "", - "last_name": "Ceja", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4120, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "be861cba-02b1-4c21-8942-c64f7d2c7be1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-29T06:38:28.861", - "is_superuser": false, - "email": "jospeh.thorp@external.example.com", - "title": "Dr.", - "first_name_given": "Jospeh", - "first_name_chosen": "", - "last_name": "Thorp", - "language": "", - "is_proxy_user": false, - "login_key": 658405473, - "login_key_valid_until": "2014-08-06", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "heike.cartwright@external.example.com" - ], - [ - "albina.dibble@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ], - [ - "maegan.mccorkle@institution.example.com" - ] - ], - "cc_users": [] + "question": 314, + "contribution": 4084, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "beaab8f3-a2aa-4652-8057-b771122a8b0e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:12:15.064", - "is_superuser": false, - "email": "shery.rees@external.example.com", - "title": "Prof. Dr.", - "first_name_given": "Shery", - "first_name_chosen": "", - "last_name": "Rees", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4283, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "beb76c84-d30d-48b5-9807-9ac7b290fb01", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:12:19.069", - "is_superuser": false, - "email": "sage.osborne@external.example.com", - "title": "", - "first_name_given": "Sage", - "first_name_chosen": "", - "last_name": "Osborne", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3354, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bf704f5e-4a0d-4ae0-858d-f6acc19954d7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-31T17:12:28.842", - "is_superuser": false, - "email": "arnold.lane@institution.example.com", - "title": "Dr.", - "first_name_given": "Arnold", - "first_name_chosen": "", - "last_name": "Lane", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bfca2b0b-d8db-4f0b-a831-383b6bfd25ae", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:45:25.645", - "is_superuser": false, - "email": "sandee.coker@institution.example.com", - "title": "Prof.", - "first_name_given": "Sandee", - "first_name_chosen": "", - "last_name": "Coker", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "earline.hills@institution.example.com" - ] - ], - "cc_users": [] + "question": 318, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "bff68834-f5be-4f06-a7b6-5a871f4466f4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-22T11:24:00.988", - "is_superuser": false, - "email": "felton.alvarez@institution.example.com", - "title": "", - "first_name_given": "Felton", - "first_name_chosen": "", - "last_name": "Alvarez", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3423, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c00b4db4-e959-4b2d-b2c4-cfa5fb69c9d7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T11:39:18.036", - "is_superuser": false, - "email": "arron.tran@institution.example.com", - "title": "Dr.", - "first_name_given": "Arron", - "first_name_chosen": "", - "last_name": "Tran", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c022de76-c1a0-453f-af7f-d183fa299ee1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:14:54.208", - "is_superuser": false, - "email": "cole.gamboa@institution.example.com", - "title": "", - "first_name_given": "Cole", - "first_name_chosen": "", - "last_name": "Gamboa", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c034ab39-6e9a-4302-ba9b-4323b5b2e607", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T15:36:47.045", - "is_superuser": false, - "email": "henriette.park@institution.example.com", - "title": "Prof. Dr.", - "first_name_given": "Henriette", - "first_name_chosen": "", - "last_name": "Park", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "january.copeland@institution.example.com" - ], - [ - "evap@institution.example.com" - ] - ], - "cc_users": [] + "question": 364, + "contribution": 4003, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c0ae89e9-32e7-4114-ad32-0a71813dbe53", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-28T19:41:55.913", - "is_superuser": false, - "email": "callie.grove@institution.example.com", - "title": "", - "first_name_given": "Callie", - "first_name_chosen": "", - "last_name": "Grove", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4121, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c0e43291-3d89-41bc-bdee-190cb2be2ef1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-05T11:52:28.356", - "is_superuser": false, - "email": "lisandra.grace@external.example.com", - "title": "Dr.", - "first_name_given": "Lisandra", - "first_name_chosen": "", - "last_name": "Grace", - "language": "", - "is_proxy_user": false, - "login_key": 630273331, - "login_key_valid_until": "2014-12-01", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ], - "cc_users": [] + "question": 313, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c0fcad0c-c001-4c04-b7f9-c6f0afce83e4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T19:09:55.252", - "is_superuser": false, - "email": "veta.branson@institution.example.com", - "title": "", - "first_name_given": "Veta", - "first_name_chosen": "", - "last_name": "Branson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c120bdb3-7e2b-46e1-bcd5-b717ed855f9b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-27T11:09:57.023", - "is_superuser": false, - "email": "aleta.seymour@institution.example.com", - "title": "", - "first_name_given": "Aleta", - "first_name_chosen": "", - "last_name": "Seymour", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1613, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c12f2ed6-0b76-4012-9dd2-57bac676aa5c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:14:57.152", - "is_superuser": false, - "email": "sybil.everett@institution.example.com", - "title": "", - "first_name_given": "Sybil", - "first_name_chosen": "", - "last_name": "Everett", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 429, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c14d3c6c-1be9-4846-92e0-465dbe02f2a3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:14:57.456", - "is_superuser": false, - "email": "marquetta.cano@institution.example.com", - "title": "", - "first_name_given": "Marquetta", - "first_name_chosen": "", - "last_name": "Cano", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c15ccb58-66c6-41db-8a45-271f35b518cd", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-04T23:56:50.331", - "is_superuser": false, - "email": "ardath.cross@institution.example.com", - "title": "", - "first_name_given": "Ardath", - "first_name_chosen": "", - "last_name": "Cross", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 858, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c16024c9-d7fc-42ec-8784-43b122a8a440", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-19T00:03:33.953", - "is_superuser": false, - "email": "sabine.knight@institution.example.com", - "title": "", - "first_name_given": "Sabine", - "first_name_chosen": "", - "last_name": "Knight", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4228, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c1a6a29a-e604-4e37-aa72-82c1b7a4bf1c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-24T21:31:17.863", - "is_superuser": false, - "email": "nora.rowley@institution.example.com", - "title": "", - "first_name_given": "Nora", - "first_name_chosen": "", - "last_name": "Rowley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3455, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c1a79bc6-d3a8-475f-805e-52e11ad17571", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-11-08T07:57:04.396", - "is_superuser": false, - "email": "eugene.tennant@institution.example.com", - "title": "", - "first_name_given": "Eugene", - "first_name_chosen": "", - "last_name": "Tennant", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c1c660d0-5f28-4523-acf1-fd65bd2015cc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-23T12:59:49.557", - "is_superuser": false, - "email": "felice.meek@institution.example.com", - "title": "", - "first_name_given": "Felice", - "first_name_chosen": "", - "last_name": "Meek", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3422, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c20e4d91-b79b-416f-a073-89f7cbfb9bd8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-23T23:20:10.602", - "is_superuser": false, - "email": "macie.roller@institution.example.com", - "title": "", - "first_name_given": "Macie", - "first_name_chosen": "", - "last_name": "Roller", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3722, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c2378951-0f15-44e6-a09c-b99042370778", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-23T19:13:08.162", - "is_superuser": false, - "email": "keith.sanchez@institution.example.com", - "title": "", - "first_name_given": "Keith", - "first_name_chosen": "", - "last_name": "Sanchez", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c24e137e-c6de-40a6-aba3-f12dec509a47", "fields": { - "password": "pbkdf2_sha256$20000$6wS8Pd0oAIrT$aE2U2a4TOHid6QIFpoUjJx6D3+qnFx30UmuyGKLg6us=", - "last_login": "2015-11-08T14:33:36.461", - "is_superuser": false, - "email": "diedra.batson@institution.example.com", - "title": "", - "first_name_given": "Diedra", - "first_name_chosen": "", - "last_name": "Batson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 1660, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c2b62d55-5a47-4774-b3f3-8f07c047db42", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T18:52:52.705", - "is_superuser": false, - "email": "eleanor.freese@institution.example.com", - "title": "", - "first_name_given": "Eleanor", - "first_name_chosen": "", - "last_name": "Freese", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4046, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c2dbf565-deea-4a49-bc6f-ef679dbcba80", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T20:01:40.471", - "is_superuser": false, - "email": "magen.thorn@institution.example.com", - "title": "", - "first_name_given": "Magen", - "first_name_chosen": "", - "last_name": "Thorn", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": "2013-05-16", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3859, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c3063939-a941-46c8-b807-f3a950455352", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-12-06T10:37:49.806", - "is_superuser": false, - "email": "lorene.moultrie@institution.example.com", - "title": "", - "first_name_given": "Lorene", - "first_name_chosen": "", - "last_name": "Moultrie", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3404, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c3136bbc-0b2e-4cd9-b6f7-feef8c1aa48b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-17T12:00:14.509", - "is_superuser": false, - "email": "reynaldo.thayer@institution.example.com", - "title": "", - "first_name_given": "Reynaldo", - "first_name_chosen": "", - "last_name": "Thayer", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3727, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c3304fa2-9702-45d2-94f4-4e094892c896", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-23T20:02:06.820", - "is_superuser": false, - "email": "luis.truong@institution.example.com", - "title": "", - "first_name_given": "Luis", - "first_name_chosen": "", - "last_name": "Truong", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 4094, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c33cf336-47bc-4d74-af7c-a55fca3d5041", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-07T14:33:20.588", - "is_superuser": false, - "email": "lavina.connor@institution.example.com", - "title": "", - "first_name_given": "Lavina", - "first_name_chosen": "", - "last_name": "Connor", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 454, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c3793f53-1355-4469-9ab5-a486e7f40ebc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-07T09:04:41.784", - "is_superuser": false, - "email": "alfreda.roche@institution.example.com", - "title": "", - "first_name_given": "Alfreda", - "first_name_chosen": "", - "last_name": "Roche", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c3add162-7c02-402c-bb3a-f0887630f6de", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T07:16:47.118", - "is_superuser": false, - "email": "myrtle.wahl@institution.example.com", - "title": "", - "first_name_given": "Myrtle", - "first_name_chosen": "", - "last_name": "Wahl", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 822, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c3cba9ef-d000-436a-aa6d-c6cf9c812cf3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-01T17:52:10", - "is_superuser": false, - "email": "Matthias.Kober@institution.example.com", - "title": "", - "first_name_given": "Matthias", - "first_name_chosen": "", - "last_name": "Kober", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4084, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c3e077b1-cde8-4f9f-b970-b5c0c7c3f738", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-10T21:44:14.222", - "is_superuser": false, - "email": "fay.westmoreland@institution.example.com", - "title": "", - "first_name_given": "Fay", - "first_name_chosen": "", - "last_name": "Westmoreland", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c3f6ee3d-b48f-495f-9285-df74ed60de16", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-10T17:32:03.488", - "is_superuser": false, - "email": "collin.hanley@institution.example.com", - "title": "", - "first_name_given": "Collin", - "first_name_chosen": "", - "last_name": "Hanley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c4079cae-f6dc-43da-b7d8-3c624ccf758a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T09:09:08.220", - "is_superuser": false, - "email": "josef.castellano@institution.example.com", - "title": "", - "first_name_given": "Josef", - "first_name_chosen": "", - "last_name": "Castellano", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c422ae2a-a485-49d2-b718-60dc3a1df7cf", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-03T08:42:40.410", - "is_superuser": false, - "email": "student@institution.example.com", - "title": "", - "first_name_given": "", - "first_name_chosen": "", - "last_name": "student", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1617, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c446fa0b-8cb4-4b43-917b-33b9e25bf359", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-22T16:34:45.660", - "is_superuser": false, - "email": "jarod.cate@institution.example.com", - "title": "", - "first_name_given": "Jarod", - "first_name_chosen": "", - "last_name": "Cate", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3440, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c44f93c0-cc6b-4406-96d8-d3d96e6c3e62", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-03-01T13:31:23.413", - "is_superuser": false, - "email": "renaldo.melendez@institution.example.com", - "title": "", - "first_name_given": "Renaldo", - "first_name_chosen": "", - "last_name": "Melendez", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 365, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c49575a9-97e3-4293-aa90-d3e1103b988d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-04T08:22:23.153", - "is_superuser": false, - "email": "taunya.weinstein@institution.example.com", - "title": "", - "first_name_given": "Taunya", - "first_name_chosen": "", - "last_name": "Weinstein", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3434, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c4e6acd4-38c1-4978-a4d1-2233cdc4dc25", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T20:17:01.986", - "is_superuser": false, - "email": "delena.gooch@institution.example.com", - "title": "", - "first_name_given": "Delena", - "first_name_chosen": "", - "last_name": "Gooch", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4148, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c4fa6f7f-0926-4411-a509-f45e04e9557f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-23T16:05:42.773", - "is_superuser": false, - "email": "ariana.houghton@institution.example.com", - "title": "", - "first_name_given": "Ariana", - "first_name_chosen": "", - "last_name": "Houghton", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1660, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c51ee82a-0616-424a-be73-8e97ec10ed18", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-26T15:26:45.194", - "is_superuser": false, - "email": "mercedes.hatch@institution.example.com", - "title": "", - "first_name_given": "Mercedes", - "first_name_chosen": "", - "last_name": "Hatch", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3354, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c527b375-7ee6-4fe3-9662-943fd250f225", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-02T21:46:20.458", - "is_superuser": false, - "email": "michaele.shuler@institution.example.com", - "title": "", - "first_name_given": "Michaele", - "first_name_chosen": "", - "last_name": "Shuler", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c5a07d96-58ae-47c8-92f6-cf3596f2b621", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-07T13:35:24.761", - "is_superuser": false, - "email": "randi.woody@institution.example.com", - "title": "", - "first_name_given": "Randi", - "first_name_chosen": "", - "last_name": "Woody", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4139, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c5affb39-d882-4291-bcf5-94ed32dbf781", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-08T14:53:12.763", - "is_superuser": false, - "email": "milly.early@institution.example.com", - "title": "", - "first_name_given": "Milly", - "first_name_chosen": "", - "last_name": "Early", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3721, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c5cef807-dfaa-4ccf-a43c-e931f68fe4f7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-10T10:51:46.256", - "is_superuser": false, - "email": "marya.metcalf@institution.example.com", - "title": "", - "first_name_given": "Marya", - "first_name_chosen": "", - "last_name": "Metcalf", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3821, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c5d34cd6-7206-4f2a-a267-db1c95442f23", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-10T15:35:41.696", - "is_superuser": false, - "email": "january.copeland@institution.example.com", - "title": "", - "first_name_given": "January", - "first_name_chosen": "", - "last_name": "Copeland", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 1634, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c5d8cc2a-a6ee-4a8b-87a9-d545e304af0e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-10T17:29:53.306", - "is_superuser": false, - "email": "jeremiah.burkholder@institution.example.com", - "title": "", - "first_name_given": "Jeremiah", - "first_name_chosen": "", - "last_name": "Burkholder", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4121, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c5f0ae6c-7d22-49c8-b3a6-0e39d5372595", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-22T22:49:57.122", - "is_superuser": false, - "email": "wava.dolan@institution.example.com", - "title": "", - "first_name_given": "Wava", - "first_name_chosen": "", - "last_name": "Dolan", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c613adb6-35d0-4f5e-bb10-664c76fb056f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-16T12:48:01.632", - "is_superuser": false, - "email": "herminia.alley@institution.example.com", - "title": "", - "first_name_given": "Herminia", - "first_name_chosen": "", - "last_name": "Alley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1680, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c62056a8-7f3a-4871-932c-b1d909a27801", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T16:02:57.758", - "is_superuser": false, - "email": "armandina.byrne@institution.example.com", - "title": "", - "first_name_given": "Armandina", - "first_name_chosen": "", - "last_name": "Byrne", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3355, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c652027e-73d8-4c2f-b3f1-8b2a89d4db5c", "fields": { - "password": "pbkdf2_sha256$20000$MapdKDF22w2c$+BDIKGr3INVhRWV25Y5UBG9mP/pJOiKPvgF2UK/aclc=", - "last_login": "2015-11-08T14:34:10.243", - "is_superuser": false, - "email": "kristina.baker@institution.example.com", - "title": "", - "first_name_given": "Kristina", - "first_name_chosen": "", - "last_name": "Baker", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4046, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c677929d-553d-40ab-8c81-03e292e19831", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T15:44:18.632", - "is_superuser": false, - "email": "cheryl.lucas@institution.example.com", - "title": "", - "first_name_given": "Cheryl", - "first_name_chosen": "", - "last_name": "Lucas", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3859, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c6e06086-2f49-4e63-822b-76d0dbca9eb7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:58:07.212", - "is_superuser": false, - "email": "marcos.huang@institution.example.com", - "title": "", - "first_name_given": "Marcos", - "first_name_chosen": "", - "last_name": "Huang", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3553, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c6e49040-c2c2-412e-8f08-765108b996e0", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-26T09:17:18.823", - "is_superuser": false, - "email": "sima.marquardt@institution.example.com", - "title": "", - "first_name_given": "Sima", - "first_name_chosen": "", - "last_name": "Marquardt", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 1658, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c714685b-58dd-45a1-92cc-2dc27d9843df", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-03T20:01:38.610", - "is_superuser": false, - "email": "arturo.heflin@institution.example.com", - "title": "", - "first_name_given": "Arturo", - "first_name_chosen": "", - "last_name": "Heflin", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c71cef9e-08c1-4616-b661-6eb3745cb32e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T16:02:54.654", - "is_superuser": false, - "email": "rhona.earl@institution.example.com", - "title": "", - "first_name_given": "Rhona", - "first_name_chosen": "", - "last_name": "Earl", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 1201, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c7659a45-02d6-4ba1-a8c0-f0563f76baab", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-07T12:27:44.048", - "is_superuser": false, - "email": "jenniffer.kinard@institution.example.com", - "title": "", - "first_name_given": "Jenniffer", - "first_name_chosen": "", - "last_name": "Kinard", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3607, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c7a3295b-b6ad-480b-9a5c-d4d5ab5986a6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-08-04T13:52:06.334", - "is_superuser": false, - "email": "corey.loera@institution.example.com", - "title": "", - "first_name_given": "Corey", - "first_name_chosen": "", - "last_name": "Loera", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4022, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c7d7c2b9-df22-4250-b757-05da98a85c3e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T09:16:24.696", - "is_superuser": false, - "email": "camila.sharp@institution.example.com", - "title": "", - "first_name_given": "Camila", - "first_name_chosen": "", - "last_name": "Sharp", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3723, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c7f3994d-1f59-4f1c-b5d1-eab6727ddced", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-06T15:47:03.050", - "is_superuser": false, - "email": "merideth.chandler@institution.example.com", - "title": "", - "first_name_given": "Merideth", - "first_name_chosen": "", - "last_name": "Chandler", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c7fd9d22-d47d-4b97-8325-5155a8633c5a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T07:51:49.472", - "is_superuser": false, - "email": "gertude.knotts@institution.example.com", - "title": "", - "first_name_given": "Gertude", - "first_name_chosen": "", - "last_name": "Knotts", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1288, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c833127a-8a89-4faa-bda9-3aec2652caa4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-29T01:24:56.050", - "is_superuser": false, - "email": "lita.regan@institution.example.com", - "title": "", - "first_name_given": "Lita", - "first_name_chosen": "", - "last_name": "Regan", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1660, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c841437a-a515-471a-bb16-d8d1a5781baf", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-02T13:21:09.494", - "is_superuser": false, - "email": "stacy.sawyer@institution.example.com", - "title": "", - "first_name_given": "Stacy", - "first_name_chosen": "", - "last_name": "Sawyer", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3862, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c8558ab8-9b71-4bc1-a043-447b0501ac83", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:15.568", - "is_superuser": false, - "email": "kandra.monahan@institution.example.com", - "title": "", - "first_name_given": "Kandra", - "first_name_chosen": "", - "last_name": "Monahan", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 1201, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c871733d-e533-4170-bd45-213e7bfed2e7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-26T09:22:05.989", - "is_superuser": false, - "email": "lucia.helton@institution.example.com", - "title": "", - "first_name_given": "Lucia", - "first_name_chosen": "", - "last_name": "Helton", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3822, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c8b9610a-43cd-4dd9-b044-7a3352bc33bc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-19T12:01:49.760", - "is_superuser": false, - "email": "lilia.erwin@institution.example.com", - "title": "", - "first_name_given": "Lilia", - "first_name_chosen": "", - "last_name": "Erwin", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3473, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c8cc2358-1a31-46ff-84a0-1dad45ebc88b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T15:51:28.646", - "is_superuser": false, - "email": "gwyn.berger@institution.example.com", - "title": "", - "first_name_given": "Gwyn", - "first_name_chosen": "", - "last_name": "Berger", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c8dd7bc7-08a9-4046-bcc2-09df60d46eab", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-03T08:46:48.712", - "is_superuser": false, - "email": "contributor@institution.example.com", - "title": "", - "first_name_given": "", - "first_name_chosen": "", - "last_name": "contributor", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3486, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c8e91850-5dd7-4236-b5c9-0e76ff85acda", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-22T21:05:21.778", - "is_superuser": false, - "email": "lorrine.robertson@institution.example.com", - "title": "", - "first_name_given": "Lorrine", - "first_name_chosen": "", - "last_name": "Robertson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c8f0f314-1bcc-48d3-852a-f13b13915697", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-06-05T22:28:25.156", - "is_superuser": false, - "email": "agatha.howe@institution.example.com", - "title": "", - "first_name_given": "Agatha", - "first_name_chosen": "", - "last_name": "Howe", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c8faf027-bf6b-4379-9913-5ff8bb28be7c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-12-18T15:33:29.791", - "is_superuser": false, - "email": "willodean.kitchens@institution.example.com", - "title": "", - "first_name_given": "Willodean", - "first_name_chosen": "", - "last_name": "Kitchens", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 3475, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c95811f7-2f92-4d6f-a6ed-8afeeb814037", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-28T09:53:37.453", - "is_superuser": false, - "email": "felicia.rawlings@institution.example.com", - "title": "", - "first_name_given": "Felicia", - "first_name_chosen": "", - "last_name": "Rawlings", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3462, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c98847e0-cf25-4e44-8230-ebef01a96488", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-13T22:14:34.781", - "is_superuser": false, - "email": "stanford.vernon@institution.example.com", - "title": "", - "first_name_given": "Stanford", - "first_name_chosen": "", - "last_name": "Vernon", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3553, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c99413ff-6fd1-4a25-b829-837b5ed85b66", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-18T23:15:45.143", - "is_superuser": false, - "email": "lyndon.bowles@institution.example.com", - "title": "", - "first_name_given": "Lyndon", - "first_name_chosen": "", - "last_name": "Bowles", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1812, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c99a648a-efe7-493c-8d31-1f26e78c1b7f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:10:16.988", - "is_superuser": false, - "email": "ute.ybarra@institution.example.com", - "title": "", - "first_name_given": "Ute", - "first_name_chosen": "", - "last_name": "Ybarra", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "c9c83eb2-b585-422b-aafd-ce1acd34f76f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-22T10:17:57.715", - "is_superuser": true, - "email": "earlene.marquis@institution.example.com", - "title": "", - "first_name_given": "Earlene", - "first_name_chosen": "", - "last_name": "Marquis", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [ - [ - "Manager" - ] - ], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 912, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ca040233-663d-45ae-877a-6d00ee42c366", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T17:51:10.181", - "is_superuser": false, - "email": "jesusita.box@institution.example.com", - "title": "", - "first_name_given": "Jesusita", - "first_name_chosen": "", - "last_name": "Box", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ca2c49c2-7d26-4615-b118-427c5dcdcef1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T19:26:37.650", - "is_superuser": false, - "email": "carman.slagle@institution.example.com", - "title": "", - "first_name_given": "Carman", - "first_name_chosen": "", - "last_name": "Slagle", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3721, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ca882bb8-0520-4917-a2d9-08f99e4f7e14", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-06-06T14:51:06.563", - "is_superuser": false, - "email": "vincenzo.boston@institution.example.com", - "title": "", - "first_name_given": "Vincenzo", - "first_name_chosen": "", - "last_name": "Boston", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3440, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ca91c2ec-c2e7-4eba-8e8e-259e1823d306", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T15:52:03.602", - "is_superuser": false, - "email": "salina.boykin@institution.example.com", - "title": "", - "first_name_given": "Salina", - "first_name_chosen": "", - "last_name": "Boykin", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "caa7d389-42eb-493d-b4d5-c36996c484f4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T15:13:24.342", - "is_superuser": false, - "email": "shanta.jay@institution.example.com", - "title": "", - "first_name_given": "Shanta", - "first_name_chosen": "", - "last_name": "Jay", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cabcd198-4108-4383-a41c-6e4d93849506", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T23:40:10.825", - "is_superuser": false, - "email": "larraine.olson@institution.example.com", - "title": "", - "first_name_given": "Larraine", - "first_name_chosen": "", - "last_name": "Olson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3879, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cae277cb-ad6a-4231-b4fd-22ad8ef64522", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-07T10:07:30.747", - "is_superuser": false, - "email": "shemeka.nieves@institution.example.com", - "title": "", - "first_name_given": "Shemeka", - "first_name_chosen": "", - "last_name": "Nieves", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "caf3101e-8817-4e92-ae7f-f4dae27c7feb", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:38:13.699", - "is_superuser": false, - "email": "almeta.cody@institution.example.com", - "title": "", - "first_name_given": "Almeta", - "first_name_chosen": "", - "last_name": "Cody", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 455, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cb0b07e1-4f79-424f-bbf3-f8caa9b01e03", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-29T20:02:26.052", - "is_superuser": false, - "email": "mirtha.cleveland@institution.example.com", - "title": "", - "first_name_given": "Mirtha", - "first_name_chosen": "", - "last_name": "Cleveland", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3435, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cb2a88a0-7bfa-4e02-86e2-898284dbe93b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-28T10:57:50.631", - "is_superuser": false, - "email": "mickie.england@institution.example.com", - "title": "", - "first_name_given": "Mickie", - "first_name_chosen": "", - "last_name": "England", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4084, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cb43e75b-99a2-4296-bf66-4ad2210bc51e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T18:23:27.426", - "is_superuser": false, - "email": "shayna.hyde@institution.example.com", - "title": "", - "first_name_given": "Shayna", - "first_name_chosen": "", - "last_name": "Hyde", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3390, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cb4d428c-6a81-45ed-b53e-c3da6b260480", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-07T15:00:33.447", - "is_superuser": false, - "email": "tyrell.pfeiffer@institution.example.com", - "title": "", - "first_name_given": "Tyrell", - "first_name_chosen": "", - "last_name": "Pfeiffer", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": "2013-09-28", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cb760c10-5f29-453f-9d88-72a47fdc82c7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-05T13:08:04.066", - "is_superuser": false, - "email": "minerva.moe@institution.example.com", - "title": "", - "first_name_given": "Minerva", - "first_name_chosen": "", - "last_name": "Moe", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cbd973bd-1a4a-4d69-a202-b4fe5ee10639", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T10:17:59.824", - "is_superuser": false, - "email": "sandie.aiello@institution.example.com", - "title": "", - "first_name_given": "Sandie", - "first_name_chosen": "", - "last_name": "Aiello", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cbf7cdb5-2ced-4e45-9b59-94eb91cbad21", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-22T16:02:09.366", - "is_superuser": false, - "email": "elenora.ellis@institution.example.com", - "title": "", - "first_name_given": "Elenora", - "first_name_chosen": "", - "last_name": "Ellis", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4156, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cc007e92-2b8e-43b2-b63f-8dd584186336", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:19.962", - "is_superuser": false, - "email": "linnea.humes@institution.example.com", - "title": "", - "first_name_given": "Linnea", - "first_name_chosen": "", - "last_name": "Humes", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 4002, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cc1306ac-5061-4b1c-bed5-611122076216", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-24T11:19:54.509", - "is_superuser": true, - "email": "hassie.dortch@institution.example.com", - "title": "", - "first_name_given": "Hassie", - "first_name_chosen": "", - "last_name": "Dortch", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [ - [ - "Manager" - ] - ], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cc569187-c16d-4549-96d5-fae7d0cf7a9e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-22T16:03:48.200", - "is_superuser": false, - "email": "bertram.hendrick@institution.example.com", - "title": "", - "first_name_given": "Bertram", - "first_name_chosen": "", - "last_name": "Hendrick", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 822, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cc715089-5a20-43d0-9824-574bc75f0fe9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:10:48.296", - "is_superuser": false, - "email": "randell.reis@institution.example.com", - "title": "", - "first_name_given": "Randell", - "first_name_chosen": "", - "last_name": "Reis", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cc7c7dc2-ca53-4dd5-b37a-952f9c43aae5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T17:14:43.745", - "is_superuser": false, - "email": "kymberly.strange@institution.example.com", - "title": "", - "first_name_given": "Kymberly", - "first_name_chosen": "", - "last_name": "Strange", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 918, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cc7e6701-55fb-451a-a3ee-891dd2d69fcd", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T16:13:10.828", - "is_superuser": false, - "email": "bari.soares@institution.example.com", - "title": "", - "first_name_given": "Bari", - "first_name_chosen": "", - "last_name": "Soares", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4204, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ccc3369e-843c-4ec8-880b-2a8a67b6f22f", "fields": { - "password": "pbkdf2_sha256$20000$4b9M7Kv45ghM$CIqoizm3HLhMh3D1+xye5Jqr6LV7IyXGBWmwmsVW/js=", - "last_login": "2015-11-08T12:44:39.899", - "is_superuser": false, - "email": "lachelle.hermann@institution.example.com", - "title": "", - "first_name_given": "Lachelle", - "first_name_chosen": "", - "last_name": "Hermann", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3685, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ccc56194-df22-4112-9b64-bf3e25e4cd74", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T13:39:24.115", - "is_superuser": false, - "email": "sheridan.limon@institution.example.com", - "title": "", - "first_name_given": "Sheridan", - "first_name_chosen": "", - "last_name": "Limon", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3723, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ccd165a5-dc98-4bc9-bf77-829bebffd43a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-04T00:53:53.335", - "is_superuser": false, - "email": "alona.oldham@institution.example.com", - "title": "", - "first_name_given": "Alona", - "first_name_chosen": "", - "last_name": "Oldham", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4120, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ccf08a19-3ee2-4d98-b3ba-f88f530d8a9d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-11T21:23:39.762", - "is_superuser": false, - "email": "kristyn.holcomb@institution.example.com", - "title": "", - "first_name_given": "Kristyn", - "first_name_chosen": "", - "last_name": "Holcomb", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ccfc5b2d-171b-407a-9bab-ea28d6b8e4f3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:22.152", - "is_superuser": false, - "email": "annmarie.godfrey@institution.example.com", - "title": "", - "first_name_given": "Annmarie", - "first_name_chosen": "", - "last_name": "Godfrey", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 1724, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cd02eff2-2cec-4abf-a6a8-660b620a3e79", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-08T08:52:55.707", - "is_superuser": false, - "email": "verena.blaylock@institution.example.com", - "title": "", - "first_name_given": "Verena", - "first_name_chosen": "", - "last_name": "Blaylock", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3859, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cd199117-05b1-4a2d-9a55-c11e6f7c1c52", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-04-22T16:37:57.331", - "is_superuser": false, - "email": "lupe.comstock@institution.example.com", - "title": "", - "first_name_given": "Lupe", - "first_name_chosen": "", - "last_name": "Comstock", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3723, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cd29f011-8a5b-4b9b-b031-9defe6bc280d", "fields": { - "password": "pbkdf2_sha256$20000$cZek9pUwPWjz$HOcVeL8Q7himlOTBlPRkP79kJq5aGpXRkzQy6Y0Twok=", - "last_login": "2015-11-08T14:33:55.842", - "is_superuser": false, - "email": "sheena.arsenault@institution.example.com", - "title": "", - "first_name_given": "Sheena", - "first_name_chosen": "", - "last_name": "Arsenault", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 1154, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cd36bd2a-73da-4db5-8cf1-a34ecd8a993c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T07:11:18.259", - "is_superuser": false, - "email": "kandis.thurston@institution.example.com", - "title": "", - "first_name_given": "Kandis", - "first_name_chosen": "", - "last_name": "Thurston", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 3646, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cd3c8c48-79da-4386-b795-a349debc311c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T09:08:53.814", - "is_superuser": false, - "email": "xiomara.nakamura@institution.example.com", - "title": "", - "first_name_given": "Xiomara", - "first_name_chosen": "", - "last_name": "Nakamura", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3355, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cd6a71ce-5c5c-4e66-a9a2-1a1ac667af12", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-09T00:31:01.004", - "is_superuser": false, - "email": "jeannie.spears@institution.example.com", - "title": "", - "first_name_given": "Jeannie", - "first_name_chosen": "", - "last_name": "Spears", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3354, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cd734450-4a52-4646-b84e-8690e8cdba6c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:23.295", - "is_superuser": false, - "email": "precious.reiss@institution.example.com", - "title": "", - "first_name_given": "Precious", - "first_name_chosen": "", - "last_name": "Reiss", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cd8a592e-6ff2-481d-afd4-d02f09c7d547", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-18T14:16:22.169", - "is_superuser": false, - "email": "concha.ezell@institution.example.com", - "title": "", - "first_name_given": "Concha", - "first_name_chosen": "", - "last_name": "Ezell", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cda171d1-6c7c-4bbc-a508-cd353a6ffb19", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:23.516", - "is_superuser": false, - "email": "mario.voigt@institution.example.com", - "title": "", - "first_name_given": "Mario", - "first_name_chosen": "", - "last_name": "Voigt", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cda2e637-ba3c-4ac3-a21d-8c83a143ebae", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-13T17:20:30.190", - "is_superuser": false, - "email": "chia.spalding@institution.example.com", - "title": "", - "first_name_given": "Chia", - "first_name_chosen": "", - "last_name": "Spalding", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cdaa5e55-6bcf-4f60-8979-d7b9e91550de", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-08T14:57:57.136", - "is_superuser": false, - "email": "audie.luna@institution.example.com", - "title": "", - "first_name_given": "Audie", - "first_name_chosen": "", - "last_name": "Luna", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3406, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cdb57121-5e1b-47ee-9df8-4a8838441710", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-23T15:45:57.358", - "is_superuser": false, - "email": "armida.nobles@institution.example.com", - "title": "", - "first_name_given": "Armida", - "first_name_chosen": "", - "last_name": "Nobles", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 908, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cdd39e99-7ab7-4801-b7b6-5c8e8fc4da0b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-14T13:04:03.554", - "is_superuser": false, - "email": "florencia.washington@institution.example.com", - "title": "", - "first_name_given": "Florencia", - "first_name_chosen": "", - "last_name": "Washington", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ce12ebf7-7ee0-4a43-85d5-6aadb3633d24", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-24T19:46:34.696", - "is_superuser": false, - "email": "gladis.vandiver@institution.example.com", - "title": "", - "first_name_given": "Gladis", - "first_name_chosen": "", - "last_name": "Vandiver", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ce16aea7-45d6-45e5-a7ea-faaf34e471f3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-13T16:29:16.534", - "is_superuser": false, - "email": "risa.hammer@institution.example.com", - "title": "", - "first_name_given": "Risa", - "first_name_chosen": "", - "last_name": "Hammer", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3454, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ce18625e-4045-4f2d-8613-728da5d6d708", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-09T06:40:44.829", - "is_superuser": false, - "email": "mable.craddock@institution.example.com", - "title": "", - "first_name_given": "Mable", - "first_name_chosen": "", - "last_name": "Craddock", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 1702, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ce247b98-6a73-474e-8498-6317b6568b74", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T07:30:47.334", - "is_superuser": false, - "email": "maxie.childers@institution.example.com", - "title": "", - "first_name_given": "Maxie", - "first_name_chosen": "", - "last_name": "Childers", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4204, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ce4636fd-0ed2-4e05-b9d2-f8827034c0fc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-07T09:46:02.467", - "is_superuser": false, - "email": "caryl.ivory@institution.example.com", - "title": "", - "first_name_given": "Caryl", - "first_name_chosen": "", - "last_name": "Ivory", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3608, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ce472393-0066-4205-8ef6-9447206e208b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-23T13:52:32.364", - "is_superuser": false, - "email": "zack.chaffin@institution.example.com", - "title": "", - "first_name_given": "Zack", - "first_name_chosen": "", - "last_name": "Chaffin", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3473, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ce64bf90-0314-40b3-bfc0-9dbb6bc3d2dc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:25.133", - "is_superuser": false, - "email": "angelita.stearns@institution.example.com", - "title": "", - "first_name_given": "Angelita", - "first_name_chosen": "", - "last_name": "Stearns", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4039, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ce650621-383a-4432-a66c-9b6247ed02ed", "fields": { - "password": "pbkdf2_sha256$20000$384ADW2W9sEE$79veVLxuZa1S88YegvqOkqo3waDDqHGGLQ8QcBrV6ZQ=", - "last_login": "2015-11-08T12:46:25.140", - "is_superuser": false, - "email": "alton.smalley@institution.example.com", - "title": "", - "first_name_given": "Alton", - "first_name_chosen": "", - "last_name": "Smalley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 885, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ce6ab58f-79e0-4f0f-b615-51e13432fa76", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-02T23:22:23.103", - "is_superuser": false, - "email": "kirstin.carbone@institution.example.com", - "title": "", - "first_name_given": "Kirstin", - "first_name_chosen": "", - "last_name": "Carbone", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1781, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ce8ae046-5d78-4b72-8399-707a69628e46", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-13T19:06:29.724", - "is_superuser": false, - "email": "kelsey.kay@institution.example.com", - "title": "", - "first_name_given": "Kelsey", - "first_name_chosen": "", - "last_name": "Kay", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3848, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ce91ceee-eafa-4897-af73-1e816ed544fc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-13T16:38:42.007", - "is_superuser": false, - "email": "penelope.covert@institution.example.com", - "title": "", - "first_name_given": "Penelope", - "first_name_chosen": "", - "last_name": "Covert", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1656, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ce9ed908-202b-457d-a20f-8993149d34d9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T23:52:16.190", - "is_superuser": false, - "email": "christia.manzo@institution.example.com", - "title": "", - "first_name_given": "Christia", - "first_name_chosen": "", - "last_name": "Manzo", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 4020, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cec7fbbc-3750-48cd-8286-563214e5e10f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:26.206", - "is_superuser": false, - "email": "donnie.bates@institution.example.com", - "title": "", - "first_name_given": "Donnie", - "first_name_chosen": "", - "last_name": "Bates", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cef05434-0e09-40f0-96fb-bb1a26ef1ab1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-14T12:48:26.729", - "is_superuser": false, - "email": "belia.coe@institution.example.com", - "title": "", - "first_name_given": "Belia", - "first_name_chosen": "", - "last_name": "Coe", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 393, + "contribution": 3781, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cf02c8e9-812f-4f74-9fd2-9c47ba948368", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-03T13:07:11.525", - "is_superuser": false, - "email": "allie.lowell@institution.example.com", - "title": "", - "first_name_given": "Allie", - "first_name_chosen": "", - "last_name": "Lowell", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cf0e9f39-628c-4c6b-aaca-0152e0dd2755", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-03T03:36:51.513", - "is_superuser": false, - "email": "florene.carney@institution.example.com", - "title": "", - "first_name_given": "Florene", - "first_name_chosen": "", - "last_name": "Carney", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cf100bab-bf19-495e-9102-a6bfe321ae5d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-13T13:16:03.591", - "is_superuser": false, - "email": "dannielle.mattingly@institution.example.com", - "title": "", - "first_name_given": "Dannielle", - "first_name_chosen": "", - "last_name": "Mattingly", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3508, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cf1577b7-ff21-466a-8f22-ebc018f1943d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-08T09:16:34.608", - "is_superuser": false, - "email": "corrine.kell@institution.example.com", - "title": "", - "first_name_given": "Corrine", - "first_name_chosen": "", - "last_name": "Kell", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": "2012-05-08", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3917, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cf1f8fac-9b02-4868-9d4c-18a5ce13f014", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-21T13:00:11.106", - "is_superuser": false, - "email": "roxanna.sandlin@institution.example.com", - "title": "", - "first_name_given": "Roxanna", - "first_name_chosen": "", - "last_name": "Sandlin", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cf42e4f8-b438-4f7d-b46c-cf0ada7d7044", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-09T15:15:23.092", - "is_superuser": false, - "email": "ariana.amaya@institution.example.com", - "title": "", - "first_name_given": "Ariana", - "first_name_chosen": "", - "last_name": "Amaya", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cf4578b9-1ed6-4695-b801-87e16455dca6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-27T18:06:32.610", - "is_superuser": false, - "email": "maxine.dexter@institution.example.com", - "title": "", - "first_name_given": "Maxine", - "first_name_chosen": "", - "last_name": "Dexter", - "language": "", - "is_proxy_user": false, - "login_key": 979985223, - "login_key_valid_until": "2020-05-25", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1710, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cf61c488-b808-4b8d-8f8a-4d0d7100d66d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T15:50:01.083", - "is_superuser": false, - "email": "rozella.swenson@institution.example.com", - "title": "", - "first_name_given": "Rozella", - "first_name_chosen": "", - "last_name": "Swenson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cf77e1f7-7b1d-46bf-b612-bacfed60dc48", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T17:33:46.339", - "is_superuser": false, - "email": "hoyt.bohn@institution.example.com", - "title": "", - "first_name_given": "Hoyt", - "first_name_chosen": "", - "last_name": "Bohn", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3462, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cf7b6835-e76e-40e0-acb1-080258b3e60e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T18:19:19.030", - "is_superuser": false, - "email": "shameka.dew@institution.example.com", - "title": "", - "first_name_given": "Shameka", - "first_name_chosen": "", - "last_name": "Dew", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4203, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cfa51d5f-f024-4751-b5fa-bdc0e4ef73d5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T23:57:13.157", - "is_superuser": false, - "email": "sharice.kasper@institution.example.com", - "title": "", - "first_name_given": "Sharice", - "first_name_chosen": "", - "last_name": "Kasper", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 885, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cfcd9eed-2719-4f82-98cd-251acd04970a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T22:00:27.184", - "is_superuser": false, - "email": "margery.campos@institution.example.com", - "title": "", - "first_name_given": "Margery", - "first_name_chosen": "", - "last_name": "Campos", - "language": "", - "is_proxy_user": false, - "login_key": 1818483627, - "login_key_valid_until": "2020-05-25", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "cff34c58-7844-458d-93fe-c82a4a0b3a88", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T16:24:39.841", - "is_superuser": false, - "email": "mistie.weddle@institution.example.com", - "title": "", - "first_name_given": "Mistie", - "first_name_chosen": "", - "last_name": "Weddle", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 365, + "contribution": 1662, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d0465f6f-80c8-4401-a58f-e98c699c0698", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T18:52:46.917", - "is_superuser": false, - "email": "antonetta.middleton@institution.example.com", - "title": "", - "first_name_given": "Antonetta", - "first_name_chosen": "", - "last_name": "Middleton", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d046a910-e7fa-44dd-8a01-6e5491a9b726", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:28.729", - "is_superuser": false, - "email": "zana.battles@institution.example.com", - "title": "", - "first_name_given": "Zana", - "first_name_chosen": "", - "last_name": "Battles", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d062b741-c76f-4e97-bd60-814860504045", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-14T21:01:56.880", - "is_superuser": false, - "email": "jerald.cooper@institution.example.com", - "title": "", - "first_name_given": "Jerald", - "first_name_chosen": "", - "last_name": "Cooper", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3556, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d077442b-e81e-42ae-9787-d52f6e6f6dc7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:29.052", - "is_superuser": false, - "email": "joi.almond@institution.example.com", - "title": "", - "first_name_given": "Joi", - "first_name_chosen": "", - "last_name": "Almond", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d08a447b-1663-4147-9ccd-98d9d2c32436", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-07T10:48:32.960", - "is_superuser": false, - "email": "annmarie.briscoe@institution.example.com", - "title": "", - "first_name_given": "Annmarie", - "first_name_chosen": "", - "last_name": "Briscoe", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d0a3a741-bea9-4c71-bd88-f322b88e514c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T08:12:29.144", - "is_superuser": false, - "email": "maura.sosa@institution.example.com", - "title": "", - "first_name_given": "Maura", - "first_name_chosen": "", - "last_name": "Sosa", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3422, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d0c11bf4-2560-44a4-b75d-47963e2640de", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T10:37:17.338", - "is_superuser": false, - "email": "daphne.moll@institution.example.com", - "title": "", - "first_name_given": "Daphne", - "first_name_chosen": "", - "last_name": "Moll", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d0c6e650-0107-423f-b050-956048ad8558", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-02T14:33:40.885", - "is_superuser": false, - "email": "hester.bettencourt@institution.example.com", - "title": "", - "first_name_given": "Hester", - "first_name_chosen": "", - "last_name": "Bettencourt", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 804, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d14596e1-4601-41f9-a2e7-886b21c915d6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T22:38:17.335", - "is_superuser": false, - "email": "monet.greenlee@institution.example.com", - "title": "", - "first_name_given": "Monet", - "first_name_chosen": "", - "last_name": "Greenlee", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 3475, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d1506606-5bcb-49cd-9314-849df6286322", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:30.052", - "is_superuser": false, - "email": "enid.robb@institution.example.com", - "title": "", - "first_name_given": "Enid", - "first_name_chosen": "", - "last_name": "Robb", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d154fa4a-a92d-48bc-a743-679b4cfca72f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-16T10:08:18.664", - "is_superuser": false, - "email": "madelyn.walker@institution.example.com", - "title": "", - "first_name_given": "Madelyn", - "first_name_chosen": "", - "last_name": "Walker", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3555, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d155a793-1623-4559-a278-79235fcb252a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-27T00:30:31.661", - "is_superuser": false, - "email": "gidget.stern@institution.example.com", - "title": "", - "first_name_given": "Gidget", - "first_name_chosen": "", - "last_name": "Stern", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d179ecde-25ff-40a1-96e7-168cdad37a5f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T11:01:26.720", - "is_superuser": false, - "email": "crysta.ainsworth@institution.example.com", - "title": "", - "first_name_given": "Crysta", - "first_name_chosen": "", - "last_name": "Ainsworth", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4120, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d1aecf65-7bff-44a9-acf9-6fd5a031bf1c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T17:13:03.122", - "is_superuser": false, - "email": "rebecca.schuler@institution.example.com", - "title": "", - "first_name_given": "Rebecca", - "first_name_chosen": "", - "last_name": "Schuler", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d1b987c8-0012-4483-aa5a-30d2731f0fe4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-16T09:25:19.080", - "is_superuser": false, - "email": "dale.earnest@institution.example.com", - "title": "", - "first_name_given": "Dale", - "first_name_chosen": "", - "last_name": "Earnest", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3354, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d1ca08d1-050d-4e16-a560-2621c8b917af", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-02T23:41:43.043", - "is_superuser": false, - "email": "virgina.carrasco@institution.example.com", - "title": "", - "first_name_given": "Virgina", - "first_name_chosen": "", - "last_name": "Carrasco", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d1e1d32b-4faa-4f18-addc-85a61ef5799f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-02T23:35:57.142", - "is_superuser": false, - "email": "billi.arce@institution.example.com", - "title": "", - "first_name_given": "Billi", - "first_name_chosen": "", - "last_name": "Arce", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4148, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d1feb886-65b3-4b78-8c38-0ff550446b55", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T15:44:43.594", - "is_superuser": false, - "email": "danika.wills@institution.example.com", - "title": "", - "first_name_given": "Danika", - "first_name_chosen": "", - "last_name": "Wills", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3934, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d21b5c62-a231-41d7-a0ee-6c7847d6f0ea", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T19:32:35.293", - "is_superuser": false, - "email": "wyatt.hale@institution.example.com", - "title": "", - "first_name_given": "Wyatt", - "first_name_chosen": "", - "last_name": "Hale", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4120, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d2427e3e-f133-4c82-be15-d68b9215c88f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-21T22:32:40.335", - "is_superuser": false, - "email": "denna.lester@institution.example.com", - "title": "", - "first_name_given": "Denna", - "first_name_chosen": "", - "last_name": "Lester", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": "2014-01-30", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [ - [ - "Manager" - ] - ], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3434, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d2430db3-27c1-4ece-aa2c-ebe86f073c38", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-24T17:45:28.383", - "is_superuser": false, - "email": "irving.mcdade@institution.example.com", - "title": "", - "first_name_given": "Irving", - "first_name_chosen": "", - "last_name": "Mcdade", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3721, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d2482ec9-fe4f-4aac-8686-f85a0e1a769d", "fields": { - "password": "pbkdf2_sha256$600000$8dcuxbY2OgmCEEj3nlUQWG$qk5ic3Er9FrkCd3VUjC1DEfxd76LPVKrzaMEWGSaxyA=", - "last_login": "2023-09-18T21:02:20.716", - "is_superuser": true, - "email": "evap@institution.example.com", - "title": "", - "first_name_given": "", - "first_name_chosen": "", - "last_name": "evap", - "language": "de", - "is_proxy_user": false, - "login_key": 530207530, - "login_key_valid_until": "2020-05-25", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [ - [ - "Manager" - ], - [ - "Grade publisher" - ] - ], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 908, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d2550dc1-4569-45d2-b1cb-267655d07fe5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-13T19:29:30.798", - "is_superuser": false, - "email": "elissa.fowler@institution.example.com", - "title": "", - "first_name_given": "Elissa", - "first_name_chosen": "", - "last_name": "Fowler", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 884, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d27bb503-6bed-43df-9115-dcf113ea248f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T11:34:58.706", - "is_superuser": false, - "email": "margarette.kersey@institution.example.com", - "title": "", - "first_name_given": "Margarette", - "first_name_chosen": "", - "last_name": "Kersey", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4128, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d29e72eb-dc9e-4fbe-8d8e-af1b6cb24244", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T18:38:17.897", - "is_superuser": false, - "email": "cherly.bobbitt@institution.example.com", - "title": "", - "first_name_given": "Cherly", - "first_name_chosen": "", - "last_name": "Bobbitt", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d2a20cfe-2fb7-48e3-9b43-c679a6a5eb44", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T17:37:41.844", - "is_superuser": false, - "email": "wilmer.goodson@institution.example.com", - "title": "", - "first_name_given": "Wilmer", - "first_name_chosen": "", - "last_name": "Goodson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d2abd2b3-ba01-422d-a0b3-77929c08e290", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T22:28:33.235", - "is_superuser": false, - "email": "lelia.worley@institution.example.com", - "title": "", - "first_name_given": "Lelia", - "first_name_chosen": "", - "last_name": "Worley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d2dc621b-ef57-45e6-b4d5-036f0730bf14", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T09:45:48.903", - "is_superuser": false, - "email": "mitchel.heard@institution.example.com", - "title": "", - "first_name_given": "Mitchel", - "first_name_chosen": "", - "last_name": "Heard", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3796, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d31b8889-ebd9-404a-bb47-07b79a6f44f3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-02T23:21:27.886", - "is_superuser": false, - "email": "terisa.bottoms@institution.example.com", - "title": "", - "first_name_given": "Terisa", - "first_name_chosen": "", - "last_name": "Bottoms", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1656, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d335acb8-87a0-41e5-af6b-e94263e5c398", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:33.482", - "is_superuser": false, - "email": "adelia.whittington@institution.example.com", - "title": "", - "first_name_given": "Adelia", - "first_name_chosen": "", - "last_name": "Whittington", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4204, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d3562ed4-9d6b-40f4-a9d8-42c12a5ff2c3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:57:14.045", - "is_superuser": false, - "email": "cecile.caron@institution.example.com", - "title": "", - "first_name_given": "Cecile", - "first_name_chosen": "", - "last_name": "Caron", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1776, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d35c62ef-23ab-489c-9225-5fee51d80f66", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T11:34:17.043", - "is_superuser": false, - "email": "kristine.leatherman@institution.example.com", - "title": "", - "first_name_given": "Kristine", - "first_name_chosen": "", - "last_name": "Leatherman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3896, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d36621b5-3088-427f-8613-bbff51295c5d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-16T17:25:00.935", - "is_superuser": false, - "email": "wava.pearl@institution.example.com", - "title": "", - "first_name_given": "Wava", - "first_name_chosen": "", - "last_name": "Pearl", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3610, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d37a192c-ce7d-4543-8d97-1b7e3af7eea2", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-06-05T22:30:44.546", - "is_superuser": false, - "email": "maribeth.compton@institution.example.com", - "title": "", - "first_name_given": "Maribeth", - "first_name_chosen": "", - "last_name": "Compton", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d389ae04-7b51-407a-be9b-132668ad832d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-03T19:59:46.473", - "is_superuser": false, - "email": "vernia.keel@institution.example.com", - "title": "", - "first_name_given": "Vernia", - "first_name_chosen": "", - "last_name": "Keel", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d3c75676-5946-47fe-ba73-9c39420e00e7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-29T09:30:22.542", - "is_superuser": false, - "email": "criselda.henry@institution.example.com", - "title": "", - "first_name_given": "Criselda", - "first_name_chosen": "", - "last_name": "Henry", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1298, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d3dddb68-ba72-4911-a02e-79e888caf106", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-15T08:53:31.336", - "is_superuser": false, - "email": "larita.dejesus@institution.example.com", - "title": "", - "first_name_given": "Larita", - "first_name_chosen": "", - "last_name": "Dejesus", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 909, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d3e8bdd3-5836-4931-bb1b-47aaa9dec6d4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-08T21:32:22.282", - "is_superuser": false, - "email": "mercedez.cupp@institution.example.com", - "title": "", - "first_name_given": "Mercedez", - "first_name_chosen": "", - "last_name": "Cupp", - "language": "", - "is_proxy_user": false, - "login_key": 71453046, - "login_key_valid_until": "2020-05-25", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3620, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d3eb7f9e-a145-4e61-b446-f1809e6fbd96", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-08T10:14:16.419", - "is_superuser": false, - "email": "carlota.zaragoza@institution.example.com", - "title": "", - "first_name_given": "Carlota", - "first_name_chosen": "", - "last_name": "Zaragoza", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d4174231-2e23-47a0-afdb-513f8131acb8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:35.089", - "is_superuser": false, - "email": "angelo.bridges@institution.example.com", - "title": "", - "first_name_given": "Angelo", - "first_name_chosen": "", - "last_name": "Bridges", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1784, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d419bbea-df0b-4903-b319-211d3c9fca80", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-08T01:02:52.588", - "is_superuser": false, - "email": "tiffaney.leung@institution.example.com", - "title": "", - "first_name_given": "Tiffaney", - "first_name_chosen": "", - "last_name": "Leung", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3435, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d4216ce0-9989-465f-8327-c390603effcf", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-02T23:35:20.957", - "is_superuser": false, - "email": "aida.broome@institution.example.com", - "title": "", - "first_name_given": "Aida", - "first_name_chosen": "", - "last_name": "Broome", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d4485428-a4a9-46c8-b60e-a6b940c0d1e8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-02T21:15:35.175", - "is_superuser": false, - "email": "yong.furr@institution.example.com", - "title": "", - "first_name_given": "Yong", - "first_name_chosen": "", - "last_name": "Furr", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 912, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d44bfc6c-882e-4676-9e0f-e4d1449fadf2", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-09T09:04:36.560", - "is_superuser": false, - "email": "stacey.timmerman@institution.example.com", - "title": "", - "first_name_given": "Stacey", - "first_name_chosen": "", - "last_name": "Timmerman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3434, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d4870cf4-fd96-4dde-92c5-42f4395201a4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-02T14:27:47.386", - "is_superuser": false, - "email": "asa.carlton@institution.example.com", - "title": "", - "first_name_given": "Asa", - "first_name_chosen": "", - "last_name": "Carlton", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1799, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d48ae2ad-8ca2-45ac-9902-fd1f016428d6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-21T11:54:08.463", - "is_superuser": false, - "email": "birdie.mcclintock@institution.example.com", - "title": "", - "first_name_given": "Birdie", - "first_name_chosen": "", - "last_name": "Mcclintock", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d4aa358a-e525-477f-98e4-038fadd724f5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-22T19:54:53.840", - "is_superuser": false, - "email": "lyndsey.bolt@institution.example.com", - "title": "", - "first_name_given": "Lyndsey", - "first_name_chosen": "", - "last_name": "Bolt", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1734, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d4ab5292-9de0-4985-a611-92e907c17cd4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:36.002", - "is_superuser": false, - "email": "marvel.oakley@institution.example.com", - "title": "", - "first_name_given": "Marvel", - "first_name_chosen": "", - "last_name": "Oakley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 4094, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d4afc33b-1ecc-4050-a0bb-9f188300cdeb", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T19:24:01.703", - "is_superuser": false, - "email": "irwin.tompkins@institution.example.com", - "title": "", - "first_name_given": "Irwin", - "first_name_chosen": "", - "last_name": "Tompkins", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4128, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d4b050c2-d024-4b1c-a226-81f9922dbe58", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-09T13:53:50.181", - "is_superuser": false, - "email": "esther.ulrich@institution.example.com", - "title": "", - "first_name_given": "Esther", - "first_name_chosen": "", - "last_name": "Ulrich", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d4b0efc5-5e51-4f8f-8df0-b356ca6d2733", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T18:05:19.669", - "is_superuser": false, - "email": "kristie.stump@institution.example.com", - "title": "", - "first_name_given": "Kristie", - "first_name_chosen": "", - "last_name": "Stump", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3727, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d4c9993b-7ccd-4dd7-b661-422a9b75a00c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-14T12:02:37.909", - "is_superuser": false, - "email": "evelyne.grigsby@institution.example.com", - "title": "", - "first_name_given": "Evelyne", - "first_name_chosen": "", - "last_name": "Grigsby", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 881, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d4dde4a5-a453-4f50-b39f-3a4231e218ac", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-12T22:27:25.456", - "is_superuser": false, - "email": "tawanna.negrete@institution.example.com", - "title": "", - "first_name_given": "Tawanna", - "first_name_chosen": "", - "last_name": "Negrete", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d4e91893-bcfa-464a-bc06-b99066d17d91", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T08:04:17.109", - "is_superuser": false, - "email": "isiah.hammonds@institution.example.com", - "title": "", - "first_name_given": "Isiah", - "first_name_chosen": "", - "last_name": "Hammonds", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3785, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d50a5d69-8a30-4978-8e08-810421ab61be", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T14:23:10.645", - "is_superuser": false, - "email": "mandie.lomax@institution.example.com", - "title": "", - "first_name_given": "Mandie", - "first_name_chosen": "", - "last_name": "Lomax", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d520349b-38fb-44c0-8cb4-1bda314550d0", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:10:47.369", - "is_superuser": false, - "email": "chauncey.rivera@institution.example.com", - "title": "", - "first_name_given": "Chauncey", - "first_name_chosen": "", - "last_name": "Rivera", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d52382c3-6f12-42ac-9298-5671d2e41df9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-08T22:33:33.258", - "is_superuser": false, - "email": "natalie.gregory@institution.example.com", - "title": "", - "first_name_given": "Natalie", - "first_name_chosen": "", - "last_name": "Gregory", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d52bb6d9-e339-4d57-8800-0b73c68ed50f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T19:32:35.827", - "is_superuser": false, - "email": "jennette.briggs@institution.example.com", - "title": "", - "first_name_given": "Jennette", - "first_name_chosen": "", - "last_name": "Briggs", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d550abf7-4dff-435a-a74d-25a797ddcd88", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T23:00:08.483", - "is_superuser": false, - "email": "velda.kimble@institution.example.com", - "title": "", - "first_name_given": "Velda", - "first_name_chosen": "", - "last_name": "Kimble", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d58829d1-3680-40d0-b4e4-881166146c5b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T01:19:22.774", - "is_superuser": false, - "email": "kaitlin.hamblin@institution.example.com", - "title": "", - "first_name_given": "Kaitlin", - "first_name_chosen": "", - "last_name": "Hamblin", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 4152, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d594f076-e95c-4b1d-b529-a71e36779870", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:37.745", - "is_superuser": false, - "email": "bud.ledbetter@institution.example.com", - "title": "", - "first_name_given": "Bud", - "first_name_chosen": "", - "last_name": "Ledbetter", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 4002, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d5b55bb0-54eb-4a4d-9e27-3df8eefb650d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T22:57:31.055", - "is_superuser": false, - "email": "marilynn.oconnor@institution.example.com", - "title": "", - "first_name_given": "Marilynn", - "first_name_chosen": "", - "last_name": "Oconnor", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": "2013-12-22", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3723, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d6136c3f-94cd-4919-b84d-86bad21dfdb5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-15T13:29:47.113", - "is_superuser": false, - "email": "jene.fowlkes@institution.example.com", - "title": "", - "first_name_given": "Jene", - "first_name_chosen": "", - "last_name": "Fowlkes", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d62b8f48-f731-4eb9-9973-a0edc588d5da", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T16:01:26.112", - "is_superuser": false, - "email": "benito.fuqua@institution.example.com", - "title": "", - "first_name_given": "Benito", - "first_name_chosen": "", - "last_name": "Fuqua", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d679a131-0714-4ba8-94da-610a795fdc31", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-08T13:00:15.973", - "is_superuser": false, - "email": "virgie.engle@institution.example.com", - "title": "", - "first_name_given": "Virgie", - "first_name_chosen": "", - "last_name": "Engle", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d6827284-82f3-4c94-94c8-e0994edeeed1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T09:55:52.502", - "is_superuser": false, - "email": "shemeka.cabrera@institution.example.com", - "title": "", - "first_name_given": "Shemeka", - "first_name_chosen": "", - "last_name": "Cabrera", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4100, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d6b7c7de-b30d-4f9c-931a-316c1a044107", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-26T00:55:06.746", - "is_superuser": false, - "email": "karan.thacker@institution.example.com", - "title": "", - "first_name_given": "Karan", - "first_name_chosen": "", - "last_name": "Thacker", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d6c9a5b5-3000-4302-ae06-387fdddb6d0a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:38.662", - "is_superuser": false, - "email": "elicia.rawlins@institution.example.com", - "title": "", - "first_name_given": "Elicia", - "first_name_chosen": "", - "last_name": "Rawlins", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d6d029dd-4395-4b95-9a95-ba3a66b44304", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T15:11:57.827", - "is_superuser": false, - "email": "reva.root@institution.example.com", - "title": "", - "first_name_given": "Reva", - "first_name_chosen": "", - "last_name": "Root", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d6e0ce04-6d42-4259-962b-b1e3138f76d7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T04:13:23.195", - "is_superuser": false, - "email": "maureen.moe@institution.example.com", - "title": "", - "first_name_given": "Maureen", - "first_name_chosen": "", - "last_name": "Moe", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3645, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d706a22a-c97c-43ec-a82f-e01bfe430676", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T15:40:22.025", - "is_superuser": false, - "email": "myrtice.bohannon@institution.example.com", - "title": "", - "first_name_given": "Myrtice", - "first_name_chosen": "", - "last_name": "Bohannon", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 884, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d74927a7-c99d-4742-8116-852f7e9d973e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T22:14:37.652", - "is_superuser": false, - "email": "melody.large@institution.example.com", - "title": "", - "first_name_given": "Melody", - "first_name_chosen": "", - "last_name": "Large", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d7725f94-f725-4449-8724-33c8dbeb28dd", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-01T14:07:23.055", - "is_superuser": false, - "email": "dannie.cochran@institution.example.com", - "title": "", - "first_name_given": "Dannie", - "first_name_chosen": "", - "last_name": "Cochran", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1217, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d78732a1-8c67-4d7d-bd9c-2c6343b7ecb8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:39.521", - "is_superuser": false, - "email": "fabian.orta@institution.example.com", - "title": "", - "first_name_given": "Fabian", - "first_name_chosen": "", - "last_name": "Orta", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 1634, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d7902461-ce43-49f6-ad75-1a206df49475", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-05T11:21:24.794", - "is_superuser": false, - "email": "ta.larry@institution.example.com", - "title": "", - "first_name_given": "Ta", - "first_name_chosen": "", - "last_name": "Larry", - "language": "", - "is_proxy_user": false, - "login_key": 1209312068, - "login_key_valid_until": "2020-05-25", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d790b33f-bb4e-4b3d-b123-7f13cc9fd2bf", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-06-06T12:59:03.780", - "is_superuser": false, - "email": "azzie.heaton@institution.example.com", - "title": "", - "first_name_given": "Azzie", - "first_name_chosen": "", - "last_name": "Heaton", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d7d397e8-ee92-4bd4-8a95-87474bcd4501", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T09:22:36.534", - "is_superuser": false, - "email": "marshall.guerrero@institution.example.com", - "title": "", - "first_name_given": "Marshall", - "first_name_chosen": "", - "last_name": "Guerrero", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1249, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d7e6d0fb-5c72-4552-bd14-e88bd019c92a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-28T10:55:54.200", - "is_superuser": false, - "email": "aide.kraft@institution.example.com", - "title": "", - "first_name_given": "Aide", - "first_name_chosen": "", - "last_name": "Kraft", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d7f7aa5a-2488-4010-bb39-4fda609f4f65", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-03T20:24:50.005", - "is_superuser": false, - "email": "dominga.vega@institution.example.com", - "title": "", - "first_name_given": "Dominga", - "first_name_chosen": "", - "last_name": "Vega", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4084, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d7fd05d1-bf3b-4ac5-aa11-b679f90cba61", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T15:43:54.085", - "is_superuser": false, - "email": "delila.fredrickson@institution.example.com", - "title": "", - "first_name_given": "Delila", - "first_name_chosen": "", - "last_name": "Fredrickson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3435, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d8717529-5c52-4ab6-93f3-db2b183c3e3c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-09T13:48:54.771", - "is_superuser": false, - "email": "vella.valerio@institution.example.com", - "title": "", - "first_name_given": "Vella", - "first_name_chosen": "", - "last_name": "Valerio", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4203, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d88ad474-0649-4b49-8162-c191a74dfca3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T16:23:44.702", - "is_superuser": false, - "email": "lindsey.carranza@institution.example.com", - "title": "", - "first_name_given": "Lindsey", - "first_name_chosen": "", - "last_name": "Carranza", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3452, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d896c0bb-3083-4c53-922b-107ee6ef95fd", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-02T21:38:33.259", - "is_superuser": false, - "email": "janise.denman@institution.example.com", - "title": "", - "first_name_given": "Janise", - "first_name_chosen": "", - "last_name": "Denman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d8c0c421-e7b7-4e51-98c6-742c9fe56276", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-08T11:46:48.358", - "is_superuser": false, - "email": "winston.samples@institution.example.com", - "title": "", - "first_name_given": "Winston", - "first_name_chosen": "", - "last_name": "Samples", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d901a17b-72ba-4a47-96aa-d85e6beea55f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-19T09:22:46.335", - "is_superuser": false, - "email": "palma.feliciano@institution.example.com", - "title": "", - "first_name_given": "Palma", - "first_name_chosen": "", - "last_name": "Feliciano", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d9049dc3-d1b2-44d3-94fa-9f03f84f40bb", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-27T10:03:37.557", - "is_superuser": false, - "email": "shaunna.barnard@institution.example.com", - "title": "", - "first_name_given": "Shaunna", - "first_name_chosen": "", - "last_name": "Barnard", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": "2013-05-07", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3435, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d950666d-c30c-4bcb-bebe-5aad9137c944", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T17:13:51.600", - "is_superuser": false, - "email": "eugenia.bauer@institution.example.com", - "title": "", - "first_name_given": "Eugenia", - "first_name_chosen": "", - "last_name": "Bauer", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4128, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d96becd6-b5aa-44be-8ba0-b7c744861f69", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-20T19:33:27.473", - "is_superuser": false, - "email": "kayce.grigsby@institution.example.com", - "title": "", - "first_name_given": "Kayce", - "first_name_chosen": "", - "last_name": "Grigsby", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d9854535-7d46-41bf-8120-231edd3f8d29", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T17:38:52.131", - "is_superuser": false, - "email": "maybelle.bolton@institution.example.com", - "title": "", - "first_name_given": "Maybelle", - "first_name_chosen": "", - "last_name": "Bolton", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3918, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d9d91e20-83c6-4ae7-9635-bf43b508954a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-21T09:42:31.361", - "is_superuser": false, - "email": "sherie.ruth@institution.example.com", - "title": "", - "first_name_given": "Sherie", - "first_name_chosen": "", - "last_name": "Ruth", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d9e4a058-a107-407e-a171-26435bbb41b1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-03T07:56:35.761", - "is_superuser": false, - "email": "hollie.labonte@institution.example.com", - "title": "", - "first_name_given": "Hollie", - "first_name_chosen": "", - "last_name": "Labonte", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3440, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d9e8fd8d-de93-4e08-9f4e-4215687a169b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T19:51:46.531", - "is_superuser": false, - "email": "roxy.olds@institution.example.com", - "title": "", - "first_name_given": "Roxy", - "first_name_chosen": "", - "last_name": "Olds", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 912, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "d9fd779d-1dba-4318-bd16-e61572478ed8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-12T10:38:35.165", - "is_superuser": false, - "email": "alene.casas@institution.example.com", - "title": "", - "first_name_given": "Alene", - "first_name_chosen": "", - "last_name": "Casas", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3919, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "da70fc6d-68c3-4965-ba0a-079d53964b99", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-30T20:09:43.194", - "is_superuser": false, - "email": "arline.maier@institution.example.com", - "title": "", - "first_name_given": "Arline", - "first_name_chosen": "", - "last_name": "Maier", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dab9c2fa-15a5-4834-a300-490cb4417a40", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-09T20:28:37.106", - "is_superuser": false, - "email": "hester.ferro@institution.example.com", - "title": "", - "first_name_given": "Hester", - "first_name_chosen": "", - "last_name": "Ferro", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1217, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dad3c4d7-5b52-4fd3-847c-65182dee6509", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-02T23:36:09.667", - "is_superuser": false, - "email": "kiana.easley@institution.example.com", - "title": "", - "first_name_given": "Kiana", - "first_name_chosen": "", - "last_name": "Easley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dadfd66e-995d-4e95-b93f-c5148483b167", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-18T23:16:40.888", - "is_superuser": false, - "email": "brigette.holden@institution.example.com", - "title": "", - "first_name_given": "Brigette", - "first_name_chosen": "", - "last_name": "Holden", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1228, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "db8cb454-0a08-4a45-a63a-044ca434b777", "fields": { - "password": "pbkdf2_sha256$20000$MFOXT3KjBzEo$ornMmvvGJgg0lbDMFL6uUEg5ejJLO98Tz6DWT4RLCY4=", - "last_login": "2015-11-08T12:43:50.016", - "is_superuser": false, - "email": "jeremy.carrington@institution.example.com", - "title": "", - "first_name_given": "Jeremy", - "first_name_chosen": "", - "last_name": "Carrington", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "db8ddc79-db46-45f5-a92b-19697210d0cd", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-10T21:39:20.259", - "is_superuser": false, - "email": "mariano.burns@institution.example.com", - "title": "", - "first_name_given": "Mariano", - "first_name_chosen": "", - "last_name": "Burns", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dbe6bab9-8bbc-476c-8e32-809dd6fa4874", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T04:35:10.895", - "is_superuser": false, - "email": "ashlyn.mccartney@institution.example.com", - "title": "", - "first_name_given": "Ashlyn", - "first_name_chosen": "", - "last_name": "Mccartney", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dc17b6fb-4f24-4c51-9327-554923ee04ff", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T15:12:13.962", - "is_superuser": false, - "email": "bailey.roybal@institution.example.com", - "title": "", - "first_name_given": "Bailey", - "first_name_chosen": "", - "last_name": "Roybal", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 4094, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dc31beed-070d-4586-8f12-e3fa694c2c47", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-31T14:12:32.669", - "is_superuser": false, - "email": "louann.gee@institution.example.com", - "title": "", - "first_name_given": "Louann", - "first_name_chosen": "", - "last_name": "Gee", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3680, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dc34985b-35cf-4b4f-a8a8-8074eb3505ca", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:43.664", - "is_superuser": false, - "email": "hassan.hyde@institution.example.com", - "title": "", - "first_name_given": "Hassan", - "first_name_chosen": "", - "last_name": "Hyde", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1217, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dc414687-27f4-430d-90c0-fe1096123ce0", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-02T23:43:52.409", - "is_superuser": false, - "email": "odessa.mcmullen@institution.example.com", - "title": "", - "first_name_given": "Odessa", - "first_name_chosen": "", - "last_name": "Mcmullen", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 440, + "contribution": 4140, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dc5518c4-9b87-4398-a17a-62f45956decc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-14T12:41:41.729", - "is_superuser": false, - "email": "tuan.malcolm@institution.example.com", - "title": "", - "first_name_given": "Tuan", - "first_name_chosen": "", - "last_name": "Malcolm", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3466, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dc58ee97-c4e5-4c75-9c86-b3fbb9b73bcd", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-04T13:50:04.488", - "is_superuser": false, - "email": "corrinne.ferraro@institution.example.com", - "title": "", - "first_name_given": "Corrinne", - "first_name_chosen": "", - "last_name": "Ferraro", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 836, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dcb5c14b-b243-4537-bb3c-897113ca39e6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-03T09:08:27.634", - "is_superuser": false, - "email": "doyle.stump@institution.example.com", - "title": "", - "first_name_given": "Doyle", - "first_name_chosen": "", - "last_name": "Stump", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 1702, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dcf48a25-ecfa-49b2-9108-35483ff70068", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-09T11:18:07.872", - "is_superuser": false, - "email": "genevive.kelly@institution.example.com", - "title": "", - "first_name_given": "Genevive", - "first_name_chosen": "", - "last_name": "Kelly", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3434, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dcfa9d87-17f8-4574-8889-0ab13347b1d1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T08:46:53.510", - "is_superuser": false, - "email": "thomas.spearman@institution.example.com", - "title": "", - "first_name_given": "Thomas", - "first_name_chosen": "", - "last_name": "Spearman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dd0b153f-5a67-4235-9285-8ee592a30233", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T15:44:02.529", - "is_superuser": false, - "email": "noma.mcdougall@institution.example.com", - "title": "", - "first_name_given": "Noma", - "first_name_chosen": "", - "last_name": "Mcdougall", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dd229458-8630-4e2c-a811-1647b5931d3a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-19T11:39:34.560", - "is_superuser": false, - "email": "kimbery.burnette@institution.example.com", - "title": "", - "first_name_given": "Kimbery", - "first_name_chosen": "", - "last_name": "Burnette", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 908, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dd456843-5baa-41c5-b71d-cd1395331fd5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T22:53:13.150", - "is_superuser": false, - "email": "ileana.puente@institution.example.com", - "title": "", - "first_name_given": "Ileana", - "first_name_chosen": "", - "last_name": "Puente", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dd5f192b-9487-494c-9b52-bd40a2a68617", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-02T17:55:12.113", - "is_superuser": false, - "email": "edda.cady@institution.example.com", - "title": "", - "first_name_given": "Edda", - "first_name_chosen": "", - "last_name": "Cady", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3645, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dd73eb30-39fc-4209-a99c-f4a4b7860ce6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-13T06:53:56.588", - "is_superuser": false, - "email": "etha.hastings@institution.example.com", - "title": "", - "first_name_given": "Etha", - "first_name_chosen": "", - "last_name": "Hastings", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dd7e3318-965a-4359-87ed-405d9cff22d8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-02T23:23:14.748", - "is_superuser": false, - "email": "tami.isaac@institution.example.com", - "title": "", - "first_name_given": "Tami", - "first_name_chosen": "", - "last_name": "Isaac", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3435, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ddac2015-3685-47c1-894b-81edd5467edc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T15:45:51.110", - "is_superuser": false, - "email": "catharine.medeiros@institution.example.com", - "title": "", - "first_name_given": "Catharine", - "first_name_chosen": "", - "last_name": "Medeiros", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dde41594-6ac9-469e-abe9-13de56f64c10", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-30T20:25:28.519", - "is_superuser": false, - "email": "tia.gall@institution.example.com", - "title": "", - "first_name_given": "Tia", - "first_name_chosen": "", - "last_name": "Gall", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3859, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dde5ca98-6e8c-41a3-86f1-9153af9d1d92", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-26T09:54:32.616", - "is_superuser": false, - "email": "gracie.childs@institution.example.com", - "title": "", - "first_name_given": "Gracie", - "first_name_chosen": "", - "last_name": "Childs", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 365, + "contribution": 912, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ddf86658-3af9-41bc-8631-33f2ed521047", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T15:59:01.922", - "is_superuser": false, - "email": "ethyl.rust@institution.example.com", - "title": "", - "first_name_given": "Ethyl", - "first_name_chosen": "", - "last_name": "Rust", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4101, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ddf9d88f-39da-4d3e-8e5b-4b62682ccdf0", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-16T08:44:29.251", - "is_superuser": false, - "email": "lashandra.peacock@institution.example.com", - "title": "", - "first_name_given": "Lashandra", - "first_name_chosen": "", - "last_name": "Peacock", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4148, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "de0516ff-97fa-4eec-93d3-b5b89d86068b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T15:50:28.800", - "is_superuser": false, - "email": "yong.staley@institution.example.com", - "title": "", - "first_name_given": "Yong", - "first_name_chosen": "", - "last_name": "Staley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "de521f49-888d-44d9-975a-8914d4a6c4a8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:47.263", - "is_superuser": false, - "email": "laveta.grubbs@institution.example.com", - "title": "", - "first_name_given": "Laveta", - "first_name_chosen": "", - "last_name": "Grubbs", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 1734, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dec8eab2-6eea-44b9-ac44-0e3fd71ef897", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-08T10:31:06.071", - "is_superuser": false, - "email": "chong.thorne@institution.example.com", - "title": "", - "first_name_given": "Chong", - "first_name_chosen": "", - "last_name": "Thorne", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3894, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ded2eaf8-531a-4dc9-a0a9-225e79ea5bd9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-24T15:18:05.982", - "is_superuser": false, - "email": "christel.rayburn@institution.example.com", - "title": "", - "first_name_given": "Christel", - "first_name_chosen": "", - "last_name": "Rayburn", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3693, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "deda7a2c-8c58-4d81-9bc8-e09b919eb234", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-07T18:19:39.897", - "is_superuser": false, - "email": "marcella.lu@institution.example.com", - "title": "", - "first_name_given": "Marcella", - "first_name_chosen": "", - "last_name": "Lu", - "language": "", - "is_proxy_user": false, - "login_key": 679371237, - "login_key_valid_until": "2020-05-25", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "def49c3e-5cec-4fab-b491-44582180e756", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-08T12:04:40.513", - "is_superuser": false, - "email": "florrie.deluca@institution.example.com", - "title": "", - "first_name_given": "Florrie", - "first_name_chosen": "", - "last_name": "Deluca", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "df1db29d-f3fd-496e-a190-c77abb6f48da", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-09T09:57:42.808", - "is_superuser": false, - "email": "marcia.trammell@institution.example.com", - "title": "", - "first_name_given": "Marcia", - "first_name_chosen": "", - "last_name": "Trammell", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "df21e66d-f4bf-4808-89bc-409149df1232", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T19:27:06.576", - "is_superuser": false, - "email": "delbert.calkins@institution.example.com", - "title": "", - "first_name_given": "Delbert", - "first_name_chosen": "", - "last_name": "Calkins", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "df3541fd-2e8f-4a70-8030-42fa848cbdbd", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T12:05:46.877", - "is_superuser": false, - "email": "randee.dellinger@institution.example.com", - "title": "", - "first_name_given": "Randee", - "first_name_chosen": "", - "last_name": "Dellinger", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 1837, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "df4aadd7-bf92-43fd-9c6e-6ed3446af3a4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T23:32:30.882", - "is_superuser": false, - "email": "crysta.bounds@institution.example.com", - "title": "", - "first_name_given": "Crysta", - "first_name_chosen": "", - "last_name": "Bounds", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 352, + "contribution": 864, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "df70bdfe-deb3-4f79-8ffe-908c2df50e99", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-02T14:15:40.526", - "is_superuser": false, - "email": "carolyn.rose@institution.example.com", - "title": "", - "first_name_given": "Carolyn", - "first_name_chosen": "", - "last_name": "Rose", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3859, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "df726b1f-235c-44d6-9208-8bca8d655faa", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T10:25:52.856", - "is_superuser": false, - "email": "chantay.reedy@institution.example.com", - "title": "", - "first_name_given": "Chantay", - "first_name_chosen": "", - "last_name": "Reedy", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4084, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dfaf4746-efee-47ab-b007-a9bc04fb518d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T22:58:19.362", - "is_superuser": false, - "email": "carmelo.michael@institution.example.com", - "title": "", - "first_name_given": "Carmelo", - "first_name_chosen": "", - "last_name": "Michael", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dfb877ce-0e60-4a16-ba12-204797070b12", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T16:26:00.969", - "is_superuser": false, - "email": "hilde.langston@institution.example.com", - "title": "", - "first_name_given": "Hilde", - "first_name_chosen": "", - "last_name": "Langston", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4189, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dfd48610-41de-4869-b016-c17fb0f8d51b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-16T15:23:28.720", - "is_superuser": false, - "email": "shavon.price@institution.example.com", - "title": "", - "first_name_given": "Shavon", - "first_name_chosen": "", - "last_name": "Price", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3610, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dfde1282-f63e-4421-94dd-a8f04c9086c9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T09:51:24.472", - "is_superuser": false, - "email": "keva.cheng@institution.example.com", - "title": "", - "first_name_given": "Keva", - "first_name_chosen": "", - "last_name": "Cheng", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dfe5954b-3dce-4332-96d8-f311c3e2d245", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-14T11:11:38.104", - "is_superuser": false, - "email": "gaylene.timmons@external.example.com", - "title": "", - "first_name_given": "Gaylene", - "first_name_chosen": "", - "last_name": "Timmons", - "language": "", - "is_proxy_user": false, - "login_key": 1639072630, - "login_key_valid_until": "2012-05-14", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ], - "cc_users": [] + "question": 314, + "contribution": 884, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dfedc96d-ef94-423c-81b2-be8277266e34", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T09:32:31.564", - "is_superuser": false, - "email": "sonia.dominguez@external.example.com", - "title": "Dr.", - "first_name_given": "Sonia", - "first_name_chosen": "", - "last_name": "Dominguez", - "language": "", - "is_proxy_user": false, - "login_key": 500083702, - "login_key_valid_until": "2014-10-27", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ], - "cc_users": [] + "question": 342, + "contribution": 832, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dfee49cd-2035-4974-9ab6-0165d634a8b3", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-19T13:13:58.523", - "is_superuser": false, - "email": "elden.seitz@institution.example.com", - "title": "", - "first_name_given": "Elden", - "first_name_chosen": "", - "last_name": "Seitz", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3939, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "dff313f4-c1fd-42fb-865d-91f65849ac9e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-07T16:04:02.080", - "is_superuser": false, - "email": "beatrice.bridges@external.example.com", - "title": "", - "first_name_given": "Beatrice", - "first_name_chosen": "", - "last_name": "Bridges", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3725, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e0125baf-92f3-4e16-a217-27dd09d49134", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-24T01:27:24.401", - "is_superuser": false, - "email": "reyna.mondragon@institution.example.com", - "title": "", - "first_name_given": "Reyna", - "first_name_chosen": "", - "last_name": "Mondragon", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3740, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e053cfe7-ac55-4a8f-8a4d-5321e1eb32d5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:10:32.552", - "is_superuser": false, - "email": "eleanor.powell@external.example.com", - "title": "", - "first_name_given": "Eleanor", - "first_name_chosen": "", - "last_name": "Powell", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3434, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e0716613-e5af-425b-b8af-276a0902d17d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-12-04T15:15:17.438", - "is_superuser": false, - "email": "lakisha.tisdale@external.example.com", - "title": "", - "first_name_given": "Lakisha", - "first_name_chosen": "", - "last_name": "Tisdale", - "language": "", - "is_proxy_user": false, - "login_key": 2127579123, - "login_key_valid_until": "2013-03-04", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3434, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e0a56db4-cfde-4333-930b-c0fe63daad55", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:10:54.570", - "is_superuser": false, - "email": "gaynell.little@external.example.com", - "title": "", - "first_name_given": "Gaynell", - "first_name_chosen": "", - "last_name": "Little", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e0aaf338-65b0-45e7-9359-15e33790f649", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:11:03.516", - "is_superuser": false, - "email": "quiana.durand@institution.example.com", - "title": "", - "first_name_given": "Quiana", - "first_name_chosen": "", - "last_name": "Durand", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 3821, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e0c67ce9-83f8-4e9b-a9a5-a41060abe63e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:11:26.664", - "is_superuser": false, - "email": "claudia.homan@external.example.com", - "title": "", - "first_name_given": "Claudia", - "first_name_chosen": "", - "last_name": "Homan", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e103c1a3-1c42-4f5c-a1c3-950a1eb1a82e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-23T16:35:49.553", - "is_superuser": false, - "email": "leola.parrott@external.example.com", - "title": "", - "first_name_given": "Leola", - "first_name_chosen": "", - "last_name": "Parrott", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e11fb25d-9ba9-4ed9-8048-411087cfe61a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:11:27.520", - "is_superuser": false, - "email": "dewitt.hooks@external.example.com", - "title": "", - "first_name_given": "Dewitt", - "first_name_chosen": "", - "last_name": "Hooks", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3679, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e123104d-e2fb-4817-b637-a38c1ccc1b52", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:11:55.671", - "is_superuser": false, - "email": "leslee.minor@external.example.com", - "title": "", - "first_name_given": "Leslee", - "first_name_chosen": "", - "last_name": "Minor", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e127024b-8555-49dd-9237-f47fbd40e422", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:11:57.518", - "is_superuser": false, - "email": "lyndia.higdon@institution.example.com", - "title": "Dr.", - "first_name_given": "Lyndia", - "first_name_chosen": "", - "last_name": "Higdon", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 908, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e12cdd95-c0a3-402a-8729-04635946fe47", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-19T11:28:43.154", - "is_superuser": false, - "email": "gwyn.lloyd@institution.example.com", - "title": "", - "first_name_given": "Gwyn", - "first_name_chosen": "", - "last_name": "Lloyd", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": "2013-05-21", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 439, + "contribution": 4090, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e12facc6-b4d9-4041-89f2-3ca2b4efd99f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-26T12:35:59.514", - "is_superuser": false, - "email": "heike.cartwright@external.example.com", - "title": "", - "first_name_given": "Heike", - "first_name_chosen": "", - "last_name": "Cartwright", - "language": "", - "is_proxy_user": false, - "login_key": 3816853, - "login_key_valid_until": "2013-02-21", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 884, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e15cb949-e017-44e9-bae7-4d4df304554c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-24T07:50:44.858", - "is_superuser": false, - "email": "tracie.shephard@external.example.com", - "title": "", - "first_name_given": "Tracie", - "first_name_chosen": "", - "last_name": "Shephard", - "language": "", - "is_proxy_user": false, - "login_key": 1456662462, - "login_key_valid_until": "2013-12-23", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3454, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e1990e14-d25c-42a1-a5ee-5e807532b473", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-24T23:20:57.209", - "is_superuser": false, - "email": "inell.bolden@external.example.com", - "title": "", - "first_name_given": "Inell", - "first_name_chosen": "", - "last_name": "Bolden", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e1c8f258-b7b2-40a6-8cc9-a4d7d8b53fde", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-24T23:22:51.108", - "is_superuser": false, - "email": "chrissy.rector@external.example.com", - "title": "", - "first_name_given": "Chrissy", - "first_name_chosen": "", - "last_name": "Rector", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e1eb87b7-c1ec-4ef2-8064-51c34efd40b4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-24T23:23:39.726", - "is_superuser": false, - "email": "dorla.hudgins@external.example.com", - "title": "", - "first_name_given": "Dorla", - "first_name_chosen": "", - "last_name": "Hudgins", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 3746, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e23a33da-c2ab-4fab-8764-c3938091880e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-24T23:24:23.965", - "is_superuser": false, - "email": "jen.jacoby@external.example.com", - "title": "", - "first_name_given": "Jen", - "first_name_chosen": "", - "last_name": "Jacoby", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e254a87c-8047-46e0-b2bb-11c1d0bb6602", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T14:31:54.681", - "is_superuser": false, - "email": "joella.naquin@institution.example.com", - "title": "", - "first_name_given": "Joella", - "first_name_chosen": "", - "last_name": "Naquin", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e2cd2600-7fee-4dcf-909b-930f388fe941", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-28T15:56:55.138", - "is_superuser": false, - "email": "valery.bassett@institution.example.com", - "title": "", - "first_name_given": "Valery", - "first_name_chosen": "", - "last_name": "Bassett", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e2edcae6-6e7b-4450-b5eb-cc2dd10fd855", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T21:38:05.492", - "is_superuser": false, - "email": "kassie.lockett@institution.example.com", - "title": "", - "first_name_given": "Kassie", - "first_name_chosen": "", - "last_name": "Lockett", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4228, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e3229abd-3fbf-42c9-beb9-129cf478d43d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:11:41.668", - "is_superuser": false, - "email": "malika.hansen@institution.example.com", - "title": "", - "first_name_given": "Malika", - "first_name_chosen": "", - "last_name": "Hansen", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3390, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e32d5bca-de84-443b-adfb-749b528bd815", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-30T13:29:34.870", - "is_superuser": false, - "email": "alix.mancini@institution.example.com", - "title": "", - "first_name_given": "Alix", - "first_name_chosen": "", - "last_name": "Mancini", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4046, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e33352d1-5fe2-4519-963d-6a1ecc7bc3f0", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-08-07T13:47:19.134", - "is_superuser": false, - "email": "olivia.trevino@institution.example.com", - "title": "", - "first_name_given": "Olivia", - "first_name_chosen": "", - "last_name": "Trevino", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e343e20d-2a1d-479d-a19f-6b02c9a34ff1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-30T13:33:16.547", - "is_superuser": false, - "email": "sherlene.bobbitt@external.example.com", - "title": "", - "first_name_given": "Sherlene", - "first_name_chosen": "", - "last_name": "Bobbitt", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 1154, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e34c08dc-3af8-42ce-bb6e-eb47a3f82f74", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-02T13:45:41.652", - "is_superuser": false, - "email": "doria.matthews@institution.example.com", - "title": "", - "first_name_given": "Doria", - "first_name_chosen": "", - "last_name": "Matthews", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 4094, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e3691f7d-3419-4cc2-836e-fe9310900049", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-30T14:36:05.698", - "is_superuser": false, - "email": "jacinto.wild@institution.example.com", - "title": "", - "first_name_given": "Jacinto", - "first_name_chosen": "", - "last_name": "Wild", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3391, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e37b06a9-8cff-4dfb-8e27-e2a2a69fa6ef", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-30T17:29:08.879", - "is_superuser": false, - "email": "reyna.masterson@external.example.com", - "title": "", - "first_name_given": "Reyna", - "first_name_chosen": "", - "last_name": "Masterson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e3f6c3c0-d29c-4f61-865a-1dfe0c4f7b1a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-30T17:29:50.227", - "is_superuser": false, - "email": "kacy.galvan@external.example.com", - "title": "", - "first_name_given": "Kacy", - "first_name_chosen": "", - "last_name": "Galvan", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3785, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e42cb97c-db98-4300-8cad-719b062ca081", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-14T19:21:46.836", - "is_superuser": false, - "email": "beau.saunders@external.example.com", - "title": "", - "first_name_given": "Beau", - "first_name_chosen": "", - "last_name": "Saunders", - "language": "", - "is_proxy_user": false, - "login_key": 28628139, - "login_key_valid_until": "2014-11-10", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ], - "cc_users": [] + "question": 324, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e46058ec-15c2-43fc-86fc-4918ef6292b9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-30T17:49:45.055", - "is_superuser": false, - "email": "merle.higdon@external.example.com", - "title": "", - "first_name_given": "Merle", - "first_name_chosen": "", - "last_name": "Higdon", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ], - "cc_users": [] + "question": 364, + "contribution": 3648, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e4a14f36-afb9-4b86-9409-12da50c345e9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-17T15:50:57.846", - "is_superuser": false, - "email": "earline.hills@institution.example.com", - "title": "", - "first_name_given": "Earline", - "first_name_chosen": "", - "last_name": "Hills", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3473, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e4e863d2-4a71-4845-9813-62feb44f94dd", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-30T18:19:49.165", - "is_superuser": false, - "email": "mandy.harman@institution.example.com", - "title": "", - "first_name_given": "Mandy", - "first_name_chosen": "", - "last_name": "Harman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e4ea7d0c-4b10-42b0-b85f-0568236e59dd", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-30T18:21:25.262", - "is_superuser": false, - "email": "tonie.helms@institution.example.com", - "title": "", - "first_name_given": "Tonie", - "first_name_chosen": "", - "last_name": "Helms", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 1837, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e52263c6-6960-46e5-9820-fc59fd7d38af", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-02T15:42:00.154", - "is_superuser": false, - "email": "vanetta.fleck@institution.example.com", - "title": "", - "first_name_given": "Vanetta", - "first_name_chosen": "", - "last_name": "Fleck", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e5c7b67f-cc73-4d56-8c87-fdd5fcb64fb4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-03T20:52:32.693", - "is_superuser": false, - "email": "randee.griffith@institution.example.com", - "title": "", - "first_name_given": "Randee", - "first_name_chosen": "", - "last_name": "Griffith", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3885, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e5d09e60-c53c-42e0-91d2-87cab0c774d4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T14:19:19.845", - "is_superuser": false, - "email": "charlsie.pressley@institution.example.com", - "title": "", - "first_name_given": "Charlsie", - "first_name_chosen": "", - "last_name": "Pressley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 887, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e5e609ab-b176-4783-b573-c565446cc39e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-07T18:59:05.750", - "is_superuser": false, - "email": "sheron.mccleary@institution.example.com", - "title": "", - "first_name_given": "Sheron", - "first_name_chosen": "", - "last_name": "Mccleary", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3463, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e5fb8c59-3ed8-4201-aaa8-8748e80cea5f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-12T15:22:35.949", - "is_superuser": false, - "email": "lissette.mccallister@external.example.com", - "title": "", - "first_name_given": "Lissette", - "first_name_chosen": "", - "last_name": "Mccallister", - "language": "", - "is_proxy_user": false, - "login_key": 1219355322, - "login_key_valid_until": "2012-10-07", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3849, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e60121f2-cab0-4cf0-a010-9f022d73ef16", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-02T17:40:40.503", - "is_superuser": false, - "email": "millard.heath@external.example.com", - "title": "Dr.", - "first_name_given": "Millard", - "first_name_chosen": "", - "last_name": "Heath", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "sunni.hollingsworth@institution.example.com" - ] - ], - "cc_users": [] + "question": 318, + "contribution": 3406, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e6091a9f-af26-4352-a9a1-677b39864b2a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-04T02:06:16.918", - "is_superuser": false, - "email": "elwanda.fulton@external.example.com", - "title": "", - "first_name_given": "Elwanda", - "first_name_chosen": "", - "last_name": "Fulton", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3595, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e626abe3-a250-479a-a97f-363bd6ff0e01", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-16T21:53:50.281", - "is_superuser": false, - "email": "shayne.scruggs@external.example.com", - "title": "", - "first_name_given": "Shayne", - "first_name_chosen": "", - "last_name": "Scruggs", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "sandee.coker@institution.example.com" - ], - [ - "earline.hills@institution.example.com" - ] - ], - "cc_users": [] + "question": 342, + "contribution": 3454, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e642916c-66a4-483c-bee5-b02d51c33d24", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-16T21:57:02.408", - "is_superuser": false, - "email": "donetta.huffman@external.example.com", - "title": "", - "first_name_given": "Donetta", - "first_name_chosen": "", - "last_name": "Huffman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "sandee.coker@institution.example.com" - ], - [ - "earline.hills@institution.example.com" - ] - ], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e6434592-6774-464d-b812-feeda29ca908", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-22T21:55:05.249", - "is_superuser": false, - "email": "jann.liu@external.example.com", - "title": "", - "first_name_given": "Jann", - "first_name_chosen": "", - "last_name": "Liu", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "jolene.squires@institution.example.com" - ] - ], - "cc_users": [] + "question": 318, + "contribution": 3422, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e6512ac6-61af-4c6a-be7c-c4ae5264504a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-29T21:50:58.578", - "is_superuser": false, - "email": "carol.grier@institution.example.com", - "title": "", - "first_name_given": "Carol", - "first_name_chosen": "", - "last_name": "Grier", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 1626, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e65c44ac-1c37-417b-8032-f790242a586c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-12T13:29:11.268", - "is_superuser": false, - "email": "lupita.eagle@external.example.com", - "title": "", - "first_name_given": "Lupita", - "first_name_chosen": "", - "last_name": "Eagle", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3646, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e65c96b7-7a5d-48e1-8d02-3be795efc0f8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-24T12:21:45.796", - "is_superuser": false, - "email": "ricki.canada@external.example.com", - "title": "", - "first_name_given": "Ricki", - "first_name_chosen": "", - "last_name": "Canada", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 454, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e662bbbc-a250-49b5-b8f7-4b67c3259289", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-30T13:15:32.640", - "is_superuser": false, - "email": "joya.gagne@institution.example.com", - "title": "Dr.", - "first_name_given": "Joya", - "first_name_chosen": "", - "last_name": "Gagne", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4028, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e66ffaad-d1e3-4da0-b3bb-7cf3e438cc9c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T11:42:00.270", - "is_superuser": false, - "email": "donnetta.casillas@institution.example.com", - "title": "Dr.", - "first_name_given": "Donnetta", - "first_name_chosen": "", - "last_name": "Casillas", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e6c5117d-d955-443c-8331-b86985ea831f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-06T08:48:55.684", - "is_superuser": false, - "email": "treena.paul@external.example.com", - "title": "Prof. Dr.", - "first_name_given": "Treena", - "first_name_chosen": "", - "last_name": "Paul", - "language": "", - "is_proxy_user": false, - "login_key": 1729717352, - "login_key_valid_until": "2012-10-03", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e6caaca0-ecc7-4ed4-94a6-4aa7eacf6281", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T15:58:46.999", - "is_superuser": false, - "email": "trudie.huntley@institution.example.com", - "title": "Dr.", - "first_name_given": "Trudie", - "first_name_chosen": "", - "last_name": "Huntley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 836, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e6e9aed7-e4da-4b49-998a-ed98033bee45", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-08T05:31:44.362", - "is_superuser": false, - "email": "raymonde.stock@institution.example.com", - "title": "", - "first_name_given": "Raymonde", - "first_name_chosen": "", - "last_name": "Stock", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4119, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e6fd08e2-6903-40d8-9f90-5f97728611bd", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-27T16:53:03.280", - "is_superuser": false, - "email": "vicky.gann@institution.example.com", - "title": "", - "first_name_given": "Vicky", - "first_name_chosen": "", - "last_name": "Gann", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 1656, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e720d342-4152-4ae9-925d-65e7c21473c7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T19:30:41.205", - "is_superuser": false, - "email": "chasidy.draper@institution.example.com", - "title": "", - "first_name_given": "Chasidy", - "first_name_chosen": "", - "last_name": "Draper", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3849, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e754ed97-cc25-455e-bcec-30a29759389f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-13T22:38:29.694", - "is_superuser": false, - "email": "gwendolyn.yoo@institution.example.com", - "title": "", - "first_name_given": "Gwendolyn", - "first_name_chosen": "", - "last_name": "Yoo", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4084, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e7952a42-e2db-4229-88a9-e5c92bdffd29", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-03-01T18:13:25.488", - "is_superuser": false, - "email": "vanna.escamilla@institution.example.com", - "title": "", - "first_name_given": "Vanna", - "first_name_chosen": "", - "last_name": "Escamilla", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e7c9b98f-303f-4d6f-b386-eda9fb0523f6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-19T13:04:41.845", - "is_superuser": false, - "email": "melania.wolfe@institution.example.com", - "title": "", - "first_name_given": "Melania", - "first_name_chosen": "", - "last_name": "Wolfe", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3722, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e7da098e-498a-481f-8868-470b3f5a20fa", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T21:18:16.805", - "is_superuser": false, - "email": "eden.desimone@institution.example.com", - "title": "", - "first_name_given": "Eden", - "first_name_chosen": "", - "last_name": "Desimone", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 912, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e7dc00cf-972e-4d18-a415-97f08849cdaa", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-23T11:12:45.731", - "is_superuser": false, - "email": "kellee.maldonado@institution.example.com", - "title": "", - "first_name_given": "Kellee", - "first_name_chosen": "", - "last_name": "Maldonado", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1640, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e817ea77-790f-4276-9477-3367ca787279", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-06-14T15:20:40.001", - "is_superuser": false, - "email": "bryant.johnson@institution.example.com", - "title": "", - "first_name_given": "Bryant", - "first_name_chosen": "", - "last_name": "Johnson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 429, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e81f9cd1-2a03-4c6a-b615-0d48d44bc8fe", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T17:31:47.858", - "is_superuser": false, - "email": "tula.langdon@institution.example.com", - "title": "", - "first_name_given": "Tula", - "first_name_chosen": "", - "last_name": "Langdon", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 1710, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e83b370e-8939-4ebd-83b3-b186410545db", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T14:07:52.087", - "is_superuser": false, - "email": "larissa.osteen@institution.example.com", - "title": "", - "first_name_given": "Larissa", - "first_name_chosen": "", - "last_name": "Osteen", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e856d602-7bc3-4bb4-9a54-43b804ede61a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-06-14T15:20:49.050", - "is_superuser": false, - "email": "quincy.hammond@institution.example.com", - "title": "", - "first_name_given": "Quincy", - "first_name_chosen": "", - "last_name": "Hammond", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e88c0890-aabd-4261-84d5-0578bcea80bb", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-06-14T15:20:50.004", - "is_superuser": false, - "email": "darcy.osorio@institution.example.com", - "title": "", - "first_name_given": "Darcy", - "first_name_chosen": "", - "last_name": "Osorio", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3693, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e8981149-6653-4a51-8a00-546d4628db77", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-22T09:30:52.994", - "is_superuser": false, - "email": "norris.peeler@institution.example.com", - "title": "", - "first_name_given": "Norris", - "first_name_chosen": "", - "last_name": "Peeler", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1202, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e8999719-22da-401a-a295-5340673a35e1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T14:12:14.720", - "is_superuser": false, - "email": "celsa.macias@institution.example.com", - "title": "", - "first_name_given": "Celsa", - "first_name_chosen": "", - "last_name": "Macias", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e8d9d70a-4c97-4eca-90b9-b7ce9a9b88d8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-22T18:17:10.843", - "is_superuser": false, - "email": "inge.mcmullen@institution.example.com", - "title": "", - "first_name_given": "Inge", - "first_name_chosen": "", - "last_name": "Mcmullen", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4120, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e8df5b1a-d7ec-4c4e-a810-7b0fd4e248be", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T20:33:05.713", - "is_superuser": false, - "email": "jammie.bey@institution.example.com", - "title": "", - "first_name_given": "Jammie", - "first_name_chosen": "", - "last_name": "Bey", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1287, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e90bb738-9fd9-4c97-9e6c-c75e3fda9796", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-12T08:45:05.211", - "is_superuser": false, - "email": "jackelyn.gooding@institution.example.com", - "title": "", - "first_name_given": "Jackelyn", - "first_name_chosen": "", - "last_name": "Gooding", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1200, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e924dfb0-8786-49ef-8eda-95dd6e9e706e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T19:48:34.747", - "is_superuser": false, - "email": "hiram.lemus@institution.example.com", - "title": "", - "first_name_given": "Hiram", - "first_name_chosen": "", - "last_name": "Lemus", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1202, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e939c536-5b34-4c8a-b376-96cf7ac7c182", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-02T23:20:00.628", - "is_superuser": false, - "email": "etta.child@institution.example.com", - "title": "", - "first_name_given": "Etta", - "first_name_chosen": "", - "last_name": "Child", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e9448529-a70f-4199-b10b-a8b35c016649", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T04:24:00.981", - "is_superuser": false, - "email": "sunni.patten@institution.example.com", - "title": "", - "first_name_given": "Sunni", - "first_name_chosen": "", - "last_name": "Patten", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e959dfc0-5177-490f-adea-437b697aeb06", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-12-04T14:46:31.919", - "is_superuser": false, - "email": "pearline.ellington@institution.example.com", - "title": "", - "first_name_given": "Pearline", - "first_name_chosen": "", - "last_name": "Ellington", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3440, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e964b339-8691-4a76-be31-4191ef89c559", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T22:26:24.836", - "is_superuser": false, - "email": "qiana.briscoe@external.example.com", - "title": "Dr.", - "first_name_given": "Qiana", - "first_name_chosen": "", - "last_name": "Briscoe", - "language": "", - "is_proxy_user": false, - "login_key": 1049235434, - "login_key_valid_until": "2014-08-26", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ], - "cc_users": [] + "question": 314, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e965b559-d773-44e6-9bb3-ccdef6bd69b2", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-02T22:47:27.656", - "is_superuser": false, - "email": "zita.marshall@external.example.com", - "title": "", - "first_name_given": "Zita", - "first_name_chosen": "", - "last_name": "Marshall", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e98e9401-a07d-4a8b-9662-07742fc6e236", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-02T22:51:15.718", - "is_superuser": false, - "email": "madaline.marcum@external.example.com", - "title": "", - "first_name_given": "Madaline", - "first_name_chosen": "", - "last_name": "Marcum", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3422, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "e9cd2936-44bc-4b6b-93fb-ffe68c0830f9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-03T12:07:14.680", - "is_superuser": false, - "email": "miles.huntington@institution.example.com", - "title": "", - "first_name_given": "Miles", - "first_name_chosen": "", - "last_name": "Huntington", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 1634, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ea35e339-ea8a-400e-8141-15cbacf857b2", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-03T14:52:59.325", - "is_superuser": false, - "email": "jeannetta.reichert@external.example.com", - "title": "", - "first_name_given": "Jeannetta", - "first_name_chosen": "", - "last_name": "Reichert", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3610, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ea64a5e3-4714-40b2-a825-267c0756bc06", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:13:03.554", - "is_superuser": false, - "email": "damion.navarrete@institution.example.com", - "title": "", - "first_name_given": "Damion", - "first_name_chosen": "", - "last_name": "Navarrete", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3593, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ead92ad6-0eb0-4db4-8645-a77ced299ceb", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-04T20:04:49.118", - "is_superuser": false, - "email": "conchita.dent@external.example.com", - "title": "", - "first_name_given": "Conchita", - "first_name_chosen": "", - "last_name": "Dent", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 455, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "eadaefe7-e041-407d-a268-23d1cdb6fd31", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-22T18:04:27.203", - "is_superuser": false, - "email": "toi.grantham@institution.example.com", - "title": "", - "first_name_given": "Toi", - "first_name_chosen": "", - "last_name": "Grantham", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3422, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "eb712521-4d2e-46a2-8a79-1b92334f6c80", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-06T11:37:12.107", - "is_superuser": false, - "email": "tequila.huang@institution.example.com", - "title": "", - "first_name_given": "Tequila", - "first_name_chosen": "", - "last_name": "Huang", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1835, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "eb714bb2-ea98-4ef5-bdf3-acb25f40bbc9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T08:22:33.176", - "is_superuser": false, - "email": "xavier.luciano@institution.example.com", - "title": "", - "first_name_given": "Xavier", - "first_name_chosen": "", - "last_name": "Luciano", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 1634, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ebcb1632-8a81-4113-9964-f67533516e8b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T11:22:23.383", - "is_superuser": false, - "email": "hsiu.page@institution.example.com", - "title": "", - "first_name_given": "Hsiu", - "first_name_chosen": "", - "last_name": "Page", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 3483, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ebdcf4c1-9a77-4188-a3b4-e2f6bf62cc5c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T09:47:57.955", - "is_superuser": false, - "email": "elias.troy@institution.example.com", - "title": "", - "first_name_given": "Elias", - "first_name_chosen": "", - "last_name": "Troy", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1710, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ec41dc5c-c309-4254-846c-c1013f8a62dc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-06T16:11:15.271", - "is_superuser": false, - "email": "gidget.raney@institution.example.com", - "title": "", - "first_name_given": "Gidget", - "first_name_chosen": "", - "last_name": "Raney", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 1710, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ec756dea-8d03-4f50-912d-9783c8f317b5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-06T19:50:24.593", - "is_superuser": false, - "email": "holly.slade@institution.example.com", - "title": "", - "first_name_given": "Holly", - "first_name_chosen": "", - "last_name": "Slade", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ec8e12a4-d35b-4fe5-aa83-22ccc99cee9e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T09:32:18.046", - "is_superuser": false, - "email": "beula.hopkins@institution.example.com", - "title": "", - "first_name_given": "Beula", - "first_name_chosen": "", - "last_name": "Hopkins", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ec9bffda-a81a-4a4a-b321-a05493227649", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-11-09T11:15:50.710", - "is_superuser": false, - "email": "kallie.sierra@institution.example.com", - "title": "", - "first_name_given": "Kallie", - "first_name_chosen": "", - "last_name": "Sierra", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3519, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ecc3c860-b847-4b77-b302-d095bf8c9081", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T08:02:50.234", - "is_superuser": false, - "email": "timika.angel@external.example.com", - "title": "", - "first_name_given": "Timika", - "first_name_chosen": "", - "last_name": "Angel", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4118, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ecc5a61d-b427-43ac-a92a-b82beedce5ac", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-10T16:46:58.146", - "is_superuser": false, - "email": "rey.mccall@external.example.com", - "title": "", - "first_name_given": "Rey", - "first_name_chosen": "", - "last_name": "Mccall", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3454, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "eceee0e7-8191-4452-b971-1f69c021de01", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-04T12:58:12.400", - "is_superuser": false, - "email": "fay.england@external.example.com", - "title": "", - "first_name_given": "Fay", - "first_name_chosen": "", - "last_name": "England", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3645, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ed123045-d6b3-4256-9616-d1011f1270bf", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T20:13:22.114", - "is_superuser": false, - "email": "ling.mcdade@institution.example.com", - "title": "", - "first_name_given": "Ling", - "first_name_chosen": "", - "last_name": "Mcdade", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4128, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ed6768b8-51df-4a13-9cdf-3ca15606c1e9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-02T13:52:41.361", - "is_superuser": false, - "email": "hilda.rocha@institution.example.com", - "title": "", - "first_name_given": "Hilda", - "first_name_chosen": "", - "last_name": "Rocha", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4129, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ed7783fe-455b-46f0-9572-d484ea315adf", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T06:46:14.889", - "is_superuser": false, - "email": "lin.sales@institution.example.com", - "title": "", - "first_name_given": "Lin", - "first_name_chosen": "", - "last_name": "Sales", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 393, + "contribution": 3775, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ed80f26d-da69-48e8-8367-e81d39878904", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T09:02:36.659", - "is_superuser": false, - "email": "karri.putnam@institution.example.com", - "title": "", - "first_name_given": "Karri", - "first_name_chosen": "", - "last_name": "Putnam", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3649, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ed8fbb45-7603-4f2f-9b39-5b93668569cf", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T12:15:33.812", - "is_superuser": false, - "email": "debra.chesser@institution.example.com", - "title": "", - "first_name_given": "Debra", - "first_name_chosen": "", - "last_name": "Chesser", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3896, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "eda57ce8-b288-44b3-a75b-a42a236f35c8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T19:10:20.421", - "is_superuser": false, - "email": "lulu.ackerman@institution.example.com", - "title": "", - "first_name_given": "Lulu", - "first_name_chosen": "", - "last_name": "Ackerman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 1200, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ede5641f-5309-4319-8111-79958a266b12", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-23T16:47:14.138", - "is_superuser": false, - "email": "classie.cranford@external.example.com", - "title": "", - "first_name_given": "Classie", - "first_name_chosen": "", - "last_name": "Cranford", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 822, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "edfa2949-9238-4e04-bfcf-7e621a476760", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T16:16:31.182", - "is_superuser": false, - "email": "raelene.clancy@institution.example.com", - "title": "", - "first_name_given": "Raelene", - "first_name_chosen": "", - "last_name": "Clancy", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3434, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ee4bfbfa-c054-4166-84c1-9e6c728d40d4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-12-06T09:21:00.448", - "is_superuser": false, - "email": "rey.stamper@external.example.com", - "title": "", - "first_name_given": "Rey", - "first_name_chosen": "", - "last_name": "Stamper", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3391, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ee4dda82-c473-4ed3-ade4-0e05127ed799", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T18:16:03.480", - "is_superuser": false, - "email": "emmy.norwood@institution.example.com", - "title": "", - "first_name_given": "Emmy", - "first_name_chosen": "", - "last_name": "Norwood", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ee97d9d2-89f2-45af-8306-07ef18d3c690", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-02T18:13:54.281", - "is_superuser": false, - "email": "haywood.hogue@institution.example.com", - "title": "", - "first_name_given": "Haywood", - "first_name_chosen": "", - "last_name": "Hogue", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [ - [ - "Manager" - ] - ], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3486, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ee99c548-40e7-4e83-8776-58bdf3bdbdb8", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-05T17:53:05.114", - "is_superuser": false, - "email": "francene.sabo@institution.example.com", - "title": "", - "first_name_given": "Francene", - "first_name_chosen": "", - "last_name": "Sabo", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "eee5cc34-1507-466f-b1af-4669cc907019", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-07T19:58:48.906", - "is_superuser": false, - "email": "trey.ruby@institution.example.com", - "title": "", - "first_name_given": "Trey", - "first_name_chosen": "", - "last_name": "Ruby", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3597, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ef127f70-4e5c-4f33-8a31-5737165216ad", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-11T03:06:26.933", - "is_superuser": false, - "email": "jill.mccauley@institution.example.com", - "title": "", - "first_name_given": "Jill", - "first_name_chosen": "", - "last_name": "Mccauley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 913, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ef1cbb45-a81f-4be1-a333-e2b2ba176b67", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T15:44:16.550", - "is_superuser": false, - "email": "toshia.piazza@institution.example.com", - "title": "", - "first_name_given": "Toshia", - "first_name_chosen": "", - "last_name": "Piazza", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 885, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ef1fe85e-aaab-4c0f-abfc-efb147609b93", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-15T13:08:05.904", - "is_superuser": false, - "email": "elenora.crawford@institution.example.com", - "title": "", - "first_name_given": "Elenora", - "first_name_chosen": "", - "last_name": "Crawford", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3454, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ef279595-a12c-4a4c-858d-4d1e8b4664e5", "fields": { - "password": "pbkdf2_sha256$20000$BwRiEGfjTCC7$RYDeoLBzk8Xj1FD9F9v2UgVHWIlGu1Hu9CyuucoiCMY=", - "last_login": "2015-11-08T14:35:04.569", - "is_superuser": false, - "email": "heide.andrew@institution.example.com", - "title": "", - "first_name_given": "Heide", - "first_name_chosen": "", - "last_name": "Andrew", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ef33df89-7fbb-49de-bf32-7faa33f89a57", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-24T01:20:24.674", - "is_superuser": false, - "email": "verdell.joyner@institution.example.com", - "title": "", - "first_name_given": "Verdell", - "first_name_chosen": "", - "last_name": "Joyner", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1626, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ef4811dc-9a42-4839-9a41-aad9ab4fcb46", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-24T13:58:28.365", - "is_superuser": false, - "email": "shakira.stricklin@institution.example.com", - "title": "", - "first_name_given": "Shakira", - "first_name_chosen": "", - "last_name": "Stricklin", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3474, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ef49cc8d-6be3-4127-8b1a-cc69080d2c7d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T01:29:54.008", - "is_superuser": false, - "email": "giovanni.leger@institution.example.com", - "title": "", - "first_name_given": "Giovanni", - "first_name_chosen": "", - "last_name": "Leger", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3721, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ef544aca-46fb-4df1-84b2-af6b2022eb4e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T23:18:10.128", - "is_superuser": false, - "email": "dominga.earley@institution.example.com", - "title": "", - "first_name_given": "Dominga", - "first_name_chosen": "", - "last_name": "Earley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 3475, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ef5b2c83-8f5e-4c8d-b275-6811a561b039", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-05T17:14:09.097", - "is_superuser": false, - "email": "maye.noonan@institution.example.com", - "title": "", - "first_name_given": "Maye", - "first_name_chosen": "", - "last_name": "Noonan", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ef78c58e-6ff8-4021-af82-96b73bf880f4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T15:35:19.400", - "is_superuser": false, - "email": "giovanna.browne@institution.example.com", - "title": "", - "first_name_given": "Giovanna", - "first_name_chosen": "", - "last_name": "Browne", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4121, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ef8f2d4b-bf87-4908-af43-ba8a3611f693", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-24T16:50:59.640", - "is_superuser": false, - "email": "millicent.belcher@institution.example.com", - "title": "", - "first_name_given": "Millicent", - "first_name_chosen": "", - "last_name": "Belcher", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ef99d841-54ce-49ca-b2cb-c008d0222203", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-24T16:50:59.670", - "is_superuser": false, - "email": "tony.hawkins@institution.example.com", - "title": "", - "first_name_given": "Tony", - "first_name_chosen": "", - "last_name": "Hawkins", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4100, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "ef9f1746-2ce8-4fbc-999a-910acb099c5a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T21:52:24.803", - "is_superuser": false, - "email": "dia.bussey@institution.example.com", - "title": "", - "first_name_given": "Dia", - "first_name_chosen": "", - "last_name": "Bussey", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "efb27afa-e8f4-414a-ab04-334715c6aa2c", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-07T09:46:01.104", - "is_superuser": false, - "email": "tanya.maple@institution.example.com", - "title": "", - "first_name_given": "Tanya", - "first_name_chosen": "", - "last_name": "Maple", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 454, + "contribution": 4185, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "efb47f24-75de-40c1-b9ab-b0662ee0a483", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T15:37:15.662", - "is_superuser": false, - "email": "carma.watters@institution.example.com", - "title": "", - "first_name_given": "Carma", - "first_name_chosen": "", - "last_name": "Watters", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 455, + "contribution": 4185, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "efbf43c1-2567-428a-b8e0-437ccb3d4b04", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-01T00:01:58.948", - "is_superuser": false, - "email": "freddy.hitt@institution.example.com", - "title": "", - "first_name_given": "Freddy", - "first_name_chosen": "", - "last_name": "Hitt", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "efc39094-aa61-4453-b191-724ba806854e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-09T15:22:37.841", - "is_superuser": false, - "email": "thi.mcallister@institution.example.com", - "title": "", - "first_name_given": "Thi", - "first_name_chosen": "", - "last_name": "Mcallister", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 886, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "efce8b61-717b-48fb-9d35-5927ad7e9e2e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-08T16:59:39.507", - "is_superuser": false, - "email": "carylon.hoffmann@institution.example.com", - "title": "", - "first_name_given": "Carylon", - "first_name_chosen": "", - "last_name": "Hoffmann", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3723, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "eff4dad7-4cea-48e0-a46c-70a773566bd1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T17:00:26.651", - "is_superuser": false, - "email": "beverley.pitcher@institution.example.com", - "title": "", - "first_name_given": "Beverley", - "first_name_chosen": "", - "last_name": "Pitcher", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 3727, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "effc236d-d3bc-42bb-bdb0-ed434fbc5cc6", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-02T14:16:44.510", - "is_superuser": false, - "email": "isaura.baptiste@institution.example.com", - "title": "", - "first_name_given": "Isaura", - "first_name_chosen": "", - "last_name": "Baptiste", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3740, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f00b74a9-fbe4-4dd6-ab8d-17b029ad7515", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-19T01:55:35.901", - "is_superuser": false, - "email": "freida.ness@institution.example.com", - "title": "", - "first_name_given": "Freida", - "first_name_chosen": "", - "last_name": "Ness", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f0265da0-18df-40a6-b221-d3e7ecfdd76f", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-05T18:39:46.512", - "is_superuser": false, - "email": "rasheeda.glynn@institution.example.com", - "title": "", - "first_name_given": "Rasheeda", - "first_name_chosen": "", - "last_name": "Glynn", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3463, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f02eab6d-c7bc-4529-bf92-745f81b19a94", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-12T09:10:02.075", - "is_superuser": false, - "email": "charlyn.robins@institution.example.com", - "title": "", - "first_name_given": "Charlyn", - "first_name_chosen": "", - "last_name": "Robins", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 880, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f06c38c0-2e0b-46b8-a8d1-91d57a266ef4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T22:24:32.499", - "is_superuser": false, - "email": "maricruz.nall@institution.example.com", - "title": "", - "first_name_given": "Maricruz", - "first_name_chosen": "", - "last_name": "Nall", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3416, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f07e42a6-0261-4586-82e6-64c691d4bc6d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-13T21:45:40.702", - "is_superuser": false, - "email": "ivana.ferro@institution.example.com", - "title": "", - "first_name_given": "Ivana", - "first_name_chosen": "", - "last_name": "Ferro", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3680, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f0941cf8-6354-4f1e-be91-8024d9605438", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-14T23:53:58.898", - "is_superuser": false, - "email": "porfirio.rasmussen@institution.example.com", - "title": "", - "first_name_given": "Porfirio", - "first_name_chosen": "", - "last_name": "Rasmussen", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3722, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f09cd503-6f09-4e81-b054-654b4e6f9ce2", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T23:11:01.948", - "is_superuser": false, - "email": "virgen.willingham@institution.example.com", - "title": "", - "first_name_given": "Virgen", - "first_name_chosen": "", - "last_name": "Willingham", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3434, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f0be8e6f-a539-4eb6-a5a7-49027f4457cc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-08T09:39:25.200", - "is_superuser": false, - "email": "dwayne.fortier@institution.example.com", - "title": "", - "first_name_given": "Dwayne", - "first_name_chosen": "", - "last_name": "Fortier", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4095, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f0dc92c8-e1b3-4a35-8804-6113d0dd52a2", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-24T01:55:55.757", - "is_superuser": false, - "email": "tyrone.guay@institution.example.com", - "title": "", - "first_name_given": "Tyrone", - "first_name_chosen": "", - "last_name": "Guay", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4128, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f0fb5fde-6cec-4682-b1c6-5dc19ff70caa", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T16:31:05.952", - "is_superuser": false, - "email": "enrique.horne@institution.example.com", - "title": "", - "first_name_given": "Enrique", - "first_name_chosen": "", - "last_name": "Horne", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 788, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f0fd0f48-6456-4060-a710-6089aab46aac", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-07T10:56:47.547", - "is_superuser": false, - "email": "scotty.daily@institution.example.com", - "title": "", - "first_name_given": "Scotty", - "first_name_chosen": "", - "last_name": "Daily", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f10c53b9-a622-4b63-bb77-e7c5006e7666", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T22:55:31.384", - "is_superuser": false, - "email": "haley.engle@institution.example.com", - "title": "", - "first_name_given": "Haley", - "first_name_chosen": "", - "last_name": "Engle", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f114d1c3-fb9c-4575-bb97-a6912cfbe8ca", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T17:41:35.461", - "is_superuser": false, - "email": "inge.baughman@institution.example.com", - "title": "", - "first_name_given": "Inge", - "first_name_chosen": "", - "last_name": "Baughman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 804, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f135821e-6134-4d7d-a21f-ecf84511c149", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T19:39:30.929", - "is_superuser": false, - "email": "cyndy.david@institution.example.com", - "title": "", - "first_name_given": "Cyndy", - "first_name_chosen": "", - "last_name": "David", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 862, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f13fbced-1128-4541-aebf-87734f0be775", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T23:02:51.134", - "is_superuser": false, - "email": "jere.marr@institution.example.com", - "title": "", - "first_name_given": "Jere", - "first_name_chosen": "", - "last_name": "Marr", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4227, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f1646640-d023-44ed-9c46-5c3982c4cf5a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T15:56:56.046", - "is_superuser": false, - "email": "broderick.greenberg@institution.example.com", - "title": "", - "first_name_given": "Broderick", - "first_name_chosen": "", - "last_name": "Greenberg", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 1626, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f16e6352-4632-48a5-ae85-a4b13556c3ac", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-03T00:24:41.228", - "is_superuser": false, - "email": "eryn.devore@institution.example.com", - "title": "", - "first_name_given": "Eryn", - "first_name_chosen": "", - "last_name": "Devore", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4204, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f172a869-3a75-4a70-bab4-2d88742b0df0", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-09T10:24:28.384", - "is_superuser": false, - "email": "fran.goodrich@institution.example.com", - "title": "", - "first_name_given": "Fran", - "first_name_chosen": "", - "last_name": "Goodrich", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3726, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f17d6a19-69c9-4916-b016-bf74af5e2594", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-24T16:51:00.749", - "is_superuser": false, - "email": "cecille.buck@institution.example.com", - "title": "", - "first_name_given": "Cecille", - "first_name_chosen": "", - "last_name": "Buck", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 836, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f1aeb4ae-9042-4b6f-a594-fb6c180de4e5", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-02T14:11:53.731", - "is_superuser": false, - "email": "yetta.heck@institution.example.com", - "title": "", - "first_name_given": "Yetta", - "first_name_chosen": "", - "last_name": "Heck", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f1d0d076-341c-48f3-b262-1e6924100b99", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T14:51:13.092", - "is_superuser": false, - "email": "brant.mcduffie@institution.example.com", - "title": "", - "first_name_given": "Brant", - "first_name_chosen": "", - "last_name": "Mcduffie", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4116, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f1d2011f-f9cd-4cab-a377-32f036cf9014", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T11:33:59.881", - "is_superuser": false, - "email": "echo.andre@institution.example.com", - "title": "", - "first_name_given": "Echo", - "first_name_chosen": "", - "last_name": "Andre", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1785, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f23d0bfb-ef8e-45cf-8b3e-77b81f8b7318", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-10T15:28:22.492", - "is_superuser": false, - "email": "rosendo.carlton@institution.example.com", - "title": "", - "first_name_given": "Rosendo", - "first_name_chosen": "", - "last_name": "Carlton", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 918, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f25a81ea-701a-4d1f-9daa-c6a91f537a1a", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-31T10:43:28.497", - "is_superuser": false, - "email": "daniel.cortez@institution.example.com", - "title": "", - "first_name_given": "Daniel", - "first_name_chosen": "", - "last_name": "Cortez", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 1204, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f26bf8fc-6246-4c28-bfed-84e499723a20", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-04T13:52:43.099", - "is_superuser": false, - "email": "bee.castellanos@institution.example.com", - "title": "", - "first_name_given": "Bee", - "first_name_chosen": "", - "last_name": "Castellanos", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 858, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f27d39f9-570d-44a9-9694-0ac9f26ecf71", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T12:51:48.135", - "is_superuser": false, - "email": "mirella.behrens@institution.example.com", - "title": "", - "first_name_given": "Mirella", - "first_name_chosen": "", - "last_name": "Behrens", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 430, + "contribution": 4046, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f2bf3ab5-d136-4fdd-bf1c-848fae6dbb60", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-01T17:54:29.760", - "is_superuser": false, - "email": "lasonya.phillip@institution.example.com", - "title": "", - "first_name_given": "Lasonya", - "first_name_chosen": "", - "last_name": "Phillip", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 862, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f2c65428-dc4b-4606-a303-f7e27467f574", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T15:09:14.183", - "is_superuser": false, - "email": "star.west@institution.example.com", - "title": "", - "first_name_given": "Star", - "first_name_chosen": "", - "last_name": "West", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 864, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f2dfba95-e31b-4910-aaff-38e6f51cb6b7", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-07T11:36:11.243", - "is_superuser": false, - "email": "shelia.turney@institution.example.com", - "title": "", - "first_name_given": "Shelia", - "first_name_chosen": "", - "last_name": "Turney", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 342, + "contribution": 3440, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f2eb6423-5c69-438c-9455-676967605366", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-24T14:49:39.646", - "is_superuser": false, - "email": "sheryl.dow@institution.example.com", - "title": "", - "first_name_given": "Sheryl", - "first_name_chosen": "", - "last_name": "Dow", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 3679, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f2eec4a9-c094-4ce7-82fd-399ea5bc70b1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T17:13:30.103", - "is_superuser": false, - "email": "yi.thurman@institution.example.com", - "title": "", - "first_name_given": "Yi", - "first_name_chosen": "", - "last_name": "Thurman", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4187, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f32aadcd-5c18-4e49-8b0c-a9d8f1f54c75", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-05T17:14:15.435", - "is_superuser": false, - "email": "leroy.surratt@institution.example.com", - "title": "", - "first_name_given": "Leroy", - "first_name_chosen": "", - "last_name": "Surratt", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f34674e2-1bf2-423e-b1bb-9c236cdac0db", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T17:20:02.891", - "is_superuser": false, - "email": "cleo.arreola@institution.example.com", - "title": "", - "first_name_given": "Cleo", - "first_name_chosen": "", - "last_name": "Arreola", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f3a3c11e-843b-4021-be09-6ada73a1a13d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-05T18:13:41.775", - "is_superuser": false, - "email": "shakira.gilmer@institution.example.com", - "title": "", - "first_name_given": "Shakira", - "first_name_chosen": "", - "last_name": "Gilmer", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3435, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f3bc0bd3-0b08-46e1-a012-62113b079677", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-12T11:08:20.214", - "is_superuser": false, - "email": "donetta.burr@institution.example.com", - "title": "", - "first_name_given": "Donetta", - "first_name_chosen": "", - "last_name": "Burr", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-07T21:55:50.678", - "is_superuser": false, - "email": "reva.farr@institution.example.com", - "title": "", - "first_name_given": "Reva", - "first_name_chosen": "", - "last_name": "Farr", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3474, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f3f3b994-507e-42ef-a017-3503d1798f95", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-19T03:13:00.219", - "is_superuser": false, - "email": "sherryl.dozier@institution.example.com", - "title": "", - "first_name_given": "Sherryl", - "first_name_chosen": "", - "last_name": "Dozier", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f3ff959e-11ec-419a-87a7-0a8f8a69ff78", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-09T00:01:19.137", - "is_superuser": false, - "email": "zane.aldridge@institution.example.com", - "title": "", - "first_name_given": "Zane", - "first_name_chosen": "", - "last_name": "Aldridge", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 3711, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f4430506-ae9c-4322-9c06-258d2a87672d", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-08T23:54:56.905", - "is_superuser": false, - "email": "haydee.greco@institution.example.com", - "title": "", - "first_name_given": "Haydee", - "first_name_chosen": "", - "last_name": "Greco", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 373, + "contribution": 3440, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f44de851-d8b1-4d16-90e0-76237cacb7bc", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-13T15:37:07.066", - "is_superuser": false, - "email": "elfrieda.bess@institution.example.com", - "title": "", - "first_name_given": "Elfrieda", - "first_name_chosen": "", - "last_name": "Bess", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3721, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f4959298-129a-4a21-99cc-dd69304b72df", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-09T07:10:29.849", - "is_superuser": false, - "email": "brent.mattson@institution.example.com", - "title": "", - "first_name_given": "Brent", - "first_name_chosen": "", - "last_name": "Mattson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4028, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f4cddb6e-937d-4550-ba63-e578e0ff537b", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-09T07:16:09.848", - "is_superuser": false, - "email": "halina.tobias@institution.example.com", - "title": "", - "first_name_given": "Halina", - "first_name_chosen": "", - "last_name": "Tobias", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 4120, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f4d26b3c-e479-48f4-b818-bd2159458f82", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-09T15:39:12.208", - "is_superuser": false, - "email": "deidre.metzler@institution.example.com", - "title": "", - "first_name_given": "Deidre", - "first_name_chosen": "", - "last_name": "Metzler", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 3434, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f5067899-8fc8-4a98-b24c-c0f622b3ee83", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T15:52:06.542", - "is_superuser": false, - "email": "domingo.mcnutt@institution.example.com", - "title": "", - "first_name_given": "Domingo", - "first_name_chosen": "", - "last_name": "Mcnutt", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 789, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f5149f90-2b77-49db-86b7-661396a842ad", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T20:18:44.343", - "is_superuser": false, - "email": "ayesha.bannister@institution.example.com", - "title": "", - "first_name_given": "Ayesha", - "first_name_chosen": "", - "last_name": "Bannister", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f545fe6d-401f-4355-8476-015b9bc33073", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-24T14:54:21.051", - "is_superuser": false, - "email": "arletha.picard@institution.example.com", - "title": "", - "first_name_given": "Arletha", - "first_name_chosen": "", - "last_name": "Picard", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 3727, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f555c357-6059-41e3-963d-30983be9f146", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T16:26:07.007", - "is_superuser": false, - "email": "cierra.oreilly@institution.example.com", - "title": "", - "first_name_given": "Cierra", - "first_name_chosen": "", - "last_name": "Oreilly", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 884, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f5658f0c-219d-48e1-a9bb-e4e5160cd8d9", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T19:35:24.016", - "is_superuser": false, - "email": "brice.ault@institution.example.com", - "title": "", - "first_name_given": "Brice", - "first_name_chosen": "", - "last_name": "Ault", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f594a981-b3c6-4eb7-8901-c5b944affe69", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T17:07:50.308", - "is_superuser": false, - "email": "lashanda.brownlee@institution.example.com", - "title": "", - "first_name_given": "Lashanda", - "first_name_chosen": "", - "last_name": "Brownlee", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f5ef2825-832e-44f3-bd06-e14fa97bd5ea", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-05T17:44:05.374", - "is_superuser": false, - "email": "refugia.soliz@institution.example.com", - "title": "", - "first_name_given": "Refugia", - "first_name_chosen": "", - "last_name": "Soliz", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f6268c06-161f-4552-bd5b-a274bcebf7a2", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-05T19:42:28.586", - "is_superuser": false, - "email": "corinne.neff@institution.example.com", - "title": "", - "first_name_given": "Corinne", - "first_name_chosen": "", - "last_name": "Neff", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f6354757-3a4d-440e-b5fd-cdc298a60742", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-08T23:58:00.245", - "is_superuser": false, - "email": "nicki.spear@institution.example.com", - "title": "", - "first_name_given": "Nicki", - "first_name_chosen": "", - "last_name": "Spear", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f66e8d96-63d9-4ac6-8771-cad70bf69141", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T23:32:32.440", - "is_superuser": false, - "email": "hugh.oliver@institution.example.com", - "title": "", - "first_name_given": "Hugh", - "first_name_chosen": "", - "last_name": "Oliver", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 912, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f678dfea-cbc5-4132-b2e4-ec55e4212b22", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:31:55.267", - "is_superuser": false, - "email": "juliane.call@institution.example.com", - "title": "", - "first_name_given": "Juliane", - "first_name_chosen": "", - "last_name": "Call", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 415, + "contribution": 4038, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f6ad4098-10b2-40c2-abd2-f51dca0ec305", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-13T09:17:33.402", - "is_superuser": false, - "email": "amelia.handy@external.example.com", - "title": "Prof. Dr.", - "first_name_given": "Amelia", - "first_name_chosen": "", - "last_name": "Handy", - "language": "", - "is_proxy_user": false, - "login_key": 165190195, - "login_key_valid_until": "2014-08-11", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ] + "question": 342, + "contribution": 4094, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f6ffb327-5a08-47eb-b008-f5b15b68297e", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-24T16:51:30.301", - "is_superuser": false, - "email": "louann.brantley@external.example.com", - "title": "", - "first_name_given": "Louann", - "first_name_chosen": "", - "last_name": "Brantley", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 3922, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f7040cfc-addf-4ced-a848-13d26f6d5aea", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-07T22:00:32.077", - "is_superuser": false, - "email": "del.mcnamee@institution.example.com", - "title": "", - "first_name_given": "Del", - "first_name_chosen": "", - "last_name": "Mcnamee", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4138, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f70f7a9f-d467-4c8f-9691-2bad48447643", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T18:56:39.344", - "is_superuser": false, - "email": "danyel.robins@institution.example.com", - "title": "", - "first_name_given": "Danyel", - "first_name_chosen": "", - "last_name": "Robins", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 358, + "contribution": 1154, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f73f662c-8e00-4e94-aca3-a94605459766", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-08T08:21:14.072", - "is_superuser": false, - "email": "kallie.peters@institution.example.com", - "title": "", - "first_name_given": "Kallie", - "first_name_chosen": "", - "last_name": "Peters", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 908, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f76c113a-2b5d-4c6d-8f89-4f19a1f98215", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T23:21:18.491", - "is_superuser": false, - "email": "diann.deloach@institution.example.com", - "title": "", - "first_name_given": "Diann", - "first_name_chosen": "", - "last_name": "Deloach", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4120, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f7a6ca55-6be3-45de-ad62-5a2da7285348", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T08:23:30.741", - "is_superuser": false, - "email": "ali.best@institution.example.com", - "title": "", - "first_name_given": "Ali", - "first_name_chosen": "", - "last_name": "Best", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 3739, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f7c0168a-a583-4808-a676-8176af494e73", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T10:17:06.005", - "is_superuser": false, - "email": "darci.rinehart@institution.example.com", - "title": "", - "first_name_given": "Darci", - "first_name_chosen": "", - "last_name": "Rinehart", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 313, + "contribution": 4084, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f7cf3fd7-a08b-4606-82ba-fa3c728f5755", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-06T13:16:27.116", - "is_superuser": false, - "email": "latesha.snow@institution.example.com", - "title": "", - "first_name_given": "Latesha", - "first_name_chosen": "", - "last_name": "Snow", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 880, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f7d1bb29-e7c2-408e-935b-b55247a628bb", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-03T00:09:16.700", - "is_superuser": false, - "email": "alexia.pederson@institution.example.com", - "title": "", - "first_name_given": "Alexia", - "first_name_chosen": "", - "last_name": "Pederson", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 330, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f817aeca-95c4-4192-a38e-72100380e029", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-03-01T10:52:08.996", - "is_superuser": false, - "email": "fernando.grisham@institution.example.com", - "title": "", - "first_name_given": "Fernando", - "first_name_chosen": "", - "last_name": "Grisham", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": "2013-05-30", - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 324, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f83f0cdc-cfc1-49b3-824b-715832ff1412", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:14:04.758", - "is_superuser": false, - "email": "tyisha.reich@institution.example.com", - "title": "", - "first_name_given": "Tyisha", - "first_name_chosen": "", - "last_name": "Reich", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 364, + "contribution": 4121, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f8469b2c-5a8f-4cff-b080-02bc3bd91c24", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-28T10:29:06.118", - "is_superuser": false, - "email": "mayme.mcculloch@institution.example.com", - "title": "", - "first_name_given": "Mayme", - "first_name_chosen": "", - "last_name": "Mcculloch", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f8710982-441f-4358-b691-923a808b50b4", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T15:15:05.402", - "is_superuser": false, - "email": "dia.harden@institution.example.com", - "title": "", - "first_name_given": "Dia", - "first_name_chosen": "", - "last_name": "Harden", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 318, + "contribution": 1634, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f87dd779-560a-43ef-928a-adeaba2551af", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-24T16:51:53.099", - "is_superuser": false, - "email": "rosina.frasier@institution.example.com", - "title": "", - "first_name_given": "Rosina", - "first_name_chosen": "", - "last_name": "Frasier", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 4084, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f89dc247-2ea1-428e-855e-843aa79684e1", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-24T16:51:54.036", - "is_superuser": false, - "email": "margo.hanna@external.example.com", - "title": "", - "first_name_given": "Margo", - "first_name_chosen": "", - "last_name": "Hanna", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 314, + "contribution": 1626, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f8c68df7-030e-4dee-9dcb-2ed3f7ddb411", "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-25T17:20:03.827", - "is_superuser": false, - "email": "karan.bloom@external.example.com", - "title": "", - "first_name_given": "Karan", - "first_name_chosen": "", - "last_name": "Bloom", - "language": "", - "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, - "is_active": true, - "notes": "", - "startpage": "DE", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] + "question": 399, + "contribution": 3775, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false } }, { - "model": "evaluation.userprofile", + "model": "evaluation.textanswer", + "pk": "f8cf810d-5340-4e05-84a4-7c3d43389a81", + "fields": { + "question": 313, + "contribution": 1634, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "f90d0400-1181-4c79-b1c5-d1953e2e25ff", + "fields": { + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "f921baeb-41ff-479c-bb96-bb09e182cacc", + "fields": { + "question": 314, + "contribution": 4084, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "f9392e4d-7272-4c7c-b283-4c35c7c652d3", + "fields": { + "question": 342, + "contribution": 3508, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "f947646e-2baf-467c-823c-bf8d3c22bd23", + "fields": { + "question": 318, + "contribution": 908, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "f95ffa6c-5e84-42ee-b32b-d9d7b54f7f4a", + "fields": { + "question": 358, + "contribution": 909, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "f960aac3-4a4c-45b6-a8a2-f11f932a652f", + "fields": { + "question": 313, + "contribution": 3434, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "f96f7230-10dc-499a-b2fe-f63197aa6a06", + "fields": { + "question": 364, + "contribution": 3391, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "f97c3fdc-c3a4-4026-961e-e4e19837d90a", + "fields": { + "question": 364, + "contribution": 1635, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "f9943dfc-bdb8-4ba2-9085-10804a6a7f33", + "fields": { + "question": 364, + "contribution": 3552, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "f99777b0-63a7-41be-b743-d10d46641f0b", + "fields": { + "question": 342, + "contribution": 4072, + "answer": "Lorem ipsum dolor sit amet, consetetur", + "original_answer": null, + "review_decision": "UN", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "f9b9d46b-924a-4c99-b587-8f24a81ad8e3", + "fields": { + "question": 314, + "contribution": 3390, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "f9c8808a-93f6-4f6d-b37d-98ec1f445b36", + "fields": { + "question": 313, + "contribution": 3406, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "f9f85d65-bb7f-4840-822e-e5323bc8afc2", + "fields": { + "question": 313, + "contribution": 3472, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fa4f817e-f525-4304-a83b-9299368b68c2", + "fields": { + "question": 314, + "contribution": 908, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fa7d16be-729b-4c5a-8c38-ea933fbfdd81", + "fields": { + "question": 318, + "contribution": 3462, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fabdcbf2-4dfd-42ba-a7d9-c9462bdfaadf", + "fields": { + "question": 314, + "contribution": 912, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fad050e1-2599-4e82-979d-34bc39cc900b", + "fields": { + "question": 314, + "contribution": 4128, + "answer": "Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fb1c608c-3a51-489e-9e4f-6d5b5ee2bc0b", + "fields": { + "question": 342, + "contribution": 3440, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fb1dc569-f81a-4c88-bfd0-a2cbbd08d1d9", + "fields": { + "question": 330, + "contribution": 3390, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fb4c02c5-2113-4480-8680-36a67e57f44c", + "fields": { + "question": 364, + "contribution": 1782, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fb6d53e9-8c57-44c0-a679-dbd57bd8a3f1", + "fields": { + "question": 313, + "contribution": 1837, + "answer": "Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fba7107b-2d9a-4a82-989e-c3267a642b40", + "fields": { + "question": 373, + "contribution": 3727, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fbc22330-c0e4-440c-837d-bc7ee88ac8ed", + "fields": { + "question": 364, + "contribution": 3435, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fbf89e2c-27ac-4ff8-b684-314ce681fca6", + "fields": { + "question": 318, + "contribution": 4100, + "answer": "Lorem ipsum dolor", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fc8790fa-80f3-413d-9456-7624422c843b", + "fields": { + "question": 318, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fc950d3e-c6d7-4008-a1e8-ad62a9dfadbf", + "fields": { + "question": 364, + "contribution": 1202, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fcb711fb-1e80-4c25-9761-93823d3382cc", + "fields": { + "question": 318, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fcf16890-565d-41d4-8116-c5b2c416d1d0", + "fields": { + "question": 364, + "contribution": 1217, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fd20f85a-06cc-43b4-b1e6-7d140f34d1bc", + "fields": { + "question": 313, + "contribution": 3665, + "answer": "Lorem ipsum", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fd2ae049-5865-49af-b620-822942897b4e", + "fields": { + "question": 324, + "contribution": 4100, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fda7d27c-5d74-46c7-810f-8bc996dc4668", + "fields": { + "question": 373, + "contribution": 3508, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fdeb3f09-29fb-4397-acbf-263adbf6265f", + "fields": { + "question": 364, + "contribution": 4203, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fe18b4fd-b52e-4bd5-95a6-9a791317c90f", + "fields": { + "question": 324, + "contribution": 3665, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fe344172-508d-4d76-9394-552a49a5d6f5", + "fields": { + "question": 381, + "contribution": 3775, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fe565833-8afc-42a5-81d0-9b6b3838e9e9", + "fields": { + "question": 313, + "contribution": 3462, + "answer": "Lorem ipsum dolor sit", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fe62df77-fc7f-4510-a797-5c51921f02b3", + "fields": { + "question": 330, + "contribution": 4084, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "ff72f363-0456-4f47-93fd-93beb2ebd9a6", + "fields": { + "question": 318, + "contribution": 1612, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "ffaf7b56-d8fa-4354-b387-ef788250d2e9", + "fields": { + "question": 364, + "contribution": 4233, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "ffd03d45-2100-46d1-8518-9af752c28d57", + "fields": { + "question": 358, + "contribution": 4085, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "ffd147a6-5afa-482c-834f-f5ae56c0cd07", + "fields": { + "question": 358, + "contribution": 1201, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr,", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.textanswer", + "pk": "fffad0b3-866f-42f8-99ba-b1937f2e189a", + "fields": { + "question": 324, + "contribution": 822, + "answer": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "original_answer": null, + "review_decision": "PU", + "is_flagged": false + } +}, +{ + "model": "evaluation.faqsection", + "pk": 1, + "fields": { + "order": 1, + "title_de": "Die Plattform", + "title_en": "The Platform" + } +}, +{ + "model": "evaluation.faqsection", + "pk": 2, + "fields": { + "order": 2, + "title_de": "Evaluierung", + "title_en": "The Evaluation" + } +}, +{ + "model": "evaluation.faqsection", + "pk": 3, + "fields": { + "order": 3, + "title_de": "Evaluierungs-Ergebnisse", + "title_en": "The Evaluation Results" + } +}, +{ + "model": "evaluation.faqsection", + "pk": 4, + "fields": { + "order": 4, + "title_de": "Details für Mitwirkende", + "title_en": "Details for Lecturers" + } +}, +{ + "model": "evaluation.faqsection", + "pk": 5, + "fields": { + "order": 5, + "title_de": "Details für Studierende", + "title_en": "Details for Students" + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 1, + "fields": { + "section": 1, + "order": 1, + "question_de": "Was ist EvaP?", + "question_en": "What is EvaP?", + "answer_de": "EvaP ist eine Evaluierungsplattform für Lehrveranstaltungen an Universitäten.
Entwickelt wurde sie ursprünglich am Hasso-Plattner-Institut (HPI) an der Universität Potsdam und ist mittlerweile ein Open-Source-Projekt auf GitHub.
Von 2005 bis 2011 war am HPI die Plattform EvaJ – eine von Studierenden im Rahmen eines Seminars entwickelte Java-Anwendung – im Einsatz. 2011 entschied sich der Fachschaftsrat, die Evaluierungssoftware neu zu entwickeln, da eine Wartung technisch zu aufwändig geworden war. Das neue System namens EvaP basiert nun auf der Programmiersprache Python.", + "answer_en": "EvaP is an online platform being used for evaluation of university courses.
At first developed at Hasso Plattner Institute (HPI) at the University of Potsdam in Germany, it is now an Open Source project on GitHub.
From 2005 to 2011 HPI used the older platform EvaJ – a Java application implemented by students during a seminar. In 2011 the student representatives decided to redevelop the evaluation platform when the old system became unmaintainable. The new platform called EvaP is now written in the Python programming language." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 2, + "fields": { + "section": 1, + "order": 2, + "question_de": "Wer betreibt die Plattform?", + "question_en": "Who runs the platform?", + "answer_de": "Für den Betrieb der Plattform und den Ablauf der Evaluierung ist das Evaluierungsteam verantwortlich.", + "answer_en": "The evaluation team is running the platform and is responsible for the evaluation process." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 3, + "fields": { + "section": 1, + "order": 3, + "question_de": "Wie melde ich mich auf der Plattform an?", + "question_en": "How do I login on the platform?", + "answer_de": "Für die Anmeldung gibt es zwei Möglichkeiten:", + "answer_en": "There are two options to login:" + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 4, + "fields": { + "section": 1, + "order": 4, + "question_de": "Warum braucht man als externe Nutzer·in einen Anmeldeschlüssel und wie funktioniert dieser?", + "question_en": "Why do external users need a login key and how does it work?", + "answer_de": "Externe Nutzer·innen besitzen keinen Login. Dennoch muss sichergestellt werden, dass sie sich mit dem richtigen Account auf der Plattform anmelden können.
Um sich einen Anmeldeschlüssel generieren zu lassen, müssen Sie Ihre E-Mail-Adresse angeben. Verwenden Sie dazu bitte die Adresse, die bei der Anmeldung für die Veranstaltung verwendet wurde, da nur diese an das Evaluierungsteam weitergegeben und somit auf der Plattform hinterlegt wird.
Sie erhalten Ihren Schlüssel anschließend per E-Mail zugeschickt und können sich mit diesem anmelden. Da der Schlüssel eindeutig Ihrer E-Mail-Adresse zugeordnet werden kann, weiß die Plattform, welche Nutzer·in sich gerade anmeldet.", + "answer_en": "External lecturers and students don't have login credentials. But the platform still needs to make sure that they can login as the correct user.
If you want to get a login key for yourself, you need to enter your email address on the login page. Please make sure to use the email address which was used during enrolment for the course, as that one is given to the evaluation team and is already registered on the platform.
You will immediately get your key via email. This key is linked to your email address, so the platform can identify you when using the key to login." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 5, + "fields": { + "section": 1, + "order": 5, + "question_de": "Wie kann ich mich registrieren?", + "question_en": "How can I register?", + "answer_de": "Accounts werden für neue Studierende und Mitwirkende automatisch angelegt. Zusätzlich kann das Evaluierungsteam weitere Accounts anlegen, falls dies notwendig ist.
Eine selbstständige Registrierung ist nicht möglich.", + "answer_en": "Users are created automatically for new students and lecturers. Additional users can be added by the evaluation team if necessary.
An autonomous registration is not possible." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 6, + "fields": { + "section": 2, + "order": 1, + "question_de": "Was ist die Evaluierung?", + "question_en": "What is the evaluation?", + "answer_de": "Die Evaluierung ist die Beurteilung von Lehrveranstaltungen. Ziel ist es, die Qualität der Lehre zu verbessern, indem Lehrende, Studierende und Verwaltung Feedback zu den einzelnen Veranstaltungen erhalten.
Die Studierenden können auf dieser Online-Plattform anonym Fragebögen für ihre belegten Lehrveranstaltungen ausfüllen. Die Auswertung der Fragebögen wird anschließend veröffentlicht und ist ebenfalls online zugänglich.", + "answer_en": "Evaluation is the process of getting feedback for courses. It aims at helping to improve the quality of teaching by providing this feedback to lecturers, students and management.
This online platform allows students to anonymously complete questionnaires for all the courses they are enrolled in. Afterwards the results will be published online." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 7, + "fields": { + "section": 2, + "order": 2, + "question_de": "Woher kommen die Daten?", + "question_en": "Where does the data come from?", + "answer_de": "In jedem Semester erhält das Evaluierungsteam vom Studienreferat die Belegungsdaten. Diese Informationen enthalten alle Lehrveranstaltungen, die jeweilige verantwortliche Person und die Belegungen der Studierenden. Somit ist sichergestellt, dass in EvaP alle Lehrveranstaltungen eingetragen sind und die Studierenden nur Veranstaltungen bewerten können, die sie auch tatsächlich belegt haben. Sollten Sie Fehler in den Daten bemerken, wenden Sie sich bitte an das Evaluierungsteam.", + "answer_en": "Every semester the evaluation team is getting the enrolment data by the by the office of student affairs. This includes all courses, their responsible lecturers and the enrolment information of all students. In this way it's ensured that all courses are available for evaluation and that students can only vote for the courses they are enrolled in. If you should find any mistake, please send a message to the evaluation team." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 8, + "fields": { + "section": 2, + "order": 3, + "question_de": "Wie sind Fragebögen aufgebaut?", + "question_en": "How are the questionnaires created?", + "answer_de": "Die Evaluierung einer Lehrveranstaltung besteht aus mehreren Fragebögen, z.B. Fragen zu Lehrmitteln, einer Übungsleiter·in oder dem Inhalt der Veranstaltung. Jeder dieser Fragebögen wiederum besteht aus einer oder mehreren Fragen.", + "answer_en": "The evaluation of a course consists of several questionnaires, e.g. questions about learning materials, exercise supervisors or the contents of the lecture. Each of these questionnaires holds one or several questions." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 9, + "fields": { + "section": 2, + "order": 4, + "question_de": "Welche Arten von Fragen gibt es?", + "question_en": "What types of questions are asked?", + "answer_de": "Grundsätzlich gibt es drei Fragetypen:", + "answer_en": "There are three types of questions:" + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 10, + "fields": { + "section": 2, + "order": 5, + "question_de": "Wie werden Fragebögen einer Lehrveranstaltung zugeordnet?", + "question_en": "How are the questionnaires for a course selected?", + "answer_de": "Zu Beginn nimmt das Evaluierungsteam die Zuordnung passender Fragebögen vor. Außerdem können Mitwirkende weitere Fragebögen ergänzen, falls Sie zusätzliche Fragen stellen wollen.", + "answer_en": "The initial selection is done by the evaluation team. In addition lecturers can add more questionnaires if they would like to ask further questions." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 11, + "fields": { + "section": 3, + "order": 1, + "question_de": "Wann sind die Ergebnisse verfügbar?", + "question_en": "When are the results published?", + "answer_de": "Die Ergebnisse der Evaluierung werden veröffentlicht, nachdem der Evaluierungszeitraum abgelaufen ist und alle Noten der Veranstaltung bekanntgegeben wurden.", + "answer_en": "The results of the evaluation will be published after the evaluation period ended and after all grades of the course have been published." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 12, + "fields": { + "section": 3, + "order": 2, + "question_de": "In welcher Form werden die Ergebnisse veröffentlicht?", + "question_en": "In which form will the results be published?", + "answer_de": "Die Plattform bietet jeder angemeldeten Nutzer·in die Möglichkeit, die Ergebnisse der vergangenen Semester einzusehen. Für jede Lehrveranstaltung werden eine Gesamtnote und eine Note pro gestellte Likert-Frage angezeigt.
Mitwirkende einer Lehrveranstaltung können zudem die Textantworten sehen, die über sie selbst abgegeben wurden.", + "answer_en": "Every logged-in user can see the results of past semesters on the platform. There are total grades per course and per Likert question.
Contributors of a course can also see the text answers that were given to them." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 13, + "fields": { + "section": 3, + "order": 3, + "question_de": "Wie werden die Noten berechnet?", + "question_en": "How are the grades calculated?", + "answer_de": "Die Gesamtnote ist der gewichtete Mittelwert aller Teilnoten. Die Teilnoten werden über den Durchschnitt aller abgegebenen Likert-Fragen berechnet. Volle Zustimmung entspricht einer 1, volle Ablehnung einer 5. Alle Personennoten werden zusammen mit 50% gewichtet und die Noten der Sachfragen ergeben zusammen die restlichen 50%.", + "answer_en": "The total grade is the weighted average of all intermediate grades. The intermediate grades are calculated as the average of all Likert results. Strong agreement counts as 1, strong disagreement as 5. All person-related grades weigh 50% and all the other grades contribute to the remaining 50%." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 14, + "fields": { + "section": 3, + "order": 4, + "question_de": "Warum sind manche Noten nicht sichtbar?", + "question_en": "Why are not all grades visible?", + "answer_de": "Um zumindest eine grundlegende Aussagekraft zu haben, werden Noten erst dann angezeigt, wenn 20% der Teilnehmenden der Lehrveranstaltung – mindestens aber zwei Teilnehmende – die entsprechende Frage beantwortet haben („keine Angabe“ zählt dabei nicht als Stimme). Eine Gesamtnote wird ebenfalls erst ab dieser Grenze angezeigt.", + "answer_en": "To get at least a basic significance, grades are only shown when at least 20% of the participants of a course – and not less than two participants – answered the related question (\"No answer\" is not counted as an answer). The total grades are also not shown before this threshold was reached." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 15, + "fields": { + "section": 4, + "order": 1, + "question_de": "Was sind Stellvertreter·innen?", + "question_en": "What are delegates?", + "answer_de": "Für die Vorbereitung der Evaluierung werden bestimmte Informationen von den Mitwirkenden benötigt. EvaP bietet Ihnen in Ihrem Profil die Möglichkeit, eine oder mehrere Stellvertreter·innen zu definieren. Diese erhalten die gleichen Bearbeitungsrechte wie Sie selbst und können die benötigten Informationen stellvertretend eintragen.", + "answer_en": "For the preparation of the evaluation some additional data is needed from the lecturers. In your profile EvaP provides the functionality to define one or more delegates who will get edit rights for all your courses and can then add the needed information in your name." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 16, + "fields": { + "section": 4, + "order": 2, + "question_de": "Welche Informationen muss ich für eine Lehrveranstaltung angeben und warum?", + "question_en": "What information do I have to provide for my courses and why?", + "answer_de": "Alle weiteren Daten sollten bereits korrekt eingetragen sein. Wenn Sie dennoch Fehler feststellen, wenden Sie sich bitte an das Evaluierungsteam.", + "answer_en": "All other information about your courses should already have been entered correctly. If you find any mistakes, please contact the evaluation team." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 17, + "fields": { + "section": 4, + "order": 3, + "question_de": "Wie sollte der Evaluierungszeitraum festgelegt werden?", + "question_en": "How should the evaluation period be defined?", + "answer_de": "Die Evaluierung darf die Notengebung nicht beeinflussen und umgekehrt. Dies soll dadurch gewährleistet werden, indem die Evaluierung vor der letzten Prüfungsleistung abgeschlossen wird und die Ergebnisse der Evaluierung erst nach Bekanntgabe der Noten veröffentlicht werden. Der Evaluierungszeitraum sollte mindestens eine Woche umfassen und wird standardmäßig auf die letzten Wochen der Vorlesungszeit gesetzt. Im Folgenden werden ein paar Beispiele gegeben:", + "answer_en": "The evaluation must not influence the course's grading and vice versa. This should be ensured by ending the evaluation before the final exam and publishing the evaluation's results not before the grades of the course have been published. The evaluation period should be at least one week and its standard value are the last weeks of the lecture period. Here are some examples:" + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 18, + "fields": { + "section": 4, + "order": 4, + "question_de": "Was bedeuten die Zustände einer Lehrveranstaltung?", + "question_en": "What do the states of a course mean?", + "answer_de": "Es gibt acht verschiedene Zustände, die eine Lehrveranstaltung durchlaufen kann:
  1. Neu
    Direkt nach dem Import oder dem manuellen Anlegen einer Lehrveranstaltung befindet sie sich in diesem Zustand. Das Evaluierungsteam kontrolliert die Daten und lässt die Lehrveranstaltungen in den nächsten Zustand übergehen. Wenn dies passiert, wird von der Plattform eine E-Mail an die Mitwirkenden und ihre Stellvertreter·innen verschickt.
  2. Vorbereitet
    In diesem Zustand können die Mitwirkenden und ihre Stellvertreter·innen ihre Lehrveranstaltungen bearbeiten und anschließend bestätigen.
  3. Von der verantwortlichen Person bestätigt
    Nachdem die verantwortliche Person eine Lehrveranstaltung bestätigt hat, überprüft das Evaluierungsteam die Daten erneut und bestätigt schließlich den Kurs.
  4. Bestätigt
    Nachdem ein Kurs vom Evaluierungsteam bestätigt wurde, befindet er in diesem Zustand. Die Evaluierung beginnt automatisch, sobald der Evaluierungszeitraum erreicht ist.
  5. In Evaluierung
    In diesem Zustand werden die Stimmen der Teilnehmenden erfasst.
  6. Evaluiert
    Nach Ablauf des Evaluierungszeitraumes gehen evaluierte Lehrveranstaltungen automatisch in diesen Zustand über. Vom Evaluierungsteam werden alle Textantworten durchgesehen und Beleidigungen entfernt.
  7. überprüft
    Sobald alle Textantworten überprüft wurden, verbleibt die Lehrveranstaltung bis zu ihrer Veröffentlichung in diesem Zustand.
  8. Veröffentlicht
    Das Evaluierungsteam veröffentlicht die Ergebnisse der Lehrveranstaltungen manuell. Bei benoteten Veranstaltungen geschieht dies erst nach Veröffentlichung der Noten. Sie, Ihre Stellvertreter·innen und alle Mitwirkenden der Lehrveranstaltung werden per E-Mail darüber benachrichtigt.
    Alle veröffentlichten Veranstaltungen können auf der Plattform eingesehen werden.
", + "answer_en": "There are eight different states in which a course can be:
  1. new
    After importing or manually creating a course it has this state. The evaluation team checks the data and let the course switch to the next state. Once this happens the lecturers and their delegates will get an email from the platform.
  2. prepared
    This is the state where lecturers and their delegates can edit and approve the course.
  3. lecturer approved
    After a lecturer approved a course it will be again checked by the evaluation team who will do the final approval.
  4. approved
    After the evaluation team approved a course it will stay in this state until the evaluation period is reached.
  5. in evaluation
    When the course is in this state its participants can do the evaluation.
  6. evaluated
    After the evaluation period ended the course switches to this state. The evaluation team will now check all text answers and remove personal affronts if necessary.
  7. reviewed
    After reviewing all text answers the course stays in this state until it's published.
  8. published
    The evaluation team publishes the results of the evaluation manually after the grades for the course have been published (in case there are some). The responsible lecturer, defined delegates and all contributors of a course will be notified once the results are published.
    They can then be seen on the platform.
" + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 19, + "fields": { + "section": 4, + "order": 5, + "question_de": "Welche E‑Mail-Benachrichtigungen erhalte ich wann?", + "question_en": "When do I get which emails?", + "answer_de": "Während das Evaluierungsteam die Evaluierung vorbereitet, erhalten Sie und Ihre Stellvertreter·innen eine E-Mail mit einem Link zur Evaluierungsplattform. Darin werden Sie gebeten, die oben aufgeführten Informationen für alle Ihre Lehrveranstaltungen anzupassen und zu ergänzen.
Sobald die Evaluierungsergebnisse Ihrer Lehrveranstaltungen veröffentlicht werden, erhalten Sie, Ihre Stellvertreter·innen und alle Mitwirkenden der Veranstaltung eine E-Mail, die Sie darüber benachrichtigt.", + "answer_en": "After the evaluation team prepared your courses, you and your delegates will receive an email with a link to the evaluation platform. In this email you will be asked to complete the above mentioned information about your courses.
After the evaluation results of your courses have been published, you, your delegates and all contributors of this course will get another email informing about the publication." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 20, + "fields": { + "section": 4, + "order": 6, + "question_de": "Welche Informationen sehe ich auf den Ergebnisseiten?", + "question_en": "Which information can I see on the result pages?", + "answer_de": "Sie sehen für alle Likert-Fragen die jeweiligen Durchschnittsnoten, eine prozentuale Verteilung und die Zahl der abgegebenen Stimmen. Außerdem können Sie die Antworten auf Textfragen sehen, wenn diese Sie persönlich betreffen. Beleidigungen in Textantworten werden vom Evaluierungsteam entfernt, zusätzliche Filter gibt es nicht.", + "answer_en": "You can see the average grades, percentages of the distribution and the number of total votes for all Likert questions. Furthermore you can see the answers to text answers on your own person. Personal affronts in the text answers are removed by the evaluation team. Other than that there are no filters." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 21, + "fields": { + "section": 5, + "order": 1, + "question_de": "Ist meine Bewertung anonym?", + "question_en": "Is the evaluation anonymous?", + "answer_de": "Ja. Die Plattform stellt sicher, dass die erfassten Stimmen keinem Account zugeordnet werden können. Es wird gespeichert, wer eine Stimme für eine Veranstaltung abgegeben hat, nicht jedoch, welcher Account den Fragebogen wie ausfüllt. Wenn du also nicht gerade die einzige abstimmende Person bist, ist es technisch nicht mehr nachvollziehbar, welche Noten oder Textantworten von dir stammen.
Bei Textfragen gibt es jedoch nur eine technische Anonymität. Durch den gewählten Schreibstil und den Inhalt er Antwort kann es den Mitwirkenden gerade bei kleinen Veranstaltungen möglich sein, die Textantworten einzelnen Personen zuzuschreiben. Beim Formulieren der Textantworten sollte dir das bewusst sein.", + "answer_en": "Yes. The platform ensures that votes can't be related to a user. It saves who participated in a course's evaluation but not who voted how. As long as you are not the only participant in a course's evaluation no relation can be made.
When giving text answers there is only a technical anonymity. Your style of writing and the content of the answer might allow lecturers to guess who wrote the text answer, especially in small courses. When writing your answer you should be aware of that." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 22, + "fields": { + "section": 5, + "order": 2, + "question_de": "Wie (vollständig) muss ich den Fragebogen ausfüllen?", + "question_en": "How complete should my answers be?", + "answer_de": "So vollständig wie möglich. Bitte gib eine Stimme für jede Frage ab, die du beurteilen kannst. Nur bei einer hohen Teilnahmequote sind die Ergebnisse aussagekräftig und geben den Mitwirkenden und dem Evaluierungsteam hilfreiches Feedback. Textantworten benötigen zwar mehr Zeit zum Eintippen, sind dafür aber besonders wertvolle Rückmeldungen.", + "answer_en": "As complete as possible. Please vote for everything that you can evaluate. Only high participation rates result in significant values that can help the lecturers and evaluation team. Text answers take more time to write but are very important feedback." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 23, + "fields": { + "section": 5, + "order": 3, + "question_de": "Was passiert mit meinen Textantworten?", + "question_en": "What happens to my text answers?", + "answer_de": "Alle Textantworten zu Mitwirkenden der Lehrveranstaltung werden für die jeweilige Person veröffentlicht.
Bevor die Textantworten veröffentlicht werden, entfernt das Evaluierungsteam Beleidigungen und angreifende Äußerungen. Bitte halte deine Kritik also freundlich und konstruktiv – sonst hilft sie keinem weiter.", + "answer_en": "All text answers on contributors of a course will be shown to these persons.
Before text answers are published, the evaluation team will remove personal affronts if necessary. Please provide constructive and polite feedback – only this can lead to positive changes." + } +}, +{ + "model": "evaluation.faqquestion", + "pk": 24, + "fields": { + "section": 5, + "order": 4, + "question_de": "Kann ich auf bereits zuvor gegebene Antworten verweisen?", + "question_en": "Can I refer to other answers?", + "answer_de": "Nein. Es nicht möglich, sich komplette ausgefüllte Fragebögen anzusehen. Die Stimmen und Textantworten werden pro Frage aggregiert angezeigt. Wenn du in einer Textantwort schreibst „wie oben schon erwähnt“, können andere die zugehörige Antwort nicht finden.", + "answer_en": "No. The questionnaires are not stored as a whole. Votes and text answers will be aggregated per question. If you would write \"see above\", the lecturer can't find the respective answer." + } +}, +{ + "model": "evaluation.infotext", + "pk": 1, + "fields": { + "title_de": "Informationen zur Evaluierung", + "title_en": "Information about the evaluation", + "content_de": "Anonymität
\nDeine abgegebenen Stimmen und Textantworten können dir technisch nicht zugeordnet werden. Dir sollte aber bewusst sein, dass dich Mitwirkende insbesondere in kleinen Veranstaltungen an deinem Schreibstil erkennen könnten.
\nMehr Infos: FAQ/Anonymität
\n
\nVerweise auf andere Antworten
\nLehrende können sich keine kompletten Fragebögen ansehen. Wenn du in einer Textantwort schreibst \"wie oben schon erwähnt\", können sie die zugehörige Antwort nicht finden.
\nMehr Infos: FAQ/Verweise
\n
\nEvaluierungs-Ergebnisse
\nTextantworten werden den bewerteten Personen und den Verantwortlichen der Veranstaltung angezeigt. Antworten auf Abstimmungsfragen werden für alle Nutzer·innen der Plattform veröffentlicht, wenn mindestens zwei Personen an der Evaluierung teilgenommen haben. Durchschnittsnoten werden berechnet, wenn die Teilnahmequote mindestens 20 Prozent beträgt.
\nMehr Infos: FAQ/Ergebnisse", + "content_en": "Anonymity
\nYour votes and text answers can't be related to you. But you should be aware that your style of writing might allow lecturers to guess who wrote the text answer, especially in small courses.
\nMore details: FAQ/Anonymity
\n
\nReferences to other answers
\nLecturers can't see completed questionnaires as a whole. If you would write \"see above\", the lecturer can't find the respective answer.
\nMore details: FAQ/Reference
\n
\nEvaluation Results
\nText answers will be shown to the people who were evaluated and to the people responsible for the course. Voting answers will be published for all users of the platform if at least two people participated in the evaluation. The average grade is calculated if the participation rate is at least 20 percent.
\nMore details: FAQ/Results", + "page": "student_index" + } +}, +{ + "model": "evaluation.infotext", + "pk": 2, + "fields": { + "title_de": "Informationen für Mitwirkende", + "title_en": "Information for contributors", + "content_de": "Stellvertretende
\nLehrende können Stellvertretende definieren, die ihnen bei der Vorbereitung der Evaluierung helfen.\nSie können Stellvertretende auf Ihrer Einstellungsseite definieren.
\nEvaluierungen von Lehrenden, von denen Sie als Stellvertreter·in definiert wurden, sind unten mit einem Label markiert.
\nMehr Infos: FAQ/Stellvertretende
\n
\nZustand der Evaluierungen
\nSie können nur Evaluierungen im Zustand \"vorbereitet\" bearbeiten. Nachdem Sie eine Evaluierung bestätigt haben, wechselt diese automatisch in den Zustand \"von Bearbeiter·in bestätigt\" und Ihre Vorbereitung ist abgeschlossen.
\nMehr Infos: FAQ/Zustände
\n
\nEvaluierungs-Ergebnisse
\nTextantworten werden den bewerteten Personen und den Verantwortlichen der Veranstaltung angezeigt. Antworten auf Abstimmungsfragen werden für alle Nutzer·innen der Plattform veröffentlicht, wenn mindestens zwei Personen an der Evaluierung teilgenommen haben. Durchschnittsnoten werden berechnet, wenn die Teilnahmequote mindestens 20 Prozent beträgt.
\nMehr Infos: FAQ/Ergebnisse", + "content_en": "Delegates
\nLecturers can assign delegates to help them with the preparation of the evaluation.\nYou can assign your own delegates on your profile page.
\nEvaluations from lecturers who set you as a delegate are marked with a label below.
\nMore details: FAQ/Delegates
\n
\nStates of the evaluations
\nYou can only edit evaluations which are in the state \"prepared\". After you approved an evaluation it will automatically change to the state \"editor approved\" and your preparation is finished.
\nMore details: FAQ/States
\n
\nEvaluation Results
\nText answers will be shown to the people who were evaluated and to the people responsible for the course. Voting answers will be published for all users of the platform if at least two people participated in the evaluation. The average grade is calculated if the participation rate is at least 20 percent.
\nMore details: FAQ/Results", + "page": "contributor_index" + } +}, +{ + "model": "evaluation.infotext", + "pk": 3, + "fields": { + "title_de": "", + "title_en": "", + "content_de": "", + "content_en": "", + "page": "grades_pages" + } +}, +{ + "model": "evaluation.userprofile", + "pk": 1, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-29T12:50:26.253", "is_superuser": false, - "email": "jacqueline.rubio@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-28T22:41:00.677", + "email": "luann.schulz@institution.example.com", "title": "", - "first_name_given": "Jacqueline", + "first_name_given": "Luann", "first_name_chosen": "", - "last_name": "Rubio", + "last_name": "Schulz", "language": "", "is_proxy_user": false, "login_key": null, @@ -128605,19 +129082,20 @@ }, { "model": "evaluation.userprofile", + "pk": 2, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-02T17:22:15.401", "is_superuser": false, - "email": "valeri.forster@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-03-04T07:06:22.286", + "email": "fritz.joe@institution.example.com", "title": "", - "first_name_given": "Valeri", + "first_name_given": "Fritz", "first_name_chosen": "", - "last_name": "Forster", + "last_name": "Joe", "language": "", "is_proxy_user": false, - "login_key": 210979156, - "login_key_valid_until": "2014-10-28", + "login_key": null, + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -128629,19 +129107,20 @@ }, { "model": "evaluation.userprofile", + "pk": 3, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T12:59:59", "is_superuser": false, - "email": "lashaunda.benoit@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-14T15:17:07.088", + "email": "barabara.whitlow@institution.example.com", "title": "", - "first_name_given": "Lashaunda", + "first_name_given": "Barabara", "first_name_chosen": "", - "last_name": "Benoit", + "last_name": "Whitlow", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-01-21", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -128653,19 +129132,20 @@ }, { "model": "evaluation.userprofile", + "pk": 4, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-31T17:28:32.063", "is_superuser": false, - "email": "rubin.gaston@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-13T01:23:38", + "email": "chanelle.perales@institution.example.com", "title": "", - "first_name_given": "Rubin", + "first_name_given": "Chanelle", "first_name_chosen": "", - "last_name": "Gaston", + "last_name": "Perales", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": null, + "login_key_valid_until": "2012-04-21", "is_active": true, "notes": "", "startpage": "DE", @@ -128677,15 +129157,16 @@ }, { "model": "evaluation.userprofile", + "pk": 5, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-31T17:28:34.838", "is_superuser": false, - "email": "antwan.brady@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.138", + "email": "perry.welsh@external.example.com", "title": "", - "first_name_given": "Antwan", + "first_name_given": "Perry", "first_name_chosen": "", - "last_name": "Brady", + "last_name": "Welsh", "language": "", "is_proxy_user": false, "login_key": null, @@ -128701,15 +129182,16 @@ }, { "model": "evaluation.userprofile", + "pk": 6, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-03T21:04:16.840", "is_superuser": false, - "email": "cassey.earley@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.143", + "email": "arica.armstead@external.example.com", "title": "", - "first_name_given": "Cassey", + "first_name_given": "Arica", "first_name_chosen": "", - "last_name": "Earley", + "last_name": "Armstead", "language": "", "is_proxy_user": false, "login_key": null, @@ -128725,15 +129207,16 @@ }, { "model": "evaluation.userprofile", + "pk": 7, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-21T09:40:51.496", "is_superuser": false, - "email": "tayna.tarver@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.147", + "email": "justa.ponder@external.example.com", "title": "", - "first_name_given": "Tayna", + "first_name_given": "Justa", "first_name_chosen": "", - "last_name": "Tarver", + "last_name": "Ponder", "language": "", "is_proxy_user": false, "login_key": null, @@ -128749,19 +129232,20 @@ }, { "model": "evaluation.userprofile", + "pk": 8, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-27T10:05:08.265", "is_superuser": false, - "email": "lyla.griffiths@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.157", + "email": "delma.janes@external.example.com", "title": "", - "first_name_given": "Lyla", + "first_name_given": "Delma", "first_name_chosen": "", - "last_name": "Griffiths", + "last_name": "Janes", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -128773,15 +129257,16 @@ }, { "model": "evaluation.userprofile", + "pk": 9, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-04-22T11:26:34.368", "is_superuser": false, - "email": "richelle.chadwick@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.162", + "email": "eloisa.caraway@external.example.com", "title": "", - "first_name_given": "Richelle", + "first_name_given": "Eloisa", "first_name_chosen": "", - "last_name": "Chadwick", + "last_name": "Caraway", "language": "", "is_proxy_user": false, "login_key": null, @@ -128797,15 +129282,16 @@ }, { "model": "evaluation.userprofile", + "pk": 10, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T20:52:03.373", "is_superuser": false, - "email": "armand.person@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-25T10:42:22.650", + "email": "starla.lyons@institution.example.com", "title": "", - "first_name_given": "Armand", + "first_name_given": "Starla", "first_name_chosen": "", - "last_name": "Person", + "last_name": "Lyons", "language": "", "is_proxy_user": false, "login_key": null, @@ -128821,15 +129307,16 @@ }, { "model": "evaluation.userprofile", + "pk": 11, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T16:47:01.203", "is_superuser": false, - "email": "anton.swank@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-23T08:25:52.643", + "email": "willena.hemphill@institution.example.com", "title": "", - "first_name_given": "Anton", + "first_name_given": "Willena", "first_name_chosen": "", - "last_name": "Swank", + "last_name": "Hemphill", "language": "", "is_proxy_user": false, "login_key": null, @@ -128845,15 +129332,16 @@ }, { "model": "evaluation.userprofile", + "pk": 12, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-22T16:09:29.496", "is_superuser": false, - "email": "albina.dibble@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.181", + "email": "polly.honeycutt@external.example.com", "title": "", - "first_name_given": "Albina", + "first_name_given": "Polly", "first_name_chosen": "", - "last_name": "Dibble", + "last_name": "Honeycutt", "language": "", "is_proxy_user": false, "login_key": null, @@ -128869,15 +129357,16 @@ }, { "model": "evaluation.userprofile", + "pk": 13, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T08:18:25.620", "is_superuser": false, - "email": "pamala.galbraith@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-22T13:20:12.139", + "email": "lyndsey.lattimore@institution.example.com", "title": "", - "first_name_given": "Pamala", + "first_name_given": "Lyndsey", "first_name_chosen": "", - "last_name": "Galbraith", + "last_name": "Lattimore", "language": "", "is_proxy_user": false, "login_key": null, @@ -128893,15 +129382,16 @@ }, { "model": "evaluation.userprofile", + "pk": 14, "fields": { + "is_superuser": false, "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T19:20:53.058", - "is_superuser": false, - "email": "vania.talbert@external.example.com", + "last_login": "2014-04-07T15:08:42.080", + "email": "sergio.reichert@external.example.com", "title": "", - "first_name_given": "Vania", + "first_name_given": "Sergio", "first_name_chosen": "", - "last_name": "Talbert", + "last_name": "Reichert", "language": "", "is_proxy_user": false, "login_key": null, @@ -128917,15 +129407,16 @@ }, { "model": "evaluation.userprofile", + "pk": 15, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-27T11:06:20.424", "is_superuser": false, - "email": "val.crocker@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.200", + "email": "kristine.dixon@external.example.com", "title": "", - "first_name_given": "Val", + "first_name_given": "Kristine", "first_name_chosen": "", - "last_name": "Crocker", + "last_name": "Dixon", "language": "", "is_proxy_user": false, "login_key": null, @@ -128941,15 +129432,16 @@ }, { "model": "evaluation.userprofile", + "pk": 16, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:29.477", "is_superuser": false, - "email": "alta.omalley@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-12T11:22:24.996", + "email": "maryetta.hollingsworth@institution.example.com", "title": "", - "first_name_given": "Alta", + "first_name_given": "Maryetta", "first_name_chosen": "", - "last_name": "Omalley", + "last_name": "Hollingsworth", "language": "", "is_proxy_user": false, "login_key": null, @@ -128965,46 +129457,41 @@ }, { "model": "evaluation.userprofile", + "pk": 17, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-15T13:21:49.719", "is_superuser": false, - "email": "brynn.mcnair@external.example.com", - "title": "Dr.", - "first_name_given": "Brynn", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-13T09:26:24.179", + "email": "isaiah.chisholm@institution.example.com", + "title": "", + "first_name_given": "Isaiah", "first_name_chosen": "", - "last_name": "Mcnair", + "last_name": "Chisholm", "language": "", "is_proxy_user": false, - "login_key": 2120134533, - "login_key_valid_until": "2014-08-11", + "login_key": null, + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ], + "delegates": [], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 18, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:31.503", "is_superuser": false, - "email": "mi.ingraham@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.239", + "email": "pam.starr@external.example.com", "title": "", - "first_name_given": "Mi", + "first_name_given": "Pam", "first_name_chosen": "", - "last_name": "Ingraham", + "last_name": "Starr", "language": "", "is_proxy_user": false, "login_key": null, @@ -129020,15 +129507,16 @@ }, { "model": "evaluation.userprofile", + "pk": 19, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:33.539", "is_superuser": false, - "email": "jan.bettencourt@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T16:07:06.040", + "email": "lynn.baptiste@institution.example.com", "title": "", - "first_name_given": "Jan", + "first_name_given": "Lynn", "first_name_chosen": "", - "last_name": "Bettencourt", + "last_name": "Baptiste", "language": "", "is_proxy_user": false, "login_key": null, @@ -129044,15 +129532,16 @@ }, { "model": "evaluation.userprofile", + "pk": 20, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:35.748", "is_superuser": false, - "email": "arcelia.petrie@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-22T16:37:26.406", + "email": "ozella.hooper@institution.example.com", "title": "", - "first_name_given": "Arcelia", + "first_name_given": "Ozella", "first_name_chosen": "", - "last_name": "Petrie", + "last_name": "Hooper", "language": "", "is_proxy_user": false, "login_key": null, @@ -129068,15 +129557,16 @@ }, { "model": "evaluation.userprofile", + "pk": 21, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:35.791", "is_superuser": false, - "email": "tarra.carson@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.262", + "email": "aleisha.brandon@institution.example.com", "title": "", - "first_name_given": "Tarra", + "first_name_given": "Aleisha", "first_name_chosen": "", - "last_name": "Carson", + "last_name": "Brandon", "language": "", "is_proxy_user": false, "login_key": null, @@ -129092,15 +129582,16 @@ }, { "model": "evaluation.userprofile", + "pk": 22, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:35.832", "is_superuser": false, - "email": "gwyneth.dolan@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-02T13:46:51.253", + "email": "latosha.moon@institution.example.com", "title": "", - "first_name_given": "Gwyneth", + "first_name_given": "Latosha", "first_name_chosen": "", - "last_name": "Dolan", + "last_name": "Moon", "language": "", "is_proxy_user": false, "login_key": null, @@ -129116,19 +129607,20 @@ }, { "model": "evaluation.userprofile", + "pk": 23, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-19T09:44:02.379", "is_superuser": false, - "email": "kira.simone@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.281", + "email": "darline.haase@external.example.com", "title": "", - "first_name_given": "Kira", + "first_name_given": "Darline", "first_name_chosen": "", - "last_name": "Simone", + "last_name": "Haase", "language": "", "is_proxy_user": false, - "login_key": 983446795, - "login_key_valid_until": "2013-10-17", + "login_key": null, + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -129140,15 +129632,16 @@ }, { "model": "evaluation.userprofile", + "pk": 24, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:35.915", "is_superuser": false, - "email": "elly.mcmahan@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-30T20:09:05.105", + "email": "chanell.ly@institution.example.com", "title": "", - "first_name_given": "Elly", + "first_name_given": "Chanell", "first_name_chosen": "", - "last_name": "Mcmahan", + "last_name": "Ly", "language": "", "is_proxy_user": false, "login_key": null, @@ -129164,15 +129657,16 @@ }, { "model": "evaluation.userprofile", + "pk": 25, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:35.957", "is_superuser": false, - "email": "pansy.hanna@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T23:17:23.356", + "email": "priscilla.shah@institution.example.com", "title": "", - "first_name_given": "Pansy", + "first_name_given": "Priscilla", "first_name_chosen": "", - "last_name": "Hanna", + "last_name": "Shah", "language": "", "is_proxy_user": false, "login_key": null, @@ -129188,15 +129682,16 @@ }, { "model": "evaluation.userprofile", + "pk": 26, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.002", "is_superuser": false, - "email": "rosana.limon@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-18T20:29:13.939", + "email": "alan.lachance@institution.example.com", "title": "", - "first_name_given": "Rosana", + "first_name_given": "Alan", "first_name_chosen": "", - "last_name": "Limon", + "last_name": "Lachance", "language": "", "is_proxy_user": false, "login_key": null, @@ -129212,19 +129707,20 @@ }, { "model": "evaluation.userprofile", + "pk": 27, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-23T20:05:11.967", "is_superuser": false, - "email": "lovie.hammonds@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.317", + "email": "shanda.fairbanks@external.example.com", "title": "", - "first_name_given": "Lovie", + "first_name_given": "Shanda", "first_name_chosen": "", - "last_name": "Hammonds", + "last_name": "Fairbanks", "language": "", "is_proxy_user": false, - "login_key": 740394133, - "login_key_valid_until": "2013-12-22", + "login_key": null, + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -129236,19 +129732,20 @@ }, { "model": "evaluation.userprofile", + "pk": 28, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-19T10:44:51.953", "is_superuser": false, - "email": "norene.latimer@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-03-30T18:44:43.969", + "email": "yong.shuler@institution.example.com", "title": "", - "first_name_given": "Norene", + "first_name_given": "Yong", "first_name_chosen": "", - "last_name": "Latimer", + "last_name": "Shuler", "language": "", "is_proxy_user": false, - "login_key": 822319998, - "login_key_valid_until": "2013-12-22", + "login_key": null, + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -129260,15 +129757,16 @@ }, { "model": "evaluation.userprofile", + "pk": 29, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.132", "is_superuser": false, - "email": "barrie.russell@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.338", + "email": "clemencia.lea@institution.example.com", "title": "", - "first_name_given": "Barrie", + "first_name_given": "Clemencia", "first_name_chosen": "", - "last_name": "Russell", + "last_name": "Lea", "language": "", "is_proxy_user": false, "login_key": null, @@ -129284,15 +129782,16 @@ }, { "model": "evaluation.userprofile", + "pk": 30, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.174", "is_superuser": false, - "email": "florene.earnest@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T15:22:45.941", + "email": "oscar.christie@institution.example.com", "title": "", - "first_name_given": "Florene", + "first_name_given": "Oscar", "first_name_chosen": "", - "last_name": "Earnest", + "last_name": "Christie", "language": "", "is_proxy_user": false, "login_key": null, @@ -129308,15 +129807,16 @@ }, { "model": "evaluation.userprofile", + "pk": 31, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.216", "is_superuser": false, - "email": "ignacia.rucker@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-28T12:59:20.141", + "email": "alanna.ali@institution.example.com", "title": "", - "first_name_given": "Ignacia", + "first_name_given": "Alanna", "first_name_chosen": "", - "last_name": "Rucker", + "last_name": "Ali", "language": "", "is_proxy_user": false, "login_key": null, @@ -129332,15 +129832,16 @@ }, { "model": "evaluation.userprofile", + "pk": 32, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.258", "is_superuser": false, - "email": "hermila.poole@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-02T15:19:01.008", + "email": "sharee.hoskins@institution.example.com", "title": "", - "first_name_given": "Hermila", + "first_name_given": "Sharee", "first_name_chosen": "", - "last_name": "Poole", + "last_name": "Hoskins", "language": "", "is_proxy_user": false, "login_key": null, @@ -129356,15 +129857,16 @@ }, { "model": "evaluation.userprofile", + "pk": 33, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.300", "is_superuser": false, - "email": "vicenta.pinto@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.367", + "email": "augusta.byers@institution.example.com", "title": "", - "first_name_given": "Vicenta", + "first_name_given": "Augusta", "first_name_chosen": "", - "last_name": "Pinto", + "last_name": "Byers", "language": "", "is_proxy_user": false, "login_key": null, @@ -129380,19 +129882,20 @@ }, { "model": "evaluation.userprofile", + "pk": 34, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-19T20:01:22.150", "is_superuser": false, - "email": "lance.roy@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.377", + "email": "celesta.york@external.example.com", "title": "", - "first_name_given": "Lance", + "first_name_given": "Celesta", "first_name_chosen": "", - "last_name": "Roy", + "last_name": "York", "language": "", "is_proxy_user": false, - "login_key": 2052836776, - "login_key_valid_until": "2013-10-17", + "login_key": null, + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -129404,15 +129907,16 @@ }, { "model": "evaluation.userprofile", + "pk": 35, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.384", "is_superuser": false, - "email": "carie.petit@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.382", + "email": "inga.varner@external.example.com", "title": "", - "first_name_given": "Carie", + "first_name_given": "Inga", "first_name_chosen": "", - "last_name": "Petit", + "last_name": "Varner", "language": "", "is_proxy_user": false, "login_key": null, @@ -129428,15 +129932,16 @@ }, { "model": "evaluation.userprofile", + "pk": 36, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.426", "is_superuser": false, - "email": "rhiannon.gresham@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.396", + "email": "denny.caban@external.example.com", "title": "", - "first_name_given": "Rhiannon", + "first_name_given": "Denny", "first_name_chosen": "", - "last_name": "Gresham", + "last_name": "Caban", "language": "", "is_proxy_user": false, "login_key": null, @@ -129452,15 +129957,16 @@ }, { "model": "evaluation.userprofile", + "pk": 37, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.479", "is_superuser": false, - "email": "melanie.whalen@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-09T11:17:34.455", + "email": "maegan.mccorkle@institution.example.com", "title": "", - "first_name_given": "Melanie", + "first_name_given": "Maegan", "first_name_chosen": "", - "last_name": "Whalen", + "last_name": "Mccorkle", "language": "", "is_proxy_user": false, "login_key": null, @@ -129476,15 +129982,16 @@ }, { "model": "evaluation.userprofile", + "pk": 38, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.522", "is_superuser": false, - "email": "lucina.morey@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-02T13:49:42.939", + "email": "eboni.maldonado@external.example.com", "title": "", - "first_name_given": "Lucina", + "first_name_given": "Eboni", "first_name_chosen": "", - "last_name": "Morey", + "last_name": "Maldonado", "language": "", "is_proxy_user": false, "login_key": null, @@ -129500,19 +130007,20 @@ }, { "model": "evaluation.userprofile", + "pk": 39, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-21T20:52:56.417", "is_superuser": false, - "email": "tifany.hinojosa@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.415", + "email": "malia.cooper@external.example.com", "title": "", - "first_name_given": "Tifany", + "first_name_given": "Malia", "first_name_chosen": "", - "last_name": "Hinojosa", + "last_name": "Cooper", "language": "", "is_proxy_user": false, - "login_key": 2076676098, - "login_key_valid_until": "2013-10-18", + "login_key": null, + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -129524,15 +130032,16 @@ }, { "model": "evaluation.userprofile", + "pk": 40, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.606", "is_superuser": false, - "email": "francie.loya@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.420", + "email": "rossie.chaffin@external.example.com", "title": "", - "first_name_given": "Francie", + "first_name_given": "Rossie", "first_name_chosen": "", - "last_name": "Loya", + "last_name": "Chaffin", "language": "", "is_proxy_user": false, "login_key": null, @@ -129548,15 +130057,16 @@ }, { "model": "evaluation.userprofile", + "pk": 41, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.648", "is_superuser": false, - "email": "zane.calvert@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-22T16:36:45.099", + "email": "marna.leboeuf@institution.example.com", "title": "", - "first_name_given": "Zane", + "first_name_given": "Marna", "first_name_chosen": "", - "last_name": "Calvert", + "last_name": "Leboeuf", "language": "", "is_proxy_user": false, "login_key": null, @@ -129572,15 +130082,16 @@ }, { "model": "evaluation.userprofile", + "pk": 42, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.690", "is_superuser": false, - "email": "tyesha.schreiner@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:15:33.557", + "email": "adriane.strain@institution.example.com", "title": "", - "first_name_given": "Tyesha", + "first_name_given": "Adriane", "first_name_chosen": "", - "last_name": "Schreiner", + "last_name": "Strain", "language": "", "is_proxy_user": false, "login_key": null, @@ -129596,15 +130107,16 @@ }, { "model": "evaluation.userprofile", + "pk": 43, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.732", "is_superuser": false, - "email": "may.nation@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-05T08:28:44.887", + "email": "jeannie.guffey@institution.example.com", "title": "", - "first_name_given": "May", + "first_name_given": "Jeannie", "first_name_chosen": "", - "last_name": "Nation", + "last_name": "Guffey", "language": "", "is_proxy_user": false, "login_key": null, @@ -129620,19 +130132,20 @@ }, { "model": "evaluation.userprofile", + "pk": 44, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-21T14:13:20.051", "is_superuser": false, - "email": "donnetta.hacker@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-01T11:36:03.558", + "email": "brian.david@external.example.com", "title": "", - "first_name_given": "Donnetta", + "first_name_given": "Brian", "first_name_chosen": "", - "last_name": "Hacker", + "last_name": "David", "language": "", "is_proxy_user": false, - "login_key": 1692681790, - "login_key_valid_until": "2013-10-19", + "login_key": null, + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -129644,15 +130157,16 @@ }, { "model": "evaluation.userprofile", + "pk": 45, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:36.815", "is_superuser": false, - "email": "ronni.rousseau@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.475", + "email": "sylvester.sell@external.example.com", "title": "", - "first_name_given": "Ronni", + "first_name_given": "Sylvester", "first_name_chosen": "", - "last_name": "Rousseau", + "last_name": "Sell", "language": "", "is_proxy_user": false, "login_key": null, @@ -129668,15 +130182,16 @@ }, { "model": "evaluation.userprofile", + "pk": 46, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:40.559", "is_superuser": false, - "email": "dell.castro@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.485", + "email": "ramona.horvath@external.example.com", "title": "", - "first_name_given": "Dell", + "first_name_given": "Ramona", "first_name_chosen": "", - "last_name": "Castro", + "last_name": "Horvath", "language": "", "is_proxy_user": false, "login_key": null, @@ -129692,15 +130207,16 @@ }, { "model": "evaluation.userprofile", + "pk": 47, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:41.626", "is_superuser": false, - "email": "sterling.hutchins@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-03-03T12:00:50.914", + "email": "alexis.sandoval@institution.example.com", "title": "", - "first_name_given": "Sterling", + "first_name_given": "Alexis", "first_name_chosen": "", - "last_name": "Hutchins", + "last_name": "Sandoval", "language": "", "is_proxy_user": false, "login_key": null, @@ -129716,15 +130232,16 @@ }, { "model": "evaluation.userprofile", + "pk": 48, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:49.383", "is_superuser": false, - "email": "azalee.broussard@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-18T21:29:51.683", + "email": "shela.lowell@institution.example.com", "title": "", - "first_name_given": "Azalee", + "first_name_given": "Shela", "first_name_chosen": "", - "last_name": "Broussard", + "last_name": "Lowell", "language": "", "is_proxy_user": false, "login_key": null, @@ -129740,15 +130257,16 @@ }, { "model": "evaluation.userprofile", + "pk": 49, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:52.747", "is_superuser": false, - "email": "denny.barrientos@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.521", + "email": "zandra.gerard@external.example.com", "title": "", - "first_name_given": "Denny", + "first_name_given": "Zandra", "first_name_chosen": "", - "last_name": "Barrientos", + "last_name": "Gerard", "language": "", "is_proxy_user": false, "login_key": null, @@ -129764,15 +130282,16 @@ }, { "model": "evaluation.userprofile", + "pk": 50, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:54.391", "is_superuser": false, - "email": "jaquelyn.huang@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.526", + "email": "jodee.treadwell@external.example.com", "title": "", - "first_name_given": "Jaquelyn", + "first_name_given": "Jodee", "first_name_chosen": "", - "last_name": "Huang", + "last_name": "Treadwell", "language": "", "is_proxy_user": false, "login_key": null, @@ -129788,15 +130307,16 @@ }, { "model": "evaluation.userprofile", + "pk": 51, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:43:57.125", "is_superuser": false, - "email": "lasandra.draper@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.540", + "email": "micheal.woodbury@external.example.com", "title": "", - "first_name_given": "Lasandra", + "first_name_given": "Micheal", "first_name_chosen": "", - "last_name": "Draper", + "last_name": "Woodbury", "language": "", "is_proxy_user": false, "login_key": null, @@ -129812,15 +130332,16 @@ }, { "model": "evaluation.userprofile", + "pk": 52, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:44:00.267", "is_superuser": false, - "email": "emilee.beavers@external.example.com", - "title": "Prof. Dr.", - "first_name_given": "Emilee", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-02T15:42:43.850", + "email": "evelin.reno@external.example.com", + "title": "", + "first_name_given": "Evelin", "first_name_chosen": "", - "last_name": "Beavers", + "last_name": "Reno", "language": "", "is_proxy_user": false, "login_key": null, @@ -129836,15 +130357,16 @@ }, { "model": "evaluation.userprofile", + "pk": 53, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:44:05.777", "is_superuser": false, - "email": "eunice.ellison@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.555", + "email": "nolan.pope@external.example.com", "title": "", - "first_name_given": "Eunice", + "first_name_given": "Nolan", "first_name_chosen": "", - "last_name": "Ellison", + "last_name": "Pope", "language": "", "is_proxy_user": false, "login_key": null, @@ -129860,15 +130382,16 @@ }, { "model": "evaluation.userprofile", + "pk": 54, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:44:18.052", "is_superuser": false, - "email": "tara.snider@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:46.560", + "email": "audry.craddock@external.example.com", "title": "", - "first_name_given": "Tara", + "first_name_given": "Audry", "first_name_chosen": "", - "last_name": "Snider", + "last_name": "Craddock", "language": "", "is_proxy_user": false, "login_key": null, @@ -129884,15 +130407,16 @@ }, { "model": "evaluation.userprofile", + "pk": 55, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-23T20:19:26.722", "is_superuser": false, - "email": "silva.couture@institution.example.com", - "title": "", - "first_name_given": "Silva", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-26T11:55:18.316", + "email": "viola.barringer@institution.example.com", + "title": "Dr.", + "first_name_given": "Viola", "first_name_chosen": "", - "last_name": "Couture", + "last_name": "Barringer", "language": "", "is_proxy_user": false, "login_key": null, @@ -129908,15 +130432,16 @@ }, { "model": "evaluation.userprofile", + "pk": 56, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-02T13:45:32.397", "is_superuser": false, - "email": "anglea.akers@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:53.825", + "email": "roxy.sager@external.example.com", "title": "", - "first_name_given": "Anglea", + "first_name_given": "Roxy", "first_name_chosen": "", - "last_name": "Akers", + "last_name": "Sager", "language": "", "is_proxy_user": false, "login_key": null, @@ -129932,15 +130457,16 @@ }, { "model": "evaluation.userprofile", + "pk": 57, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-19T14:46:14.587", "is_superuser": false, - "email": "hyon.sherry@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-24T00:08:14.535", + "email": "sindy.boisvert@institution.example.com", "title": "", - "first_name_given": "Hyon", + "first_name_given": "Sindy", "first_name_chosen": "", - "last_name": "Sherry", + "last_name": "Boisvert", "language": "", "is_proxy_user": false, "login_key": null, @@ -129956,15 +130482,16 @@ }, { "model": "evaluation.userprofile", + "pk": 58, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-07T09:04:51.478", "is_superuser": false, - "email": "shanae.sam@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:53.848", + "email": "dante.krug@external.example.com", "title": "", - "first_name_given": "Shanae", + "first_name_given": "Dante", "first_name_chosen": "", - "last_name": "Sam", + "last_name": "Krug", "language": "", "is_proxy_user": false, "login_key": null, @@ -129980,15 +130507,16 @@ }, { "model": "evaluation.userprofile", + "pk": 59, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-28T15:29:33.590", "is_superuser": false, - "email": "sharon.bogan@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:53.858", + "email": "lourie.apodaca@external.example.com", "title": "", - "first_name_given": "Sharon", + "first_name_given": "Lourie", "first_name_chosen": "", - "last_name": "Bogan", + "last_name": "Apodaca", "language": "", "is_proxy_user": false, "login_key": null, @@ -130004,15 +130532,16 @@ }, { "model": "evaluation.userprofile", + "pk": 60, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-01T21:17:50.858", "is_superuser": false, - "email": "aline.canady@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-18T21:33:11.053", + "email": "christie.savage@external.example.com", "title": "", - "first_name_given": "Aline", + "first_name_given": "Christie", "first_name_chosen": "", - "last_name": "Canady", + "last_name": "Savage", "language": "", "is_proxy_user": false, "login_key": null, @@ -130028,15 +130557,16 @@ }, { "model": "evaluation.userprofile", + "pk": 61, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-01T21:18:24.621", "is_superuser": false, - "email": "velvet.paradis@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:53.869", + "email": "franchesca.russo@external.example.com", "title": "", - "first_name_given": "Velvet", + "first_name_given": "Franchesca", "first_name_chosen": "", - "last_name": "Paradis", + "last_name": "Russo", "language": "", "is_proxy_user": false, "login_key": null, @@ -130052,15 +130582,16 @@ }, { "model": "evaluation.userprofile", + "pk": 62, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-02T07:40:50.269", "is_superuser": false, - "email": "carlo.breaux@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:53.888", + "email": "catherina.andrade@external.example.com", "title": "", - "first_name_given": "Carlo", + "first_name_given": "Catherina", "first_name_chosen": "", - "last_name": "Breaux", + "last_name": "Andrade", "language": "", "is_proxy_user": false, "login_key": null, @@ -130076,15 +130607,16 @@ }, { "model": "evaluation.userprofile", + "pk": 63, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-02T10:13:59.379", "is_superuser": false, - "email": "candie.glaser@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:53.897", + "email": "twanna.kent@external.example.com", "title": "", - "first_name_given": "Candie", + "first_name_given": "Twanna", "first_name_chosen": "", - "last_name": "Glaser", + "last_name": "Kent", "language": "", "is_proxy_user": false, "login_key": null, @@ -130100,15 +130632,16 @@ }, { "model": "evaluation.userprofile", + "pk": 64, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-23T13:35:18.855", "is_superuser": false, - "email": "fernande.edwards@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:53.901", + "email": "charity.trombley@external.example.com", "title": "", - "first_name_given": "Fernande", + "first_name_given": "Charity", "first_name_chosen": "", - "last_name": "Edwards", + "last_name": "Trombley", "language": "", "is_proxy_user": false, "login_key": null, @@ -130124,15 +130657,16 @@ }, { "model": "evaluation.userprofile", + "pk": 65, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-14T12:56:16.798", "is_superuser": false, - "email": "monnie.guzman@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T16:59:53.911", + "email": "noble.hope@external.example.com", "title": "", - "first_name_given": "Monnie", + "first_name_given": "Noble", "first_name_chosen": "", - "last_name": "Guzman", + "last_name": "Hope", "language": "", "is_proxy_user": false, "login_key": null, @@ -130148,19 +130682,20 @@ }, { "model": "evaluation.userprofile", + "pk": 66, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-02T23:42:55.994", "is_superuser": false, - "email": "jarrett.flannery@institution.example.com", - "title": "", - "first_name_given": "Jarrett", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-07T14:28:32.793", + "email": "hugh.runyon@institution.example.com", + "title": "Dr.-Ing.", + "first_name_given": "Hugh", "first_name_chosen": "", - "last_name": "Flannery", + "last_name": "Runyon", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130172,19 +130707,20 @@ }, { "model": "evaluation.userprofile", + "pk": 67, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-06T19:38:33.700", "is_superuser": false, - "email": "adrianne.talley@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-08T12:55:29.453", + "email": "diane.carlton@institution.example.com", "title": "", - "first_name_given": "Adrianne", + "first_name_given": "Diane", "first_name_chosen": "", - "last_name": "Talley", + "last_name": "Carlton", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130196,19 +130732,20 @@ }, { "model": "evaluation.userprofile", + "pk": 68, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T17:51:05.116", "is_superuser": false, - "email": "georgiana.jasper@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:02.340", + "email": "octavio.weatherly@external.example.com", "title": "", - "first_name_given": "Georgiana", + "first_name_given": "Octavio", "first_name_chosen": "", - "last_name": "Jasper", + "last_name": "Weatherly", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130220,19 +130757,20 @@ }, { "model": "evaluation.userprofile", + "pk": 69, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T16:59:40.468", "is_superuser": false, - "email": "oneida.melendez@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:02.933", + "email": "christel.skinner@external.example.com", "title": "", - "first_name_given": "Oneida", + "first_name_given": "Christel", "first_name_chosen": "", - "last_name": "Melendez", + "last_name": "Skinner", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130244,15 +130782,16 @@ }, { "model": "evaluation.userprofile", + "pk": 70, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-23T16:09:52.798", "is_superuser": false, - "email": "syreeta.tennant@external.example.com", - "title": "", - "first_name_given": "Syreeta", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-02T13:51:03.991", + "email": "elena.kline@institution.example.com", + "title": "Prof. Dr.", + "first_name_given": "Elena", "first_name_chosen": "", - "last_name": "Tennant", + "last_name": "Kline", "language": "", "is_proxy_user": false, "login_key": null, @@ -130262,21 +130801,27 @@ "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 780, + 87, + 11, + 14 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 71, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-13T15:21:44.045", "is_superuser": false, - "email": "nicholle.boyce@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:11.313", + "email": "farrah.rico@external.example.com", "title": "", - "first_name_given": "Nicholle", + "first_name_given": "Farrah", "first_name_chosen": "", - "last_name": "Boyce", + "last_name": "Rico", "language": "", "is_proxy_user": false, "login_key": null, @@ -130292,19 +130837,20 @@ }, { "model": "evaluation.userprofile", + "pk": 72, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T18:02:35.335", "is_superuser": false, - "email": "kristi.boykin@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:11.321", + "email": "mercedes.berry@external.example.com", "title": "", - "first_name_given": "Kristi", + "first_name_given": "Mercedes", "first_name_chosen": "", - "last_name": "Boykin", + "last_name": "Berry", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130316,19 +130862,20 @@ }, { "model": "evaluation.userprofile", + "pk": 73, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T18:41:43.424", "is_superuser": false, - "email": "keisha.jordon@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-08T14:50:24.419", + "email": "orval.cheung@external.example.com", "title": "", - "first_name_given": "Keisha", + "first_name_given": "Orval", "first_name_chosen": "", - "last_name": "Jordon", + "last_name": "Cheung", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130340,19 +130887,20 @@ }, { "model": "evaluation.userprofile", + "pk": 74, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T22:48:54.132", "is_superuser": false, - "email": "tod.rowe@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-11-02T10:53:23.655", + "email": "cherry.doughty@institution.example.com", "title": "", - "first_name_given": "Tod", + "first_name_given": "Cherry", "first_name_chosen": "", - "last_name": "Rowe", + "last_name": "Doughty", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130364,19 +130912,20 @@ }, { "model": "evaluation.userprofile", + "pk": 75, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T14:00:23.895", "is_superuser": false, - "email": "lindsy.wilke@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-10T13:03:18.412", + "email": "beth.carlton@institution.example.com", "title": "", - "first_name_given": "Lindsy", + "first_name_given": "Beth", "first_name_chosen": "", - "last_name": "Wilke", + "last_name": "Carlton", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130388,19 +130937,20 @@ }, { "model": "evaluation.userprofile", + "pk": 76, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T17:49:27.553", "is_superuser": false, - "email": "marcelo.lowell@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:11.372", + "email": "marge.gilson@external.example.com", "title": "", - "first_name_given": "Marcelo", + "first_name_given": "Marge", "first_name_chosen": "", - "last_name": "Lowell", + "last_name": "Gilson", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130412,19 +130962,20 @@ }, { "model": "evaluation.userprofile", + "pk": 77, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T23:14:22.839", "is_superuser": false, - "email": "brianna.true@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:11.386", + "email": "drucilla.tillery@external.example.com", "title": "", - "first_name_given": "Brianna", + "first_name_given": "Drucilla", "first_name_chosen": "", - "last_name": "True", + "last_name": "Tillery", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130436,19 +130987,20 @@ }, { "model": "evaluation.userprofile", + "pk": 78, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T10:53:19.069", "is_superuser": false, - "email": "ossie.stamper@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:11.396", + "email": "eliza.callahan@external.example.com", "title": "", - "first_name_given": "Ossie", + "first_name_given": "Eliza", "first_name_chosen": "", - "last_name": "Stamper", + "last_name": "Callahan", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130460,19 +131012,20 @@ }, { "model": "evaluation.userprofile", + "pk": 79, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T12:48:59.772", "is_superuser": false, - "email": "suzi.wick@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:11.400", + "email": "clarita.healy@external.example.com", "title": "", - "first_name_given": "Suzi", + "first_name_given": "Clarita", "first_name_chosen": "", - "last_name": "Wick", + "last_name": "Healy", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130484,19 +131037,20 @@ }, { "model": "evaluation.userprofile", + "pk": 80, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T17:48:33.692", "is_superuser": false, - "email": "latasha.pham@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:11.417", + "email": "verla.krueger@external.example.com", "title": "", - "first_name_given": "Latasha", + "first_name_given": "Verla", "first_name_chosen": "", - "last_name": "Pham", + "last_name": "Krueger", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130508,19 +131062,20 @@ }, { "model": "evaluation.userprofile", + "pk": 81, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T11:50:48.658", "is_superuser": false, - "email": "elfriede.aguiar@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:11.421", + "email": "lakita.palumbo@external.example.com", "title": "", - "first_name_given": "Elfriede", + "first_name_given": "Lakita", "first_name_chosen": "", - "last_name": "Aguiar", + "last_name": "Palumbo", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130532,19 +131087,20 @@ }, { "model": "evaluation.userprofile", + "pk": 82, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T20:46:14.824", "is_superuser": false, - "email": "kanesha.waggoner@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:11.436", + "email": "elfrieda.brigham@external.example.com", "title": "", - "first_name_given": "Kanesha", + "first_name_given": "Elfrieda", "first_name_chosen": "", - "last_name": "Waggoner", + "last_name": "Brigham", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130556,19 +131112,20 @@ }, { "model": "evaluation.userprofile", + "pk": 83, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-22T16:32:36.064", "is_superuser": false, - "email": "kristle.ewing@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:11.440", + "email": "roslyn.edwards@external.example.com", "title": "", - "first_name_given": "Kristle", + "first_name_given": "Roslyn", "first_name_chosen": "", - "last_name": "Ewing", + "last_name": "Edwards", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130580,19 +131137,20 @@ }, { "model": "evaluation.userprofile", + "pk": 84, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T21:16:47.777", "is_superuser": false, - "email": "catherine.dillon@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-25T15:41:02.977", + "email": "michell.dabbs@institution.example.com", "title": "", - "first_name_given": "Catherine", + "first_name_given": "Michell", "first_name_chosen": "", - "last_name": "Dillon", + "last_name": "Dabbs", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130604,19 +131162,20 @@ }, { "model": "evaluation.userprofile", + "pk": 85, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T03:30:51.032", "is_superuser": false, - "email": "mei.toro@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:11.471", + "email": "joaquina.shackelford@external.example.com", "title": "", - "first_name_given": "Mei", + "first_name_given": "Joaquina", "first_name_chosen": "", - "last_name": "Toro", + "last_name": "Shackelford", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130628,19 +131187,20 @@ }, { "model": "evaluation.userprofile", + "pk": 86, "fields": { - "password": "pbkdf2_sha256$20000$W777baxi62RX$1un4e0MdvQvKWTwBBkO/TLOaHGBh1QDQ0XkNreDk77U=", - "last_login": "2015-11-08T14:34:22.886", "is_superuser": false, - "email": "alisa.askew@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:11.476", + "email": "arlena.bickford@external.example.com", "title": "", - "first_name_given": "Alisa", + "first_name_given": "Arlena", "first_name_chosen": "", - "last_name": "Askew", + "last_name": "Bickford", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130652,19 +131212,20 @@ }, { "model": "evaluation.userprofile", + "pk": 87, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T17:46:12.938", "is_superuser": false, - "email": "russel.stroup@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-24T14:51:25.860", + "email": "hue.fontenot@external.example.com", "title": "", - "first_name_given": "Russel", + "first_name_given": "Hue", "first_name_chosen": "", - "last_name": "Stroup", + "last_name": "Fontenot", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130676,19 +131237,20 @@ }, { "model": "evaluation.userprofile", + "pk": 88, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T10:40:45.594", "is_superuser": false, - "email": "stacy.webber@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:11.484", + "email": "vennie.neil@external.example.com", "title": "", - "first_name_given": "Stacy", + "first_name_given": "Vennie", "first_name_chosen": "", - "last_name": "Webber", + "last_name": "Neil", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130700,19 +131262,20 @@ }, { "model": "evaluation.userprofile", + "pk": 89, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T14:00:42.693", "is_superuser": false, - "email": "herta.bourne@institution.example.com", - "title": "", - "first_name_given": "Herta", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-31T09:05:09.526", + "email": "chieko.lehman@institution.example.com", + "title": "Prof. Dr.", + "first_name_given": "Chieko", "first_name_chosen": "", - "last_name": "Bourne", + "last_name": "Lehman", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130724,19 +131287,20 @@ }, { "model": "evaluation.userprofile", + "pk": 90, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-11T08:07:47.300", "is_superuser": false, - "email": "donetta.dempsey@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-10T15:15:03.398", + "email": "lois.seibert@institution.example.com", "title": "", - "first_name_given": "Donetta", + "first_name_given": "Lois", "first_name_chosen": "", - "last_name": "Dempsey", + "last_name": "Seibert", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130748,15 +131312,16 @@ }, { "model": "evaluation.userprofile", + "pk": 91, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-19T09:21:30.582", "is_superuser": false, - "email": "dong.gooden@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-16T14:08:53.821", + "email": "lindsy.clement@external.example.com", "title": "", - "first_name_given": "Dong", + "first_name_given": "Lindsy", "first_name_chosen": "", - "last_name": "Gooden", + "last_name": "Clement", "language": "", "is_proxy_user": false, "login_key": null, @@ -130772,19 +131337,20 @@ }, { "model": "evaluation.userprofile", + "pk": 92, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T00:06:58.086", "is_superuser": false, - "email": "marybeth.groff@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:16.101", + "email": "dan.jack@external.example.com", "title": "", - "first_name_given": "Marybeth", + "first_name_given": "Dan", "first_name_chosen": "", - "last_name": "Groff", + "last_name": "Jack", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130796,19 +131362,20 @@ }, { "model": "evaluation.userprofile", + "pk": 93, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T15:26:09.952", "is_superuser": false, - "email": "cyndy.salter@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-08T08:44:34.568", + "email": "denisha.chance@institution.example.com", "title": "", - "first_name_given": "Cyndy", + "first_name_given": "Denisha", "first_name_chosen": "", - "last_name": "Salter", + "last_name": "Chance", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130820,15 +131387,16 @@ }, { "model": "evaluation.userprofile", + "pk": 94, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T10:35:48.764", "is_superuser": false, - "email": "reid.willingham@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:16.110", + "email": "kraig.mcfarlane@external.example.com", "title": "", - "first_name_given": "Reid", + "first_name_given": "Kraig", "first_name_chosen": "", - "last_name": "Willingham", + "last_name": "Mcfarlane", "language": "", "is_proxy_user": false, "login_key": null, @@ -130844,19 +131412,20 @@ }, { "model": "evaluation.userprofile", + "pk": 95, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T17:10:23.915", "is_superuser": false, - "email": "johnsie.conrad@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-01-18T16:39:13.623", + "email": "katherin.vandiver@institution.example.com", "title": "", - "first_name_given": "Johnsie", + "first_name_given": "Katherin", "first_name_chosen": "", - "last_name": "Conrad", + "last_name": "Vandiver", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130868,19 +131437,20 @@ }, { "model": "evaluation.userprofile", + "pk": 96, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-28T19:12:07.601", "is_superuser": false, - "email": "fatimah.mcghee@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:16.229", + "email": "ranae.fry@external.example.com", "title": "", - "first_name_given": "Fatimah", + "first_name_given": "Ranae", "first_name_chosen": "", - "last_name": "Mcghee", + "last_name": "Fry", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130892,19 +131462,20 @@ }, { "model": "evaluation.userprofile", + "pk": 97, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T12:37:19.033", "is_superuser": false, - "email": "christine.brinkley@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-05T09:17:42.420", + "email": "errol.simon@institution.example.com", "title": "", - "first_name_given": "Christine", + "first_name_given": "Errol", "first_name_chosen": "", - "last_name": "Brinkley", + "last_name": "Simon", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130916,19 +131487,20 @@ }, { "model": "evaluation.userprofile", + "pk": 98, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:16:58.210", "is_superuser": false, - "email": "cristine.caraballo@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-12-17T13:59:04.698", + "email": "oren.hauser@external.example.com", "title": "", - "first_name_given": "Cristine", + "first_name_given": "Oren", "first_name_chosen": "", - "last_name": "Caraballo", + "last_name": "Hauser", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130940,15 +131512,16 @@ }, { "model": "evaluation.userprofile", + "pk": 99, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:16:58.243", "is_superuser": false, - "email": "giselle.kern@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:17.058", + "email": "katelynn.bowers@external.example.com", "title": "", - "first_name_given": "Giselle", + "first_name_given": "Katelynn", "first_name_chosen": "", - "last_name": "Kern", + "last_name": "Bowers", "language": "", "is_proxy_user": false, "login_key": null, @@ -130964,19 +131537,20 @@ }, { "model": "evaluation.userprofile", + "pk": 100, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:16:58.289", "is_superuser": false, - "email": "yuriko.lister@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-16T14:09:00.405", + "email": "randolph.patrick@institution.example.com", "title": "", - "first_name_given": "Yuriko", + "first_name_given": "Randolph", "first_name_chosen": "", - "last_name": "Lister", + "last_name": "Patrick", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -130988,15 +131562,16 @@ }, { "model": "evaluation.userprofile", + "pk": 101, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T22:35:17.346", "is_superuser": false, - "email": "diamond.hendrick@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:17.091", + "email": "flora.ly@external.example.com", "title": "", - "first_name_given": "Diamond", + "first_name_given": "Flora", "first_name_chosen": "", - "last_name": "Hendrick", + "last_name": "Ly", "language": "", "is_proxy_user": false, "login_key": null, @@ -131012,15 +131587,16 @@ }, { "model": "evaluation.userprofile", + "pk": 102, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T18:46:33.937", "is_superuser": false, - "email": "myrna.grant@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:17.098", + "email": "genaro.durbin@external.example.com", "title": "", - "first_name_given": "Myrna", + "first_name_given": "Genaro", "first_name_chosen": "", - "last_name": "Grant", + "last_name": "Durbin", "language": "", "is_proxy_user": false, "login_key": null, @@ -131036,15 +131612,16 @@ }, { "model": "evaluation.userprofile", + "pk": 103, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T12:07:26.020", "is_superuser": false, - "email": "isabelle.veal@institution.example.com", - "title": "", - "first_name_given": "Isabelle", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-14T14:18:59.405", + "email": "lizabeth.steward@institution.example.com", + "title": "Prof. Dr.", + "first_name_given": "Lizabeth", "first_name_chosen": "", - "last_name": "Veal", + "last_name": "Steward", "language": "", "is_proxy_user": false, "login_key": null, @@ -131054,21 +131631,24 @@ "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 93 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 104, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T11:12:24.352", "is_superuser": false, - "email": "felicia.lashley@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:22.769", + "email": "jarvis.woodbury@external.example.com", "title": "", - "first_name_given": "Felicia", + "first_name_given": "Jarvis", "first_name_chosen": "", - "last_name": "Lashley", + "last_name": "Woodbury", "language": "", "is_proxy_user": false, "login_key": null, @@ -131084,15 +131664,16 @@ }, { "model": "evaluation.userprofile", + "pk": 105, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-17T12:09:33.327", "is_superuser": false, - "email": "adriane.newby@institution.example.com", - "title": "", - "first_name_given": "Adriane", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-23T11:31:00.867", + "email": "ellsworth.thornburg@institution.example.com", + "title": "Dr.", + "first_name_given": "Ellsworth", "first_name_chosen": "", - "last_name": "Newby", + "last_name": "Thornburg", "language": "", "is_proxy_user": false, "login_key": null, @@ -131102,21 +131683,24 @@ "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 210 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 106, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-06-03T09:03:55.162", "is_superuser": false, - "email": "manager@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T07:24:33.096", + "email": "gabriela.carlisle@institution.example.com", "title": "", - "first_name_given": "", + "first_name_given": "Gabriela", "first_name_chosen": "", - "last_name": "manager", + "last_name": "Carlisle", "language": "", "is_proxy_user": false, "login_key": null, @@ -131124,11 +131708,7 @@ "is_active": true, "notes": "", "startpage": "DE", - "groups": [ - [ - "Manager" - ] - ], + "groups": [], "user_permissions": [], "delegates": [], "cc_users": [] @@ -131136,15 +131716,16 @@ }, { "model": "evaluation.userprofile", + "pk": 107, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-05T18:14:14.763", "is_superuser": false, - "email": "treasa.rinaldi@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:23.106", + "email": "fleta.hirsch@external.example.com", "title": "", - "first_name_given": "Treasa", + "first_name_given": "Fleta", "first_name_chosen": "", - "last_name": "Rinaldi", + "last_name": "Hirsch", "language": "", "is_proxy_user": false, "login_key": null, @@ -131160,15 +131741,16 @@ }, { "model": "evaluation.userprofile", + "pk": 108, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T13:34:34.741", "is_superuser": false, - "email": "ngan.corbin@institution.example.com", - "title": "", - "first_name_given": "Ngan", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:23.406", + "email": "ardath.estrella@external.example.com", + "title": "Dr.", + "first_name_given": "Ardath", "first_name_chosen": "", - "last_name": "Corbin", + "last_name": "Estrella", "language": "", "is_proxy_user": false, "login_key": null, @@ -131184,15 +131766,16 @@ }, { "model": "evaluation.userprofile", + "pk": 109, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T17:27:58.283", "is_superuser": false, - "email": "josefa.burkholder@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:27.512", + "email": "annice.villalobos@external.example.com", "title": "", - "first_name_given": "Josefa", + "first_name_given": "Annice", "first_name_chosen": "", - "last_name": "Burkholder", + "last_name": "Villalobos", "language": "", "is_proxy_user": false, "login_key": null, @@ -131208,15 +131791,16 @@ }, { "model": "evaluation.userprofile", + "pk": 110, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:47:15.216", "is_superuser": false, - "email": "marquis.brody@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-31T09:41:52.662", + "email": "tanna.worsham@external.example.com", "title": "", - "first_name_given": "Marquis", + "first_name_given": "Tanna", "first_name_chosen": "", - "last_name": "Brody", + "last_name": "Worsham", "language": "", "is_proxy_user": false, "login_key": null, @@ -131232,15 +131816,16 @@ }, { "model": "evaluation.userprofile", + "pk": 111, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:16:58.960", "is_superuser": false, - "email": "leda.oakes@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:27.558", + "email": "wilmer.mcmillian@external.example.com", "title": "", - "first_name_given": "Leda", + "first_name_given": "Wilmer", "first_name_chosen": "", - "last_name": "Oakes", + "last_name": "Mcmillian", "language": "", "is_proxy_user": false, "login_key": null, @@ -131256,15 +131841,16 @@ }, { "model": "evaluation.userprofile", + "pk": 112, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T15:34:05.088", "is_superuser": false, - "email": "maryln.galvan@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:27.674", + "email": "mitzi.sparkman@external.example.com", "title": "", - "first_name_given": "Maryln", + "first_name_given": "Mitzi", "first_name_chosen": "", - "last_name": "Galvan", + "last_name": "Sparkman", "language": "", "is_proxy_user": false, "login_key": null, @@ -131280,15 +131866,16 @@ }, { "model": "evaluation.userprofile", + "pk": 113, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T11:20:07.995", "is_superuser": false, - "email": "levi.findley@institution.example.com", - "title": "", - "first_name_given": "Levi", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-31T09:25:26.263", + "email": "evie.martz@institution.example.com", + "title": "Prof. Dr.", + "first_name_given": "Evie", "first_name_chosen": "", - "last_name": "Findley", + "last_name": "Martz", "language": "", "is_proxy_user": false, "login_key": null, @@ -131298,21 +131885,25 @@ "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 187, + 654 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 114, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T11:43:21.320", "is_superuser": false, - "email": "wm.sierra@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:29.850", + "email": "deborah.ives@external.example.com", "title": "", - "first_name_given": "Wm", + "first_name_given": "Deborah", "first_name_chosen": "", - "last_name": "Sierra", + "last_name": "Ives", "language": "", "is_proxy_user": false, "login_key": null, @@ -131328,15 +131919,16 @@ }, { "model": "evaluation.userprofile", + "pk": 115, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:16:59.066", "is_superuser": false, - "email": "leanne.storey@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:29.856", + "email": "rea.parkinson@external.example.com", "title": "", - "first_name_given": "Leanne", + "first_name_given": "Rea", "first_name_chosen": "", - "last_name": "Storey", + "last_name": "Parkinson", "language": "", "is_proxy_user": false, "login_key": null, @@ -131352,15 +131944,16 @@ }, { "model": "evaluation.userprofile", + "pk": 116, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T18:30:26.255", "is_superuser": false, - "email": "effie.martindale@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-05-03T18:45:59.229", + "email": "ebony.murray@institution.example.com", "title": "", - "first_name_given": "Effie", + "first_name_given": "Ebony", "first_name_chosen": "", - "last_name": "Martindale", + "last_name": "Murray", "language": "", "is_proxy_user": false, "login_key": null, @@ -131376,15 +131969,16 @@ }, { "model": "evaluation.userprofile", + "pk": 117, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-05T17:33:28.724", "is_superuser": false, - "email": "anneliese.somerville@institution.example.com", - "title": "", - "first_name_given": "Anneliese", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-23T09:38:18.308", + "email": "lahoma.gage@institution.example.com", + "title": "Prof. Dr.", + "first_name_given": "Lahoma", "first_name_chosen": "", - "last_name": "Somerville", + "last_name": "Gage", "language": "", "is_proxy_user": false, "login_key": null, @@ -131394,21 +131988,26 @@ "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [], - "cc_users": [] + "delegates": [ + 152 + ], + "cc_users": [ + 945 + ] } }, { "model": "evaluation.userprofile", + "pk": 118, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:16:59.167", "is_superuser": false, - "email": "thomas.echols@institution.example.com", - "title": "", - "first_name_given": "Thomas", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T20:53:56.568", + "email": "ingeborg.herring@institution.example.com", + "title": "Prof. Dr.", + "first_name_given": "Ingeborg", "first_name_chosen": "", - "last_name": "Echols", + "last_name": "Herring", "language": "", "is_proxy_user": false, "login_key": null, @@ -131418,21 +132017,24 @@ "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 181 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 119, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T16:06:06.514", "is_superuser": false, - "email": "tai.maurer@institution.example.com", - "title": "", - "first_name_given": "Tai", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:35.883", + "email": "justina.huffman@external.example.com", + "title": "Dr.", + "first_name_given": "Justina", "first_name_chosen": "", - "last_name": "Maurer", + "last_name": "Huffman", "language": "", "is_proxy_user": false, "login_key": null, @@ -131448,15 +132050,16 @@ }, { "model": "evaluation.userprofile", + "pk": 120, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-01T13:44:58.055", "is_superuser": false, - "email": "sandra.pulido@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:36.305", + "email": "penni.tremblay@external.example.com", "title": "", - "first_name_given": "Sandra", + "first_name_given": "Penni", "first_name_chosen": "", - "last_name": "Pulido", + "last_name": "Tremblay", "language": "", "is_proxy_user": false, "login_key": null, @@ -131472,15 +132075,16 @@ }, { "model": "evaluation.userprofile", + "pk": 121, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T11:14:27.587", "is_superuser": false, - "email": "ingrid.trice@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:36.310", + "email": "yen.booker@external.example.com", "title": "", - "first_name_given": "Ingrid", + "first_name_given": "Yen", "first_name_chosen": "", - "last_name": "Trice", + "last_name": "Booker", "language": "", "is_proxy_user": false, "login_key": null, @@ -131496,15 +132100,16 @@ }, { "model": "evaluation.userprofile", + "pk": 122, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T10:36:28.123", "is_superuser": false, - "email": "hollie.gallardo@institution.example.com", - "title": "", - "first_name_given": "Hollie", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:00:36.352", + "email": "karl.tuttle@external.example.com", + "title": "Dr.", + "first_name_given": "Karl", "first_name_chosen": "", - "last_name": "Gallardo", + "last_name": "Tuttle", "language": "", "is_proxy_user": false, "login_key": null, @@ -131520,15 +132125,16 @@ }, { "model": "evaluation.userprofile", + "pk": 123, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T19:45:58.706", "is_superuser": false, - "email": "shandra.turner@institution.example.com", - "title": "", - "first_name_given": "Shandra", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-13T15:15:20.699", + "email": "sunni.hollingsworth@institution.example.com", + "title": "Dr.", + "first_name_given": "Sunni", "first_name_chosen": "", - "last_name": "Turner", + "last_name": "Hollingsworth", "language": "", "is_proxy_user": false, "login_key": null, @@ -131538,45 +132144,52 @@ "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 836 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 124, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-01T13:05:15.478", "is_superuser": false, - "email": "kellye.cobb@institution.example.com", - "title": "", - "first_name_given": "Kellye", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-02T10:30:52.845", + "email": "kindra.hancock@external.example.com", + "title": "Prof.-Dr.", + "first_name_given": "Kindra", "first_name_chosen": "", - "last_name": "Cobb", + "last_name": "Hancock", "language": "", "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, + "login_key": 841793788, + "login_key_valid_until": "2013-09-30", "is_active": true, "notes": "", "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 583, + 573 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 125, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-17T11:38:57.616", "is_superuser": false, - "email": "ardella.orr@institution.example.com", - "title": "", - "first_name_given": "Ardella", + "password": "pbkdf2_sha256$20000$WYMx4NnprgNS$D7foSqb66b1TSi9a1CZRHA2MNXyeSRT/nmcDGXEGvkk=", + "last_login": "2015-11-08T12:21:35.100", + "email": "responsible@institution.example.com", + "title": "Prof. Dr.", + "first_name_given": "", "first_name_chosen": "", - "last_name": "Orr", + "last_name": "responsible", "language": "", "is_proxy_user": false, "login_key": null, @@ -131586,21 +132199,25 @@ "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 256, + 208 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 126, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-08T10:25:33.348", "is_superuser": false, - "email": "claudine.ritchey@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:05.685", + "email": "jana.faust@external.example.com", "title": "", - "first_name_given": "Claudine", + "first_name_given": "Jana", "first_name_chosen": "", - "last_name": "Ritchey", + "last_name": "Faust", "language": "", "is_proxy_user": false, "login_key": null, @@ -131616,15 +132233,16 @@ }, { "model": "evaluation.userprofile", + "pk": 127, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T12:12:12.133", "is_superuser": false, - "email": "pedro.logue@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:07.988", + "email": "virgil.flanagan@external.example.com", "title": "", - "first_name_given": "Pedro", + "first_name_given": "Virgil", "first_name_chosen": "", - "last_name": "Logue", + "last_name": "Flanagan", "language": "", "is_proxy_user": false, "login_key": null, @@ -131640,15 +132258,16 @@ }, { "model": "evaluation.userprofile", + "pk": 128, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T12:49:56.336", "is_superuser": false, - "email": "jerrell.bunnell@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:07.996", + "email": "karan.desimone@external.example.com", "title": "", - "first_name_given": "Jerrell", + "first_name_given": "Karan", "first_name_chosen": "", - "last_name": "Bunnell", + "last_name": "Desimone", "language": "", "is_proxy_user": false, "login_key": null, @@ -131664,15 +132283,16 @@ }, { "model": "evaluation.userprofile", + "pk": 129, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T23:59:45.260", "is_superuser": false, - "email": "cyndi.kiefer@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-21T15:59:05.727", + "email": "karine.prater@institution.example.com", "title": "", - "first_name_given": "Cyndi", + "first_name_given": "Karine", "first_name_chosen": "", - "last_name": "Kiefer", + "last_name": "Prater", "language": "", "is_proxy_user": false, "login_key": null, @@ -131688,15 +132308,16 @@ }, { "model": "evaluation.userprofile", + "pk": 130, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T19:12:28.541", "is_superuser": false, - "email": "clement.tibbetts@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:08.015", + "email": "daisey.isaacs@external.example.com", "title": "", - "first_name_given": "Clement", + "first_name_given": "Daisey", "first_name_chosen": "", - "last_name": "Tibbetts", + "last_name": "Isaacs", "language": "", "is_proxy_user": false, "login_key": null, @@ -131712,15 +132333,16 @@ }, { "model": "evaluation.userprofile", + "pk": 131, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T10:58:31.778", "is_superuser": false, - "email": "nan.simpkins@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:08.024", + "email": "domonique.mayfield@external.example.com", "title": "", - "first_name_given": "Nan", + "first_name_given": "Domonique", "first_name_chosen": "", - "last_name": "Simpkins", + "last_name": "Mayfield", "language": "", "is_proxy_user": false, "login_key": null, @@ -131736,15 +132358,16 @@ }, { "model": "evaluation.userprofile", + "pk": 132, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T17:53:39.160", "is_superuser": false, - "email": "chuck.singer@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-03-16T11:54:45.439", + "email": "janna.langlois@institution.example.com", "title": "", - "first_name_given": "Chuck", + "first_name_given": "Janna", "first_name_chosen": "", - "last_name": "Singer", + "last_name": "Langlois", "language": "", "is_proxy_user": false, "login_key": null, @@ -131760,15 +132383,16 @@ }, { "model": "evaluation.userprofile", + "pk": 133, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:16:59.931", "is_superuser": false, - "email": "irmgard.loya@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:08.037", + "email": "jospeh.nagle@external.example.com", "title": "", - "first_name_given": "Irmgard", + "first_name_given": "Jospeh", "first_name_chosen": "", - "last_name": "Loya", + "last_name": "Nagle", "language": "", "is_proxy_user": false, "login_key": null, @@ -131784,15 +132408,16 @@ }, { "model": "evaluation.userprofile", + "pk": 134, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T13:13:09.375", "is_superuser": false, - "email": "celestina.slattery@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:08.042", + "email": "corliss.isaacson@external.example.com", "title": "", - "first_name_given": "Celestina", + "first_name_given": "Corliss", "first_name_chosen": "", - "last_name": "Slattery", + "last_name": "Isaacson", "language": "", "is_proxy_user": false, "login_key": null, @@ -131808,15 +132433,16 @@ }, { "model": "evaluation.userprofile", + "pk": 135, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-05T19:03:40.918", "is_superuser": false, - "email": "cleopatra.see@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:09.026", + "email": "sunny.manson@external.example.com", "title": "", - "first_name_given": "Cleopatra", + "first_name_given": "Sunny", "first_name_chosen": "", - "last_name": "See", + "last_name": "Manson", "language": "", "is_proxy_user": false, "login_key": null, @@ -131832,15 +132458,16 @@ }, { "model": "evaluation.userprofile", + "pk": 136, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-30T13:29:27.440", "is_superuser": false, - "email": "paz.jewell@institution.example.com", - "title": "", - "first_name_given": "Paz", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:22:35.918", + "email": "portia.hoffman@institution.example.com", + "title": "Dr.-Ing.", + "first_name_given": "Portia", "first_name_chosen": "", - "last_name": "Jewell", + "last_name": "Hoffman", "language": "", "is_proxy_user": false, "login_key": null, @@ -131856,15 +132483,16 @@ }, { "model": "evaluation.userprofile", + "pk": 137, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:17:00.104", "is_superuser": false, - "email": "xavier.mckay@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:09.052", + "email": "ema.clevenger@external.example.com", "title": "", - "first_name_given": "Xavier", + "first_name_given": "Ema", "first_name_chosen": "", - "last_name": "Mckay", + "last_name": "Clevenger", "language": "", "is_proxy_user": false, "login_key": null, @@ -131880,15 +132508,16 @@ }, { "model": "evaluation.userprofile", + "pk": 138, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:17:00.144", "is_superuser": false, - "email": "sherly.lord@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:09.058", + "email": "erlene.pinkston@external.example.com", "title": "", - "first_name_given": "Sherly", + "first_name_given": "Erlene", "first_name_chosen": "", - "last_name": "Lord", + "last_name": "Pinkston", "language": "", "is_proxy_user": false, "login_key": null, @@ -131904,39 +132533,44 @@ }, { "model": "evaluation.userprofile", + "pk": 139, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T15:47:47.021", "is_superuser": false, - "email": "neville.sales@institution.example.com", - "title": "", - "first_name_given": "Neville", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-19T13:57:42.796", + "email": "darlena.holliman@external.example.com", + "title": "Hr.", + "first_name_given": "Darlena", "first_name_chosen": "", - "last_name": "Sales", + "last_name": "Holliman", "language": "", "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, + "login_key": 1551612459, + "login_key_valid_until": "2013-09-17", "is_active": true, "notes": "", "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 836, + 123 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 140, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T13:31:15.967", "is_superuser": false, - "email": "vonnie.hills@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:09.147", + "email": "lacy.rudd@external.example.com", "title": "", - "first_name_given": "Vonnie", + "first_name_given": "Lacy", "first_name_chosen": "", - "last_name": "Hills", + "last_name": "Rudd", "language": "", "is_proxy_user": false, "login_key": null, @@ -131952,15 +132586,16 @@ }, { "model": "evaluation.userprofile", + "pk": 141, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T10:37:38.325", "is_superuser": false, - "email": "len.zarate@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-18T19:17:21.456", + "email": "herb.wicks@institution.example.com", "title": "", - "first_name_given": "Len", + "first_name_given": "Herb", "first_name_chosen": "", - "last_name": "Zarate", + "last_name": "Wicks", "language": "", "is_proxy_user": false, "login_key": null, @@ -131976,15 +132611,16 @@ }, { "model": "evaluation.userprofile", + "pk": 142, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-08T17:58:42.666", "is_superuser": false, - "email": "gaylord.mcafee@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:09.673", + "email": "tarah.steed@external.example.com", "title": "", - "first_name_given": "Gaylord", + "first_name_given": "Tarah", "first_name_chosen": "", - "last_name": "Mcafee", + "last_name": "Steed", "language": "", "is_proxy_user": false, "login_key": null, @@ -132000,15 +132636,16 @@ }, { "model": "evaluation.userprofile", + "pk": 143, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:17:00.371", "is_superuser": false, - "email": "cherlyn.gillette@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:11.045", + "email": "trudie.clawson@external.example.com", "title": "", - "first_name_given": "Cherlyn", + "first_name_given": "Trudie", "first_name_chosen": "", - "last_name": "Gillette", + "last_name": "Clawson", "language": "", "is_proxy_user": false, "login_key": null, @@ -132024,15 +132661,16 @@ }, { "model": "evaluation.userprofile", + "pk": 144, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:17:00.411", "is_superuser": false, - "email": "leslee.copeland@institution.example.com", - "title": "", - "first_name_given": "Leslee", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:11.292", + "email": "gavin.clemmons@external.example.com", + "title": "Prof. Dr.", + "first_name_given": "Gavin", "first_name_chosen": "", - "last_name": "Copeland", + "last_name": "Clemmons", "language": "", "is_proxy_user": false, "login_key": null, @@ -132048,15 +132686,16 @@ }, { "model": "evaluation.userprofile", + "pk": 145, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-12T09:11:11.774", "is_superuser": false, - "email": "dalton.everson@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:13.558", + "email": "ruthie.hermann@external.example.com", "title": "", - "first_name_given": "Dalton", + "first_name_given": "Ruthie", "first_name_chosen": "", - "last_name": "Everson", + "last_name": "Hermann", "language": "", "is_proxy_user": false, "login_key": null, @@ -132072,15 +132711,16 @@ }, { "model": "evaluation.userprofile", + "pk": 146, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T17:17:20.145", "is_superuser": false, - "email": "penni.luong@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-11T10:45:55.678", + "email": "royce.vann@external.example.com", "title": "", - "first_name_given": "Penni", + "first_name_given": "Royce", "first_name_chosen": "", - "last_name": "Luong", + "last_name": "Vann", "language": "", "is_proxy_user": false, "login_key": null, @@ -132096,15 +132736,16 @@ }, { "model": "evaluation.userprofile", + "pk": 147, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-12T10:36:15.264", "is_superuser": false, - "email": "karoline.hare@institution.example.com", - "title": "", - "first_name_given": "Karoline", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:14.067", + "email": "charity.leonard@institution.example.com", + "title": "Prof. Dr.", + "first_name_given": "Charity", "first_name_chosen": "", - "last_name": "Hare", + "last_name": "Leonard", "language": "", "is_proxy_user": false, "login_key": null, @@ -132114,21 +132755,24 @@ "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 210 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 148, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T16:06:34.277", "is_superuser": false, - "email": "lenard.post@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:14.714", + "email": "nadia.robison@external.example.com", "title": "", - "first_name_given": "Lenard", + "first_name_given": "Nadia", "first_name_chosen": "", - "last_name": "Post", + "last_name": "Robison", "language": "", "is_proxy_user": false, "login_key": null, @@ -132144,15 +132788,16 @@ }, { "model": "evaluation.userprofile", + "pk": 149, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-05T12:00:29.473", "is_superuser": false, - "email": "eleanor.pinkston@institution.example.com", - "title": "", - "first_name_given": "Eleanor", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T16:59:12.204", + "email": "amos.benoit@institution.example.com", + "title": "Prof. Dr.-Ing.", + "first_name_given": "Amos", "first_name_chosen": "", - "last_name": "Pinkston", + "last_name": "Benoit", "language": "", "is_proxy_user": false, "login_key": null, @@ -132162,21 +132807,25 @@ "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 836, + 123 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 150, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-13T08:51:46.860", "is_superuser": false, - "email": "taylor.washington@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:15.916", + "email": "michele.cano@external.example.com", "title": "", - "first_name_given": "Taylor", + "first_name_given": "Michele", "first_name_chosen": "", - "last_name": "Washington", + "last_name": "Cano", "language": "", "is_proxy_user": false, "login_key": null, @@ -132192,15 +132841,16 @@ }, { "model": "evaluation.userprofile", + "pk": 151, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T08:17:15.290", "is_superuser": false, - "email": "lorna.hubert@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:17.316", + "email": "oscar.erickson@external.example.com", "title": "", - "first_name_given": "Lorna", + "first_name_given": "Oscar", "first_name_chosen": "", - "last_name": "Hubert", + "last_name": "Erickson", "language": "", "is_proxy_user": false, "login_key": null, @@ -132216,15 +132866,16 @@ }, { "model": "evaluation.userprofile", + "pk": 152, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T09:32:29.397", "is_superuser": false, - "email": "aurea.hay@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-24T12:36:26.705", + "email": "laurence.tipton@institution.example.com", "title": "", - "first_name_given": "Aurea", + "first_name_given": "Laurence", "first_name_chosen": "", - "last_name": "Hay", + "last_name": "Tipton", "language": "", "is_proxy_user": false, "login_key": null, @@ -132240,15 +132891,16 @@ }, { "model": "evaluation.userprofile", + "pk": 153, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T15:18:16.091", "is_superuser": false, - "email": "yoko.rafferty@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:46.857", + "email": "devorah.biddle@external.example.com", "title": "", - "first_name_given": "Yoko", + "first_name_given": "Devorah", "first_name_chosen": "", - "last_name": "Rafferty", + "last_name": "Biddle", "language": "", "is_proxy_user": false, "login_key": null, @@ -132264,15 +132916,16 @@ }, { "model": "evaluation.userprofile", + "pk": 154, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T22:24:02.751", "is_superuser": false, - "email": "tamatha.bivens@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:46.864", + "email": "li.hargrove@external.example.com", "title": "", - "first_name_given": "Tamatha", + "first_name_given": "Li", "first_name_chosen": "", - "last_name": "Bivens", + "last_name": "Hargrove", "language": "", "is_proxy_user": false, "login_key": null, @@ -132288,15 +132941,16 @@ }, { "model": "evaluation.userprofile", + "pk": 155, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T10:35:51.844", "is_superuser": false, - "email": "miss.gorham@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-05-07T18:42:15.184", + "email": "jolene.squires@institution.example.com", "title": "", - "first_name_given": "Miss", + "first_name_given": "Jolene", "first_name_chosen": "", - "last_name": "Gorham", + "last_name": "Squires", "language": "", "is_proxy_user": false, "login_key": null, @@ -132312,15 +132966,16 @@ }, { "model": "evaluation.userprofile", + "pk": 156, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T16:34:13.221", "is_superuser": false, - "email": "alfredo.hutchison@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:46.874", + "email": "cori.luttrell@external.example.com", "title": "", - "first_name_given": "Alfredo", + "first_name_given": "Cori", "first_name_chosen": "", - "last_name": "Hutchison", + "last_name": "Luttrell", "language": "", "is_proxy_user": false, "login_key": null, @@ -132336,15 +132991,16 @@ }, { "model": "evaluation.userprofile", + "pk": 157, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-01T13:11:17.485", "is_superuser": false, - "email": "dayna.valles@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:46.950", + "email": "siu.rhoads@external.example.com", "title": "", - "first_name_given": "Dayna", + "first_name_given": "Siu", "first_name_chosen": "", - "last_name": "Valles", + "last_name": "Rhoads", "language": "", "is_proxy_user": false, "login_key": null, @@ -132360,19 +133016,20 @@ }, { "model": "evaluation.userprofile", + "pk": 158, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:17:02.217", "is_superuser": false, - "email": "willard.perron@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-02T17:52:02.729", + "email": "junie.hicks@institution.example.com", "title": "", - "first_name_given": "Willard", + "first_name_given": "Junie", "first_name_chosen": "", - "last_name": "Perron", + "last_name": "Hicks", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -132384,15 +133041,16 @@ }, { "model": "evaluation.userprofile", + "pk": 159, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:17:02.234", "is_superuser": false, - "email": "audra.alston@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:47.847", + "email": "clara.taber@external.example.com", "title": "", - "first_name_given": "Audra", + "first_name_given": "Clara", "first_name_chosen": "", - "last_name": "Alston", + "last_name": "Taber", "language": "", "is_proxy_user": false, "login_key": null, @@ -132408,19 +133066,20 @@ }, { "model": "evaluation.userprofile", + "pk": 160, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:17:02.247", "is_superuser": false, - "email": "marjory.park@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T18:29:04.997", + "email": "joette.lindley@institution.example.com", "title": "", - "first_name_given": "Marjory", + "first_name_given": "Joette", "first_name_chosen": "", - "last_name": "Park", + "last_name": "Lindley", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -132432,15 +133091,16 @@ }, { "model": "evaluation.userprofile", + "pk": 161, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T10:40:42.034", "is_superuser": false, - "email": "shannon.reece@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:47.859", + "email": "jennette.gracia@external.example.com", "title": "", - "first_name_given": "Shannon", + "first_name_given": "Jennette", "first_name_chosen": "", - "last_name": "Reece", + "last_name": "Gracia", "language": "", "is_proxy_user": false, "login_key": null, @@ -132456,15 +133116,16 @@ }, { "model": "evaluation.userprofile", + "pk": 162, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-11T21:05:51.120", "is_superuser": false, - "email": "arie.gardiner@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:47.869", + "email": "rosamaria.billups@external.example.com", "title": "", - "first_name_given": "Arie", + "first_name_given": "Rosamaria", "first_name_chosen": "", - "last_name": "Gardiner", + "last_name": "Billups", "language": "", "is_proxy_user": false, "login_key": null, @@ -132480,19 +133141,20 @@ }, { "model": "evaluation.userprofile", + "pk": 163, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:17:04.495", "is_superuser": false, - "email": "mauro.vergara@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:48.847", + "email": "brandee.dial@external.example.com", "title": "", - "first_name_given": "Mauro", + "first_name_given": "Brandee", "first_name_chosen": "", - "last_name": "Vergara", + "last_name": "Dial", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": "2014-08-06", + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -132504,15 +133166,16 @@ }, { "model": "evaluation.userprofile", + "pk": 164, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:12:02.409", "is_superuser": false, - "email": "salena.soriano@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:48.936", + "email": "steffanie.barnette@external.example.com", "title": "Dr.", - "first_name_given": "Salena", + "first_name_given": "Steffanie", "first_name_chosen": "", - "last_name": "Soriano", + "last_name": "Barnette", "language": "", "is_proxy_user": false, "login_key": null, @@ -132522,25 +133185,22 @@ "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [ - [ - "al.jean@institution.example.com" - ] - ], + "delegates": [], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 165, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:17:10.316", "is_superuser": false, - "email": "leola.flannery@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:49.845", + "email": "keiko.hadden@external.example.com", "title": "", - "first_name_given": "Leola", + "first_name_given": "Keiko", "first_name_chosen": "", - "last_name": "Flannery", + "last_name": "Hadden", "language": "", "is_proxy_user": false, "login_key": null, @@ -132556,15 +133216,16 @@ }, { "model": "evaluation.userprofile", + "pk": 166, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:17:14.490", "is_superuser": false, - "email": "wes.eaton@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:50.704", + "email": "deb.lance@external.example.com", "title": "", - "first_name_given": "Wes", + "first_name_given": "Deb", "first_name_chosen": "", - "last_name": "Eaton", + "last_name": "Lance", "language": "", "is_proxy_user": false, "login_key": null, @@ -132580,19 +133241,20 @@ }, { "model": "evaluation.userprofile", + "pk": 167, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T19:06:39.338", "is_superuser": false, - "email": "odis.cantu@external.example.com", - "title": "Prof. Dr.", - "first_name_given": "Odis", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:52.181", + "email": "rosy.mcgee@external.example.com", + "title": "", + "first_name_given": "Rosy", "first_name_chosen": "", - "last_name": "Cantu", + "last_name": "Mcgee", "language": "", "is_proxy_user": false, - "login_key": 16347808, - "login_key_valid_until": "2014-10-26", + "login_key": null, + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", @@ -132604,108 +133266,91 @@ }, { "model": "evaluation.userprofile", + "pk": 168, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-23T12:34:57.219", "is_superuser": false, - "email": "mariann.locke@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:54.326", + "email": "aileen.gonsalves@external.example.com", "title": "", - "first_name_given": "Mariann", + "first_name_given": "Aileen", "first_name_chosen": "", - "last_name": "Locke", + "last_name": "Gonsalves", "language": "", "is_proxy_user": false, - "login_key": 702798179, - "login_key_valid_until": "2014-08-21", + "login_key": null, + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ], + "delegates": [], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 169, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-29T17:32:33.519", "is_superuser": false, - "email": "xuan.bustamante@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:55.890", + "email": "neville.saddler@external.example.com", "title": "Prof. Dr.", - "first_name_given": "Xuan", + "first_name_given": "Neville", "first_name_chosen": "", - "last_name": "Bustamante", + "last_name": "Saddler", "language": "", "is_proxy_user": false, - "login_key": 929495153, - "login_key_valid_until": "2014-08-21", + "login_key": null, + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", "groups": [], "user_permissions": [], "delegates": [], - "cc_users": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ] + "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 170, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-16T09:26:54.996", "is_superuser": false, - "email": "sudie.phelan@external.example.com", - "title": "Prof. Dr.", - "first_name_given": "Sudie", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:01:56.443", + "email": "damaris.lemke@external.example.com", + "title": "", + "first_name_given": "Damaris", "first_name_chosen": "", - "last_name": "Phelan", + "last_name": "Lemke", "language": "", "is_proxy_user": false, - "login_key": 110846776, - "login_key_valid_until": "2014-11-07", + "login_key": null, + "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ], + "delegates": [], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 171, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T09:58:11.987", "is_superuser": false, - "email": "manie.wiles@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:00.392", + "email": "yetta.crumpton@external.example.com", "title": "", - "first_name_given": "Manie", + "first_name_given": "Yetta", "first_name_chosen": "", - "last_name": "Wiles", + "last_name": "Crumpton", "language": "", "is_proxy_user": false, "login_key": null, @@ -132721,15 +133366,16 @@ }, { "model": "evaluation.userprofile", + "pk": 172, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T09:31:48.593", "is_superuser": false, - "email": "kathrin.mcrae@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:00.438", + "email": "dominga.leblanc@external.example.com", "title": "", - "first_name_given": "Kathrin", + "first_name_given": "Dominga", "first_name_chosen": "", - "last_name": "Mcrae", + "last_name": "Leblanc", "language": "", "is_proxy_user": false, "login_key": null, @@ -132745,15 +133391,16 @@ }, { "model": "evaluation.userprofile", + "pk": 173, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-11T15:51:00.667", "is_superuser": false, - "email": "luciana.graves@institution.example.com", - "title": "Dr.", - "first_name_given": "Luciana", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:00.691", + "email": "cherish.henke@external.example.com", + "title": "", + "first_name_given": "Cherish", "first_name_chosen": "", - "last_name": "Graves", + "last_name": "Henke", "language": "", "is_proxy_user": false, "login_key": null, @@ -132763,28 +133410,22 @@ "startpage": "DE", "groups": [], "user_permissions": [], - "delegates": [ - [ - "nicholle.boyce@institution.example.com" - ], - [ - "sunni.hollingsworth@institution.example.com" - ] - ], + "delegates": [], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 174, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-23T22:42:08.010", "is_superuser": false, - "email": "bernardo.moye@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-10-01T09:33:06.080", + "email": "jina.cushman@institution.example.com", "title": "", - "first_name_given": "Bernardo", + "first_name_given": "Jina", "first_name_chosen": "", - "last_name": "Moye", + "last_name": "Cushman", "language": "", "is_proxy_user": false, "login_key": null, @@ -132800,15 +133441,16 @@ }, { "model": "evaluation.userprofile", + "pk": 175, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-23T23:03:16.324", "is_superuser": false, - "email": "eddy.cho@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:03.311", + "email": "cody.boisvert@external.example.com", "title": "", - "first_name_given": "Eddy", + "first_name_given": "Cody", "first_name_chosen": "", - "last_name": "Cho", + "last_name": "Boisvert", "language": "", "is_proxy_user": false, "login_key": null, @@ -132824,20 +133466,21 @@ }, { "model": "evaluation.userprofile", + "pk": 176, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-24T10:25:43.302", "is_superuser": false, - "email": "dot.carlisle@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:07.646", + "email": "karole.mata@external.example.com", "title": "", - "first_name_given": "Dot", + "first_name_given": "Karole", "first_name_chosen": "", - "last_name": "Carlisle", + "last_name": "Mata", "language": "", "is_proxy_user": false, - "login_key": 707881715, - "login_key_valid_until": "2014-10-20", - "is_active": true, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, "notes": "", "startpage": "DE", "groups": [], @@ -132848,15 +133491,16 @@ }, { "model": "evaluation.userprofile", + "pk": 177, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-23T23:05:59.690", "is_superuser": false, - "email": "claudie.elmore@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-23T10:52:15.011", + "email": "hipolito.morse@institution.example.com", "title": "", - "first_name_given": "Claudie", + "first_name_given": "Hipolito", "first_name_chosen": "", - "last_name": "Elmore", + "last_name": "Morse", "language": "", "is_proxy_user": false, "login_key": null, @@ -132872,19 +133516,20 @@ }, { "model": "evaluation.userprofile", + "pk": 178, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T16:53:27.693", "is_superuser": false, - "email": "arianna.bower@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-02T13:45:22.575", + "email": "al.jean@institution.example.com", "title": "", - "first_name_given": "Arianna", + "first_name_given": "Al", "first_name_chosen": "", - "last_name": "Bower", + "last_name": "Jean", "language": "", "is_proxy_user": false, "login_key": null, - "login_key_valid_until": null, + "login_key_valid_until": "2012-10-01", "is_active": true, "notes": "", "startpage": "DE", @@ -132896,15 +133541,16 @@ }, { "model": "evaluation.userprofile", + "pk": 179, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-01T14:26:12.951", "is_superuser": false, - "email": "kerstin.murry@external.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:26.165", + "email": "rosette.judkins@external.example.com", "title": "", - "first_name_given": "Kerstin", + "first_name_given": "Rosette", "first_name_chosen": "", - "last_name": "Murry", + "last_name": "Judkins", "language": "", "is_proxy_user": false, "login_key": null, @@ -132920,15 +133566,16 @@ }, { "model": "evaluation.userprofile", + "pk": 180, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-15T14:37:53.714", "is_superuser": false, - "email": "katheryn.greiner@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:32.926", + "email": "shirl.winters@external.example.com", "title": "", - "first_name_given": "Katheryn", + "first_name_given": "Shirl", "first_name_chosen": "", - "last_name": "Greiner", + "last_name": "Winters", "language": "", "is_proxy_user": false, "login_key": null, @@ -132944,15 +133591,16 @@ }, { "model": "evaluation.userprofile", + "pk": 181, "fields": { - "password": "pbkdf2_sha256$100000$OqMHXWeUCCnd$0/jerl1QOWflFRxWyz1LNdEQBEZrYkLEUOQsspUB/70=", - "last_login": "2017-12-23T18:14:16.042", "is_superuser": false, - "email": "grade_publisher@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:57:03.709", + "email": "britteny.easley@institution.example.com", "title": "", - "first_name_given": "", + "first_name_given": "Britteny", "first_name_chosen": "", - "last_name": "grade_publisher", + "last_name": "Easley", "language": "", "is_proxy_user": false, "login_key": null, @@ -132960,11 +133608,7 @@ "is_active": true, "notes": "", "startpage": "DE", - "groups": [ - [ - "Grade publisher" - ] - ], + "groups": [], "user_permissions": [], "delegates": [], "cc_users": [] @@ -132972,15 +133616,16 @@ }, { "model": "evaluation.userprofile", + "pk": 182, "fields": { - "password": "pbkdf2_sha256$30000$fxnctep4sBM1$EvsaesmX21Z8vRLdBFKPqHJ1AzW9vlXBwo8740hIrKQ=", - "last_login": null, "is_superuser": false, - "email": "reviewer@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-12T12:16:07.304", + "email": "pamula.sims@institution.example.com", "title": "", - "first_name_given": "", + "first_name_given": "Pamula", "first_name_chosen": "", - "last_name": "reviewer", + "last_name": "Sims", "language": "", "is_proxy_user": false, "login_key": null, @@ -132988,11 +133633,7 @@ "is_active": true, "notes": "", "startpage": "DE", - "groups": [ - [ - "Reviewer" - ] - ], + "groups": [], "user_permissions": [], "delegates": [], "cc_users": [] @@ -133000,50 +133641,41 @@ }, { "model": "evaluation.userprofile", + "pk": 183, "fields": { - "password": "pbkdf2_sha256$30000$fxnctep4sBM1$EvsaesmX21Z8vRLdBFKPqHJ1AzW9vlXBwo8740hIrKQ=", - "last_login": null, "is_superuser": false, - "email": "proxy@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:32.959", + "email": "donnetta.felts@external.example.com", "title": "", - "first_name_given": "", + "first_name_given": "Donnetta", "first_name_chosen": "", - "last_name": "proxy", + "last_name": "Felts", "language": "", - "is_proxy_user": true, + "is_proxy_user": false, "login_key": null, "login_key_valid_until": null, "is_active": true, "notes": "", "startpage": "DE", - "groups": [ - [ - "Reviewer" - ] - ], + "groups": [], "user_permissions": [], - "delegates": [ - [ - "proxy_delegate@institution.example.com" - ], - [ - "proxy_delegate_2@institution.example.com" - ] - ], + "delegates": [], "cc_users": [] } }, { "model": "evaluation.userprofile", + "pk": 184, "fields": { - "password": "pbkdf2_sha256$30000$fxnctep4sBM1$EvsaesmX21Z8vRLdBFKPqHJ1AzW9vlXBwo8740hIrKQ=", - "last_login": null, "is_superuser": false, - "email": "proxy_delegate@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:32.995", + "email": "lizbeth.israel@external.example.com", "title": "", - "first_name_given": "", + "first_name_given": "Lizbeth", "first_name_chosen": "", - "last_name": "proxy_delegate", + "last_name": "Israel", "language": "", "is_proxy_user": false, "login_key": null, @@ -133051,11 +133683,7 @@ "is_active": true, "notes": "", "startpage": "DE", - "groups": [ - [ - "Reviewer" - ] - ], + "groups": [], "user_permissions": [], "delegates": [], "cc_users": [] @@ -133063,15 +133691,16 @@ }, { "model": "evaluation.userprofile", + "pk": 185, "fields": { - "password": "pbkdf2_sha256$30000$fxnctep4sBM1$EvsaesmX21Z8vRLdBFKPqHJ1AzW9vlXBwo8740hIrKQ=", - "last_login": null, "is_superuser": false, - "email": "proxy_delegate_2@institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:33.025", + "email": "shasta.eaves@external.example.com", "title": "", - "first_name_given": "", + "first_name_given": "Shasta", "first_name_chosen": "", - "last_name": "proxy_delegate_2", + "last_name": "Eaves", "language": "", "is_proxy_user": false, "login_key": null, @@ -133087,15 +133716,16 @@ }, { "model": "evaluation.userprofile", + "pk": 186, "fields": { - "password": "eZAyFmtqHydCIFtGdbevAxiVjiRpqMtmaVUCrmkcfXdoJDigmGWPVNHeoYYyRojokKUJjsgPSPvZkjiiIHSIQlBfOKtQFDbZlPEyKnrQRrHdPtEhUYHqJauIlyIkYpBM", - "last_login": null, "is_superuser": false, - "email": "vincenzo.boston@student.institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:33.032", + "email": "kathyrn.crowley@external.example.com", "title": "", - "first_name_given": "Vincenzo Alfredo", + "first_name_given": "Kathyrn", "first_name_chosen": "", - "last_name": "Boston", + "last_name": "Crowley", "language": "", "is_proxy_user": false, "login_key": null, @@ -133111,15 +133741,16 @@ }, { "model": "evaluation.userprofile", + "pk": 187, "fields": { - "password": "utAhMBbTpirVqtaoPpadEHdamaehnXWbEsliMMSnwDBYJcTnHluinAxkTeEupPoBzpuDBMYeXbpwmockMtQNYegbMuxkUBEBKqWGkOEFAWxzUFjdxevtIwYzvAgHCAwD", - "last_login": null, "is_superuser": false, - "email": "bud.ledbetter@student.institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T21:50:22.128", + "email": "tonita.gallardo@institution.example.com", "title": "", - "first_name_given": "Bud", + "first_name_given": "Tonita", "first_name_chosen": "", - "last_name": "LedBetter", + "last_name": "Gallardo", "language": "", "is_proxy_user": false, "login_key": null, @@ -133135,15 +133766,16 @@ }, { "model": "evaluation.userprofile", + "pk": 188, "fields": { - "password": "naFmzOVrFhXrVVLsIGFYceDAarTGwDRFZKGJwBvKhNFCpupezBrwhorUHsyQSpUxLFKSQuOurcIyoBBYRjARXjzcJCbqYRiKRMOwvdTqwNjAbYDhUKbopBPDYhANXUkI", - "last_login": null, "is_superuser": false, - "email": "melody.large@student.institution.example.com", + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:33.063", + "email": "lenore.kohler@external.example.com", "title": "", - "first_name_given": "Melody", + "first_name_given": "Lenore", "first_name_chosen": "", - "last_name": "Large", + "last_name": "Kohler", "language": "", "is_proxy_user": false, "login_key": null, @@ -133158,31960 +133790,21535 @@ } }, { - "model": "evaluation.emailtemplate", - "pk": 1, + "model": "evaluation.userprofile", + "pk": 189, "fields": { - "name": "Editor Review Notice", - "subject": "[EvaP] Neue Lehrveranstaltungen stehen zur Überprüfung bereit / New courses ready for approval", - "plain_content": "{% load evaluation_filters %}(English version below)\r\n\r\n\r\nSehr geehrte Dozentin, sehr geehrter Dozent,\r\n\r\nvielen Dank, dass Sie in diesem Semester Veranstaltungen anbieten. Um die Evaluierung dieser Veranstaltungen auf unserer Plattform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} durchführen zu können, benötigen wir Ihre Mithilfe.\r\n\r\nSie können die folgenden Aufgaben auch an Ihre Mitarbeitenden delegieren. Unter \"Einstellungen\" können Sie Stellvertreter·innen hinzufügen, die damit Bearbeitungsrechte für alle Ihre Veranstaltungen erhalten. Beim Bearbeiten einzelner Evaluierungen können Sie ebenfalls Bearbeitungsrechte vergeben, die sich auf diese Evaluierung beschränken.\r\n{% if user.needs_login_key and login_url %}\r\nMit diesem Link können Sie sich einmalig bei der Platform anmelden: {{ login_url }}\r\n{% elif user.needs_login_key %}\r\nEin Link zum Anmelden wird Ihnen per E-Mail zugesendet.\r\n{% endif %}\r\nWir möchten Sie bitten, für Ihre Evaluierungen innerhalb der nächsten Woche Folgendes zu überprüfen:\r\n - Ist der Evaluierungszeitraum angemessen? Bitte legen Sie das Ende der Evaluierung vor die finale Prüfungsleistung (Klausur, Prüfung, Ausarbeitung etc.).\r\n - Wurden die für die Evaluierung geeigneten Fragebögen ausgewählt? Bitte passen Sie die Auswahl gegebenenfalls an.\r\n - Werden alle beteiligten Dozent·innen, Übungsleiter·innen, Projektleiter·innen, Seminarbetreuer·innen etc. evaluiert? Fügen Sie bitte alle weiteren Personen mit den passenden Fragebögen hinzu.\r\n\r\nFolgende Evaluierungen benötigen Ihre Freigabe:\r\n{% for evaluation in evaluations|order_by:\"full_name_de\" %} - {{ evaluation.full_name_de }}\r\n{% endfor %}\r\nVielen Dank im Voraus für Ihre Mühe!\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).\r\n\r\nFreundliche Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear lecturer,\r\n\r\nThank you very much for teaching during this semester. We need your help so we can evaluate all courses on our platform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.\r\n\r\nYou can delegate the following tasks to your staff. Under \"Settings\" you can assign your delegates, which thereby will gain editing rights for all your courses. On the details page of a single evaluation you can also add persons and assign edit rights for this evaluation to them.\r\n{% if user.needs_login_key and login_url %}\r\nWith the following one-time URL you can login to the evaluation platform: {{ login_url }}\r\n{% elif user.needs_login_key %}\r\nWe will send you a one-time login URL in a separate email.\r\n{% endif %}\r\nTo prepare your evaluations we would like to ask you for the following within a week:\r\n - Is the evaluation period appropriate? Please let the evaluation end before the final exam (written or oral examination, final assignment, etc.) of your course.\r\n - Are the selected questionnaires adequate for the evaluation? Please adapt the selection if necessary.\r\n - Are all contributors (lecturers, teaching assistants, etc.) included in the evaluation? Please add all additional persons with their appropriate questionnaires.\r\n\r\nThese evaluations need your approval:\r\n{% for evaluation in evaluations|order_by:\"full_name_en\" %} - {{ evaluation.full_name_en }}\r\n{% endfor %}\r\nThank you very much in advance for your efforts!\r\nIf you have any questions or feedback, please contact the evaluation team ({{ contact_email }}).\r\n\r\nKind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", - "html_content": "{% load evaluation_filters %}\r\n(English version below)


\r\n\r\n\r\nSehr geehrte Dozentin, sehr geehrter Dozent,

\r\n\r\nvielen Dank, dass Sie in diesem Semester Veranstaltungen anbieten. Um die Evaluierung dieser Veranstaltungen auf unserer Plattform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} durchführen zu können, benötigen wir Ihre Mithilfe.

\r\n\r\nSie können die folgenden Aufgaben auch an Ihre Mitarbeitenden delegieren. Unter \"Einstellungen\" können Sie Stellvertreter·innen hinzufügen, die damit Bearbeitungsrechte für alle Ihre Veranstaltungen erhalten. Beim Bearbeiten einzelner Evaluierungen können Sie ebenfalls Bearbeitungsrechte vergeben, die sich auf diese Evaluierung beschränken.

\r\n\r\n{% if user.needs_login_key and login_url %}\r\nMit diesem Link können Sie sich einmalig bei der Platform anmelden: {{ login_url }}

\r\n{% elif user.needs_login_key %}\r\nEin Link zum Anmelden wird Ihnen per E-Mail zugesendet.

\r\n{% endif %}\r\n\r\nWir möchten Sie bitten, für Ihre Evaluierungen innerhalb der nächsten Woche Folgendes zu überprüfen:\r\n
\r\n\r\nFolgende Evaluierungen benötigen Ihre Freigabe:
\r\n
\r\n\r\nVielen Dank im Voraus für Ihre Mühe!
\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).

\r\n\r\nFreundliche Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear lecturer,

\r\n\r\nThank you very much for teaching during this semester. We need your help so we can evaluate all courses on our platform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.

\r\n\r\nYou can delegate the following tasks to your staff. Under \"Settings\" you can assign your delegates, which thereby will gain editing rights for all your courses. On the details page of a single evaluation you can also add persons and assign edit rights for this evaluation to them.

\r\n\r\n{% if user.needs_login_key and login_url %}\r\nWith the following one-time URL you can login to the evaluation platform: {{ login_url }}

\r\n{% elif user.needs_login_key %}\r\nWe will send you a one-time login URL in a separate email.

\r\n{% endif %}\r\n\r\nTo prepare your evaluations we would like to ask you for the following within a week:\r\n
\r\n\r\nThese evaluations need your approval:\r\n
\r\n\r\nThank you very much in advance for your efforts!
\r\nIf you have any questions or feedback, please contact the evaluation team ({{ contact_email }}).

\r\n\r\nKind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:33.072", + "email": "marlana.olds@external.example.com", + "title": "", + "first_name_given": "Marlana", + "first_name_chosen": "", + "last_name": "Olds", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.emailtemplate", - "pk": 2, + "model": "evaluation.userprofile", + "pk": 190, "fields": { - "name": "Student Reminder", - "subject": "[EvaP] Die Evaluierung endet {% if first_due_in_days == 0 %}heute{% elif first_due_in_days == 1 %}morgen{% else %}in {{ first_due_in_days }} Tagen{% endif %} / The evaluation is about to end {% if first_due_in_days == 0 %}today{% elif first_due_in_days == 1 %}tomorrow{% else %}in {{ first_due_in_days }} days{% endif %}", - "plain_content": "(English version below)\r\n\r\n\r\nHallo {{ user.first_name }},\r\n\r\nfür eine deiner Evaluierungen endet {% if first_due_in_days == 0 %}heute{% elif first_due_in_days == 1 %}morgen{% else %}in {{ first_due_in_days }} Tagen{% endif %} die Evaluierungsfrist.\r\n\r\nAn folgenden Evaluierungen hast du noch nicht teilgenommen:\r\n{% for evaluation, due_in_days in due_evaluations %} - {{ evaluation.full_name_de }} (endet {% if due_in_days == 0 %}heute{% elif due_in_days == 1 %}morgen{% else %}in {{ due_in_days }} Tagen{% endif %})\r\n{% endfor %}\r\nDu kannst dein Feedback auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} abgeben, wir würden uns über deine Stimme freuen :)\r\nBei Fragen und Rückmeldungen kannst du dich jederzeit an uns wenden ({{ contact_email }}).\r\n{% if user.needs_login_key %}\r\nKlicke hier, um dich anzumelden: {{ login_url }}\r\n{% endif%}\r\nVielen Dank für deine Mühe und viele Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear {{ user.first_name }},\r\n\r\nThe evaluation period for one of your evaluations will end {% if first_due_in_days == 0 %}today{% elif first_due_in_days == 1 %}tomorrow{% else %}in {{ first_due_in_days }} days{% endif %}.\r\n\r\nYou did not yet participate in the following evaluations:\r\n{% for evaluation, due_in_days in due_evaluations %} - {{ evaluation.full_name_en }} (ends {% if due_in_days == 0 %}today{% elif due_in_days == 1 %}tomorrow{% else %}in {{ due_in_days }} days{% endif %})\r\n{% endfor %}\r\nYou can give your opinion on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}. We’re looking forward to receive your feedback :)\r\nIf you have any questions or feedback, please let us know ({{ contact_email }}).\r\n{% if user.needs_login_key %}\r\nClick here to login: {{ login_url }}\r\n{% endif%}\r\nThank you very much for your efforts and kind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", - "html_content": "(English version below)


\r\n\r\n\r\nHallo {{ user.first_name }},

\r\n\r\nfür eine deiner Evaluierungen endet {% if first_due_in_days == 0 %}heute{% elif first_due_in_days == 1 %}morgen{% else %}in {{ first_due_in_days }} Tagen{% endif %} die Evaluierungsfrist.

\r\n\r\nAn folgenden Evaluierungen hast du noch nicht teilgenommen:\r\n
\r\n\r\nDu kannst dein Feedback auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} abgeben, wir würden uns über deine Stimme freuen :)
\r\nBei Fragen und Rückmeldungen kannst du dich jederzeit an uns wenden ({{ contact_email }}).

\r\n\r\n{% if user.needs_login_key %}\r\nKlicke hier, um dich anzumelden: {{ login_url }}

\r\n{% endif%}\r\n\r\nVielen Dank für deine Mühe und viele Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear {{ user.first_name }},

\r\n\r\nThe evaluation period for one of your evaluations will end {% if first_due_in_days == 0 %}today{% elif first_due_in_days == 1 %}tomorrow{% else %}in {{ first_due_in_days }} days{% endif %}.

\r\n\r\nYou did not yet participate in the following evaluations:\r\n
\r\n\r\nYou can give your opinion on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}. We’re looking forward to receive your feedback :)
\r\nIf you have any questions or feedback, please let us know ({{ contact_email }}).

\r\n\r\n{% if user.needs_login_key %}\r\nClick here to login: {{ login_url }}

\r\n{% endif%}\r\n\r\nThank you very much for your efforts and kind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:33.077", + "email": "sharon.cress@institution.example.com", + "title": "", + "first_name_given": "Sharon", + "first_name_chosen": "", + "last_name": "Cress", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.emailtemplate", - "pk": 3, + "model": "evaluation.userprofile", + "pk": 191, "fields": { - "name": "Publishing Notice Contributor", - "subject": "[EvaP] Evaluierungsergebnisse veröffentlicht / Evaluation results published", - "plain_content": "{% load evaluation_filters %}(English version below)\r\n\r\n\r\nSehr geehrte Dozentin, sehr geehrter Dozent,\r\n\r\ndie folgenden Evaluierungsergebnisse wurden soeben veröffentlicht:\r\n{% for evaluation in evaluations|order_by:\"full_name_de\" %} - {{ evaluation.full_name_de }}\r\n{% endfor %}\r\nDie Ergebnisse können auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} eingesehen werden.{% if user.needs_login_key and login_url %} Hier klicken zum Anmelden: {{ login_url }}{% elif user.needs_login_key %} Ein Link zum Anmelden wird per E-Mail zugesendet.{% endif %}\r\n\r\nBei Fragen und Rückmeldungen stehen wir gerne zur Verfügung ({{ contact_email }}).\r\n\r\nFreundliche Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear lecturer,\r\n\r\nthe results of the following evaluations have just been published:\r\n{% for evaluation in evaluations|order_by:\"full_name_en\" %} - {{ evaluation.full_name_en }}\r\n{% endfor %}\r\nYou can view the results on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.{% if user.needs_login_key and login_url %} Click here to login: {{ login_url }}{% elif user.needs_login_key %} We will send you a one-time login URL in a separate email.{% endif %}\r\n\r\nIf you have any questions or feedback, please let us know ({{ contact_email }}).\r\n\r\nKind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", - "html_content": "{% load evaluation_filters %}\r\n(English version below)


\r\n\r\n\r\nSehr geehrte Dozentin, sehr geehrter Dozent,

\r\n\r\ndie folgenden Evaluierungsergebnisse wurden soeben veröffentlicht:\r\n
\r\n\r\nDie Ergebnisse können auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} eingesehen werden.
\r\n{% if user.needs_login_key and login_url %}\r\nHier klicken zum Anmelden: {{ login_url }}
\r\n{% elif user.needs_login_key %}\r\nEin Link zum Anmelden wird per E-Mail zugesendet.
\r\n{% endif %}
\r\n\r\nBei Fragen und Rückmeldungen stehen wir gerne zur Verfügung ({{ contact_email }}).

\r\n\r\nFreundliche Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\n\r\nDear lecturer,

\r\n\r\nthe results of the following evaluations have just been published:\r\n
\r\n\r\nYou can view the results on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.
\r\n{% if user.needs_login_key and login_url %}\r\nClick here to login: {{ login_url }}
\r\n{% elif user.needs_login_key %}\r\nWe will send you a one-time login URL in a separate email.
\r\n{% endif %}
\r\n\r\nIf you have any questions or feedback, please let us know ({{ contact_email }}).

\r\n\r\nKind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:42.609", + "email": "latrice.terry@external.example.com", + "title": "", + "first_name_given": "Latrice", + "first_name_chosen": "", + "last_name": "Terry", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.emailtemplate", - "pk": 4, + "model": "evaluation.userprofile", + "pk": 192, "fields": { - "name": "Login Key Created", - "subject": "[EvaP] Ihr Anmeldelink / Your login URL", - "plain_content": "BITTE NICHT WEITERLEITEN / PLEASE DO NOT FORWARD\r\n\r\nMit dem folgenden Link können Sie sich einmalig mit einem externen Account bei der Evaluierungsplattform anmelden:\r\nWith the following one-time URL you can login to the evaluation platform as an external user:\r\n\r\n{{ login_url }}\r\n\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).\r\nIf you have any questions or feedback, please contact the Evaluation Team ({{ contact_email }}).", - "html_content": "BITTE NICHT WEITERLEITEN / PLEASE DO NOT FORWARD

\r\n\r\nMit dem folgenden Link können Sie sich einmalig mit einem externen Account bei der Evaluierungsplattform anmelden:
\r\nWith the following one-time URL you can login to the evaluation platform as an external user:

\r\n\r\n{{ login_url }}

\r\n\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).
\r\nIf you have any questions or feedback, please contact the Evaluation Team ({{ contact_email }})." + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:02:54.709", + "email": "elvina.dill@external.example.com", + "title": "", + "first_name_given": "Elvina", + "first_name_chosen": "", + "last_name": "Dill", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.emailtemplate", - "pk": 5, + "model": "evaluation.userprofile", + "pk": 193, "fields": { - "name": "Evaluation Started", - "subject": "[EvaP] Evaluierung hat begonnen / Evaluation started", - "plain_content": "{% load evaluation_filters %}(English version below)\r\n\r\n\r\nHallo {{ user.first_name }},\r\n\r\nfür die folgenden Evaluierungen hat die Evaluierungsphase begonnen:\r\n{% for evaluation, due_in_days in evaluations %} - {{ evaluation.full_name_de }} (endet {% if due_in_days == 0 %}heute{% elif due_in_days == 1 %}morgen{% else %}in {{ due_in_days }} Tagen{% endif %})\r\n{% endfor %}\r\nDu kannst dein Feedback auf EvaP{% if not user.needs_login_key %} (https://evap.hpi.de){% endif %} abgeben, die Mitwirkenden und wir freuen uns über deine Bewertung. Bei Fragen und Rückmeldungen kannst du dich jederzeit an uns wenden (evaluierung@hpi.de).\r\n\r\n{% if user.needs_login_key %}Klicke hier, um dich anzumelden: {{ login_url }}\r\n{% endif %}{% if due_evaluations|length > 1%}Diese Evaluierungen warten auf deine Bewertung:\r\n{% for evaluation, due_in_days in due_evaluations %} - {{ evaluation.full_name_de }} (endet {% if due_in_days == 0 %}heute{% elif due_in_days == 1 %}morgen{% else %}in {{ due_in_days }} Tagen{% endif %})\r\n{% endfor %}{% endif %}\r\nVielen Dank für deine Mühe und viele Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\nDear {{ user.first_name }},\r\n\r\nThe evaluation period for the following evaluations just started:\r\n{% for evaluation, due_in_days in evaluations %} - {{ evaluation.full_name_en }} (ends {% if due_in_days == 0 %}today{% elif due_in_days == 1 %}tomorrow{% else %}in {{ due_in_days }} days{% endif %})\r\n{% endfor %}\r\nYou can evaluate them on EvaP{% if not user.needs_login_key %} (https://evap.hpi.de){% endif %}. The lecturers and we are looking forward to receive your feedback. If you have any questions or feedback, please let us know (evaluierung@hpi.de).\r\n\r\n{% if user.needs_login_key %}Click here to login: {{ login_url }}\r\n{% endif %}{% if due_evaluations|length > 1%}These evaluations are waiting for your feedback:\r\n{% for evaluation, due_in_days in due_evaluations %} - {{ evaluation.full_name_en }} (ends {% if due_in_days == 0 %}today{% elif due_in_days == 1 %}tomorrow{% else %}in {{ due_in_days }} days{% endif %})\r\n{% endfor %}{% endif %}\r\nThank you very much for your efforts and kind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", - "html_content": "{% load evaluation_filters %}\r\n(English version below)


\r\n\r\n\r\nHallo {{ user.first_name }},

\r\n\r\nfür die folgenden Evaluierungen hat die Evaluierungsphase begonnen:\r\n
\r\n\r\nDu kannst dein Feedback auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} abgeben, die Mitwirkenden und wir freuen uns über deine Bewertung. Bei Fragen und Rückmeldungen kannst du dich jederzeit an uns wenden ({{ contact_email }}).

\r\n\r\n{% if user.needs_login_key %}\r\nKlicke hier, um dich anzumelden: {{ login_url }}

\r\n{% endif %}\r\n\r\n{% if due_evaluations|length > 1%}\r\nDiese Evaluierungen warten auf deine Bewertung:\r\n
\r\n{% endif %}\r\n\r\nVielen Dank für deine Mühe und viele Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear {{ user.first_name }},

\r\n\r\nThe evaluation period for the following evaluations just started:\r\n
\r\n\r\nYou can evaluate them on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}. The lecturers and we are looking forward to receive your feedback. If you have any questions or feedback, please let us know ({{ contact_email }}).

\r\n\r\n{% if user.needs_login_key %}\r\nClick here to login: {{ login_url }}

\r\n{% endif %}\r\n{% if due_evaluations|length > 1%}\r\nThese evaluations are waiting for your feedback:\r\n
\r\n{% endif %}\r\n\r\nThank you very much for your efforts and kind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:03:02.417", + "email": "kiana.fontenot@external.example.com", + "title": "", + "first_name_given": "Kiana", + "first_name_chosen": "", + "last_name": "Fontenot", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.emailtemplate", - "pk": 6, + "model": "evaluation.userprofile", + "pk": 194, "fields": { - "name": "Editor Review Reminder", - "subject": "[EvaP] Reminder: Neue Lehrveranstaltungen stehen zur Überprüfung bereit / New Evaluation ready for approval", - "plain_content": "{% load evaluation_filters %}(English version below)\r\n\r\n\r\nSehr geehrte Dozentin, sehr geehrter Dozent,\r\n\r\num die Evaluierung Ihrer Veranstaltungen auf unserer Plattform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} durchführen zu können, benötigen wir Ihre Mithilfe.\r\n\r\nSie können die folgenden Aufgaben auch an Ihre Mitarbeitenden delegieren. Unter \"Einstellungen\" können Sie Stellvertreter·innen hinzufügen, die damit Bearbeitungsrechte für alle Ihre Veranstaltungen erhalten. Beim Bearbeiten einzelner Evaluierungen können Sie ebenfalls Bearbeitungsrechte vergeben, die sich auf diese Evaluierung beschränken.\r\n{% if user.needs_login_key and login_url %}\r\nMit diesem Link können Sie sich einmalig bei der Platform anmelden: {{ login_url }}\r\n{% elif user.needs_login_key %}\r\nEin Link zum Anmelden wird Ihnen per E-Mail zugesendet.\r\n{% endif %}\r\nWir möchten Sie bitten, für Ihre Evaluierungen sobald wie möglich Folgendes zu überprüfen:\r\n - Ist der Evaluierungszeitraum angemessen? Bitte legen Sie das Ende der Evaluierung vor die finale Prüfungsleistung (Klausur, Prüfung, Ausarbeitung etc.).\r\n - Wurden die für die Evaluierung geeigneten Fragebögen ausgewählt? Bitte passen Sie die Auswahl gegebenenfalls an.\r\n - Werden alle beteiligten Dozent·innen, Übungsleiter·innen, Projektleiter·innen, Seminarbetreuer·innen etc. evaluiert? Fügen Sie bitte alle weiteren Personen mit den passenden Fragebögen hinzu.\r\n\r\nFolgende Evaluierungen benötigen Ihre Freigabe:\r\n{% for evaluation in evaluations|order_by:\"full_name_de\" %} - {{ evaluation.full_name_de }}\r\n{% endfor %}\r\nVielen Dank im Voraus für Ihre Mühe!\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).\r\n\r\nFreundliche Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear lecturer,\r\n\r\nwe need your help so we can evaluate all courses on our platform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.\r\n\r\nYou can delegate the following tasks to your staff. Under \"Settings\" you can assign your delegates, which thereby will gain editing rights for all your courses. On the details page of a single evaluation you can also add persons and assign edit rights for this evaluation to them.\r\n{% if user.needs_login_key and login_url %}\r\nWith the following one-time URL you can login to the evaluation platform: {{ login_url }}\r\n{% elif user.needs_login_key %}\r\nWe will send you a one-time login URL in a separate email.\r\n{% endif %}\r\nTo prepare your evaluations we would like to ask you for the following as soon as possible:\r\n - Is the evaluation period appropriate? Please let the evaluation end before the final exam (written or oral examination, final assignment, etc.) of your course.\r\n - Are the selected questionnaires adequate for the evaluation? Please adapt the selection if necessary.\r\n - Are all contributors (lecturers, teaching assistants, etc.) included in the evaluation? Please add all additional persons with their appropriate questionnaires.\r\n\r\nThese evaluations need your approval:\r\n{% for evaluation in evaluations|order_by:\"full_name_en\" %} - {{ evaluation.full_name_en }}\r\n{% endfor %}\r\nThank you very much in advance for your efforts!\r\nIf you have any questions or feedback, please contact the evaluation team ({{ contact_email }}).\r\n\r\nKind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", - "html_content": "{% load evaluation_filters %}\r\n(English version below)


\r\n\r\n\r\nSehr geehrte Dozentin, sehr geehrter Dozent,

\r\n\r\num die Evaluierung Ihrer Veranstaltungen auf unserer Plattform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} durchführen zu können, benötigen wir Ihre Mithilfe.

\r\n\r\nSie können die folgenden Aufgaben auch an Ihre Mitarbeitenden delegieren. Unter \"Einstellungen\" können Sie Stellvertreter·innen hinzufügen, die damit Bearbeitungsrechte für alle Ihre Veranstaltungen erhalten. Beim Bearbeiten einzelner Evaluierungen können Sie ebenfalls Bearbeitungsrechte vergeben, die sich auf diese Evaluierung beschränken.

\r\n\r\n{% if user.needs_login_key and login_url %}\r\nMit diesem Link können Sie sich einmalig bei der Platform anmelden: {{ login_url }}

\r\n{% elif user.needs_login_key %}\r\nEin Link zum Anmelden wird Ihnen per E-Mail zugesendet.

\r\n{% endif %}\r\n\r\nWir möchten Sie bitten, für Ihre Evaluierungen sobald wie möglich Folgendes zu überprüfen:\r\n
\r\n\r\nFolgende Evaluierungen benötigen Ihre Freigabe:\r\n
\r\n\r\nVielen Dank im Voraus für Ihre Mühe!
\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).

\r\n\r\nFreundliche Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear lecturer,

\r\n\r\nwe need your help so we can evaluate all courses on our platform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.

\r\n\r\nYou can delegate the following tasks to your staff. Under \"Settings\" you can assign your delegates, which thereby will gain editing rights for all your courses. On the details page of a single evaluation you can also add persons and assign edit rights for this evaluation to them.

\r\n\r\n{% if user.needs_login_key and login_url %}\r\nWith the following one-time URL you can login to the evaluation platform: {{ login_url }}

\r\n{% elif user.needs_login_key %}\r\nWe will send you a one-time login URL in a separate email.

\r\n{% endif %}\r\n\r\nTo prepare your evaluations we would like to ask you for the following as soon as possible:\r\n
\r\n\r\nThese evaluations need your approval:\r\n
\r\n\r\nThank you very much in advance for your efforts!
\r\nIf you have any questions or feedback, please contact the evaluation team ({{ contact_email }}).

\r\n\r\nKind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:03:17.355", + "email": "lanelle.quintanilla@external.example.com", + "title": "", + "first_name_given": "Lanelle", + "first_name_chosen": "", + "last_name": "Quintanilla", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.emailtemplate", - "pk": 7, + "model": "evaluation.userprofile", + "pk": 195, "fields": { - "name": "Direct Delegation", - "subject": "[EvaP] Bitte Evaluierung vorbereiten / Please prepare evaluation", - "plain_content": "(English version below)\r\n\r\n\r\nHallo {{ delegate_user.full_name }},\r\n\r\nSie werden von {{ user.full_name }} darum gebeten, die Evaluierung für \"{{ evaluation.full_name_de }}\" auf der Plattform EvaP ({{ page_url }}) vorzubereiten.\r\n\r\nBitte überprüfen Sie möglichst bald die folgenden Dinge:\r\n - Ist der Evaluierungszeitraum angemessen? Bitte legen Sie das Ende der Evaluierung vor die finale Prüfungsleistung (Klausur, Prüfung, Ausarbeitung etc.).\r\n - Wurden die für die Veranstaltung geeigneten Fragebögen ausgewählt? Bitte passen Sie die Auswahl gegebenenfalls an.\r\n - Werden alle beteiligten Dozent·innen, Übungsleiter·innen, Projektleiter·innen, Seminarbetreuer·innen etc. evaluiert? Fügen Sie bitte alle weiteren Personen mit den passenden Fragebögen hinzu.\r\n\r\nVielen Dank im Voraus für Ihre Mühe!\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).\r\n\r\nFreundliche Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear {{ delegate_user.full_name }},\r\n\r\n{{ user.full_name }} asks you to prepare the evaluation for \"{{ evaluation.full_name_en }}\" on the platform EvaP ({{ page_url }}).\r\n\r\nPlease check the following as soon as possible:\r\n - Is the evaluation period appropriate? Please let the evaluation end before the final exam (written or oral examination, final assignment, etc.) of your course.\r\n - Are the selected questionnaires adequate for the course? Please adapt the selection if necessary.\r\n - Are all contributors (lecturers, teaching assistants, etc.) included in the evaluation? Please add all additional persons with their appropriate questionnaires.\r\n\r\nThank you very much in advance for your efforts!\r\nIf you have any questions or feedback, please contact the evaluation team ({{ contact_email }}).\r\n\r\nKind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", - "html_content": "(English version below)


\r\n\r\n\r\nHallo {{ delegate_user.full_name }},

\r\n\r\nSie werden von {{ user.full_name }} darum gebeten, die Evaluierung für \"{{ evaluation.full_name_de }}\" auf der Plattform EvaP ({{ page_url }}) vorzubereiten.

\r\n\r\nBitte überprüfen Sie möglichst bald die folgenden Dinge:\r\n
\r\n\r\nVielen Dank im Voraus für Ihre Mühe!
\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).

\r\n\r\nFreundliche Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear {{ delegate_user.full_name }},

\r\n\r\n{{ user.full_name }} asks you to prepare the evaluation for \"{{ evaluation.full_name_en }}\" on the platform EvaP ({{ page_url }}).

\r\n\r\nPlease check the following as soon as possible:\r\n
\r\n\r\nThank you very much in advance for your efforts!
\r\nIf you have any questions or feedback, please contact the evaluation team ({{ contact_email }}).

\r\n\r\nKind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:03:17.566", + "email": "leonia.burnham@external.example.com", + "title": "", + "first_name_given": "Leonia", + "first_name_chosen": "", + "last_name": "Burnham", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.emailtemplate", - "pk": 8, + "model": "evaluation.userprofile", + "pk": 196, "fields": { - "name": "Publishing Notice Participant", - "subject": "[EvaP] Evaluierungsergebnisse veröffentlicht / Evaluation results published", - "plain_content": "{% load evaluation_filters %}(English version below)\r\n\r\n\r\nHallo {{ user.first_name }},\r\n\r\ndie folgenden Evaluierungsergebnisse wurden soeben veröffentlicht:\r\n{% for evaluation in evaluations|order_by:\"full_name_de\" %} - {{ evaluation.full_name_de }}\r\n{% endfor %}\r\nDie Ergebnisse können auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} eingesehen werden.{% if user.needs_login_key and login_url %} Hier klicken zum Anmelden: {{ login_url }}{% elif user.needs_login_key %} Ein Link zum Anmelden wird per E-Mail zugesendet.{% endif %}\r\n\r\nBei Fragen und Rückmeldungen stehen wir gerne zur Verfügung ({{ contact_email }}).\r\n\r\nFreundliche Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear {{ user.first_name }},\r\n\r\nthe results of the following evaluations have just been published:\r\n{% for evaluation in evaluations|order_by:\"full_name_en\" %} - {{ evaluation.full_name_en }}\r\n{% endfor %}\r\nYou can view the results on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.{% if user.needs_login_key and login_url %} Click here to login: {{ login_url }}{% elif user.needs_login_key %} We will send you a one-time login URL in a separate email.{% endif %}\r\n\r\nIf you have any questions or feedback, please let us know ({{ contact_email }}).\r\n\r\nKind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", - "html_content": "{% load evaluation_filters %}\r\n(English version below)


\r\n\r\n\r\nHallo {{ user.first_name }},

\r\n\r\ndie folgenden Evaluierungsergebnisse wurden soeben veröffentlicht:\r\n
\r\n\r\nDie Ergebnisse können auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} eingesehen werden.
\r\n{% if user.needs_login_key and login_url %}\r\nHier klicken zum Anmelden: {{ login_url }}
\r\n{% elif user.needs_login_key %}\r\nEin Link zum Anmelden wird per E-Mail zugesendet.
\r\n{% endif %}
\r\n\r\nBei Fragen und Rückmeldungen stehen wir gerne zur Verfügung ({{ contact_email }}).

\r\n\r\nFreundliche Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear {{ user.first_name }},

\r\n\r\nthe results of the following evaluations have just been published:\r\n
\r\n\r\nYou can view the results on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.
\r\n{% if user.needs_login_key and login_url %}\r\nClick here to login: {{ login_url }}
\r\n{% elif user.needs_login_key %}\r\nWe will send you a one-time login URL in a separate email.
\r\n{% endif %}
\r\n\r\nIf you have any questions or feedback, please let us know ({{ contact_email }}).

\r\n\r\nKind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:03:25.901", + "email": "cythia.montanez@external.example.com", + "title": "", + "first_name_given": "Cythia", + "first_name_chosen": "", + "last_name": "Montanez", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.emailtemplate", - "pk": 9, + "model": "evaluation.userprofile", + "pk": 197, "fields": { - "name": "Text Answer Review Reminder", - "subject": "[EvaP] Bitte Textantworten überprüfen / Please review text answers", - "plain_content": "(English version below)\r\n\r\n\r\nHallo {{ user.first_name }},\r\n\r\nes gibt noch nicht überprüfte Textantworten für eine oder mehrere Evaluierungen, bei denen der Evaluierungszeitraum abgelaufen ist und nicht mehr auf Notenveröffentlichungen gewartet werden muss. Bitte überprüfe die Textantworten für diese Evaluierungen möglichst bald:\r\n{% for evaluation, url in evaluation_url_tuples %} - {{ evaluation.full_name_de }} ({{ url }})\r\n{% endfor %}\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear {{ user.first_name }},\r\n\r\nthere are text answers not yet reviewed for one or more evaluations where the evaluation period has ended and there is no need to wait for grade publishing. Please review the text answers for these evaluations as soon as possible:\r\n{% for evaluation, url in evaluation_url_tuples %} - {{ evaluation.full_name_en }} ({{ url }})\r\n{% endfor %}\r\n\r\n(This is an automated message.)", - "html_content": "(English version below)


\r\n\r\n\r\nHallo {{ user.first_name }},

\r\n\r\nes gibt noch nicht überprüfte Textantworten für eine oder mehrere Evaluierungen, bei denen der Evaluierungszeitraum abgelaufen ist und nicht mehr auf Notenveröffentlichungen gewartet werden muss. Bitte überprüfe die Textantworten für diese Evaluierungen möglichst bald:\r\n

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear {{ user.first_name }},

\r\n\r\nthere are text answers not yet reviewed for one or more evaluations where the evaluation period has ended and there is no need to wait for grade publishing. Please review the text answers for these evaluations as soon as possible:\r\n

\r\n\r\n(This is an automated message.)" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:03:25.918", + "email": "dusty.kaplan@external.example.com", + "title": "", + "first_name_given": "Dusty", + "first_name_chosen": "", + "last_name": "Kaplan", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 1, + "model": "evaluation.userprofile", + "pk": 198, "fields": { - "evaluation": 347, - "timestamp": "2024-05-07T00:19:49" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:03:25.924", + "email": "tanesha.sharkey@external.example.com", + "title": "", + "first_name_given": "Tanesha", + "first_name_chosen": "", + "last_name": "Sharkey", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 2, + "model": "evaluation.userprofile", + "pk": 199, "fields": { - "evaluation": 347, - "timestamp": "2024-05-11T01:33:38" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:03:25.943", + "email": "evan.buckingham@external.example.com", + "title": "", + "first_name_given": "Evan", + "first_name_chosen": "", + "last_name": "Buckingham", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 3, + "model": "evaluation.userprofile", + "pk": 200, "fields": { - "evaluation": 347, - "timestamp": "2024-05-23T06:09:16" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:03:25.949", + "email": "rossie.casanova@external.example.com", + "title": "", + "first_name_given": "Rossie", + "first_name_chosen": "", + "last_name": "Casanova", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 4, + "model": "evaluation.userprofile", + "pk": 201, "fields": { - "evaluation": 347, - "timestamp": "2024-05-03T19:27:37" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:03:25.966", + "email": "denyse.murillo@external.example.com", + "title": "", + "first_name_given": "Denyse", + "first_name_chosen": "", + "last_name": "Murillo", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 5, + "model": "evaluation.userprofile", + "pk": 202, "fields": { - "evaluation": 347, - "timestamp": "2024-05-02T00:11:57" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:03:25.989", + "email": "elmira.vest@external.example.com", + "title": "", + "first_name_given": "Elmira", + "first_name_chosen": "", + "last_name": "Vest", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 6, + "model": "evaluation.userprofile", + "pk": 203, "fields": { - "evaluation": 347, - "timestamp": "2024-05-29T16:22:45" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-12-04T14:22:09.856", + "email": "tabitha.sutter@institution.example.com", + "title": "", + "first_name_given": "Tabitha", + "first_name_chosen": "", + "last_name": "Sutter", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 7, + "model": "evaluation.userprofile", + "pk": 204, "fields": { - "evaluation": 347, - "timestamp": "2024-05-16T06:15:26" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:04:02.375", + "email": "eusebia.hagen@external.example.com", + "title": "", + "first_name_given": "Eusebia", + "first_name_chosen": "", + "last_name": "Hagen", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 8, + "model": "evaluation.userprofile", + "pk": 205, "fields": { - "evaluation": 347, - "timestamp": "2024-05-09T13:41:46" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-03T23:21:57.054", + "email": "mica.boatright@institution.example.com", + "title": "Dr.", + "first_name_given": "Mica", + "first_name_chosen": "", + "last_name": "Boatright", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 9, + "model": "evaluation.userprofile", + "pk": 206, "fields": { - "evaluation": 347, - "timestamp": "2024-05-29T13:03:12" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:04:27.433", + "email": "amber.dunlap@external.example.com", + "title": "Prof. Dr.", + "first_name_given": "Amber", + "first_name_chosen": "", + "last_name": "Dunlap", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 10, + "model": "evaluation.userprofile", + "pk": 207, "fields": { - "evaluation": 348, - "timestamp": "2024-05-02T12:24:13" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:04:29.615", + "email": "abbey.davison@external.example.com", + "title": "Prof. Dr.", + "first_name_given": "Abbey", + "first_name_chosen": "", + "last_name": "Davison", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 11, + "model": "evaluation.userprofile", + "pk": 208, "fields": { - "evaluation": 348, - "timestamp": "2024-05-25T19:09:52" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-15T15:52:42.444", + "email": "kyra.hart@institution.example.com", + "title": "", + "first_name_given": "Kyra", + "first_name_chosen": "", + "last_name": "Hart", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 12, + "model": "evaluation.userprofile", + "pk": 209, "fields": { - "evaluation": 348, - "timestamp": "2024-05-11T23:41:20" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:08:05.159", + "email": "ardella.mays@external.example.com", + "title": "", + "first_name_given": "Ardella", + "first_name_chosen": "", + "last_name": "Mays", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 13, + "model": "evaluation.userprofile", + "pk": 210, "fields": { - "evaluation": 348, - "timestamp": "2024-05-30T21:17:46" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-06T21:12:21.200", + "email": "harriet.rushing@institution.example.com", + "title": "Dr.", + "first_name_given": "Harriet", + "first_name_chosen": "", + "last_name": "Rushing", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 67, + 44, + 136, + 178, + 38, + 22, + 648, + 577, + 129, + 97, + 42 + ], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 14, + "model": "evaluation.userprofile", + "pk": 211, "fields": { - "evaluation": 348, - "timestamp": "2024-05-18T06:08:40" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:08:07.813", + "email": "mora.barfield@external.example.com", + "title": "", + "first_name_given": "Mora", + "first_name_chosen": "", + "last_name": "Barfield", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 15, + "model": "evaluation.userprofile", + "pk": 212, "fields": { - "evaluation": 348, - "timestamp": "2024-05-03T18:12:06" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:08:20.071", + "email": "angela.galbraith@external.example.com", + "title": "", + "first_name_given": "Angela", + "first_name_chosen": "", + "last_name": "Galbraith", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 16, + "model": "evaluation.userprofile", + "pk": 213, "fields": { - "evaluation": 348, - "timestamp": "2024-05-11T15:03:02" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:08:21.867", + "email": "elbert.baber@external.example.com", + "title": "", + "first_name_given": "Elbert", + "first_name_chosen": "", + "last_name": "Baber", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 17, + "model": "evaluation.userprofile", + "pk": 214, "fields": { - "evaluation": 348, - "timestamp": "2024-05-13T05:31:39" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:08:41.792", + "email": "dion.rutledge@external.example.com", + "title": "", + "first_name_given": "Dion", + "first_name_chosen": "", + "last_name": "Rutledge", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 18, + "model": "evaluation.userprofile", + "pk": 215, "fields": { - "evaluation": 1503, - "timestamp": "2024-05-13T19:12:47" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-31T10:25:58.389", + "email": "juanita.kimbrough@institution.example.com", + "title": "", + "first_name_given": "Juanita", + "first_name_chosen": "", + "last_name": "Kimbrough", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 19, + "model": "evaluation.userprofile", + "pk": 216, "fields": { - "evaluation": 1577, - "timestamp": "2024-05-05T21:46:10" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:10:30.880", + "email": "lorriane.najera@external.example.com", + "title": "", + "first_name_given": "Lorriane", + "first_name_chosen": "", + "last_name": "Najera", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 20, + "model": "evaluation.userprofile", + "pk": 217, "fields": { - "evaluation": 1577, - "timestamp": "2024-05-25T19:28:09" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:10:30.898", + "email": "matthew.hart@external.example.com", + "title": "", + "first_name_given": "Matthew", + "first_name_chosen": "", + "last_name": "Hart", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 21, + "model": "evaluation.userprofile", + "pk": 218, "fields": { - "evaluation": 1577, - "timestamp": "2024-05-14T03:40:33" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-23T11:04:09.158", + "email": "georgann.mcneill@institution.example.com", + "title": "", + "first_name_given": "Georgann", + "first_name_chosen": "", + "last_name": "Mcneill", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 22, + "model": "evaluation.userprofile", + "pk": 219, "fields": { - "evaluation": 1577, - "timestamp": "2024-05-11T19:45:23" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:10:49", + "email": "linette.moultrie@external.example.com", + "title": "", + "first_name_given": "Linette", + "first_name_chosen": "", + "last_name": "Moultrie", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 23, + "model": "evaluation.userprofile", + "pk": 220, "fields": { - "evaluation": 1577, - "timestamp": "2024-05-02T01:32:22" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-30T20:46:14.335", + "email": "laura.lamb@institution.example.com", + "title": "", + "first_name_given": "Laura", + "first_name_chosen": "", + "last_name": "Lamb", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 24, + "model": "evaluation.userprofile", + "pk": 221, "fields": { - "evaluation": 1577, - "timestamp": "2024-05-25T00:39:24" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:14:46.010", + "email": "majorie.godfrey@institution.example.com", + "title": "", + "first_name_given": "Majorie", + "first_name_chosen": "", + "last_name": "Godfrey", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 25, + "model": "evaluation.userprofile", + "pk": 222, "fields": { - "evaluation": 1577, - "timestamp": "2024-05-28T19:24:29" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T19:00:18.169", + "email": "justa.baughman@institution.example.com", + "title": "", + "first_name_given": "Justa", + "first_name_chosen": "", + "last_name": "Baughman", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 26, + "model": "evaluation.userprofile", + "pk": 223, "fields": { - "evaluation": 1577, - "timestamp": "2024-05-21T05:43:29" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-29T17:02:17.999", + "email": "hilde.blankenship@institution.example.com", + "title": "", + "first_name_given": "Hilde", + "first_name_chosen": "", + "last_name": "Blankenship", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 27, + "model": "evaluation.userprofile", + "pk": 224, "fields": { - "evaluation": 1577, - "timestamp": "2024-05-18T07:03:43" - } + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-01T09:24:22.444", + "email": "clarence.kirkland@institution.example.com", + "title": "", + "first_name_given": "Clarence", + "first_name_chosen": "", + "last_name": "Kirkland", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] + } }, { - "model": "evaluation.votetimestamp", - "pk": 28, + "model": "evaluation.userprofile", + "pk": 225, "fields": { - "evaluation": 1600, - "timestamp": "2024-05-14T12:47:54" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-31T09:09:22.294", + "email": "raymond.bickford@institution.example.com", + "title": "", + "first_name_given": "Raymond", + "first_name_chosen": "", + "last_name": "Bickford", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 29, + "model": "evaluation.userprofile", + "pk": 226, "fields": { - "evaluation": 1600, - "timestamp": "2024-05-05T16:04:27" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:11:03.967", + "email": "kayleen.carper@institution.example.com", + "title": "", + "first_name_given": "Kayleen", + "first_name_chosen": "", + "last_name": "Carper", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 30, + "model": "evaluation.userprofile", + "pk": 227, "fields": { - "evaluation": 1600, - "timestamp": "2024-05-10T04:58:38" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:11:03.972", + "email": "darryl.curtin@external.example.com", + "title": "", + "first_name_given": "Darryl", + "first_name_chosen": "", + "last_name": "Curtin", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 31, + "model": "evaluation.userprofile", + "pk": 228, "fields": { - "evaluation": 1673, - "timestamp": "2016-07-23T19:19:13" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:11:03.976", + "email": "polly.rawlins@external.example.com", + "title": "", + "first_name_given": "Polly", + "first_name_chosen": "", + "last_name": "Rawlins", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 32, + "model": "evaluation.userprofile", + "pk": 229, "fields": { - "evaluation": 1673, - "timestamp": "2021-05-24T05:33:10" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:11:03.986", + "email": "jacqui.lindsey@institution.example.com", + "title": "", + "first_name_given": "Jacqui", + "first_name_chosen": "", + "last_name": "Lindsey", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 33, + "model": "evaluation.userprofile", + "pk": 230, "fields": { - "evaluation": 1673, - "timestamp": "2015-10-31T12:39:08" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:15:10.501", + "email": "corine.lunsford@institution.example.com", + "title": "", + "first_name_given": "Corine", + "first_name_chosen": "", + "last_name": "Lunsford", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 34, + "model": "evaluation.userprofile", + "pk": 231, "fields": { - "evaluation": 1682, - "timestamp": "2016-09-20T00:45:07" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-31T14:08:23.222", + "email": "osvaldo.carrier@institution.example.com", + "title": "", + "first_name_given": "Osvaldo", + "first_name_chosen": "", + "last_name": "Carrier", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 35, + "model": "evaluation.userprofile", + "pk": 232, "fields": { - "evaluation": 1682, - "timestamp": "2023-07-13T23:17:07" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T22:53:23.599", + "email": "elma.huynh@institution.example.com", + "title": "", + "first_name_given": "Elma", + "first_name_chosen": "", + "last_name": "Huynh", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 36, + "model": "evaluation.userprofile", + "pk": 233, "fields": { - "evaluation": 1682, - "timestamp": "2016-04-05T13:11:54" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-23T19:14:56.765", + "email": "mariann.alfonso@institution.example.com", + "title": "", + "first_name_given": "Mariann", + "first_name_chosen": "", + "last_name": "Alfonso", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.votetimestamp", - "pk": 37, + "model": "evaluation.userprofile", + "pk": 234, "fields": { - "evaluation": 1694, - "timestamp": "2017-11-29T01:40:06" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-08T10:57:35.127", + "email": "lelia.beall@institution.example.com", + "title": "", + "first_name_given": "Lelia", + "first_name_chosen": "", + "last_name": "Beall", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointredemptionevent", - "pk": 1, + "model": "evaluation.userprofile", + "pk": 235, "fields": { - "name": "Big party", - "date": "2099-12-31", - "redeem_end_date": "2099-12-30" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-03-13T21:08:59.664", + "email": "damion.aiken@institution.example.com", + "title": "", + "first_name_given": "Damion", + "first_name_chosen": "", + "last_name": "Aiken", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 1, + "model": "evaluation.userprofile", + "pk": 236, "fields": { - "user_profile": [ - "elfriede.aguiar@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.413", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-04T16:46:09.458", + "email": "stepanie.kimmel@institution.example.com", + "title": "", + "first_name_given": "Stepanie", + "first_name_chosen": "", + "last_name": "Kimmel", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 2, + "model": "evaluation.userprofile", + "pk": 237, "fields": { - "user_profile": [ - "damion.aiken@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.424", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-12T11:50:50.547", + "email": "ezequiel.brock@institution.example.com", + "title": "", + "first_name_given": "Ezequiel", + "first_name_chosen": "", + "last_name": "Brock", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 3, + "model": "evaluation.userprofile", + "pk": 238, "fields": { - "user_profile": [ - "heide.andrew@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.455", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-03-18T09:10:08.613", + "email": "marleen.spivey@institution.example.com", + "title": "", + "first_name_given": "Marleen", + "first_name_chosen": "", + "last_name": "Spivey", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 4, + "model": "evaluation.userprofile", + "pk": 239, "fields": { - "user_profile": [ - "valda.antoine@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.463", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-30T21:11:33.049", + "email": "raisa.burbank@institution.example.com", + "title": "", + "first_name_given": "Raisa", + "first_name_chosen": "", + "last_name": "Burbank", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 5, + "model": "evaluation.userprofile", + "pk": 240, "fields": { - "user_profile": [ - "alisa.askew@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.476", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-03-05T10:43:54.810", + "email": "conception.belt@institution.example.com", + "title": "", + "first_name_given": "Conception", + "first_name_chosen": "", + "last_name": "Belt", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 6, + "model": "evaluation.userprofile", + "pk": 241, "fields": { - "user_profile": [ - "kristina.baker@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.484", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-30T22:50:33.025", + "email": "gracia.mullins@institution.example.com", + "title": "", + "first_name_given": "Gracia", + "first_name_chosen": "", + "last_name": "Mullins", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 7, + "model": "evaluation.userprofile", + "pk": 242, "fields": { - "user_profile": [ - "justa.baughman@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.514", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-10T11:04:25.120", + "email": "candie.lugo@institution.example.com", + "title": "", + "first_name_given": "Candie", + "first_name_chosen": "", + "last_name": "Lugo", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 8, + "model": "evaluation.userprofile", + "pk": 243, "fields": { - "user_profile": [ - "conception.belt@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.529", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-22T16:35:15.443", + "email": "brenda.conway@institution.example.com", + "title": "", + "first_name_given": "Brenda", + "first_name_chosen": "", + "last_name": "Conway", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 9, + "model": "evaluation.userprofile", + "pk": 244, "fields": { - "user_profile": [ - "gwyn.berger@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.536", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-31T11:54:38.564", + "email": "amado.huggins@institution.example.com", + "title": "", + "first_name_given": "Amado", + "first_name_chosen": "", + "last_name": "Huggins", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 10, + "model": "evaluation.userprofile", + "pk": 245, "fields": { - "user_profile": [ - "elfrieda.bess@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.541", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-09T11:14:42.030", + "email": "elvie.chaffin@institution.example.com", + "title": "", + "first_name_given": "Elvie", + "first_name_chosen": "", + "last_name": "Chaffin", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 11, + "model": "evaluation.userprofile", + "pk": 246, "fields": { - "user_profile": [ - "hester.bettencourt@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.548", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-03-03T01:14:47.233", + "email": "lavonna.burgos@institution.example.com", + "title": "", + "first_name_given": "Lavonna", + "first_name_chosen": "", + "last_name": "Burgos", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 12, + "model": "evaluation.userprofile", + "pk": 247, "fields": { - "user_profile": [ - "cherly.bobbitt@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.572", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T15:31:17.944", + "email": "darnell.aguilera@institution.example.com", + "title": "", + "first_name_given": "Darnell", + "first_name_chosen": "", + "last_name": "Aguilera", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 13, + "model": "evaluation.userprofile", + "pk": 248, "fields": { - "user_profile": [ - "herta.bourne@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.600", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-15T13:21:11.742", + "email": "wendie.pike@institution.example.com", + "title": "", + "first_name_given": "Wendie", + "first_name_chosen": "", + "last_name": "Pike", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 14, + "model": "evaluation.userprofile", + "pk": 249, "fields": { - "user_profile": [ - "kristi.boykin@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.612", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-28T23:41:42.360", + "email": "chelsey.fried@institution.example.com", + "title": "", + "first_name_given": "Chelsey", + "first_name_chosen": "", + "last_name": "Fried", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 15, + "model": "evaluation.userprofile", + "pk": 250, "fields": { - "user_profile": [ - "salina.boykin@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.617", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-03-16T11:51:36.155", + "email": "oma.abner@institution.example.com", + "title": "", + "first_name_given": "Oma", + "first_name_chosen": "", + "last_name": "Abner", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 16, + "model": "evaluation.userprofile", + "pk": 251, "fields": { - "user_profile": [ - "christine.brinkley@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.636", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-08-21T08:50:38.747", + "email": "gilda.soper@institution.example.com", + "title": "", + "first_name_given": "Gilda", + "first_name_chosen": "", + "last_name": "Soper", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 17, + "model": "evaluation.userprofile", + "pk": 252, "fields": { - "user_profile": [ - "marquis.brody@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.646", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-15T14:24:51.746", + "email": "marlana.mclain@institution.example.com", + "title": "", + "first_name_given": "Marlana", + "first_name_chosen": "", + "last_name": "Mclain", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 18, + "model": "evaluation.userprofile", + "pk": 253, "fields": { - "user_profile": [ - "aida.broome@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.651", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T15:46:39.710", + "email": "antony.landry@institution.example.com", + "title": "", + "first_name_given": "Antony", + "first_name_chosen": "", + "last_name": "Landry", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 19, + "model": "evaluation.userprofile", + "pk": 254, "fields": { - "user_profile": [ - "kimbery.burnette@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.680", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-22T17:06:50.607", + "email": "lenard.bean@institution.example.com", + "title": "", + "first_name_given": "Lenard", + "first_name_chosen": "", + "last_name": "Bean", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 20, + "model": "evaluation.userprofile", + "pk": 255, "fields": { - "user_profile": [ - "kirstin.carbone@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.720", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-29T14:53:17.250", + "email": "jeni.cloutier@institution.example.com", + "title": "", + "first_name_given": "Jeni", + "first_name_chosen": "", + "last_name": "Cloutier", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 21, + "model": "evaluation.userprofile", + "pk": 256, "fields": { - "user_profile": [ - "asa.carlton@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.726", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-03T08:39:27.351", + "email": "delegate@institution.example.com", + "title": "", + "first_name_given": "", + "first_name_chosen": "", + "last_name": "delegate", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 22, + "model": "evaluation.userprofile", + "pk": 257, "fields": { - "user_profile": [ - "osvaldo.carrier@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.748", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-10T21:35:49.219", + "email": "giuseppina.waldrop@institution.example.com", + "title": "", + "first_name_given": "Giuseppina", + "first_name_chosen": "", + "last_name": "Waldrop", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 23, + "model": "evaluation.userprofile", + "pk": 258, "fields": { - "user_profile": [ - "elvie.chaffin@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.769", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-03-01T11:29:27.215", + "email": "yolanda.farley@institution.example.com", + "title": "", + "first_name_given": "Yolanda", + "first_name_chosen": "", + "last_name": "Farley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 24, + "model": "evaluation.userprofile", + "pk": 259, "fields": { - "user_profile": [ - "odette.chitwood@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.802", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:11:04.174", + "email": "felicitas.culver@external.example.com", + "title": "", + "first_name_given": "Felicitas", + "first_name_chosen": "", + "last_name": "Culver", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 25, + "model": "evaluation.userprofile", + "pk": 260, "fields": { - "user_profile": [ - "karly.clapp@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.817", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:11:04.179", + "email": "ardelle.crouse@institution.example.com", + "title": "", + "first_name_given": "Ardelle", + "first_name_chosen": "", + "last_name": "Crouse", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 26, + "model": "evaluation.userprofile", + "pk": 261, "fields": { - "user_profile": [ - "kellye.cobb@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.837", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-08T14:44:45.671", + "email": "meagan.steed@institution.example.com", + "title": "", + "first_name_given": "Meagan", + "first_name_chosen": "", + "last_name": "Steed", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 27, + "model": "evaluation.userprofile", + "pk": 262, "fields": { - "user_profile": [ - "dannie.cochran@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.844", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:11:04.189", + "email": "wade.ryan@institution.example.com", + "title": "", + "first_name_given": "Wade", + "first_name_chosen": "", + "last_name": "Ryan", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 28, + "model": "evaluation.userprofile", + "pk": 263, "fields": { - "user_profile": [ - "almeta.cody@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.852", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-18T20:19:53.113", + "email": "thi.anthony@institution.example.com", + "title": "", + "first_name_given": "Thi", + "first_name_chosen": "", + "last_name": "Anthony", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 29, + "model": "evaluation.userprofile", + "pk": 264, "fields": { - "user_profile": [ - "ngan.corbin@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.911", - "value": 3 - } -}, -{ - "model": "rewards.rewardpointgranting", - "pk": 30, - "fields": { - "user_profile": [ - "jina.cushman@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.952", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-07T09:27:03.820", + "email": "corinne.tolliver@institution.example.com", + "title": "", + "first_name_given": "Corinne", + "first_name_chosen": "", + "last_name": "Tolliver", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 31, + "model": "evaluation.userprofile", + "pk": 265, "fields": { - "user_profile": [ - "scotty.daily@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.959", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-23T12:07:32.181", + "email": "sunshine.ruby@institution.example.com", + "title": "", + "first_name_given": "Sunshine", + "first_name_chosen": "", + "last_name": "Ruby", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 32, + "model": "evaluation.userprofile", + "pk": 266, "fields": { - "user_profile": [ - "delegate@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.970", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:11:04.218", + "email": "ernest.buford@external.example.com", + "title": "", + "first_name_given": "Ernest", + "first_name_chosen": "", + "last_name": "Buford", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 33, + "model": "evaluation.userprofile", + "pk": 267, "fields": { - "user_profile": [ - "diann.deloach@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.978", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-23T15:52:47.145", + "email": "ilse.switzer@institution.example.com", + "title": "", + "first_name_given": "Ilse", + "first_name_chosen": "", + "last_name": "Switzer", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 34, + "model": "evaluation.userprofile", + "pk": 268, "fields": { - "user_profile": [ - "eryn.devore@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:23.995", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-14T15:17:03.287", + "email": "kathyrn.linder@institution.example.com", + "title": "", + "first_name_given": "Kathyrn", + "first_name_chosen": "", + "last_name": "Linder", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 35, + "model": "evaluation.userprofile", + "pk": 269, "fields": { - "user_profile": [ - "maxine.dexter@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.003", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-02T10:12:40.654", + "email": "halley.landrum@institution.example.com", + "title": "", + "first_name_given": "Halley", + "first_name_chosen": "", + "last_name": "Landrum", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 36, + "model": "evaluation.userprofile", + "pk": 270, "fields": { - "user_profile": [ - "catherine.dillon@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.009", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$20000$mHyoq7kQaC2h$BmBzoRMsAHLhkgmY2SIn/GE7rt+XRp3QFvUegeIWdjk=", + "last_login": "2015-11-08T14:34:36.328", + "email": "valda.antoine@institution.example.com", + "title": "", + "first_name_given": "Valda", + "first_name_chosen": "", + "last_name": "Antoine", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2012-05-10", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 37, + "model": "evaluation.userprofile", + "pk": 271, "fields": { - "user_profile": [ - "cassey.earley@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.035", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:11:04.247", + "email": "lyndia.song@institution.example.com", + "title": "", + "first_name_given": "Lyndia", + "first_name_chosen": "", + "last_name": "Song", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 38, + "model": "evaluation.userprofile", + "pk": 272, "fields": { - "user_profile": [ - "dominga.earley@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.040", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-03T08:40:18.189", + "email": "editor@institution.example.com", + "title": "", + "first_name_given": "", + "first_name_chosen": "", + "last_name": "editor", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 39, + "model": "evaluation.userprofile", + "pk": 273, "fields": { - "user_profile": [ - "milly.early@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.045", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-08T17:18:28.575", + "email": "lavona.pond@institution.example.com", + "title": "", + "first_name_given": "Lavona", + "first_name_chosen": "", + "last_name": "Pond", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 40, + "model": "evaluation.userprofile", + "pk": 274, "fields": { - "user_profile": [ - "haley.engle@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.072", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-15T13:31:11.152", + "email": "emmaline.voigt@institution.example.com", + "title": "", + "first_name_given": "Emmaline", + "first_name_chosen": "", + "last_name": "Voigt", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 41, + "model": "evaluation.userprofile", + "pk": 275, "fields": { - "user_profile": [ - "britany.estrella@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.086", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T09:51:14.360", + "email": "britany.estrella@institution.example.com", + "title": "", + "first_name_given": "Britany", + "first_name_chosen": "", + "last_name": "Estrella", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 42, + "model": "evaluation.userprofile", + "pk": 276, "fields": { - "user_profile": [ - "evap@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.091", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:11:04.276", + "email": "nita.jennings@institution.example.com", + "title": "", + "first_name_given": "Nita", + "first_name_chosen": "", + "last_name": "Jennings", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 43, + "model": "evaluation.userprofile", + "pk": 277, "fields": { - "user_profile": [ - "kristle.ewing@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.101", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-09T17:55:07.197", + "email": "maribel.scales@institution.example.com", + "title": "", + "first_name_given": "Maribel", + "first_name_chosen": "", + "last_name": "Scales", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 44, + "model": "evaluation.userprofile", + "pk": 278, "fields": { - "user_profile": [ - "levi.findley@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.125", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-17T22:57:20.798", + "email": "regan.swank@institution.example.com", + "title": "", + "first_name_given": "Regan", + "first_name_chosen": "", + "last_name": "Swank", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 45, + "model": "evaluation.userprofile", + "pk": 279, "fields": { - "user_profile": [ - "chelsey.fried@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.153", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T15:28:52.173", + "email": "karly.clapp@institution.example.com", + "title": "", + "first_name_given": "Karly", + "first_name_chosen": "", + "last_name": "Clapp", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 46, + "model": "evaluation.userprofile", + "pk": 280, "fields": { - "user_profile": [ - "benito.fuqua@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.160", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:11:04.314", + "email": "nana.meador@institution.example.com", + "title": "", + "first_name_given": "Nana", + "first_name_chosen": "", + "last_name": "Meador", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 47, + "model": "evaluation.userprofile", + "pk": 281, "fields": { - "user_profile": [ - "hollie.gallardo@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.174", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-24T11:02:13.320", + "email": "jennifer.yarbrough@institution.example.com", + "title": "", + "first_name_given": "Jennifer", + "first_name_chosen": "", + "last_name": "Yarbrough", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 48, + "model": "evaluation.userprofile", + "pk": 282, "fields": { - "user_profile": [ - "shakira.gilmer@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.198", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-28T22:37:57.999", + "email": "odette.chitwood@institution.example.com", + "title": "", + "first_name_given": "Odette", + "first_name_chosen": "", + "last_name": "Chitwood", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 49, + "model": "evaluation.userprofile", + "pk": 283, "fields": { - "user_profile": [ - "majorie.godfrey@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.209", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-12T13:15:41.710", + "email": "leigha.christie@institution.example.com", + "title": "", + "first_name_given": "Leigha", + "first_name_chosen": "", + "last_name": "Christie", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 50, + "model": "evaluation.userprofile", + "pk": 284, "fields": { - "user_profile": [ - "jackelyn.gooding@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.219", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-09T09:38:31.796", + "email": "noriko.rau@institution.example.com", + "title": "", + "first_name_given": "Noriko", + "first_name_chosen": "", + "last_name": "Rau", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 51, + "model": "evaluation.userprofile", + "pk": 285, "fields": { - "user_profile": [ - "fran.goodrich@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.224", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:11:55.620", + "email": "christine.villanueva@external.example.com", + "title": "", + "first_name_given": "Christine", + "first_name_chosen": "", + "last_name": "Villanueva", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 52, + "model": "evaluation.userprofile", + "pk": 286, "fields": { - "user_profile": [ - "marybeth.groff@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.264", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-16T14:17:37.158", + "email": "wyatt.fairchild@external.example.com", + "title": "", + "first_name_given": "Wyatt", + "first_name_chosen": "", + "last_name": "Fairchild", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 53, + "model": "evaluation.userprofile", + "pk": 287, "fields": { - "user_profile": [ - "callie.grove@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.270", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:11:56.152", + "email": "afton.ceja@external.example.com", + "title": "", + "first_name_given": "Afton", + "first_name_chosen": "", + "last_name": "Ceja", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 54, + "model": "evaluation.userprofile", + "pk": 288, "fields": { - "user_profile": [ - "marshall.guerrero@institution.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-29T06:38:28.861", + "email": "jospeh.thorp@external.example.com", + "title": "Dr.", + "first_name_given": "Jospeh", + "first_name_chosen": "", + "last_name": "Thorp", + "language": "", + "is_proxy_user": false, + "login_key": 658405473, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 836, + 582, + 777, + 123, + 37 ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.281", - "value": 3 + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 55, + "model": "evaluation.userprofile", + "pk": 289, "fields": { - "user_profile": [ - "risa.hammer@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.295", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:12:15.064", + "email": "shery.rees@external.example.com", + "title": "Prof. Dr.", + "first_name_given": "Shery", + "first_name_chosen": "", + "last_name": "Rees", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 56, + "model": "evaluation.userprofile", + "pk": 290, "fields": { - "user_profile": [ - "etha.hastings@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.319", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T17:12:19.069", + "email": "sage.osborne@external.example.com", + "title": "", + "first_name_given": "Sage", + "first_name_chosen": "", + "last_name": "Osborne", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 57, + "model": "evaluation.userprofile", + "pk": 291, "fields": { - "user_profile": [ - "mercedes.hatch@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.323", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-31T17:12:28.842", + "email": "arnold.lane@institution.example.com", + "title": "Dr.", + "first_name_given": "Arnold", + "first_name_chosen": "", + "last_name": "Lane", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 58, + "model": "evaluation.userprofile", + "pk": 292, "fields": { - "user_profile": [ - "aurea.hay@institution.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:45:25.645", + "email": "sandee.coker@institution.example.com", + "title": "Prof.", + "first_name_given": "Sandee", + "first_name_chosen": "", + "last_name": "Coker", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 601 ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.330", - "value": 3 + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 59, + "model": "evaluation.userprofile", + "pk": 293, "fields": { - "user_profile": [ - "yetta.heck@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.341", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-03-22T11:24:00.988", + "email": "felton.alvarez@institution.example.com", + "title": "", + "first_name_given": "Felton", + "first_name_chosen": "", + "last_name": "Alvarez", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 60, + "model": "evaluation.userprofile", + "pk": 294, "fields": { - "user_profile": [ - "vonnie.hills@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.374", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T11:39:18.036", + "email": "arron.tran@institution.example.com", + "title": "Dr.", + "first_name_given": "Arron", + "first_name_chosen": "", + "last_name": "Tran", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 61, + "model": "evaluation.userprofile", + "pk": 295, "fields": { - "user_profile": [ - "portia.hoffman@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.381", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:14:54.208", + "email": "cole.gamboa@institution.example.com", + "title": "", + "first_name_given": "Cole", + "first_name_chosen": "", + "last_name": "Gamboa", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 62, + "model": "evaluation.userprofile", + "pk": 296, "fields": { - "user_profile": [ - "carylon.hoffmann@institution.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T15:36:47.045", + "email": "henriette.park@institution.example.com", + "title": "Prof. Dr.", + "first_name_given": "Henriette", + "first_name_chosen": "", + "last_name": "Park", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 334, + 452 ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.386", - "value": 3 + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 63, + "model": "evaluation.userprofile", + "pk": 297, "fields": { - "user_profile": [ - "kristyn.holcomb@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.393", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-28T19:41:55.913", + "email": "callie.grove@institution.example.com", + "title": "", + "first_name_given": "Callie", + "first_name_chosen": "", + "last_name": "Grove", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 64, + "model": "evaluation.userprofile", + "pk": 298, "fields": { - "user_profile": [ - "beula.hopkins@institution.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-05T11:52:28.356", + "email": "lisandra.grace@external.example.com", + "title": "Dr.", + "first_name_given": "Lisandra", + "first_name_chosen": "", + "last_name": "Grace", + "language": "", + "is_proxy_user": false, + "login_key": 630273331, + "login_key_valid_until": "2014-12-01", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 836, + 123 ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.405", - "value": 3 + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 65, + "model": "evaluation.userprofile", + "pk": 299, "fields": { - "user_profile": [ - "enrique.horne@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.410", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T19:09:55.252", + "email": "veta.branson@institution.example.com", + "title": "", + "first_name_given": "Veta", + "first_name_chosen": "", + "last_name": "Branson", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 66, + "model": "evaluation.userprofile", + "pk": 300, "fields": { - "user_profile": [ - "lorna.hubert@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.428", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-27T11:09:57.023", + "email": "aleta.seymour@institution.example.com", + "title": "", + "first_name_given": "Aleta", + "first_name_chosen": "", + "last_name": "Seymour", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 67, + "model": "evaluation.userprofile", + "pk": 301, "fields": { - "user_profile": [ - "amado.huggins@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.432", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:14:57.152", + "email": "sybil.everett@institution.example.com", + "title": "", + "first_name_given": "Sybil", + "first_name_chosen": "", + "last_name": "Everett", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 68, + "model": "evaluation.userprofile", + "pk": 302, "fields": { - "user_profile": [ - "shayna.hyde@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.454", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:14:57.456", + "email": "marquetta.cano@institution.example.com", + "title": "", + "first_name_given": "Marquetta", + "first_name_chosen": "", + "last_name": "Cano", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 69, + "model": "evaluation.userprofile", + "pk": 303, "fields": { - "user_profile": [ - "tami.isaac@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.460", - "value": 3 - } -}, -{ - "model": "rewards.rewardpointgranting", - "pk": 70, - "fields": { - "user_profile": [ - "keisha.jordon@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.489", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-04T23:56:50.331", + "email": "ardath.cross@institution.example.com", + "title": "", + "first_name_given": "Ardath", + "first_name_chosen": "", + "last_name": "Cross", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 71, + "model": "evaluation.userprofile", + "pk": 304, "fields": { - "user_profile": [ - "kelsey.kay@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.500", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-19T00:03:33.953", + "email": "sabine.knight@institution.example.com", + "title": "", + "first_name_given": "Sabine", + "first_name_chosen": "", + "last_name": "Knight", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 72, + "model": "evaluation.userprofile", + "pk": 305, "fields": { - "user_profile": [ - "jenniffer.kinard@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.528", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-24T21:31:17.863", + "email": "nora.rowley@institution.example.com", + "title": "", + "first_name_given": "Nora", + "first_name_chosen": "", + "last_name": "Rowley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 73, + "model": "evaluation.userprofile", + "pk": 306, "fields": { - "user_profile": [ - "clarence.kirkland@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.533", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-11-08T07:57:04.396", + "email": "eugene.tennant@institution.example.com", + "title": "", + "first_name_given": "Eugene", + "first_name_chosen": "", + "last_name": "Tennant", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 74, + "model": "evaluation.userprofile", + "pk": 307, "fields": { - "user_profile": [ - "Matthias.Kober@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.549", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-23T12:59:49.557", + "email": "felice.meek@institution.example.com", + "title": "", + "first_name_given": "Felice", + "first_name_chosen": "", + "last_name": "Meek", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 75, + "model": "evaluation.userprofile", + "pk": 308, "fields": { - "user_profile": [ - "laura.lamb@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.563", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-23T23:20:10.602", + "email": "macie.roller@institution.example.com", + "title": "", + "first_name_given": "Macie", + "first_name_chosen": "", + "last_name": "Roller", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 76, + "model": "evaluation.userprofile", + "pk": 309, "fields": { - "user_profile": [ - "antony.landry@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.572", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-23T19:13:08.162", + "email": "keith.sanchez@institution.example.com", + "title": "", + "first_name_given": "Keith", + "first_name_chosen": "", + "last_name": "Sanchez", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 77, + "model": "evaluation.userprofile", + "pk": 310, "fields": { - "user_profile": [ - "melody.large@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.586", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$20000$6wS8Pd0oAIrT$aE2U2a4TOHid6QIFpoUjJx6D3+qnFx30UmuyGKLg6us=", + "last_login": "2015-11-08T14:33:36.461", + "email": "diedra.batson@institution.example.com", + "title": "", + "first_name_given": "Diedra", + "first_name_chosen": "", + "last_name": "Batson", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 78, + "model": "evaluation.userprofile", + "pk": 311, "fields": { - "user_profile": [ - "marna.leboeuf@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.604", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T18:52:52.705", + "email": "eleanor.freese@institution.example.com", + "title": "", + "first_name_given": "Eleanor", + "first_name_chosen": "", + "last_name": "Freese", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 79, + "model": "evaluation.userprofile", + "pk": 312, "fields": { - "user_profile": [ - "joette.lindley@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.628", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-30T20:01:40.471", + "email": "magen.thorn@institution.example.com", + "title": "", + "first_name_given": "Magen", + "first_name_chosen": "", + "last_name": "Thorn", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2013-05-16", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 80, + "model": "evaluation.userprofile", + "pk": 313, "fields": { - "user_profile": [ - "pedro.logue@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.642", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-12-06T10:37:49.806", + "email": "lorene.moultrie@institution.example.com", + "title": "", + "first_name_given": "Lorene", + "first_name_chosen": "", + "last_name": "Moultrie", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 81, + "model": "evaluation.userprofile", + "pk": 314, "fields": { - "user_profile": [ - "marcella.lu@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.668", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-17T12:00:14.509", + "email": "reynaldo.thayer@institution.example.com", + "title": "", + "first_name_given": "Reynaldo", + "first_name_chosen": "", + "last_name": "Thayer", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 82, + "model": "evaluation.userprofile", + "pk": 315, "fields": { - "user_profile": [ - "candie.lugo@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.676", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-23T20:02:06.820", + "email": "luis.truong@institution.example.com", + "title": "", + "first_name_given": "Luis", + "first_name_chosen": "", + "last_name": "Truong", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 83, + "model": "evaluation.userprofile", + "pk": 316, "fields": { - "user_profile": [ - "corine.lunsford@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.683", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-07T14:33:20.588", + "email": "lavina.connor@institution.example.com", + "title": "", + "first_name_given": "Lavina", + "first_name_chosen": "", + "last_name": "Connor", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 84, + "model": "evaluation.userprofile", + "pk": 317, "fields": { - "user_profile": [ - "penni.luong@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.688", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-07T09:04:41.784", + "email": "alfreda.roche@institution.example.com", + "title": "", + "first_name_given": "Alfreda", + "first_name_chosen": "", + "last_name": "Roche", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 85, + "model": "evaluation.userprofile", + "pk": 318, "fields": { - "user_profile": [ - "tuan.malcolm@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.704", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-31T07:16:47.118", + "email": "myrtle.wahl@institution.example.com", + "title": "", + "first_name_given": "Myrtle", + "first_name_chosen": "", + "last_name": "Wahl", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 86, + "model": "evaluation.userprofile", + "pk": 319, "fields": { - "user_profile": [ - "earlene.marquis@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.720", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-01T17:52:10", + "email": "Matthias.Kober@institution.example.com", + "title": "", + "first_name_given": "Matthias", + "first_name_chosen": "", + "last_name": "Kober", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 87, + "model": "evaluation.userprofile", + "pk": 320, "fields": { - "user_profile": [ - "effie.martindale@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.727", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-10T21:44:14.222", + "email": "fay.westmoreland@institution.example.com", + "title": "", + "first_name_given": "Fay", + "first_name_chosen": "", + "last_name": "Westmoreland", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 88, + "model": "evaluation.userprofile", + "pk": 321, "fields": { - "user_profile": [ - "gaylord.mcafee@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.743", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-10T17:32:03.488", + "email": "collin.hanley@institution.example.com", + "title": "", + "first_name_given": "Collin", + "first_name_chosen": "", + "last_name": "Hanley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 89, + "model": "evaluation.userprofile", + "pk": 322, "fields": { - "user_profile": [ - "marlana.mclain@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.786", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-10T09:09:08.220", + "email": "josef.castellano@institution.example.com", + "title": "", + "first_name_given": "Josef", + "first_name_chosen": "", + "last_name": "Castellano", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 90, + "model": "evaluation.userprofile", + "pk": 323, "fields": { - "user_profile": [ - "antonetta.middleton@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.824", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-03T08:42:40.410", + "email": "student@institution.example.com", + "title": "", + "first_name_given": "", + "first_name_chosen": "", + "last_name": "student", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 91, + "model": "evaluation.userprofile", + "pk": 324, "fields": { - "user_profile": [ - "maureen.moe@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.830", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-22T16:34:45.660", + "email": "jarod.cate@institution.example.com", + "title": "", + "first_name_given": "Jarod", + "first_name_chosen": "", + "last_name": "Cate", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 92, + "model": "evaluation.userprofile", + "pk": 325, "fields": { - "user_profile": [ - "minerva.moe@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.834", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-03-01T13:31:23.413", + "email": "renaldo.melendez@institution.example.com", + "title": "", + "first_name_given": "Renaldo", + "first_name_chosen": "", + "last_name": "Melendez", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 93, + "model": "evaluation.userprofile", + "pk": 326, "fields": { - "user_profile": [ - "marilynn.oconnor@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.893", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-04T08:22:23.153", + "email": "taunya.weinstein@institution.example.com", + "title": "", + "first_name_given": "Taunya", + "first_name_chosen": "", + "last_name": "Weinstein", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 94, + "model": "evaluation.userprofile", + "pk": 327, "fields": { - "user_profile": [ - "alona.oldham@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.897", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-18T20:17:01.986", + "email": "delena.gooch@institution.example.com", + "title": "", + "first_name_given": "Delena", + "first_name_chosen": "", + "last_name": "Gooch", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 95, + "model": "evaluation.userprofile", + "pk": 328, "fields": { - "user_profile": [ - "roxy.olds@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.902", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-23T16:05:42.773", + "email": "ariana.houghton@institution.example.com", + "title": "", + "first_name_given": "Ariana", + "first_name_chosen": "", + "last_name": "Houghton", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 96, + "model": "evaluation.userprofile", + "pk": 329, "fields": { - "user_profile": [ - "lashandra.peacock@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.933", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-26T15:26:45.194", + "email": "mercedes.hatch@institution.example.com", + "title": "", + "first_name_given": "Mercedes", + "first_name_chosen": "", + "last_name": "Hatch", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 97, + "model": "evaluation.userprofile", + "pk": 330, "fields": { - "user_profile": [ - "armand.person@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.948", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-02T21:46:20.458", + "email": "michaele.shuler@institution.example.com", + "title": "", + "first_name_given": "Michaele", + "first_name_chosen": "", + "last_name": "Shuler", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 98, + "model": "evaluation.userprofile", + "pk": 331, "fields": { - "user_profile": [ - "latasha.pham@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.960", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-07T13:35:24.761", + "email": "randi.woody@institution.example.com", + "title": "", + "first_name_given": "Randi", + "first_name_chosen": "", + "last_name": "Woody", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 99, + "model": "evaluation.userprofile", + "pk": 332, "fields": { - "user_profile": [ - "arletha.picard@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.969", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-08T14:53:12.763", + "email": "milly.early@institution.example.com", + "title": "", + "first_name_given": "Milly", + "first_name_chosen": "", + "last_name": "Early", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 100, + "model": "evaluation.userprofile", + "pk": 333, "fields": { - "user_profile": [ - "eleanor.pinkston@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.977", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-10T10:51:46.256", + "email": "marya.metcalf@institution.example.com", + "title": "", + "first_name_given": "Marya", + "first_name_chosen": "", + "last_name": "Metcalf", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 101, + "model": "evaluation.userprofile", + "pk": 334, "fields": { - "user_profile": [ - "lenard.post@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.987", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-10T15:35:41.696", + "email": "january.copeland@institution.example.com", + "title": "", + "first_name_given": "January", + "first_name_chosen": "", + "last_name": "Copeland", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 102, + "model": "evaluation.userprofile", + "pk": 335, "fields": { - "user_profile": [ - "karine.prater@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:24.991", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-10T17:29:53.306", + "email": "jeremiah.burkholder@institution.example.com", + "title": "", + "first_name_given": "Jeremiah", + "first_name_chosen": "", + "last_name": "Burkholder", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 103, + "model": "evaluation.userprofile", + "pk": 336, "fields": { - "user_profile": [ - "sandra.pulido@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.004", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-22T22:49:57.122", + "email": "wava.dolan@institution.example.com", + "title": "", + "first_name_given": "Wava", + "first_name_chosen": "", + "last_name": "Dolan", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 104, + "model": "evaluation.userprofile", + "pk": 337, "fields": { - "user_profile": [ - "porfirio.rasmussen@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.019", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-16T12:48:01.632", + "email": "herminia.alley@institution.example.com", + "title": "", + "first_name_given": "Herminia", + "first_name_chosen": "", + "last_name": "Alley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 105, + "model": "evaluation.userprofile", + "pk": 338, "fields": { - "user_profile": [ - "noriko.rau@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.023", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T16:02:57.758", + "email": "armandina.byrne@institution.example.com", + "title": "", + "first_name_given": "Armandina", + "first_name_chosen": "", + "last_name": "Byrne", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 106, + "model": "evaluation.userprofile", + "pk": 339, "fields": { - "user_profile": [ - "lita.regan@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.047", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$20000$MapdKDF22w2c$+BDIKGr3INVhRWV25Y5UBG9mP/pJOiKPvgF2UK/aclc=", + "last_login": "2015-11-08T14:34:10.243", + "email": "kristina.baker@institution.example.com", + "title": "", + "first_name_given": "Kristina", + "first_name_chosen": "", + "last_name": "Baker", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 107, + "model": "evaluation.userprofile", + "pk": 340, "fields": { - "user_profile": [ - "randell.reis@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.054", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T15:44:18.632", + "email": "cheryl.lucas@institution.example.com", + "title": "", + "first_name_given": "Cheryl", + "first_name_chosen": "", + "last_name": "Lucas", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 108, + "model": "evaluation.userprofile", + "pk": 341, "fields": { - "user_profile": [ - "darci.rinehart@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.068", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:58:07.212", + "email": "marcos.huang@institution.example.com", + "title": "", + "first_name_given": "Marcos", + "first_name_chosen": "", + "last_name": "Huang", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 109, + "model": "evaluation.userprofile", + "pk": 342, "fields": { - "user_profile": [ - "claudine.ritchey@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.072", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-26T09:17:18.823", + "email": "sima.marquardt@institution.example.com", + "title": "", + "first_name_given": "Sima", + "first_name_chosen": "", + "last_name": "Marquardt", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 110, + "model": "evaluation.userprofile", + "pk": 343, "fields": { - "user_profile": [ - "chauncey.rivera@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.076", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-03T20:01:38.610", + "email": "arturo.heflin@institution.example.com", + "title": "", + "first_name_given": "Arturo", + "first_name_chosen": "", + "last_name": "Heflin", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 111, + "model": "evaluation.userprofile", + "pk": 344, "fields": { - "user_profile": [ - "tod.rowe@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.113", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T16:02:54.654", + "email": "rhona.earl@institution.example.com", + "title": "", + "first_name_given": "Rhona", + "first_name_chosen": "", + "last_name": "Earl", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 112, + "model": "evaluation.userprofile", + "pk": 345, "fields": { - "user_profile": [ - "ethyl.rust@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.137", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-07T12:27:44.048", + "email": "jenniffer.kinard@institution.example.com", + "title": "", + "first_name_given": "Jenniffer", + "first_name_chosen": "", + "last_name": "Kinard", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 113, + "model": "evaluation.userprofile", + "pk": 346, "fields": { - "user_profile": [ - "sherie.ruth@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.142", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-08-04T13:52:06.334", + "email": "corey.loera@institution.example.com", + "title": "", + "first_name_given": "Corey", + "first_name_chosen": "", + "last_name": "Loera", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 114, + "model": "evaluation.userprofile", + "pk": 347, "fields": { - "user_profile": [ - "lin.sales@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.152", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T09:16:24.696", + "email": "camila.sharp@institution.example.com", + "title": "", + "first_name_given": "Camila", + "first_name_chosen": "", + "last_name": "Sharp", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 115, + "model": "evaluation.userprofile", + "pk": 348, "fields": { - "user_profile": [ - "cyndy.salter@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.160", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-06T15:47:03.050", + "email": "merideth.chandler@institution.example.com", + "title": "", + "first_name_given": "Merideth", + "first_name_chosen": "", + "last_name": "Chandler", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 116, + "model": "evaluation.userprofile", + "pk": 349, "fields": { - "user_profile": [ - "maribel.scales@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.182", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-31T07:51:49.472", + "email": "gertude.knotts@institution.example.com", + "title": "", + "first_name_given": "Gertude", + "first_name_chosen": "", + "last_name": "Knotts", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 117, + "model": "evaluation.userprofile", + "pk": 350, "fields": { - "user_profile": [ - "rebecca.schuler@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.188", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-29T01:24:56.050", + "email": "lita.regan@institution.example.com", + "title": "", + "first_name_given": "Lita", + "first_name_chosen": "", + "last_name": "Regan", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 118, + "model": "evaluation.userprofile", + "pk": 351, "fields": { - "user_profile": [ - "michaele.shuler@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.212", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-02T13:21:09.494", + "email": "stacy.sawyer@institution.example.com", + "title": "", + "first_name_given": "Stacy", + "first_name_chosen": "", + "last_name": "Sawyer", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 119, + "model": "evaluation.userprofile", + "pk": 352, "fields": { - "user_profile": [ - "nan.simpkins@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.227", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:15.568", + "email": "kandra.monahan@institution.example.com", + "title": "", + "first_name_given": "Kandra", + "first_name_chosen": "", + "last_name": "Monahan", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 120, + "model": "evaluation.userprofile", + "pk": 353, "fields": { - "user_profile": [ - "celestina.slattery@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.244", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-26T09:22:05.989", + "email": "lucia.helton@institution.example.com", + "title": "", + "first_name_given": "Lucia", + "first_name_chosen": "", + "last_name": "Helton", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 121, + "model": "evaluation.userprofile", + "pk": 354, "fields": { - "user_profile": [ - "ossie.stamper@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.295", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-19T12:01:49.760", + "email": "lilia.erwin@institution.example.com", + "title": "", + "first_name_given": "Lilia", + "first_name_chosen": "", + "last_name": "Erwin", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 122, + "model": "evaluation.userprofile", + "pk": 355, "fields": { - "user_profile": [ - "meagan.steed@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.304", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T15:51:28.646", + "email": "gwyn.berger@institution.example.com", + "title": "", + "first_name_given": "Gwyn", + "first_name_chosen": "", + "last_name": "Berger", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 123, + "model": "evaluation.userprofile", + "pk": 356, "fields": { - "user_profile": [ - "russel.stroup@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.324", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-03T08:46:48.712", + "email": "contributor@institution.example.com", + "title": "", + "first_name_given": "", + "first_name_chosen": "", + "last_name": "contributor", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 124, + "model": "evaluation.userprofile", + "pk": 357, "fields": { - "user_profile": [ - "kristie.stump@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.335", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-22T21:05:21.778", + "email": "lorrine.robertson@institution.example.com", + "title": "", + "first_name_given": "Lorrine", + "first_name_chosen": "", + "last_name": "Robertson", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 125, + "model": "evaluation.userprofile", + "pk": 358, "fields": { - "user_profile": [ - "tayna.tarver@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.358", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-06-05T22:28:25.156", + "email": "agatha.howe@institution.example.com", + "title": "", + "first_name_given": "Agatha", + "first_name_chosen": "", + "last_name": "Howe", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 126, + "model": "evaluation.userprofile", + "pk": 359, "fields": { - "user_profile": [ - "reynaldo.thayer@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.370", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-12-18T15:33:29.791", + "email": "willodean.kitchens@institution.example.com", + "title": "", + "first_name_given": "Willodean", + "first_name_chosen": "", + "last_name": "Kitchens", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 127, + "model": "evaluation.userprofile", + "pk": 360, "fields": { - "user_profile": [ - "clement.tibbetts@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.387", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-28T09:53:37.453", + "email": "felicia.rawlings@institution.example.com", + "title": "", + "first_name_given": "Felicia", + "first_name_chosen": "", + "last_name": "Rawlings", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 128, + "model": "evaluation.userprofile", + "pk": 361, "fields": { - "user_profile": [ - "irwin.tompkins@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.405", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-13T22:14:34.781", + "email": "stanford.vernon@institution.example.com", + "title": "", + "first_name_given": "Stanford", + "first_name_chosen": "", + "last_name": "Vernon", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 129, + "model": "evaluation.userprofile", + "pk": 362, "fields": { - "user_profile": [ - "ingrid.trice@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.418", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-18T23:15:45.143", + "email": "lyndon.bowles@institution.example.com", + "title": "", + "first_name_given": "Lyndon", + "first_name_chosen": "", + "last_name": "Bowles", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 130, + "model": "evaluation.userprofile", + "pk": 363, "fields": { - "user_profile": [ - "brianna.true@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.423", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:10:16.988", + "email": "ute.ybarra@institution.example.com", + "title": "", + "first_name_given": "Ute", + "first_name_chosen": "", + "last_name": "Ybarra", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 131, + "model": "evaluation.userprofile", + "pk": 364, "fields": { - "user_profile": [ - "shandra.turner@institution.example.com" + "is_superuser": true, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-22T10:17:57.715", + "email": "earlene.marquis@institution.example.com", + "title": "", + "first_name_given": "Earlene", + "first_name_chosen": "", + "last_name": "Marquis", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [ + [ + "Manager" + ] ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.430", - "value": 3 + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 132, + "model": "evaluation.userprofile", + "pk": 365, "fields": { - "user_profile": [ - "shelia.turney@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.434", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T17:51:10.181", + "email": "jesusita.box@institution.example.com", + "title": "", + "first_name_given": "Jesusita", + "first_name_chosen": "", + "last_name": "Box", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 133, + "model": "evaluation.userprofile", + "pk": 366, "fields": { - "user_profile": [ - "isabelle.veal@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.454", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-30T19:26:37.650", + "email": "carman.slagle@institution.example.com", + "title": "", + "first_name_given": "Carman", + "first_name_chosen": "", + "last_name": "Slagle", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 134, + "model": "evaluation.userprofile", + "pk": 367, "fields": { - "user_profile": [ - "dominga.vega@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.459", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-06-06T14:51:06.563", + "email": "vincenzo.boston@institution.example.com", + "title": "", + "first_name_given": "Vincenzo", + "first_name_chosen": "", + "last_name": "Boston", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 135, + "model": "evaluation.userprofile", + "pk": 368, "fields": { - "user_profile": [ - "stanford.vernon@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.463", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T15:52:03.602", + "email": "salina.boykin@institution.example.com", + "title": "", + "first_name_given": "Salina", + "first_name_chosen": "", + "last_name": "Boykin", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 136, + "model": "evaluation.userprofile", + "pk": 369, "fields": { - "user_profile": [ - "emmaline.voigt@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.469", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T15:13:24.342", + "email": "shanta.jay@institution.example.com", + "title": "", + "first_name_given": "Shanta", + "first_name_chosen": "", + "last_name": "Jay", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 137, + "model": "evaluation.userprofile", + "pk": 370, "fields": { - "user_profile": [ - "myrtle.wahl@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.480", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-31T23:40:10.825", + "email": "larraine.olson@institution.example.com", + "title": "", + "first_name_given": "Larraine", + "first_name_chosen": "", + "last_name": "Olson", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 138, + "model": "evaluation.userprofile", + "pk": 371, "fields": { - "user_profile": [ - "giuseppina.waldrop@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.484", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-07T10:07:30.747", + "email": "shemeka.nieves@institution.example.com", + "title": "", + "first_name_given": "Shemeka", + "first_name_chosen": "", + "last_name": "Nieves", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 139, + "model": "evaluation.userprofile", + "pk": 372, "fields": { - "user_profile": [ - "florencia.washington@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.493", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:38:13.699", + "email": "almeta.cody@institution.example.com", + "title": "", + "first_name_given": "Almeta", + "first_name_chosen": "", + "last_name": "Cody", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 140, + "model": "evaluation.userprofile", + "pk": 373, "fields": { - "user_profile": [ - "stacy.webber@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.503", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-29T20:02:26.052", + "email": "mirtha.cleveland@institution.example.com", + "title": "", + "first_name_given": "Mirtha", + "first_name_chosen": "", + "last_name": "Cleveland", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 141, + "model": "evaluation.userprofile", + "pk": 374, "fields": { - "user_profile": [ - "mistie.weddle@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.507", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-28T10:57:50.631", + "email": "mickie.england@institution.example.com", + "title": "", + "first_name_given": "Mickie", + "first_name_chosen": "", + "last_name": "England", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 142, + "model": "evaluation.userprofile", + "pk": 375, "fields": { - "user_profile": [ - "taunya.weinstein@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.512", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T18:23:27.426", + "email": "shayna.hyde@institution.example.com", + "title": "", + "first_name_given": "Shayna", + "first_name_chosen": "", + "last_name": "Hyde", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 143, + "model": "evaluation.userprofile", + "pk": 376, "fields": { - "user_profile": [ - "suzi.wick@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.527", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-07T15:00:33.447", + "email": "tyrell.pfeiffer@institution.example.com", + "title": "", + "first_name_given": "Tyrell", + "first_name_chosen": "", + "last_name": "Pfeiffer", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2013-09-28", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 144, + "model": "evaluation.userprofile", + "pk": 377, "fields": { - "user_profile": [ - "reid.willingham@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.541", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-05T13:08:04.066", + "email": "minerva.moe@institution.example.com", + "title": "", + "first_name_given": "Minerva", + "first_name_chosen": "", + "last_name": "Moe", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 145, + "model": "evaluation.userprofile", + "pk": 378, "fields": { - "user_profile": [ - "lelia.worley@institution.example.com" - ], - "semester": 19, - "granting_time": "2015-11-08T14:27:25.555", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-31T10:17:59.824", + "email": "sandie.aiello@institution.example.com", + "title": "", + "first_name_given": "Sandie", + "first_name_chosen": "", + "last_name": "Aiello", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 146, - "fields": { - "user_profile": [ - "valda.antoine@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.091", - "value": 3 - } -}, -{ - "model": "rewards.rewardpointgranting", - "pk": 147, - "fields": { - "user_profile": [ - "billi.arce@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.097", - "value": 3 - } -}, -{ - "model": "rewards.rewardpointgranting", - "pk": 148, + "model": "evaluation.userprofile", + "pk": 379, "fields": { - "user_profile": [ - "sheena.arsenault@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.115", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-22T16:02:09.366", + "email": "elenora.ellis@institution.example.com", + "title": "", + "first_name_given": "Elenora", + "first_name_chosen": "", + "last_name": "Ellis", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 149, + "model": "evaluation.userprofile", + "pk": 380, "fields": { - "user_profile": [ - "diedra.batson@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.140", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:19.962", + "email": "linnea.humes@institution.example.com", + "title": "", + "first_name_given": "Linnea", + "first_name_chosen": "", + "last_name": "Humes", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 150, + "model": "evaluation.userprofile", + "pk": 381, "fields": { - "user_profile": [ - "terisa.bottoms@institution.example.com" + "is_superuser": true, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-24T11:19:54.509", + "email": "hassie.dortch@institution.example.com", + "title": "", + "first_name_given": "Hassie", + "first_name_chosen": "", + "last_name": "Dortch", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [ + [ + "Manager" + ] ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.201", - "value": 3 + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 151, + "model": "evaluation.userprofile", + "pk": 382, "fields": { - "user_profile": [ - "aida.broome@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.242", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-22T16:03:48.200", + "email": "bertram.hendrick@institution.example.com", + "title": "", + "first_name_given": "Bertram", + "first_name_chosen": "", + "last_name": "Hendrick", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 152, + "model": "evaluation.userprofile", + "pk": 383, "fields": { - "user_profile": [ - "kirstin.carbone@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.293", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:10:48.296", + "email": "randell.reis@institution.example.com", + "title": "", + "first_name_given": "Randell", + "first_name_chosen": "", + "last_name": "Reis", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 153, + "model": "evaluation.userprofile", + "pk": 384, "fields": { - "user_profile": [ - "virgina.carrasco@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.313", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T17:14:43.745", + "email": "kymberly.strange@institution.example.com", + "title": "", + "first_name_given": "Kymberly", + "first_name_chosen": "", + "last_name": "Strange", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 154, + "model": "evaluation.userprofile", + "pk": 385, "fields": { - "user_profile": [ - "jeremy.carrington@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.320", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T16:13:10.828", + "email": "bari.soares@institution.example.com", + "title": "", + "first_name_given": "Bari", + "first_name_chosen": "", + "last_name": "Soares", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 155, + "model": "evaluation.userprofile", + "pk": 386, "fields": { - "user_profile": [ - "almeta.cody@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.376", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$20000$4b9M7Kv45ghM$CIqoizm3HLhMh3D1+xye5Jqr6LV7IyXGBWmwmsVW/js=", + "last_login": "2015-11-08T12:44:39.899", + "email": "lachelle.hermann@institution.example.com", + "title": "", + "first_name_given": "Lachelle", + "first_name_chosen": "", + "last_name": "Hermann", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 156, + "model": "evaluation.userprofile", + "pk": 387, "fields": { - "user_profile": [ - "cherry.doughty@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.467", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T13:39:24.115", + "email": "sheridan.limon@institution.example.com", + "title": "", + "first_name_given": "Sheridan", + "first_name_chosen": "", + "last_name": "Limon", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 157, + "model": "evaluation.userprofile", + "pk": 388, "fields": { - "user_profile": [ - "kiana.easley@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.492", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-04T00:53:53.335", + "email": "alona.oldham@institution.example.com", + "title": "", + "first_name_given": "Alona", + "first_name_chosen": "", + "last_name": "Oldham", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 158, + "model": "evaluation.userprofile", + "pk": 389, "fields": { - "user_profile": [ - "jarrett.flannery@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.546", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-11T21:23:39.762", + "email": "kristyn.holcomb@institution.example.com", + "title": "", + "first_name_given": "Kristyn", + "first_name_chosen": "", + "last_name": "Holcomb", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 159, + "model": "evaluation.userprofile", + "pk": 390, "fields": { - "user_profile": [ - "willena.hemphill@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.704", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:22.152", + "email": "annmarie.godfrey@institution.example.com", + "title": "", + "first_name_given": "Annmarie", + "first_name_chosen": "", + "last_name": "Godfrey", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 160, + "model": "evaluation.userprofile", + "pk": 391, "fields": { - "user_profile": [ - "lachelle.hermann@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.715", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-08T08:52:55.707", + "email": "verena.blaylock@institution.example.com", + "title": "", + "first_name_given": "Verena", + "first_name_chosen": "", + "last_name": "Blaylock", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 161, + "model": "evaluation.userprofile", + "pk": 392, "fields": { - "user_profile": [ - "maryetta.hollingsworth@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.738", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-04-22T16:37:57.331", + "email": "lupe.comstock@institution.example.com", + "title": "", + "first_name_given": "Lupe", + "first_name_chosen": "", + "last_name": "Comstock", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 162, + "model": "evaluation.userprofile", + "pk": 393, "fields": { - "user_profile": [ - "tami.isaac@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.778", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$20000$cZek9pUwPWjz$HOcVeL8Q7himlOTBlPRkP79kJq5aGpXRkzQy6Y0Twok=", + "last_login": "2015-11-08T14:33:55.842", + "email": "sheena.arsenault@institution.example.com", + "title": "", + "first_name_given": "Sheena", + "first_name_chosen": "", + "last_name": "Arsenault", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 163, + "model": "evaluation.userprofile", + "pk": 394, "fields": { - "user_profile": [ - "Matthias.Kober@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.833", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T07:11:18.259", + "email": "kandis.thurston@institution.example.com", + "title": "", + "first_name_given": "Kandis", + "first_name_chosen": "", + "last_name": "Thurston", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 164, + "model": "evaluation.userprofile", + "pk": 395, "fields": { - "user_profile": [ - "corine.lunsford@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:14.927", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T09:08:53.814", + "email": "xiomara.nakamura@institution.example.com", + "title": "", + "first_name_given": "Xiomara", + "first_name_chosen": "", + "last_name": "Nakamura", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 165, + "model": "evaluation.userprofile", + "pk": 396, "fields": { - "user_profile": [ - "odessa.mcmullen@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:15.008", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-09T00:31:01.004", + "email": "jeannie.spears@institution.example.com", + "title": "", + "first_name_given": "Jeannie", + "first_name_chosen": "", + "last_name": "Spears", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 166, + "model": "evaluation.userprofile", + "pk": 397, "fields": { - "user_profile": [ - "felice.meek@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:15.022", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:23.295", + "email": "precious.reiss@institution.example.com", + "title": "", + "first_name_given": "Precious", + "first_name_chosen": "", + "last_name": "Reiss", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 167, + "model": "evaluation.userprofile", + "pk": 398, "fields": { - "user_profile": [ - "tawanna.negrete@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:15.074", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-18T14:16:22.169", + "email": "concha.ezell@institution.example.com", + "title": "", + "first_name_given": "Concha", + "first_name_chosen": "", + "last_name": "Ezell", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 168, + "model": "evaluation.userprofile", + "pk": 399, "fields": { - "user_profile": [ - "armida.nobles@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:15.086", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:23.516", + "email": "mario.voigt@institution.example.com", + "title": "", + "first_name_given": "Mario", + "first_name_chosen": "", + "last_name": "Voigt", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 169, + "model": "evaluation.userprofile", + "pk": 400, "fields": { - "user_profile": [ - "roxy.olds@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:15.102", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-13T17:20:30.190", + "email": "chia.spalding@institution.example.com", + "title": "", + "first_name_given": "Chia", + "first_name_chosen": "", + "last_name": "Spalding", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 170, + "model": "evaluation.userprofile", + "pk": 401, "fields": { - "user_profile": [ - "luann.schulz@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:15.310", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-08T14:57:57.136", + "email": "audie.luna@institution.example.com", + "title": "", + "first_name_given": "Audie", + "first_name_chosen": "", + "last_name": "Luna", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 171, + "model": "evaluation.userprofile", + "pk": 402, "fields": { - "user_profile": [ - "michaele.shuler@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:15.344", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-23T15:45:57.358", + "email": "armida.nobles@institution.example.com", + "title": "", + "first_name_given": "Armida", + "first_name_chosen": "", + "last_name": "Nobles", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 172, + "model": "evaluation.userprofile", + "pk": 403, "fields": { - "user_profile": [ - "alton.smalley@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:15.376", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-14T13:04:03.554", + "email": "florencia.washington@institution.example.com", + "title": "", + "first_name_given": "Florencia", + "first_name_chosen": "", + "last_name": "Washington", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 173, + "model": "evaluation.userprofile", + "pk": 404, "fields": { - "user_profile": [ - "raymonde.stock@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:15.431", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-24T19:46:34.696", + "email": "gladis.vandiver@institution.example.com", + "title": "", + "first_name_given": "Gladis", + "first_name_chosen": "", + "last_name": "Vandiver", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 174, + "model": "evaluation.userprofile", + "pk": 405, "fields": { - "user_profile": [ - "myrtle.wahl@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:15.547", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-13T16:29:16.534", + "email": "risa.hammer@institution.example.com", + "title": "", + "first_name_given": "Risa", + "first_name_chosen": "", + "last_name": "Hammer", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 175, + "model": "evaluation.userprofile", + "pk": 406, "fields": { - "user_profile": [ - "giuseppina.waldrop@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:15.552", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-09T06:40:44.829", + "email": "mable.craddock@institution.example.com", + "title": "", + "first_name_given": "Mable", + "first_name_chosen": "", + "last_name": "Craddock", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointgranting", - "pk": 176, + "model": "evaluation.userprofile", + "pk": 407, "fields": { - "user_profile": [ - "fay.westmoreland@institution.example.com" - ], - "semester": 21, - "granting_time": "2015-11-08T14:31:15.577", - "value": 3 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T07:30:47.334", + "email": "maxie.childers@institution.example.com", + "title": "", + "first_name_given": "Maxie", + "first_name_chosen": "", + "last_name": "Childers", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointredemption", - "pk": 1, + "model": "evaluation.userprofile", + "pk": 408, "fields": { - "user_profile": [ - "diedra.batson@institution.example.com" - ], - "redemption_time": "2015-11-08T14:33:43.674", - "value": 3, - "event": 1 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-07T09:46:02.467", + "email": "caryl.ivory@institution.example.com", + "title": "", + "first_name_given": "Caryl", + "first_name_chosen": "", + "last_name": "Ivory", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointredemption", - "pk": 2, + "model": "evaluation.userprofile", + "pk": 409, "fields": { - "user_profile": [ - "sheena.arsenault@institution.example.com" - ], - "redemption_time": "2015-11-08T14:34:00.945", - "value": 3, - "event": 1 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-23T13:52:32.364", + "email": "zack.chaffin@institution.example.com", + "title": "", + "first_name_given": "Zack", + "first_name_chosen": "", + "last_name": "Chaffin", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointredemption", - "pk": 3, + "model": "evaluation.userprofile", + "pk": 410, "fields": { - "user_profile": [ - "kristina.baker@institution.example.com" - ], - "redemption_time": "2015-11-08T14:34:14.636", - "value": 2, - "event": 1 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:25.133", + "email": "angelita.stearns@institution.example.com", + "title": "", + "first_name_given": "Angelita", + "first_name_chosen": "", + "last_name": "Stearns", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointredemption", - "pk": 4, + "model": "evaluation.userprofile", + "pk": 411, "fields": { - "user_profile": [ - "alisa.askew@institution.example.com" - ], - "redemption_time": "2015-11-08T14:34:28.035", - "value": 1, - "event": 1 + "is_superuser": false, + "password": "pbkdf2_sha256$20000$384ADW2W9sEE$79veVLxuZa1S88YegvqOkqo3waDDqHGGLQ8QcBrV6ZQ=", + "last_login": "2015-11-08T12:46:25.140", + "email": "alton.smalley@institution.example.com", + "title": "", + "first_name_given": "Alton", + "first_name_chosen": "", + "last_name": "Smalley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointredemption", - "pk": 5, + "model": "evaluation.userprofile", + "pk": 412, "fields": { - "user_profile": [ - "valda.antoine@institution.example.com" - ], - "redemption_time": "2015-11-08T14:34:44.250", - "value": 2, - "event": 1 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-02T23:22:23.103", + "email": "kirstin.carbone@institution.example.com", + "title": "", + "first_name_given": "Kirstin", + "first_name_chosen": "", + "last_name": "Carbone", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointredemption", - "pk": 6, + "model": "evaluation.userprofile", + "pk": 413, "fields": { - "user_profile": [ - "valda.antoine@institution.example.com" - ], - "redemption_time": "2015-11-08T14:34:50.295", - "value": 4, - "event": 1 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-13T19:06:29.724", + "email": "kelsey.kay@institution.example.com", + "title": "", + "first_name_given": "Kelsey", + "first_name_chosen": "", + "last_name": "Kay", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.rewardpointredemption", - "pk": 7, + "model": "evaluation.userprofile", + "pk": 414, "fields": { - "user_profile": [ - "heide.andrew@institution.example.com" - ], - "redemption_time": "2015-11-08T14:35:08.786", - "value": 3, - "event": 1 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-13T16:38:42.007", + "email": "penelope.covert@institution.example.com", + "title": "", + "first_name_given": "Penelope", + "first_name_chosen": "", + "last_name": "Covert", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.semesteractivation", - "pk": 1, + "model": "evaluation.userprofile", + "pk": 415, "fields": { - "semester": 19, - "is_active": true + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T23:52:16.190", + "email": "christia.manzo@institution.example.com", + "title": "", + "first_name_given": "Christia", + "first_name_chosen": "", + "last_name": "Manzo", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "rewards.semesteractivation", - "pk": 2, + "model": "evaluation.userprofile", + "pk": 416, "fields": { - "semester": 21, - "is_active": true - } -}, -{ - "model": "student.textanswerwarning", - "pk": 1, - "fields": { - "warning_text_de": "Es sieht so aus, als ob du auf eine andere Antwort verweist. Alle Antworten werden unabhängig voneinander gespeichert, also werden andere nicht wissen, worauf du dich beziehst.", - "warning_text_en": "It looks like you are referencing another answer. All answers are saved independently of each other, so others won't know which answer you are referring to.", - "trigger_strings": "[\"s.o.\", \"s. o.\", \"siehe oben\", \"wie oben\", \"see above\", \"bereits erw\\u00e4hnt\", \"already stated\"]", - "order": 0 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:26.206", + "email": "donnie.bates@institution.example.com", + "title": "", + "first_name_given": "Donnie", + "first_name_chosen": "", + "last_name": "Bates", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "grades.gradedocument", - "pk": 2, + "model": "evaluation.userprofile", + "pk": 417, "fields": { - "course": 9, - "file": "grades/1577/test_results_03.txt", - "type": "FIN", - "description_de": "Final grades", - "description_en": "Final grades", - "last_modified_time": "2016-02-01T21:56:14.372", - "last_modified_user": [ - "grade_publisher@institution.example.com" - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-14T12:48:26.729", + "email": "belia.coe@institution.example.com", + "title": "", + "first_name_given": "Belia", + "first_name_chosen": "", + "last_name": "Coe", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "grades.gradedocument", - "pk": 3, + "model": "evaluation.userprofile", + "pk": 418, "fields": { - "course": 23, - "file": "grades/1525/test_results_01.txt", - "type": "MID", - "description_de": "Midterm grades", - "description_en": "Midterm grades", - "last_modified_time": "2016-02-01T21:56:14.373", - "last_modified_user": [ - "grade_publisher@institution.example.com" - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-03T13:07:11.525", + "email": "allie.lowell@institution.example.com", + "title": "", + "first_name_given": "Allie", + "first_name_chosen": "", + "last_name": "Lowell", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "grades.gradedocument", - "pk": 4, + "model": "evaluation.userprofile", + "pk": 419, "fields": { - "course": 89, - "file": "grades/1694/test_results_02.txt", - "type": "MID", - "description_de": "Midterm grades", - "description_en": "Midterm grades", - "last_modified_time": "2016-02-01T21:56:14.374", - "last_modified_user": [ - "grade_publisher@institution.example.com" - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-03T03:36:51.513", + "email": "florene.carney@institution.example.com", + "title": "", + "first_name_given": "Florene", + "first_name_chosen": "", + "last_name": "Carney", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 89, + "model": "evaluation.userprofile", + "pk": 420, "fields": { - "evaluation": 34, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-13T13:16:03.591", + "email": "dannielle.mattingly@institution.example.com", + "title": "", + "first_name_given": "Dannielle", + "first_name_chosen": "", + "last_name": "Mattingly", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 90, + "model": "evaluation.userprofile", + "pk": 421, "fields": { - "evaluation": 34, - "contributor": [ - "chieko.lehman@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 107 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-08T09:16:34.608", + "email": "corrine.kell@institution.example.com", + "title": "", + "first_name_given": "Corrine", + "first_name_chosen": "", + "last_name": "Kell", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2012-05-08", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 788, + "model": "evaluation.userprofile", + "pk": 422, "fields": { - "evaluation": 310, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-03-21T13:00:11.106", + "email": "roxanna.sandlin@institution.example.com", + "title": "", + "first_name_given": "Roxanna", + "first_name_chosen": "", + "last_name": "Sandlin", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 789, + "model": "evaluation.userprofile", + "pk": 423, "fields": { - "evaluation": 310, - "contributor": [ - "ellsworth.thornburg@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 90, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-09T15:15:23.092", + "email": "ariana.amaya@institution.example.com", + "title": "", + "first_name_given": "Ariana", + "first_name_chosen": "", + "last_name": "Amaya", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 790, + "model": "evaluation.userprofile", + "pk": 424, "fields": { - "evaluation": 311, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 88, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-27T18:06:32.610", + "email": "maxine.dexter@institution.example.com", + "title": "", + "first_name_given": "Maxine", + "first_name_chosen": "", + "last_name": "Dexter", + "language": "", + "is_proxy_user": false, + "login_key": 979985223, + "login_key_valid_until": "2020-05-25", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 791, + "model": "evaluation.userprofile", + "pk": 425, "fields": { - "evaluation": 311, - "contributor": [ - "ellsworth.thornburg@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T15:50:01.083", + "email": "rozella.swenson@institution.example.com", + "title": "", + "first_name_given": "Rozella", + "first_name_chosen": "", + "last_name": "Swenson", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 804, + "model": "evaluation.userprofile", + "pk": 426, "fields": { - "evaluation": 318, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T17:33:46.339", + "email": "hoyt.bohn@institution.example.com", + "title": "", + "first_name_given": "Hoyt", + "first_name_chosen": "", + "last_name": "Bohn", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 805, + "model": "evaluation.userprofile", + "pk": 427, "fields": { - "evaluation": 318, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T18:19:19.030", + "email": "shameka.dew@institution.example.com", + "title": "", + "first_name_given": "Shameka", + "first_name_chosen": "", + "last_name": "Dew", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 822, + "model": "evaluation.userprofile", + "pk": 428, "fields": { - "evaluation": 327, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-18T23:57:13.157", + "email": "sharice.kasper@institution.example.com", + "title": "", + "first_name_given": "Sharice", + "first_name_chosen": "", + "last_name": "Kasper", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 823, + "model": "evaluation.userprofile", + "pk": 429, "fields": { - "evaluation": 327, - "contributor": [ - "arnold.lane@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T22:00:27.184", + "email": "margery.campos@institution.example.com", + "title": "", + "first_name_given": "Margery", + "first_name_chosen": "", + "last_name": "Campos", + "language": "", + "is_proxy_user": false, + "login_key": 1818483627, + "login_key_valid_until": "2020-05-25", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 826, + "model": "evaluation.userprofile", + "pk": 430, "fields": { - "evaluation": 329, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T16:24:39.841", + "email": "mistie.weddle@institution.example.com", + "title": "", + "first_name_given": "Mistie", + "first_name_chosen": "", + "last_name": "Weddle", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 827, + "model": "evaluation.userprofile", + "pk": 431, "fields": { - "evaluation": 329, - "contributor": [ - "elena.kline@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T18:52:46.917", + "email": "antonetta.middleton@institution.example.com", + "title": "", + "first_name_given": "Antonetta", + "first_name_chosen": "", + "last_name": "Middleton", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 832, + "model": "evaluation.userprofile", + "pk": 432, "fields": { - "evaluation": 332, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:28.729", + "email": "zana.battles@institution.example.com", + "title": "", + "first_name_given": "Zana", + "first_name_chosen": "", + "last_name": "Battles", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 833, + "model": "evaluation.userprofile", + "pk": 433, "fields": { - "evaluation": 332, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-14T21:01:56.880", + "email": "jerald.cooper@institution.example.com", + "title": "", + "first_name_given": "Jerald", + "first_name_chosen": "", + "last_name": "Cooper", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 834, + "model": "evaluation.userprofile", + "pk": 434, "fields": { - "evaluation": 333, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:29.052", + "email": "joi.almond@institution.example.com", + "title": "", + "first_name_given": "Joi", + "first_name_chosen": "", + "last_name": "Almond", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 835, + "model": "evaluation.userprofile", + "pk": 435, "fields": { - "evaluation": 333, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-07T10:48:32.960", + "email": "annmarie.briscoe@institution.example.com", + "title": "", + "first_name_given": "Annmarie", + "first_name_chosen": "", + "last_name": "Briscoe", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 836, + "model": "evaluation.userprofile", + "pk": 436, "fields": { - "evaluation": 334, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-10T08:12:29.144", + "email": "maura.sosa@institution.example.com", + "title": "", + "first_name_given": "Maura", + "first_name_chosen": "", + "last_name": "Sosa", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 837, + "model": "evaluation.userprofile", + "pk": 437, "fields": { - "evaluation": 334, - "contributor": [ - "viola.barringer@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 85 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T10:37:17.338", + "email": "daphne.moll@institution.example.com", + "title": "", + "first_name_given": "Daphne", + "first_name_chosen": "", + "last_name": "Moll", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 840, + "model": "evaluation.userprofile", + "pk": 438, "fields": { - "evaluation": 336, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-02T14:33:40.885", + "email": "hester.bettencourt@institution.example.com", + "title": "", + "first_name_given": "Hester", + "first_name_chosen": "", + "last_name": "Bettencourt", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 841, + "model": "evaluation.userprofile", + "pk": 439, "fields": { - "evaluation": 336, - "contributor": [ - "luciana.graves@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T22:38:17.335", + "email": "monet.greenlee@institution.example.com", + "title": "", + "first_name_given": "Monet", + "first_name_chosen": "", + "last_name": "Greenlee", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 858, + "model": "evaluation.userprofile", + "pk": 440, "fields": { - "evaluation": 345, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:30.052", + "email": "enid.robb@institution.example.com", + "title": "", + "first_name_given": "Enid", + "first_name_chosen": "", + "last_name": "Robb", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 859, + "model": "evaluation.userprofile", + "pk": 441, "fields": { - "evaluation": 345, - "contributor": [ - "sunni.hollingsworth@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-16T10:08:18.664", + "email": "madelyn.walker@institution.example.com", + "title": "", + "first_name_given": "Madelyn", + "first_name_chosen": "", + "last_name": "Walker", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 862, + "model": "evaluation.userprofile", + "pk": 442, "fields": { - "evaluation": 347, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 82, - 86, - 93, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-27T00:30:31.661", + "email": "gidget.stern@institution.example.com", + "title": "", + "first_name_given": "Gidget", + "first_name_chosen": "", + "last_name": "Stern", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 863, + "model": "evaluation.userprofile", + "pk": 443, "fields": { - "evaluation": 347, - "contributor": [ - "sandee.coker@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-31T11:01:26.720", + "email": "crysta.ainsworth@institution.example.com", + "title": "", + "first_name_given": "Crysta", + "first_name_chosen": "", + "last_name": "Ainsworth", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 864, + "model": "evaluation.userprofile", + "pk": 444, "fields": { - "evaluation": 348, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 82, - 88, - 93, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T17:13:03.122", + "email": "rebecca.schuler@institution.example.com", + "title": "", + "first_name_given": "Rebecca", + "first_name_chosen": "", + "last_name": "Schuler", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 865, + "model": "evaluation.userprofile", + "pk": 445, "fields": { - "evaluation": 348, - "contributor": [ - "sandee.coker@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-16T09:25:19.080", + "email": "dale.earnest@institution.example.com", + "title": "", + "first_name_given": "Dale", + "first_name_chosen": "", + "last_name": "Earnest", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 868, + "model": "evaluation.userprofile", + "pk": 446, "fields": { - "evaluation": 350, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-02T23:41:43.043", + "email": "virgina.carrasco@institution.example.com", + "title": "", + "first_name_given": "Virgina", + "first_name_chosen": "", + "last_name": "Carrasco", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 869, + "model": "evaluation.userprofile", + "pk": 447, "fields": { - "evaluation": 350, - "contributor": [ - "ranae.fry@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-02T23:35:57.142", + "email": "billi.arce@institution.example.com", + "title": "", + "first_name_given": "Billi", + "first_name_chosen": "", + "last_name": "Arce", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 880, + "model": "evaluation.userprofile", + "pk": 448, "fields": { - "evaluation": 356, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T15:44:43.594", + "email": "danika.wills@institution.example.com", + "title": "", + "first_name_given": "Danika", + "first_name_chosen": "", + "last_name": "Wills", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 881, + "model": "evaluation.userprofile", + "pk": 449, "fields": { - "evaluation": 356, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-30T19:32:35.293", + "email": "wyatt.hale@institution.example.com", + "title": "", + "first_name_given": "Wyatt", + "first_name_chosen": "", + "last_name": "Hale", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 884, + "model": "evaluation.userprofile", + "pk": 450, "fields": { - "evaluation": 358, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-21T22:32:40.335", + "email": "denna.lester@institution.example.com", + "title": "", + "first_name_given": "Denna", + "first_name_chosen": "", + "last_name": "Lester", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-01-30", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [ + [ + "Manager" + ] + ], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 885, + "model": "evaluation.userprofile", + "pk": 451, "fields": { - "evaluation": 358, - "contributor": [ - "amelia.handy@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-24T17:45:28.383", + "email": "irving.mcdade@institution.example.com", + "title": "", + "first_name_given": "Irving", + "first_name_chosen": "", + "last_name": "Mcdade", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 886, + "model": "evaluation.userprofile", + "pk": 452, "fields": { - "evaluation": 359, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": true, + "password": "pbkdf2_sha256$600000$8dcuxbY2OgmCEEj3nlUQWG$qk5ic3Er9FrkCd3VUjC1DEfxd76LPVKrzaMEWGSaxyA=", + "last_login": "2023-09-18T21:02:20.716", + "email": "evap@institution.example.com", + "title": "", + "first_name_given": "", + "first_name_chosen": "", + "last_name": "evap", + "language": "de", + "is_proxy_user": false, + "login_key": 530207530, + "login_key_valid_until": "2020-05-25", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [ + [ + "Manager" + ], + [ + "Grade publisher" + ] + ], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 887, + "model": "evaluation.userprofile", + "pk": 453, "fields": { - "evaluation": 359, - "contributor": [ - "luciana.graves@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-13T19:29:30.798", + "email": "elissa.fowler@institution.example.com", + "title": "", + "first_name_given": "Elissa", + "first_name_chosen": "", + "last_name": "Fowler", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 894, + "model": "evaluation.userprofile", + "pk": 454, "fields": { - "evaluation": 363, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T11:34:58.706", + "email": "margarette.kersey@institution.example.com", + "title": "", + "first_name_given": "Margarette", + "first_name_chosen": "", + "last_name": "Kersey", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 895, + "model": "evaluation.userprofile", + "pk": 455, "fields": { - "evaluation": 363, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T18:38:17.897", + "email": "cherly.bobbitt@institution.example.com", + "title": "", + "first_name_given": "Cherly", + "first_name_chosen": "", + "last_name": "Bobbitt", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 908, + "model": "evaluation.userprofile", + "pk": 456, "fields": { - "evaluation": 370, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T17:37:41.844", + "email": "wilmer.goodson@institution.example.com", + "title": "", + "first_name_given": "Wilmer", + "first_name_chosen": "", + "last_name": "Goodson", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 909, + "model": "evaluation.userprofile", + "pk": 457, "fields": { - "evaluation": 370, - "contributor": [ - "ingeborg.herring@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T22:28:33.235", + "email": "lelia.worley@institution.example.com", + "title": "", + "first_name_given": "Lelia", + "first_name_chosen": "", + "last_name": "Worley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 912, + "model": "evaluation.userprofile", + "pk": 458, "fields": { - "evaluation": 372, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 93, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T09:45:48.903", + "email": "mitchel.heard@institution.example.com", + "title": "", + "first_name_given": "Mitchel", + "first_name_chosen": "", + "last_name": "Heard", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 913, + "model": "evaluation.userprofile", + "pk": 459, "fields": { - "evaluation": 372, - "contributor": [ - "sunni.hollingsworth@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-02T23:21:27.886", + "email": "terisa.bottoms@institution.example.com", + "title": "", + "first_name_given": "Terisa", + "first_name_chosen": "", + "last_name": "Bottoms", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 918, + "model": "evaluation.userprofile", + "pk": 460, "fields": { - "evaluation": 375, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:33.482", + "email": "adelia.whittington@institution.example.com", + "title": "", + "first_name_given": "Adelia", + "first_name_chosen": "", + "last_name": "Whittington", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 919, + "model": "evaluation.userprofile", + "pk": 461, "fields": { - "evaluation": 375, - "contributor": [ - "ranae.fry@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:57:14.045", + "email": "cecile.caron@institution.example.com", + "title": "", + "first_name_given": "Cecile", + "first_name_chosen": "", + "last_name": "Caron", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1144, + "model": "evaluation.userprofile", + "pk": 462, "fields": { - "evaluation": 478, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 86, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T11:34:17.043", + "email": "kristine.leatherman@institution.example.com", + "title": "", + "first_name_given": "Kristine", + "first_name_chosen": "", + "last_name": "Leatherman", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1145, + "model": "evaluation.userprofile", + "pk": 463, "fields": { - "evaluation": 478, - "contributor": [ - "denisha.chance@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 87, - 85, - 91, - 89, - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-16T17:25:00.935", + "email": "wava.pearl@institution.example.com", + "title": "", + "first_name_given": "Wava", + "first_name_chosen": "", + "last_name": "Pearl", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1146, + "model": "evaluation.userprofile", + "pk": 464, "fields": { - "evaluation": 478, - "contributor": [ - "luann.schulz@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 2, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-06-05T22:30:44.546", + "email": "maribeth.compton@institution.example.com", + "title": "", + "first_name_given": "Maribeth", + "first_name_chosen": "", + "last_name": "Compton", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1151, + "model": "evaluation.userprofile", + "pk": 465, "fields": { - "evaluation": 332, - "contributor": [ - "laurence.tipton@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-03T19:59:46.473", + "email": "vernia.keel@institution.example.com", + "title": "", + "first_name_given": "Vernia", + "first_name_chosen": "", + "last_name": "Keel", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1154, + "model": "evaluation.userprofile", + "pk": 466, "fields": { - "evaluation": 370, - "contributor": [ - "britteny.easley@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 89, - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-29T09:30:22.542", + "email": "criselda.henry@institution.example.com", + "title": "", + "first_name_given": "Criselda", + "first_name_chosen": "", + "last_name": "Henry", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1156, + "model": "evaluation.userprofile", + "pk": 467, "fields": { - "evaluation": 363, - "contributor": [ - "hipolito.morse@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-15T08:53:31.336", + "email": "larita.dejesus@institution.example.com", + "title": "", + "first_name_given": "Larita", + "first_name_chosen": "", + "last_name": "Dejesus", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1157, + "model": "evaluation.userprofile", + "pk": 468, "fields": { - "evaluation": 363, - "contributor": [ - "sharon.cress@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-08T21:32:22.282", + "email": "mercedez.cupp@institution.example.com", + "title": "", + "first_name_given": "Mercedez", + "first_name_chosen": "", + "last_name": "Cupp", + "language": "", + "is_proxy_user": false, + "login_key": 71453046, + "login_key_valid_until": "2020-05-25", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1165, + "model": "evaluation.userprofile", + "pk": 469, "fields": { - "evaluation": 333, - "contributor": [ - "laurence.tipton@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-08T10:14:16.419", + "email": "carlota.zaragoza@institution.example.com", + "title": "", + "first_name_given": "Carlota", + "first_name_chosen": "", + "last_name": "Zaragoza", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1186, + "model": "evaluation.userprofile", + "pk": 470, "fields": { - "evaluation": 370, - "contributor": [ - "lynn.baptiste@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:35.089", + "email": "angelo.bridges@institution.example.com", + "title": "", + "first_name_given": "Angelo", + "first_name_chosen": "", + "last_name": "Bridges", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1187, + "model": "evaluation.userprofile", + "pk": 471, "fields": { - "evaluation": 370, - "contributor": [ - "kayce.grigsby@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 89 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-08T01:02:52.588", + "email": "tiffaney.leung@institution.example.com", + "title": "", + "first_name_given": "Tiffaney", + "first_name_chosen": "", + "last_name": "Leung", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1188, + "model": "evaluation.userprofile", + "pk": 472, "fields": { - "evaluation": 370, - "contributor": [ - "concha.ezell@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 89 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-02T23:35:20.957", + "email": "aida.broome@institution.example.com", + "title": "", + "first_name_given": "Aida", + "first_name_chosen": "", + "last_name": "Broome", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1189, + "model": "evaluation.userprofile", + "pk": 473, "fields": { - "evaluation": 370, - "contributor": [ - "odessa.mcmullen@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 89 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-02T21:15:35.175", + "email": "yong.furr@institution.example.com", + "title": "", + "first_name_given": "Yong", + "first_name_chosen": "", + "last_name": "Furr", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1194, + "model": "evaluation.userprofile", + "pk": 474, "fields": { - "evaluation": 363, - "contributor": [ - "joella.naquin@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-09T09:04:36.560", + "email": "stacey.timmerman@institution.example.com", + "title": "", + "first_name_given": "Stacey", + "first_name_chosen": "", + "last_name": "Timmerman", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1200, + "model": "evaluation.userprofile", + "pk": 475, "fields": { - "evaluation": 482, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-02T14:27:47.386", + "email": "asa.carlton@institution.example.com", + "title": "", + "first_name_given": "Asa", + "first_name_chosen": "", + "last_name": "Carlton", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1201, + "model": "evaluation.userprofile", + "pk": 476, "fields": { - "evaluation": 482, - "contributor": [ - "viola.barringer@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-03-21T11:54:08.463", + "email": "birdie.mcclintock@institution.example.com", + "title": "", + "first_name_given": "Birdie", + "first_name_chosen": "", + "last_name": "Mcclintock", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1202, + "model": "evaluation.userprofile", + "pk": 477, "fields": { - "evaluation": 482, - "contributor": [ - "starla.lyons@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-22T19:54:53.840", + "email": "lyndsey.bolt@institution.example.com", + "title": "", + "first_name_given": "Lyndsey", + "first_name_chosen": "", + "last_name": "Bolt", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1203, + "model": "evaluation.userprofile", + "pk": 478, "fields": { - "evaluation": 482, - "contributor": [ - "yolanda.farley@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:36.002", + "email": "marvel.oakley@institution.example.com", + "title": "", + "first_name_given": "Marvel", + "first_name_chosen": "", + "last_name": "Oakley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1204, + "model": "evaluation.userprofile", + "pk": 479, "fields": { - "evaluation": 482, - "contributor": [ - "chanelle.perales@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 4, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T19:24:01.703", + "email": "irwin.tompkins@institution.example.com", + "title": "", + "first_name_given": "Irwin", + "first_name_chosen": "", + "last_name": "Tompkins", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1205, + "model": "evaluation.userprofile", + "pk": 480, "fields": { - "evaluation": 482, - "contributor": [ - "ozella.hooper@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 5, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-09T13:53:50.181", + "email": "esther.ulrich@institution.example.com", + "title": "", + "first_name_given": "Esther", + "first_name_chosen": "", + "last_name": "Ulrich", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1206, + "model": "evaluation.userprofile", + "pk": 481, "fields": { - "evaluation": 482, - "contributor": [ - "meagan.steed@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 6, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T18:05:19.669", + "email": "kristie.stump@institution.example.com", + "title": "", + "first_name_given": "Kristie", + "first_name_chosen": "", + "last_name": "Stump", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1207, + "model": "evaluation.userprofile", + "pk": 482, "fields": { - "evaluation": 482, - "contributor": [ - "kathyrn.linder@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 7, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-14T12:02:37.909", + "email": "evelyne.grigsby@institution.example.com", + "title": "", + "first_name_given": "Evelyne", + "first_name_chosen": "", + "last_name": "Grigsby", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1217, + "model": "evaluation.userprofile", + "pk": 483, "fields": { - "evaluation": 356, - "contributor": [ - "kyra.hart@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-12T22:27:25.456", + "email": "tawanna.negrete@institution.example.com", + "title": "", + "first_name_given": "Tawanna", + "first_name_chosen": "", + "last_name": "Negrete", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1228, + "model": "evaluation.userprofile", + "pk": 484, "fields": { - "evaluation": 318, - "contributor": [ - "doria.matthews@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T08:04:17.109", + "email": "isiah.hammonds@institution.example.com", + "title": "", + "first_name_given": "Isiah", + "first_name_chosen": "", + "last_name": "Hammonds", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1235, + "model": "evaluation.userprofile", + "pk": 485, "fields": { - "evaluation": 310, - "contributor": [ - "al.jean@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T14:23:10.645", + "email": "mandie.lomax@institution.example.com", + "title": "", + "first_name_given": "Mandie", + "first_name_chosen": "", + "last_name": "Lomax", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1242, + "model": "evaluation.userprofile", + "pk": 486, "fields": { - "evaluation": 310, - "contributor": [ - "fay.westmoreland@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 89 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:10:47.369", + "email": "chauncey.rivera@institution.example.com", + "title": "", + "first_name_given": "Chauncey", + "first_name_chosen": "", + "last_name": "Rivera", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1243, + "model": "evaluation.userprofile", + "pk": 487, "fields": { - "evaluation": 310, - "contributor": [ - "jeannie.guffey@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 89 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-08T22:33:33.258", + "email": "natalie.gregory@institution.example.com", + "title": "", + "first_name_given": "Natalie", + "first_name_chosen": "", + "last_name": "Gregory", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1244, + "model": "evaluation.userprofile", + "pk": 488, "fields": { - "evaluation": 311, - "contributor": [ - "karine.prater@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T19:32:35.827", + "email": "jennette.briggs@institution.example.com", + "title": "", + "first_name_given": "Jennette", + "first_name_chosen": "", + "last_name": "Briggs", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1246, + "model": "evaluation.userprofile", + "pk": 489, "fields": { - "evaluation": 359, - "contributor": [ - "kacy.galvan@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T23:00:08.483", + "email": "velda.kimble@institution.example.com", + "title": "", + "first_name_given": "Velda", + "first_name_chosen": "", + "last_name": "Kimble", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1247, + "model": "evaluation.userprofile", + "pk": 490, "fields": { - "evaluation": 359, - "contributor": [ - "reyna.masterson@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-10T01:19:22.774", + "email": "kaitlin.hamblin@institution.example.com", + "title": "", + "first_name_given": "Kaitlin", + "first_name_chosen": "", + "last_name": "Hamblin", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1249, + "model": "evaluation.userprofile", + "pk": 491, "fields": { - "evaluation": 329, - "contributor": [ - "pamula.sims@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:37.745", + "email": "bud.ledbetter@institution.example.com", + "title": "", + "first_name_given": "Bud", + "first_name_chosen": "", + "last_name": "Ledbetter", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1250, + "model": "evaluation.userprofile", + "pk": 492, "fields": { - "evaluation": 345, - "contributor": [ - "beau.saunders@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T22:57:31.055", + "email": "marilynn.oconnor@institution.example.com", + "title": "", + "first_name_given": "Marilynn", + "first_name_chosen": "", + "last_name": "Oconnor", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2013-12-22", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1253, + "model": "evaluation.userprofile", + "pk": 493, "fields": { - "evaluation": 329, - "contributor": [ - "yong.shuler@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-15T13:29:47.113", + "email": "jene.fowlkes@institution.example.com", + "title": "", + "first_name_given": "Jene", + "first_name_chosen": "", + "last_name": "Fowlkes", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1256, + "model": "evaluation.userprofile", + "pk": 494, "fields": { - "evaluation": 348, - "contributor": [ - "earline.hills@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 0, - "questionnaires": [ - 89 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T16:01:26.112", + "email": "benito.fuqua@institution.example.com", + "title": "", + "first_name_given": "Benito", + "first_name_chosen": "", + "last_name": "Fuqua", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1257, + "model": "evaluation.userprofile", + "pk": 495, "fields": { - "evaluation": 348, - "contributor": [ - "mandy.harman@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 89 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-08T13:00:15.973", + "email": "virgie.engle@institution.example.com", + "title": "", + "first_name_given": "Virgie", + "first_name_chosen": "", + "last_name": "Engle", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1258, + "model": "evaluation.userprofile", + "pk": 496, "fields": { - "evaluation": 348, - "contributor": [ - "tonie.helms@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 89 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T09:55:52.502", + "email": "shemeka.cabrera@institution.example.com", + "title": "", + "first_name_given": "Shemeka", + "first_name_chosen": "", + "last_name": "Cabrera", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1266, + "model": "evaluation.userprofile", + "pk": 497, "fields": { - "evaluation": 311, - "contributor": [ - "vanetta.fleck@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-26T00:55:06.746", + "email": "karan.thacker@institution.example.com", + "title": "", + "first_name_given": "Karan", + "first_name_chosen": "", + "last_name": "Thacker", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1282, + "model": "evaluation.userprofile", + "pk": 498, "fields": { - "evaluation": 327, - "contributor": [ - "kassie.lockett@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 85 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:38.662", + "email": "elicia.rawlins@institution.example.com", + "title": "", + "first_name_given": "Elicia", + "first_name_chosen": "", + "last_name": "Rawlins", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1283, + "model": "evaluation.userprofile", + "pk": 499, "fields": { - "evaluation": 327, - "contributor": [ - "valery.bassett@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 85 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T15:11:57.827", + "email": "reva.root@institution.example.com", + "title": "", + "first_name_given": "Reva", + "first_name_chosen": "", + "last_name": "Root", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1284, + "model": "evaluation.userprofile", + "pk": 500, "fields": { - "evaluation": 327, - "contributor": [ - "randee.griffith@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 85 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T04:13:23.195", + "email": "maureen.moe@institution.example.com", + "title": "", + "first_name_given": "Maureen", + "first_name_chosen": "", + "last_name": "Moe", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1287, + "model": "evaluation.userprofile", + "pk": 501, "fields": { - "evaluation": 372, - "contributor": [ - "merle.higdon@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T15:40:22.025", + "email": "myrtice.bohannon@institution.example.com", + "title": "", + "first_name_given": "Myrtice", + "first_name_chosen": "", + "last_name": "Bohannon", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1288, + "model": "evaluation.userprofile", + "pk": 502, "fields": { - "evaluation": 372, - "contributor": [ - "millard.heath@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T22:14:37.652", + "email": "melody.large@institution.example.com", + "title": "", + "first_name_given": "Melody", + "first_name_chosen": "", + "last_name": "Large", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1297, + "model": "evaluation.userprofile", + "pk": 503, "fields": { - "evaluation": 347, - "contributor": [ - "shayne.scruggs@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-01T14:07:23.055", + "email": "dannie.cochran@institution.example.com", + "title": "", + "first_name_given": "Dannie", + "first_name_chosen": "", + "last_name": "Cochran", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1298, + "model": "evaluation.userprofile", + "pk": 504, "fields": { - "evaluation": 347, - "contributor": [ - "donetta.huffman@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:39.521", + "email": "fabian.orta@institution.example.com", + "title": "", + "first_name_given": "Fabian", + "first_name_chosen": "", + "last_name": "Orta", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1612, + "model": "evaluation.userprofile", + "pk": 505, "fields": { - "evaluation": 641, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-05T11:21:24.794", + "email": "ta.larry@institution.example.com", + "title": "", + "first_name_given": "Ta", + "first_name_chosen": "", + "last_name": "Larry", + "language": "", + "is_proxy_user": false, + "login_key": 1209312068, + "login_key_valid_until": "2020-05-25", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1613, + "model": "evaluation.userprofile", + "pk": 506, "fields": { - "evaluation": 641, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-06-06T12:59:03.780", + "email": "azzie.heaton@institution.example.com", + "title": "", + "first_name_given": "Azzie", + "first_name_chosen": "", + "last_name": "Heaton", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1617, + "model": "evaluation.userprofile", + "pk": 507, "fields": { - "evaluation": 643, - "contributor": [ - "viola.barringer@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T09:22:36.534", + "email": "marshall.guerrero@institution.example.com", + "title": "", + "first_name_given": "Marshall", + "first_name_chosen": "", + "last_name": "Guerrero", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1626, + "model": "evaluation.userprofile", + "pk": 508, "fields": { - "evaluation": 648, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-28T10:55:54.200", + "email": "aide.kraft@institution.example.com", + "title": "", + "first_name_given": "Aide", + "first_name_chosen": "", + "last_name": "Kraft", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1634, + "model": "evaluation.userprofile", + "pk": 509, "fields": { - "evaluation": 652, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-03T20:24:50.005", + "email": "dominga.vega@institution.example.com", + "title": "", + "first_name_given": "Dominga", + "first_name_chosen": "", + "last_name": "Vega", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1635, + "model": "evaluation.userprofile", + "pk": 510, "fields": { - "evaluation": 652, - "contributor": [ - "ingeborg.herring@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T15:43:54.085", + "email": "delila.fredrickson@institution.example.com", + "title": "", + "first_name_given": "Delila", + "first_name_chosen": "", + "last_name": "Fredrickson", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1638, + "model": "evaluation.userprofile", + "pk": 511, "fields": { - "evaluation": 654, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-09T13:48:54.771", + "email": "vella.valerio@institution.example.com", + "title": "", + "first_name_given": "Vella", + "first_name_chosen": "", + "last_name": "Valerio", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1639, + "model": "evaluation.userprofile", + "pk": 512, "fields": { - "evaluation": 654, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T16:23:44.702", + "email": "lindsey.carranza@institution.example.com", + "title": "", + "first_name_given": "Lindsey", + "first_name_chosen": "", + "last_name": "Carranza", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1640, + "model": "evaluation.userprofile", + "pk": 513, "fields": { - "evaluation": 655, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-02T21:38:33.259", + "email": "janise.denman@institution.example.com", + "title": "", + "first_name_given": "Janise", + "first_name_chosen": "", + "last_name": "Denman", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1641, + "model": "evaluation.userprofile", + "pk": 514, "fields": { - "evaluation": 655, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-08T11:46:48.358", + "email": "winston.samples@institution.example.com", + "title": "", + "first_name_given": "Winston", + "first_name_chosen": "", + "last_name": "Samples", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1644, + "model": "evaluation.userprofile", + "pk": 515, "fields": { - "evaluation": 657, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-19T09:22:46.335", + "email": "palma.feliciano@institution.example.com", + "title": "", + "first_name_given": "Palma", + "first_name_chosen": "", + "last_name": "Feliciano", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1645, + "model": "evaluation.userprofile", + "pk": 516, "fields": { - "evaluation": 657, - "contributor": [ - "ranae.fry@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-27T10:03:37.557", + "email": "shaunna.barnard@institution.example.com", + "title": "", + "first_name_given": "Shaunna", + "first_name_chosen": "", + "last_name": "Barnard", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2013-05-07", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1656, + "model": "evaluation.userprofile", + "pk": 517, "fields": { - "evaluation": 663, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T17:13:51.600", + "email": "eugenia.bauer@institution.example.com", + "title": "", + "first_name_given": "Eugenia", + "first_name_chosen": "", + "last_name": "Bauer", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1657, + "model": "evaluation.userprofile", + "pk": 518, "fields": { - "evaluation": 663, - "contributor": [ - "gaylene.timmons@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-20T19:33:27.473", + "email": "kayce.grigsby@institution.example.com", + "title": "", + "first_name_given": "Kayce", + "first_name_chosen": "", + "last_name": "Grigsby", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1658, + "model": "evaluation.userprofile", + "pk": 519, "fields": { - "evaluation": 664, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T17:38:52.131", + "email": "maybelle.bolton@institution.example.com", + "title": "", + "first_name_given": "Maybelle", + "first_name_chosen": "", + "last_name": "Bolton", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1659, + "model": "evaluation.userprofile", + "pk": 520, "fields": { - "evaluation": 664, - "contributor": [ - "hugh.runyon@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-21T09:42:31.361", + "email": "sherie.ruth@institution.example.com", + "title": "", + "first_name_given": "Sherie", + "first_name_chosen": "", + "last_name": "Ruth", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1660, + "model": "evaluation.userprofile", + "pk": 521, "fields": { - "evaluation": 665, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-03T07:56:35.761", + "email": "hollie.labonte@institution.example.com", + "title": "", + "first_name_given": "Hollie", + "first_name_chosen": "", + "last_name": "Labonte", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1661, + "model": "evaluation.userprofile", + "pk": 522, "fields": { - "evaluation": 665, - "contributor": [ - "donnetta.casillas@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T19:51:46.531", + "email": "roxy.olds@institution.example.com", + "title": "", + "first_name_given": "Roxy", + "first_name_chosen": "", + "last_name": "Olds", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1662, + "model": "evaluation.userprofile", + "pk": 523, "fields": { - "evaluation": 666, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 93, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-12T10:38:35.165", + "email": "alene.casas@institution.example.com", + "title": "", + "first_name_given": "Alene", + "first_name_chosen": "", + "last_name": "Casas", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1663, + "model": "evaluation.userprofile", + "pk": 524, "fields": { - "evaluation": 666, - "contributor": [ - "darlena.holliman@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-30T20:09:43.194", + "email": "arline.maier@institution.example.com", + "title": "", + "first_name_given": "Arline", + "first_name_chosen": "", + "last_name": "Maier", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1668, + "model": "evaluation.userprofile", + "pk": 525, "fields": { - "evaluation": 669, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-09T20:28:37.106", + "email": "hester.ferro@institution.example.com", + "title": "", + "first_name_given": "Hester", + "first_name_chosen": "", + "last_name": "Ferro", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1669, + "model": "evaluation.userprofile", + "pk": 526, "fields": { - "evaluation": 669, - "contributor": [ - "hugh.runyon@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-02T23:36:09.667", + "email": "kiana.easley@institution.example.com", + "title": "", + "first_name_given": "Kiana", + "first_name_chosen": "", + "last_name": "Easley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1680, + "model": "evaluation.userprofile", + "pk": 527, "fields": { - "evaluation": 675, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-18T23:16:40.888", + "email": "brigette.holden@institution.example.com", + "title": "", + "first_name_given": "Brigette", + "first_name_chosen": "", + "last_name": "Holden", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1681, + "model": "evaluation.userprofile", + "pk": 528, "fields": { - "evaluation": 675, - "contributor": [ - "henriette.park@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$20000$MFOXT3KjBzEo$ornMmvvGJgg0lbDMFL6uUEg5ejJLO98Tz6DWT4RLCY4=", + "last_login": "2015-11-08T12:43:50.016", + "email": "jeremy.carrington@institution.example.com", + "title": "", + "first_name_given": "Jeremy", + "first_name_chosen": "", + "last_name": "Carrington", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1694, + "model": "evaluation.userprofile", + "pk": 529, "fields": { - "evaluation": 682, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-10T21:39:20.259", + "email": "mariano.burns@institution.example.com", + "title": "", + "first_name_given": "Mariano", + "first_name_chosen": "", + "last_name": "Burns", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1695, + "model": "evaluation.userprofile", + "pk": 530, "fields": { - "evaluation": 682, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T04:35:10.895", + "email": "ashlyn.mccartney@institution.example.com", + "title": "", + "first_name_given": "Ashlyn", + "first_name_chosen": "", + "last_name": "Mccartney", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1702, + "model": "evaluation.userprofile", + "pk": 531, "fields": { - "evaluation": 686, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T15:12:13.962", + "email": "bailey.roybal@institution.example.com", + "title": "", + "first_name_given": "Bailey", + "first_name_chosen": "", + "last_name": "Roybal", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1703, + "model": "evaluation.userprofile", + "pk": 532, "fields": { - "evaluation": 686, - "contributor": [ - "charity.leonard@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-03-31T14:12:32.669", + "email": "louann.gee@institution.example.com", + "title": "", + "first_name_given": "Louann", + "first_name_chosen": "", + "last_name": "Gee", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1710, + "model": "evaluation.userprofile", + "pk": 533, "fields": { - "evaluation": 690, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:43.664", + "email": "hassan.hyde@institution.example.com", + "title": "", + "first_name_given": "Hassan", + "first_name_chosen": "", + "last_name": "Hyde", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1720, + "model": "evaluation.userprofile", + "pk": 534, "fields": { - "evaluation": 695, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 50, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-02T23:43:52.409", + "email": "odessa.mcmullen@institution.example.com", + "title": "", + "first_name_given": "Odessa", + "first_name_chosen": "", + "last_name": "Mcmullen", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1721, + "model": "evaluation.userprofile", + "pk": 535, "fields": { - "evaluation": 695, - "contributor": [ - "chieko.lehman@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-14T12:41:41.729", + "email": "tuan.malcolm@institution.example.com", + "title": "", + "first_name_given": "Tuan", + "first_name_chosen": "", + "last_name": "Malcolm", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1724, + "model": "evaluation.userprofile", + "pk": 536, "fields": { - "evaluation": 697, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-04T13:50:04.488", + "email": "corrinne.ferraro@institution.example.com", + "title": "", + "first_name_given": "Corrinne", + "first_name_chosen": "", + "last_name": "Ferraro", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1725, + "model": "evaluation.userprofile", + "pk": 537, "fields": { - "evaluation": 697, - "contributor": [ - "evie.martz@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-03T09:08:27.634", + "email": "doyle.stump@institution.example.com", + "title": "", + "first_name_given": "Doyle", + "first_name_chosen": "", + "last_name": "Stump", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1726, + "model": "evaluation.userprofile", + "pk": 538, "fields": { - "evaluation": 698, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-09T11:18:07.872", + "email": "genevive.kelly@institution.example.com", + "title": "", + "first_name_given": "Genevive", + "first_name_chosen": "", + "last_name": "Kelly", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1727, + "model": "evaluation.userprofile", + "pk": 539, "fields": { - "evaluation": 698, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T08:46:53.510", + "email": "thomas.spearman@institution.example.com", + "title": "", + "first_name_given": "Thomas", + "first_name_chosen": "", + "last_name": "Spearman", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1734, + "model": "evaluation.userprofile", + "pk": 540, "fields": { - "evaluation": 702, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T15:44:02.529", + "email": "noma.mcdougall@institution.example.com", + "title": "", + "first_name_given": "Noma", + "first_name_chosen": "", + "last_name": "Mcdougall", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1735, + "model": "evaluation.userprofile", + "pk": 541, "fields": { - "evaluation": 702, - "contributor": [ - "ranae.fry@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-19T11:39:34.560", + "email": "kimbery.burnette@institution.example.com", + "title": "", + "first_name_given": "Kimbery", + "first_name_chosen": "", + "last_name": "Burnette", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1748, + "model": "evaluation.userprofile", + "pk": 542, "fields": { - "evaluation": 709, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T22:53:13.150", + "email": "ileana.puente@institution.example.com", + "title": "", + "first_name_given": "Ileana", + "first_name_chosen": "", + "last_name": "Puente", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1749, + "model": "evaluation.userprofile", + "pk": 543, "fields": { - "evaluation": 709, - "contributor": [ - "junie.hicks@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-02T17:55:12.113", + "email": "edda.cady@institution.example.com", + "title": "", + "first_name_given": "Edda", + "first_name_chosen": "", + "last_name": "Cady", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1776, + "model": "evaluation.userprofile", + "pk": 544, "fields": { - "evaluation": 652, - "contributor": [ - "britteny.easley@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-13T06:53:56.588", + "email": "etha.hastings@institution.example.com", + "title": "", + "first_name_given": "Etha", + "first_name_chosen": "", + "last_name": "Hastings", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1777, + "model": "evaluation.userprofile", + "pk": 545, "fields": { - "evaluation": 652, - "contributor": [ - "lynn.baptiste@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-02T23:23:14.748", + "email": "tami.isaac@institution.example.com", + "title": "", + "first_name_given": "Tami", + "first_name_chosen": "", + "last_name": "Isaac", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1778, + "model": "evaluation.userprofile", + "pk": 546, "fields": { - "evaluation": 652, - "contributor": [ - "juanita.kimbrough@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T15:45:51.110", + "email": "catharine.medeiros@institution.example.com", + "title": "", + "first_name_given": "Catharine", + "first_name_chosen": "", + "last_name": "Medeiros", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1779, + "model": "evaluation.userprofile", + "pk": 547, "fields": { - "evaluation": 652, - "contributor": [ - "reyna.mondragon@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-30T20:25:28.519", + "email": "tia.gall@institution.example.com", + "title": "", + "first_name_given": "Tia", + "first_name_chosen": "", + "last_name": "Gall", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1780, + "model": "evaluation.userprofile", + "pk": 548, "fields": { - "evaluation": 652, - "contributor": [ - "janna.langlois@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 4, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-03-26T09:54:32.616", + "email": "gracie.childs@institution.example.com", + "title": "", + "first_name_given": "Gracie", + "first_name_chosen": "", + "last_name": "Childs", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1781, + "model": "evaluation.userprofile", + "pk": 549, "fields": { - "evaluation": 652, - "contributor": [ - "darnell.aguilera@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 5, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-31T15:59:01.922", + "email": "ethyl.rust@institution.example.com", + "title": "", + "first_name_given": "Ethyl", + "first_name_chosen": "", + "last_name": "Rust", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1782, + "model": "evaluation.userprofile", + "pk": 550, "fields": { - "evaluation": 652, - "contributor": [ - "oscar.christie@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 6, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-16T08:44:29.251", + "email": "lashandra.peacock@institution.example.com", + "title": "", + "first_name_given": "Lashandra", + "first_name_chosen": "", + "last_name": "Peacock", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1783, + "model": "evaluation.userprofile", + "pk": 551, "fields": { - "evaluation": 652, - "contributor": [ - "melania.wolfe@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 7, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T15:50:28.800", + "email": "yong.staley@institution.example.com", + "title": "", + "first_name_given": "Yong", + "first_name_chosen": "", + "last_name": "Staley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1784, + "model": "evaluation.userprofile", + "pk": 552, "fields": { - "evaluation": 652, - "contributor": [ - "kayce.grigsby@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 8, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-18T18:15:47.263", + "email": "laveta.grubbs@institution.example.com", + "title": "", + "first_name_given": "Laveta", + "first_name_chosen": "", + "last_name": "Grubbs", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1785, + "model": "evaluation.userprofile", + "pk": 553, "fields": { - "evaluation": 652, - "contributor": [ - "concha.ezell@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 9, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-08T10:31:06.071", + "email": "chong.thorne@institution.example.com", + "title": "", + "first_name_given": "Chong", + "first_name_chosen": "", + "last_name": "Thorne", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1786, + "model": "evaluation.userprofile", + "pk": 554, "fields": { - "evaluation": 652, - "contributor": [ - "odessa.mcmullen@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 10, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-24T15:18:05.982", + "email": "christel.rayburn@institution.example.com", + "title": "", + "first_name_given": "Christel", + "first_name_chosen": "", + "last_name": "Rayburn", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1797, + "model": "evaluation.userprofile", + "pk": 555, "fields": { - "evaluation": 675, - "contributor": [ - "sunni.patten@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-07T18:19:39.897", + "email": "marcella.lu@institution.example.com", + "title": "", + "first_name_given": "Marcella", + "first_name_chosen": "", + "last_name": "Lu", + "language": "", + "is_proxy_user": false, + "login_key": 679371237, + "login_key_valid_until": "2020-05-25", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1798, + "model": "evaluation.userprofile", + "pk": 556, "fields": { - "evaluation": 675, - "contributor": [ - "january.copeland@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-08T12:04:40.513", + "email": "florrie.deluca@institution.example.com", + "title": "", + "first_name_given": "Florrie", + "first_name_chosen": "", + "last_name": "Deluca", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1799, + "model": "evaluation.userprofile", + "pk": 557, "fields": { - "evaluation": 675, - "contributor": [ - "luann.schulz@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-09T09:57:42.808", + "email": "marcia.trammell@institution.example.com", + "title": "", + "first_name_given": "Marcia", + "first_name_chosen": "", + "last_name": "Trammell", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1802, + "model": "evaluation.userprofile", + "pk": 558, "fields": { - "evaluation": 648, - "contributor": [ - "lakisha.tisdale@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-18T19:27:06.576", + "email": "delbert.calkins@institution.example.com", + "title": "", + "first_name_given": "Delbert", + "first_name_chosen": "", + "last_name": "Calkins", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1803, + "model": "evaluation.userprofile", + "pk": 559, "fields": { - "evaluation": 648, - "contributor": [ - "esther.ulrich@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T12:05:46.877", + "email": "randee.dellinger@institution.example.com", + "title": "", + "first_name_given": "Randee", + "first_name_chosen": "", + "last_name": "Dellinger", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1804, + "model": "evaluation.userprofile", + "pk": 560, "fields": { - "evaluation": 648, - "contributor": [ - "arturo.heflin@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T23:32:30.882", + "email": "crysta.bounds@institution.example.com", + "title": "", + "first_name_given": "Crysta", + "first_name_chosen": "", + "last_name": "Bounds", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1805, + "model": "evaluation.userprofile", + "pk": 561, "fields": { - "evaluation": 648, - "contributor": [ - "chrissy.rector@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-02T14:15:40.526", + "email": "carolyn.rose@institution.example.com", + "title": "", + "first_name_given": "Carolyn", + "first_name_chosen": "", + "last_name": "Rose", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1806, + "model": "evaluation.userprofile", + "pk": 562, "fields": { - "evaluation": 648, - "contributor": [ - "jen.jacoby@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 4, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T10:25:52.856", + "email": "chantay.reedy@institution.example.com", + "title": "", + "first_name_given": "Chantay", + "first_name_chosen": "", + "last_name": "Reedy", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1807, + "model": "evaluation.userprofile", + "pk": 563, "fields": { - "evaluation": 648, - "contributor": [ - "inell.bolden@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 5, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T22:58:19.362", + "email": "carmelo.michael@institution.example.com", + "title": "", + "first_name_given": "Carmelo", + "first_name_chosen": "", + "last_name": "Michael", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1808, + "model": "evaluation.userprofile", + "pk": 564, "fields": { - "evaluation": 648, - "contributor": [ - "wes.eaton@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 6, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T16:26:00.969", + "email": "hilde.langston@institution.example.com", + "title": "", + "first_name_given": "Hilde", + "first_name_chosen": "", + "last_name": "Langston", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1809, + "model": "evaluation.userprofile", + "pk": 565, "fields": { - "evaluation": 663, - "contributor": [ - "qiana.briscoe@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-16T15:23:28.720", + "email": "shavon.price@institution.example.com", + "title": "", + "first_name_given": "Shavon", + "first_name_chosen": "", + "last_name": "Price", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1810, + "model": "evaluation.userprofile", + "pk": 566, "fields": { - "evaluation": 648, - "contributor": [ - "dorla.hudgins@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-10T09:51:24.472", + "email": "keva.cheng@institution.example.com", + "title": "", + "first_name_given": "Keva", + "first_name_chosen": "", + "last_name": "Cheng", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1811, + "model": "evaluation.userprofile", + "pk": 567, "fields": { - "evaluation": 648, - "contributor": [ - "zita.marshall@external.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-14T11:11:38.104", + "email": "gaylene.timmons@external.example.com", + "title": "", + "first_name_given": "Gaylene", + "first_name_chosen": "", + "last_name": "Timmons", + "language": "", + "is_proxy_user": false, + "login_key": 1639072630, + "login_key_valid_until": "2012-05-14", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 836, + 123 ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 91, - 92 - ] + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1812, + "model": "evaluation.userprofile", + "pk": 568, "fields": { - "evaluation": 648, - "contributor": [ - "madaline.marcum@external.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-31T09:32:31.564", + "email": "sonia.dominguez@external.example.com", + "title": "Dr.", + "first_name_given": "Sonia", + "first_name_chosen": "", + "last_name": "Dominguez", + "language": "", + "is_proxy_user": false, + "login_key": 500083702, + "login_key_valid_until": "2014-10-27", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 836, + 123 ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 85, - 91, - 92 - ] + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1822, + "model": "evaluation.userprofile", + "pk": 569, "fields": { - "evaluation": 665, - "contributor": [ - "sindy.boisvert@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-19T13:13:58.523", + "email": "elden.seitz@institution.example.com", + "title": "", + "first_name_given": "Elden", + "first_name_chosen": "", + "last_name": "Seitz", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1824, + "model": "evaluation.userprofile", + "pk": 570, "fields": { - "evaluation": 665, - "contributor": [ - "miles.huntington@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-07T16:04:02.080", + "email": "beatrice.bridges@external.example.com", + "title": "", + "first_name_given": "Beatrice", + "first_name_chosen": "", + "last_name": "Bridges", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1825, + "model": "evaluation.userprofile", + "pk": 571, "fields": { - "evaluation": 641, - "contributor": [ - "wyatt.fairchild@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-24T01:27:24.401", + "email": "reyna.mondragon@institution.example.com", + "title": "", + "first_name_given": "Reyna", + "first_name_chosen": "", + "last_name": "Mondragon", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1826, + "model": "evaluation.userprofile", + "pk": 572, "fields": { - "evaluation": 641, - "contributor": [ - "randolph.patrick@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-19T00:10:32.552", + "email": "eleanor.powell@external.example.com", + "title": "", + "first_name_given": "Eleanor", + "first_name_chosen": "", + "last_name": "Powell", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1827, + "model": "evaluation.userprofile", + "pk": 573, "fields": { - "evaluation": 641, - "contributor": [ - "georgann.mcneill@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-12-04T15:15:17.438", + "email": "lakisha.tisdale@external.example.com", + "title": "", + "first_name_given": "Lakisha", + "first_name_chosen": "", + "last_name": "Tisdale", + "language": "", + "is_proxy_user": false, + "login_key": 2127579123, + "login_key_valid_until": "2013-03-04", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1828, + "model": "evaluation.userprofile", + "pk": 574, "fields": { - "evaluation": 698, - "contributor": [ - "lindsy.clement@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-19T00:10:54.570", + "email": "gaynell.little@external.example.com", + "title": "", + "first_name_given": "Gaynell", + "first_name_chosen": "", + "last_name": "Little", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1835, + "model": "evaluation.userprofile", + "pk": 575, "fields": { - "evaluation": 643, - "contributor": [ - "bailey.roybal@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-19T00:11:03.516", + "email": "quiana.durand@institution.example.com", + "title": "", + "first_name_given": "Quiana", + "first_name_chosen": "", + "last_name": "Durand", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1836, + "model": "evaluation.userprofile", + "pk": 576, "fields": { - "evaluation": 643, - "contributor": [ - "catharine.medeiros@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-19T00:11:26.664", + "email": "claudia.homan@external.example.com", + "title": "", + "first_name_given": "Claudia", + "first_name_chosen": "", + "last_name": "Homan", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1837, + "model": "evaluation.userprofile", + "pk": 577, "fields": { - "evaluation": 643, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 48, - 81, - 82, - 50, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-23T16:35:49.553", + "email": "leola.parrott@external.example.com", + "title": "", + "first_name_given": "Leola", + "first_name_chosen": "", + "last_name": "Parrott", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1842, + "model": "evaluation.userprofile", + "pk": 578, "fields": { - "evaluation": 686, - "contributor": [ - "harriet.rushing@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-19T00:11:27.520", + "email": "dewitt.hooks@external.example.com", + "title": "", + "first_name_given": "Dewitt", + "first_name_chosen": "", + "last_name": "Hooks", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1843, + "model": "evaluation.userprofile", + "pk": 579, "fields": { - "evaluation": 686, - "contributor": [ - "gabriela.carlisle@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-19T00:11:55.671", + "email": "leslee.minor@external.example.com", + "title": "", + "first_name_given": "Leslee", + "first_name_chosen": "", + "last_name": "Minor", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1844, + "model": "evaluation.userprofile", + "pk": 580, "fields": { - "evaluation": 686, - "contributor": [ - "eboni.maldonado@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-19T00:11:57.518", + "email": "lyndia.higdon@institution.example.com", + "title": "Dr.", + "first_name_given": "Lyndia", + "first_name_chosen": "", + "last_name": "Higdon", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1845, + "model": "evaluation.userprofile", + "pk": 581, "fields": { - "evaluation": 686, - "contributor": [ - "errol.simon@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-19T11:28:43.154", + "email": "gwyn.lloyd@institution.example.com", + "title": "", + "first_name_given": "Gwyn", + "first_name_chosen": "", + "last_name": "Lloyd", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2013-05-21", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1849, + "model": "evaluation.userprofile", + "pk": 582, "fields": { - "evaluation": 686, - "contributor": [ - "damion.navarrete@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 4, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-26T12:35:59.514", + "email": "heike.cartwright@external.example.com", + "title": "", + "first_name_given": "Heike", + "first_name_chosen": "", + "last_name": "Cartwright", + "language": "", + "is_proxy_user": false, + "login_key": 3816853, + "login_key_valid_until": "2013-02-21", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1851, + "model": "evaluation.userprofile", + "pk": 583, "fields": { - "evaluation": 698, - "contributor": [ - "sharon.cress@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-24T07:50:44.858", + "email": "tracie.shephard@external.example.com", + "title": "", + "first_name_given": "Tracie", + "first_name_chosen": "", + "last_name": "Shephard", + "language": "", + "is_proxy_user": false, + "login_key": 1456662462, + "login_key_valid_until": "2013-12-23", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1852, + "model": "evaluation.userprofile", + "pk": 584, "fields": { - "evaluation": 648, - "contributor": [ - "kindra.hancock@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 0, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-24T23:20:57.209", + "email": "inell.bolden@external.example.com", + "title": "", + "first_name_given": "Inell", + "first_name_chosen": "", + "last_name": "Bolden", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1860, + "model": "evaluation.userprofile", + "pk": 585, "fields": { - "evaluation": 690, - "contributor": [ - "doria.matthews@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-24T23:22:51.108", + "email": "chrissy.rector@external.example.com", + "title": "", + "first_name_given": "Chrissy", + "first_name_chosen": "", + "last_name": "Rector", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1863, + "model": "evaluation.userprofile", + "pk": 586, "fields": { - "evaluation": 709, - "contributor": [ - "olivia.trevino@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-24T23:23:39.726", + "email": "dorla.hudgins@external.example.com", + "title": "", + "first_name_given": "Dorla", + "first_name_chosen": "", + "last_name": "Hudgins", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1866, + "model": "evaluation.userprofile", + "pk": 587, "fields": { - "evaluation": 690, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 0, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-24T23:24:23.965", + "email": "jen.jacoby@external.example.com", + "title": "", + "first_name_given": "Jen", + "first_name_chosen": "", + "last_name": "Jacoby", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1867, + "model": "evaluation.userprofile", + "pk": 588, "fields": { - "evaluation": 654, - "contributor": [ - "kyra.hart@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T14:31:54.681", + "email": "joella.naquin@institution.example.com", + "title": "", + "first_name_given": "Joella", + "first_name_chosen": "", + "last_name": "Naquin", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1868, + "model": "evaluation.userprofile", + "pk": 589, "fields": { - "evaluation": 654, - "contributor": [ - "malika.hansen@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-28T15:56:55.138", + "email": "valery.bassett@institution.example.com", + "title": "", + "first_name_given": "Valery", + "first_name_chosen": "", + "last_name": "Bassett", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1869, + "model": "evaluation.userprofile", + "pk": 590, "fields": { - "evaluation": 654, - "contributor": [ - "tequila.huang@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T21:38:05.492", + "email": "kassie.lockett@institution.example.com", + "title": "", + "first_name_given": "Kassie", + "first_name_chosen": "", + "last_name": "Lockett", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1870, + "model": "evaluation.userprofile", + "pk": 591, "fields": { - "evaluation": 654, - "contributor": [ - "beth.carlton@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:11:41.668", + "email": "malika.hansen@institution.example.com", + "title": "", + "first_name_given": "Malika", + "first_name_chosen": "", + "last_name": "Hansen", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1871, + "model": "evaluation.userprofile", + "pk": 592, "fields": { - "evaluation": 654, - "contributor": [ - "alix.mancini@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 4, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-30T13:29:34.870", + "email": "alix.mancini@institution.example.com", + "title": "", + "first_name_given": "Alix", + "first_name_chosen": "", + "last_name": "Mancini", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1872, + "model": "evaluation.userprofile", + "pk": 593, "fields": { - "evaluation": 655, - "contributor": [ - "kyra.hart@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-08-07T13:47:19.134", + "email": "olivia.trevino@institution.example.com", + "title": "", + "first_name_given": "Olivia", + "first_name_chosen": "", + "last_name": "Trevino", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1873, + "model": "evaluation.userprofile", + "pk": 594, "fields": { - "evaluation": 655, - "contributor": [ - "malika.hansen@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-30T13:33:16.547", + "email": "sherlene.bobbitt@external.example.com", + "title": "", + "first_name_given": "Sherlene", + "first_name_chosen": "", + "last_name": "Bobbitt", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1874, + "model": "evaluation.userprofile", + "pk": 595, "fields": { - "evaluation": 655, - "contributor": [ - "xavier.luciano@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-02T13:45:41.652", + "email": "doria.matthews@institution.example.com", + "title": "", + "first_name_given": "Doria", + "first_name_chosen": "", + "last_name": "Matthews", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1880, + "model": "evaluation.userprofile", + "pk": 596, "fields": { - "evaluation": 682, - "contributor": [ - "sherlene.bobbitt@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-30T14:36:05.698", + "email": "jacinto.wild@institution.example.com", + "title": "", + "first_name_given": "Jacinto", + "first_name_chosen": "", + "last_name": "Wild", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1881, + "model": "evaluation.userprofile", + "pk": 597, "fields": { - "evaluation": 682, - "contributor": [ - "contributor@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-30T17:29:08.879", + "email": "reyna.masterson@external.example.com", + "title": "", + "first_name_given": "Reyna", + "first_name_chosen": "", + "last_name": "Masterson", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1884, + "model": "evaluation.userprofile", + "pk": 598, "fields": { - "evaluation": 697, - "contributor": [ - "tonita.gallardo@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-30T17:29:50.227", + "email": "kacy.galvan@external.example.com", + "title": "", + "first_name_given": "Kacy", + "first_name_chosen": "", + "last_name": "Galvan", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1921, + "model": "evaluation.userprofile", + "pk": 599, "fields": { - "evaluation": 730, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-14T19:21:46.836", + "email": "beau.saunders@external.example.com", + "title": "", + "first_name_given": "Beau", + "first_name_chosen": "", + "last_name": "Saunders", + "language": "", + "is_proxy_user": false, + "login_key": 28628139, + "login_key_valid_until": "2014-11-10", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 836, + 123 + ], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 1922, + "model": "evaluation.userprofile", + "pk": 600, "fields": { - "evaluation": 730, - "contributor": [ - "sonia.dominguez@external.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-30T17:49:45.055", + "email": "merle.higdon@external.example.com", + "title": "", + "first_name_given": "Merle", + "first_name_chosen": "", + "last_name": "Higdon", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 836, + 123 ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3354, + "model": "evaluation.userprofile", + "pk": 601, "fields": { - "evaluation": 1454, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 93, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-17T15:50:57.846", + "email": "earline.hills@institution.example.com", + "title": "", + "first_name_given": "Earline", + "first_name_chosen": "", + "last_name": "Hills", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3355, + "model": "evaluation.userprofile", + "pk": 602, "fields": { - "evaluation": 1454, - "contributor": [ - "arron.tran@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-30T18:19:49.165", + "email": "mandy.harman@institution.example.com", + "title": "", + "first_name_given": "Mandy", + "first_name_chosen": "", + "last_name": "Harman", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3366, + "model": "evaluation.userprofile", + "pk": 603, "fields": { - "evaluation": 1460, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-01-30T18:21:25.262", + "email": "tonie.helms@institution.example.com", + "title": "", + "first_name_given": "Tonie", + "first_name_chosen": "", + "last_name": "Helms", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3367, + "model": "evaluation.userprofile", + "pk": 604, "fields": { - "evaluation": 1460, - "contributor": [ - "ingeborg.herring@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] - } -}, -{ - "model": "evaluation.contribution", - "pk": 3372, - "fields": { - "evaluation": 1463, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-02T15:42:00.154", + "email": "vanetta.fleck@institution.example.com", + "title": "", + "first_name_given": "Vanetta", + "first_name_chosen": "", + "last_name": "Fleck", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3373, + "model": "evaluation.userprofile", + "pk": 605, "fields": { - "evaluation": 1463, - "contributor": [ - "mariann.locke@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-03T20:52:32.693", + "email": "randee.griffith@institution.example.com", + "title": "", + "first_name_given": "Randee", + "first_name_chosen": "", + "last_name": "Griffith", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3382, + "model": "evaluation.userprofile", + "pk": 606, "fields": { - "evaluation": 1468, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-31T14:19:19.845", + "email": "charlsie.pressley@institution.example.com", + "title": "", + "first_name_given": "Charlsie", + "first_name_chosen": "", + "last_name": "Pressley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3383, + "model": "evaluation.userprofile", + "pk": 607, "fields": { - "evaluation": 1468, - "contributor": [ - "henriette.park@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-07T18:59:05.750", + "email": "sheron.mccleary@institution.example.com", + "title": "", + "first_name_given": "Sheron", + "first_name_chosen": "", + "last_name": "Mccleary", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3390, + "model": "evaluation.userprofile", + "pk": 608, "fields": { - "evaluation": 1472, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-12T15:22:35.949", + "email": "lissette.mccallister@external.example.com", + "title": "", + "first_name_given": "Lissette", + "first_name_chosen": "", + "last_name": "Mccallister", + "language": "", + "is_proxy_user": false, + "login_key": 1219355322, + "login_key_valid_until": "2012-10-07", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3391, + "model": "evaluation.userprofile", + "pk": 609, "fields": { - "evaluation": 1472, - "contributor": [ - "responsible@institution.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-02T17:40:40.503", + "email": "millard.heath@external.example.com", + "title": "Dr.", + "first_name_given": "Millard", + "first_name_chosen": "", + "last_name": "Heath", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 123 ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3394, + "model": "evaluation.userprofile", + "pk": 610, "fields": { - "evaluation": 1474, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 88, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-04T02:06:16.918", + "email": "elwanda.fulton@external.example.com", + "title": "", + "first_name_given": "Elwanda", + "first_name_chosen": "", + "last_name": "Fulton", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3395, + "model": "evaluation.userprofile", + "pk": 611, "fields": { - "evaluation": 1474, - "contributor": [ - "elena.kline@institution.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-16T21:53:50.281", + "email": "shayne.scruggs@external.example.com", + "title": "", + "first_name_given": "Shayne", + "first_name_chosen": "", + "last_name": "Scruggs", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 292, + 601 ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 90, - 92 - ] + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3404, + "model": "evaluation.userprofile", + "pk": 612, "fields": { - "evaluation": 1479, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-16T21:57:02.408", + "email": "donetta.huffman@external.example.com", + "title": "", + "first_name_given": "Donetta", + "first_name_chosen": "", + "last_name": "Huffman", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 292, + 601 + ], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3405, + "model": "evaluation.userprofile", + "pk": 613, "fields": { - "evaluation": 1479, - "contributor": [ - "luciana.graves@institution.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-02-22T21:55:05.249", + "email": "jann.liu@external.example.com", + "title": "", + "first_name_given": "Jann", + "first_name_chosen": "", + "last_name": "Liu", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 155 ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87 - ] + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3406, + "model": "evaluation.userprofile", + "pk": 614, "fields": { - "evaluation": 1480, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-03-29T21:50:58.578", + "email": "carol.grier@institution.example.com", + "title": "", + "first_name_given": "Carol", + "first_name_chosen": "", + "last_name": "Grier", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3407, + "model": "evaluation.userprofile", + "pk": 615, "fields": { - "evaluation": 1480, - "contributor": [ - "evie.martz@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-04-12T13:29:11.268", + "email": "lupita.eagle@external.example.com", + "title": "", + "first_name_given": "Lupita", + "first_name_chosen": "", + "last_name": "Eagle", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3416, + "model": "evaluation.userprofile", + "pk": 616, "fields": { - "evaluation": 1485, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-24T12:21:45.796", + "email": "ricki.canada@external.example.com", + "title": "", + "first_name_given": "Ricki", + "first_name_chosen": "", + "last_name": "Canada", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3417, + "model": "evaluation.userprofile", + "pk": 617, "fields": { - "evaluation": 1485, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-30T13:15:32.640", + "email": "joya.gagne@institution.example.com", + "title": "Dr.", + "first_name_given": "Joya", + "first_name_chosen": "", + "last_name": "Gagne", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3422, + "model": "evaluation.userprofile", + "pk": 618, "fields": { - "evaluation": 1488, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T11:42:00.270", + "email": "donnetta.casillas@institution.example.com", + "title": "Dr.", + "first_name_given": "Donnetta", + "first_name_chosen": "", + "last_name": "Casillas", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3423, + "model": "evaluation.userprofile", + "pk": 619, "fields": { - "evaluation": 1488, - "contributor": [ - "kindra.hancock@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-06T08:48:55.684", + "email": "treena.paul@external.example.com", + "title": "Prof. Dr.", + "first_name_given": "Treena", + "first_name_chosen": "", + "last_name": "Paul", + "language": "", + "is_proxy_user": false, + "login_key": 1729717352, + "login_key_valid_until": "2012-10-03", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3434, + "model": "evaluation.userprofile", + "pk": 620, "fields": { - "evaluation": 1494, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T15:58:46.999", + "email": "trudie.huntley@institution.example.com", + "title": "Dr.", + "first_name_given": "Trudie", + "first_name_chosen": "", + "last_name": "Huntley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3435, + "model": "evaluation.userprofile", + "pk": 621, "fields": { - "evaluation": 1494, - "contributor": [ - "amelia.handy@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-08T05:31:44.362", + "email": "raymonde.stock@institution.example.com", + "title": "", + "first_name_given": "Raymonde", + "first_name_chosen": "", + "last_name": "Stock", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3440, + "model": "evaluation.userprofile", + "pk": 622, "fields": { - "evaluation": 1497, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-27T16:53:03.280", + "email": "vicky.gann@institution.example.com", + "title": "", + "first_name_given": "Vicky", + "first_name_chosen": "", + "last_name": "Gann", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3442, + "model": "evaluation.userprofile", + "pk": 623, "fields": { - "evaluation": 1498, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-30T19:30:41.205", + "email": "chasidy.draper@institution.example.com", + "title": "", + "first_name_given": "Chasidy", + "first_name_chosen": "", + "last_name": "Draper", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3443, + "model": "evaluation.userprofile", + "pk": 624, "fields": { - "evaluation": 1498, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 2, - "questionnaires": [] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-13T22:38:29.694", + "email": "gwendolyn.yoo@institution.example.com", + "title": "", + "first_name_given": "Gwendolyn", + "first_name_chosen": "", + "last_name": "Yoo", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3444, + "model": "evaluation.userprofile", + "pk": 625, "fields": { - "evaluation": 1499, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 104, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-03-01T18:13:25.488", + "email": "vanna.escamilla@institution.example.com", + "title": "", + "first_name_given": "Vanna", + "first_name_chosen": "", + "last_name": "Escamilla", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3445, + "model": "evaluation.userprofile", + "pk": 626, "fields": { - "evaluation": 1499, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-19T13:04:41.845", + "email": "melania.wolfe@institution.example.com", + "title": "", + "first_name_given": "Melania", + "first_name_chosen": "", + "last_name": "Wolfe", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3446, + "model": "evaluation.userprofile", + "pk": 627, "fields": { - "evaluation": 1500, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-18T21:18:16.805", + "email": "eden.desimone@institution.example.com", + "title": "", + "first_name_given": "Eden", + "first_name_chosen": "", + "last_name": "Desimone", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3447, + "model": "evaluation.userprofile", + "pk": 628, "fields": { - "evaluation": 1500, - "contributor": [ - "sandee.coker@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-23T11:12:45.731", + "email": "kellee.maldonado@institution.example.com", + "title": "", + "first_name_given": "Kellee", + "first_name_chosen": "", + "last_name": "Maldonado", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3450, + "model": "evaluation.userprofile", + "pk": 629, "fields": { - "evaluation": 1502, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-06-14T15:20:40.001", + "email": "bryant.johnson@institution.example.com", + "title": "", + "first_name_given": "Bryant", + "first_name_chosen": "", + "last_name": "Johnson", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3451, + "model": "evaluation.userprofile", + "pk": 630, "fields": { - "evaluation": 1502, - "contributor": [ - "mariann.locke@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T17:31:47.858", + "email": "tula.langdon@institution.example.com", + "title": "", + "first_name_given": "Tula", + "first_name_chosen": "", + "last_name": "Langdon", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3452, + "model": "evaluation.userprofile", + "pk": 631, "fields": { - "evaluation": 1503, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T14:07:52.087", + "email": "larissa.osteen@institution.example.com", + "title": "", + "first_name_given": "Larissa", + "first_name_chosen": "", + "last_name": "Osteen", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3453, + "model": "evaluation.userprofile", + "pk": 632, "fields": { - "evaluation": 1503, - "contributor": [ - "lizabeth.steward@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-06-14T15:20:49.050", + "email": "quincy.hammond@institution.example.com", + "title": "", + "first_name_given": "Quincy", + "first_name_chosen": "", + "last_name": "Hammond", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3454, + "model": "evaluation.userprofile", + "pk": 633, "fields": { - "evaluation": 1504, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-06-14T15:20:50.004", + "email": "darcy.osorio@institution.example.com", + "title": "", + "first_name_given": "Darcy", + "first_name_chosen": "", + "last_name": "Osorio", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3455, + "model": "evaluation.userprofile", + "pk": 634, "fields": { - "evaluation": 1504, - "contributor": [ - "harriet.rushing@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-22T09:30:52.994", + "email": "norris.peeler@institution.example.com", + "title": "", + "first_name_given": "Norris", + "first_name_chosen": "", + "last_name": "Peeler", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3458, + "model": "evaluation.userprofile", + "pk": 635, "fields": { - "evaluation": 1506, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 110 - ] - } -}, -{ - "model": "evaluation.contribution", - "pk": 3459, - "fields": { - "evaluation": 1506, - "contributor": [ - "henriette.park@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T14:12:14.720", + "email": "celsa.macias@institution.example.com", + "title": "", + "first_name_given": "Celsa", + "first_name_chosen": "", + "last_name": "Macias", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3460, + "model": "evaluation.userprofile", + "pk": 636, "fields": { - "evaluation": 1507, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-22T18:17:10.843", + "email": "inge.mcmullen@institution.example.com", + "title": "", + "first_name_given": "Inge", + "first_name_chosen": "", + "last_name": "Mcmullen", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3461, + "model": "evaluation.userprofile", + "pk": 637, "fields": { - "evaluation": 1507, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-18T20:33:05.713", + "email": "jammie.bey@institution.example.com", + "title": "", + "first_name_given": "Jammie", + "first_name_chosen": "", + "last_name": "Bey", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3462, + "model": "evaluation.userprofile", + "pk": 638, "fields": { - "evaluation": 1508, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-12T08:45:05.211", + "email": "jackelyn.gooding@institution.example.com", + "title": "", + "first_name_given": "Jackelyn", + "first_name_chosen": "", + "last_name": "Gooding", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3463, + "model": "evaluation.userprofile", + "pk": 639, "fields": { - "evaluation": 1508, - "contributor": [ - "trudie.huntley@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-30T19:48:34.747", + "email": "hiram.lemus@institution.example.com", + "title": "", + "first_name_given": "Hiram", + "first_name_chosen": "", + "last_name": "Lemus", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3466, + "model": "evaluation.userprofile", + "pk": 640, "fields": { - "evaluation": 1510, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-02T23:20:00.628", + "email": "etta.child@institution.example.com", + "title": "", + "first_name_given": "Etta", + "first_name_chosen": "", + "last_name": "Child", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3467, + "model": "evaluation.userprofile", + "pk": 641, "fields": { - "evaluation": 1510, - "contributor": [ - "elena.kline@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 90, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T04:24:00.981", + "email": "sunni.patten@institution.example.com", + "title": "", + "first_name_given": "Sunni", + "first_name_chosen": "", + "last_name": "Patten", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3472, + "model": "evaluation.userprofile", + "pk": 642, "fields": { - "evaluation": 1513, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-12-04T14:46:31.919", + "email": "pearline.ellington@institution.example.com", + "title": "", + "first_name_given": "Pearline", + "first_name_chosen": "", + "last_name": "Ellington", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3473, + "model": "evaluation.userprofile", + "pk": 643, "fields": { - "evaluation": 1513, - "contributor": [ - "merle.higdon@external.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T22:26:24.836", + "email": "qiana.briscoe@external.example.com", + "title": "Dr.", + "first_name_given": "Qiana", + "first_name_chosen": "", + "last_name": "Briscoe", + "language": "", + "is_proxy_user": false, + "login_key": 1049235434, + "login_key_valid_until": "2014-08-26", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 836, + 123 ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3474, + "model": "evaluation.userprofile", + "pk": 644, "fields": { - "evaluation": 1514, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-02T22:47:27.656", + "email": "zita.marshall@external.example.com", + "title": "", + "first_name_given": "Zita", + "first_name_chosen": "", + "last_name": "Marshall", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3475, + "model": "evaluation.userprofile", + "pk": 645, "fields": { - "evaluation": 1514, - "contributor": [ - "ingeborg.herring@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-02T22:51:15.718", + "email": "madaline.marcum@external.example.com", + "title": "", + "first_name_given": "Madaline", + "first_name_chosen": "", + "last_name": "Marcum", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3482, + "model": "evaluation.userprofile", + "pk": 646, "fields": { - "evaluation": 1518, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-03T12:07:14.680", + "email": "miles.huntington@institution.example.com", + "title": "", + "first_name_given": "Miles", + "first_name_chosen": "", + "last_name": "Huntington", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3483, + "model": "evaluation.userprofile", + "pk": 647, "fields": { - "evaluation": 1518, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-03T14:52:59.325", + "email": "jeannetta.reichert@external.example.com", + "title": "", + "first_name_given": "Jeannetta", + "first_name_chosen": "", + "last_name": "Reichert", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3486, + "model": "evaluation.userprofile", + "pk": 648, "fields": { - "evaluation": 1520, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:13:03.554", + "email": "damion.navarrete@institution.example.com", + "title": "", + "first_name_given": "Damion", + "first_name_chosen": "", + "last_name": "Navarrete", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3487, + "model": "evaluation.userprofile", + "pk": 649, "fields": { - "evaluation": 1520, - "contributor": [ - "ingeborg.herring@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-04T20:04:49.118", + "email": "conchita.dent@external.example.com", + "title": "", + "first_name_given": "Conchita", + "first_name_chosen": "", + "last_name": "Dent", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3496, + "model": "evaluation.userprofile", + "pk": 650, "fields": { - "evaluation": 1525, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-22T18:04:27.203", + "email": "toi.grantham@institution.example.com", + "title": "", + "first_name_given": "Toi", + "first_name_chosen": "", + "last_name": "Grantham", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3497, + "model": "evaluation.userprofile", + "pk": 651, "fields": { - "evaluation": 1525, - "contributor": [ - "ingeborg.herring@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-06T11:37:12.107", + "email": "tequila.huang@institution.example.com", + "title": "", + "first_name_given": "Tequila", + "first_name_chosen": "", + "last_name": "Huang", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3508, + "model": "evaluation.userprofile", + "pk": 652, "fields": { - "evaluation": 1531, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-31T08:22:33.176", + "email": "xavier.luciano@institution.example.com", + "title": "", + "first_name_given": "Xavier", + "first_name_chosen": "", + "last_name": "Luciano", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3509, + "model": "evaluation.userprofile", + "pk": 653, "fields": { - "evaluation": 1531, - "contributor": [ - "ingeborg.herring@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-13T11:22:23.383", + "email": "hsiu.page@institution.example.com", + "title": "", + "first_name_given": "Hsiu", + "first_name_chosen": "", + "last_name": "Page", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3515, + "model": "evaluation.userprofile", + "pk": 654, "fields": { - "evaluation": 1531, - "contributor": [ - "juanita.kimbrough@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-31T09:47:57.955", + "email": "elias.troy@institution.example.com", + "title": "", + "first_name_given": "Elias", + "first_name_chosen": "", + "last_name": "Troy", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3516, + "model": "evaluation.userprofile", + "pk": 655, "fields": { - "evaluation": 1520, - "contributor": [ - "darnell.aguilera@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-06T16:11:15.271", + "email": "gidget.raney@institution.example.com", + "title": "", + "first_name_given": "Gidget", + "first_name_chosen": "", + "last_name": "Raney", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3517, + "model": "evaluation.userprofile", + "pk": 656, "fields": { - "evaluation": 1520, - "contributor": [ - "lynn.baptiste@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-06T19:50:24.593", + "email": "holly.slade@institution.example.com", + "title": "", + "first_name_given": "Holly", + "first_name_chosen": "", + "last_name": "Slade", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3518, + "model": "evaluation.userprofile", + "pk": 657, "fields": { - "evaluation": 1520, - "contributor": [ - "janna.langlois@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 87, - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-31T09:32:18.046", + "email": "beula.hopkins@institution.example.com", + "title": "", + "first_name_given": "Beula", + "first_name_chosen": "", + "last_name": "Hopkins", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3519, + "model": "evaluation.userprofile", + "pk": 658, "fields": { - "evaluation": 1514, - "contributor": [ - "elbert.baber@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-11-09T11:15:50.710", + "email": "kallie.sierra@institution.example.com", + "title": "", + "first_name_given": "Kallie", + "first_name_chosen": "", + "last_name": "Sierra", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3525, + "model": "evaluation.userprofile", + "pk": 659, "fields": { - "evaluation": 1460, - "contributor": [ - "lynn.baptiste@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-10T08:02:50.234", + "email": "timika.angel@external.example.com", + "title": "", + "first_name_given": "Timika", + "first_name_chosen": "", + "last_name": "Angel", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3526, + "model": "evaluation.userprofile", + "pk": 660, "fields": { - "evaluation": 1460, - "contributor": [ - "melania.wolfe@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-07-10T16:46:58.146", + "email": "rey.mccall@external.example.com", + "title": "", + "first_name_given": "Rey", + "first_name_chosen": "", + "last_name": "Mccall", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3528, + "model": "evaluation.userprofile", + "pk": 661, "fields": { - "evaluation": 1510, - "contributor": [ - "tanna.worsham@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-04T12:58:12.400", + "email": "fay.england@external.example.com", + "title": "", + "first_name_given": "Fay", + "first_name_chosen": "", + "last_name": "England", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3529, + "model": "evaluation.userprofile", + "pk": 662, "fields": { - "evaluation": 1474, - "contributor": [ - "willena.hemphill@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-05-30T20:13:22.114", + "email": "ling.mcdade@institution.example.com", + "title": "", + "first_name_given": "Ling", + "first_name_chosen": "", + "last_name": "Mcdade", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3530, + "model": "evaluation.userprofile", + "pk": 663, "fields": { - "evaluation": 1474, - "contributor": [ - "tanna.worsham@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-02T13:52:41.361", + "email": "hilda.rocha@institution.example.com", + "title": "", + "first_name_given": "Hilda", + "first_name_chosen": "", + "last_name": "Rocha", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3536, + "model": "evaluation.userprofile", + "pk": 664, "fields": { - "evaluation": 1518, - "contributor": [ - "laurence.tipton@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-31T06:46:14.889", + "email": "lin.sales@institution.example.com", + "title": "", + "first_name_given": "Lin", + "first_name_chosen": "", + "last_name": "Sales", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3545, + "model": "evaluation.userprofile", + "pk": 665, "fields": { - "evaluation": 1497, - "contributor": [ - "contributor@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T09:02:36.659", + "email": "karri.putnam@institution.example.com", + "title": "", + "first_name_given": "Karri", + "first_name_chosen": "", + "last_name": "Putnam", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3546, + "model": "evaluation.userprofile", + "pk": 666, "fields": { - "evaluation": 1497, - "contributor": [ - "junie.hicks@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 89, - 92 - ] - } -}, -{ - "model": "evaluation.contribution", - "pk": 3551, - "fields": { - "evaluation": 1472, - "contributor": [ - "doria.matthews@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T12:15:33.812", + "email": "debra.chesser@institution.example.com", + "title": "", + "first_name_given": "Debra", + "first_name_chosen": "", + "last_name": "Chesser", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3552, + "model": "evaluation.userprofile", + "pk": 667, "fields": { - "evaluation": 1472, - "contributor": [ - "toi.grantham@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T19:10:20.421", + "email": "lulu.ackerman@institution.example.com", + "title": "", + "first_name_given": "Lulu", + "first_name_chosen": "", + "last_name": "Ackerman", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3553, + "model": "evaluation.userprofile", + "pk": 668, "fields": { - "evaluation": 1472, - "contributor": [ - "sharee.hoskins@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-11-23T16:47:14.138", + "email": "classie.cranford@external.example.com", + "title": "", + "first_name_given": "Classie", + "first_name_chosen": "", + "last_name": "Cranford", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3555, + "model": "evaluation.userprofile", + "pk": 669, "fields": { - "evaluation": 1485, - "contributor": [ - "xavier.luciano@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T16:16:31.182", + "email": "raelene.clancy@institution.example.com", + "title": "", + "first_name_given": "Raelene", + "first_name_chosen": "", + "last_name": "Clancy", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3556, + "model": "evaluation.userprofile", + "pk": 670, "fields": { - "evaluation": 1514, - "contributor": [ - "karan.bloom@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2012-12-06T09:21:00.448", + "email": "rey.stamper@external.example.com", + "title": "", + "first_name_given": "Rey", + "first_name_chosen": "", + "last_name": "Stamper", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3560, + "model": "evaluation.userprofile", + "pk": 671, "fields": { - "evaluation": 1497, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 0, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T18:16:03.480", + "email": "emmy.norwood@institution.example.com", + "title": "", + "first_name_given": "Emmy", + "first_name_chosen": "", + "last_name": "Norwood", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3566, + "model": "evaluation.userprofile", + "pk": 672, "fields": { - "evaluation": 1480, - "contributor": [ - "elias.troy@institution.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-02T18:13:54.281", + "email": "haywood.hogue@institution.example.com", + "title": "", + "first_name_given": "Haywood", + "first_name_chosen": "", + "last_name": "Hogue", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [ + [ + "Manager" + ] ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 85, - 92 - ] + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3589, + "model": "evaluation.userprofile", + "pk": 673, "fields": { - "evaluation": 1513, - "contributor": [ - "lisandra.grace@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-05T17:53:05.114", + "email": "francene.sabo@institution.example.com", + "title": "", + "first_name_given": "Francene", + "first_name_chosen": "", + "last_name": "Sabo", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3592, + "model": "evaluation.userprofile", + "pk": 674, "fields": { - "evaluation": 1488, - "contributor": [ - "jen.jacoby@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-07T19:58:48.906", + "email": "trey.ruby@institution.example.com", + "title": "", + "first_name_given": "Trey", + "first_name_chosen": "", + "last_name": "Ruby", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3593, + "model": "evaluation.userprofile", + "pk": 675, "fields": { - "evaluation": 1488, - "contributor": [ - "verdell.joyner@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-11T03:06:26.933", + "email": "jill.mccauley@institution.example.com", + "title": "", + "first_name_given": "Jill", + "first_name_chosen": "", + "last_name": "Mccauley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3594, + "model": "evaluation.userprofile", + "pk": 676, "fields": { - "evaluation": 1488, - "contributor": [ - "chrissy.rector@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T15:44:16.550", + "email": "toshia.piazza@institution.example.com", + "title": "", + "first_name_given": "Toshia", + "first_name_chosen": "", + "last_name": "Piazza", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3595, + "model": "evaluation.userprofile", + "pk": 677, "fields": { - "evaluation": 1488, - "contributor": [ - "wes.eaton@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-15T13:08:05.904", + "email": "elenora.crawford@institution.example.com", + "title": "", + "first_name_given": "Elenora", + "first_name_chosen": "", + "last_name": "Crawford", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3596, + "model": "evaluation.userprofile", + "pk": 678, "fields": { - "evaluation": 1488, - "contributor": [ - "inell.bolden@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 4, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$20000$BwRiEGfjTCC7$RYDeoLBzk8Xj1FD9F9v2UgVHWIlGu1Hu9CyuucoiCMY=", + "last_login": "2015-11-08T14:35:04.569", + "email": "heide.andrew@institution.example.com", + "title": "", + "first_name_given": "Heide", + "first_name_chosen": "", + "last_name": "Andrew", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3597, + "model": "evaluation.userprofile", + "pk": 679, "fields": { - "evaluation": 1488, - "contributor": [ - "rubin.gaston@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 5, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-24T01:20:24.674", + "email": "verdell.joyner@institution.example.com", + "title": "", + "first_name_given": "Verdell", + "first_name_chosen": "", + "last_name": "Joyner", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3598, + "model": "evaluation.userprofile", + "pk": 680, "fields": { - "evaluation": 1488, - "contributor": [ - "antwan.brady@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 6, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-01-24T13:58:28.365", + "email": "shakira.stricklin@institution.example.com", + "title": "", + "first_name_given": "Shakira", + "first_name_chosen": "", + "last_name": "Stricklin", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3603, + "model": "evaluation.userprofile", + "pk": 681, "fields": { - "evaluation": 1479, - "contributor": [ - "reyna.masterson@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-10T01:29:54.008", + "email": "giovanni.leger@institution.example.com", + "title": "", + "first_name_given": "Giovanni", + "first_name_chosen": "", + "last_name": "Leger", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3606, + "model": "evaluation.userprofile", + "pk": 682, "fields": { - "evaluation": 1479, - "contributor": [ - "kacy.galvan@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T23:18:10.128", + "email": "dominga.earley@institution.example.com", + "title": "", + "first_name_given": "Dominga", + "first_name_chosen": "", + "last_name": "Earley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3607, + "model": "evaluation.userprofile", + "pk": 683, "fields": { - "evaluation": 1504, - "contributor": [ - "leola.parrott@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 89, - 90, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-05T17:14:09.097", + "email": "maye.noonan@institution.example.com", + "title": "", + "first_name_given": "Maye", + "first_name_chosen": "", + "last_name": "Noonan", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3608, + "model": "evaluation.userprofile", + "pk": 684, "fields": { - "evaluation": 1504, - "contributor": [ - "al.jean@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 89, - 90, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-31T15:35:19.400", + "email": "giovanna.browne@institution.example.com", + "title": "", + "first_name_given": "Giovanna", + "first_name_chosen": "", + "last_name": "Browne", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3609, + "model": "evaluation.userprofile", + "pk": 685, "fields": { - "evaluation": 1504, - "contributor": [ - "fay.westmoreland@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 87, - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-01-24T16:50:59.640", + "email": "millicent.belcher@institution.example.com", + "title": "", + "first_name_given": "Millicent", + "first_name_chosen": "", + "last_name": "Belcher", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3610, + "model": "evaluation.userprofile", + "pk": 686, "fields": { - "evaluation": 1504, - "contributor": [ - "maegan.mccorkle@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 87, - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-01-24T16:50:59.670", + "email": "tony.hawkins@institution.example.com", + "title": "", + "first_name_given": "Tony", + "first_name_chosen": "", + "last_name": "Hawkins", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3620, + "model": "evaluation.userprofile", + "pk": 687, "fields": { - "evaluation": 1504, - "contributor": [ - "gabriela.carlisle@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 4, - "questionnaires": [ - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T21:52:24.803", + "email": "dia.bussey@institution.example.com", + "title": "", + "first_name_given": "Dia", + "first_name_chosen": "", + "last_name": "Bussey", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3631, + "model": "evaluation.userprofile", + "pk": 688, "fields": { - "evaluation": 1454, - "contributor": [ - "lois.seibert@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 85 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-07T09:46:01.104", + "email": "tanya.maple@institution.example.com", + "title": "", + "first_name_given": "Tanya", + "first_name_chosen": "", + "last_name": "Maple", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3634, + "model": "evaluation.userprofile", + "pk": 689, "fields": { - "evaluation": 1468, - "contributor": [ - "january.copeland@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T15:37:15.662", + "email": "carma.watters@institution.example.com", + "title": "", + "first_name_given": "Carma", + "first_name_chosen": "", + "last_name": "Watters", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3635, + "model": "evaluation.userprofile", + "pk": 690, "fields": { - "evaluation": 1468, - "contributor": [ - "sunni.patten@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-01T00:01:58.948", + "email": "freddy.hitt@institution.example.com", + "title": "", + "first_name_given": "Freddy", + "first_name_chosen": "", + "last_name": "Hitt", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3636, + "model": "evaluation.userprofile", + "pk": 691, "fields": { - "evaluation": 1468, - "contributor": [ - "tabitha.sutter@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-09T15:22:37.841", + "email": "thi.mcallister@institution.example.com", + "title": "", + "first_name_given": "Thi", + "first_name_chosen": "", + "last_name": "Mcallister", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3637, + "model": "evaluation.userprofile", + "pk": 692, "fields": { - "evaluation": 1468, - "contributor": [ - "rey.stamper@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-08T16:59:39.507", + "email": "carylon.hoffmann@institution.example.com", + "title": "", + "first_name_given": "Carylon", + "first_name_chosen": "", + "last_name": "Hoffmann", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3638, + "model": "evaluation.userprofile", + "pk": 693, "fields": { - "evaluation": 1468, - "contributor": [ - "pearline.ellington@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 4, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T17:00:26.651", + "email": "beverley.pitcher@institution.example.com", + "title": "", + "first_name_given": "Beverley", + "first_name_chosen": "", + "last_name": "Pitcher", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3645, + "model": "evaluation.userprofile", + "pk": 694, "fields": { - "evaluation": 1534, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-02T14:16:44.510", + "email": "isaura.baptiste@institution.example.com", + "title": "", + "first_name_given": "Isaura", + "first_name_chosen": "", + "last_name": "Baptiste", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3646, + "model": "evaluation.userprofile", + "pk": 695, "fields": { - "evaluation": 1534, - "contributor": [ - "charity.leonard@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 98, - 90, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-19T01:55:35.901", + "email": "freida.ness@institution.example.com", + "title": "", + "first_name_given": "Freida", + "first_name_chosen": "", + "last_name": "Ness", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3647, + "model": "evaluation.userprofile", + "pk": 696, "fields": { - "evaluation": 1534, - "contributor": [ - "harriet.rushing@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 2, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-05T18:39:46.512", + "email": "rasheeda.glynn@institution.example.com", + "title": "", + "first_name_given": "Rasheeda", + "first_name_chosen": "", + "last_name": "Glynn", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3648, + "model": "evaluation.userprofile", + "pk": 697, "fields": { - "evaluation": 1534, - "contributor": [ - "jolene.squires@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 91, - 92 - ] - } -}, -{ - "model": "evaluation.contribution", - "pk": 3649, - "fields": { - "evaluation": 1534, - "contributor": [ - "leola.parrott@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 4, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-12T09:10:02.075", + "email": "charlyn.robins@institution.example.com", + "title": "", + "first_name_given": "Charlyn", + "first_name_chosen": "", + "last_name": "Robins", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3650, + "model": "evaluation.userprofile", + "pk": 698, "fields": { - "evaluation": 1534, - "contributor": [ - "eboni.maldonado@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 5, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T22:24:32.499", + "email": "maricruz.nall@institution.example.com", + "title": "", + "first_name_given": "Maricruz", + "first_name_chosen": "", + "last_name": "Nall", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3651, + "model": "evaluation.userprofile", + "pk": 699, "fields": { - "evaluation": 1534, - "contributor": [ - "damion.navarrete@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 6, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-13T21:45:40.702", + "email": "ivana.ferro@institution.example.com", + "title": "", + "first_name_given": "Ivana", + "first_name_chosen": "", + "last_name": "Ferro", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3652, + "model": "evaluation.userprofile", + "pk": 700, "fields": { - "evaluation": 1534, - "contributor": [ - "errol.simon@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 7, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-14T23:53:58.898", + "email": "porfirio.rasmussen@institution.example.com", + "title": "", + "first_name_given": "Porfirio", + "first_name_chosen": "", + "last_name": "Rasmussen", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3653, + "model": "evaluation.userprofile", + "pk": 701, "fields": { - "evaluation": 1534, - "contributor": [ - "vanetta.fleck@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 8, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T23:11:01.948", + "email": "virgen.willingham@institution.example.com", + "title": "", + "first_name_given": "Virgen", + "first_name_chosen": "", + "last_name": "Willingham", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3654, + "model": "evaluation.userprofile", + "pk": 702, "fields": { - "evaluation": 1534, - "contributor": [ - "al.jean@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 9, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-08T09:39:25.200", + "email": "dwayne.fortier@institution.example.com", + "title": "", + "first_name_given": "Dwayne", + "first_name_chosen": "", + "last_name": "Fortier", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3665, + "model": "evaluation.userprofile", + "pk": 703, "fields": { - "evaluation": 1540, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-24T01:55:55.757", + "email": "tyrone.guay@institution.example.com", + "title": "", + "first_name_given": "Tyrone", + "first_name_chosen": "", + "last_name": "Guay", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3666, + "model": "evaluation.userprofile", + "pk": 704, "fields": { - "evaluation": 1540, - "contributor": [ - "henriette.park@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T16:31:05.952", + "email": "enrique.horne@institution.example.com", + "title": "", + "first_name_given": "Enrique", + "first_name_chosen": "", + "last_name": "Horne", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3673, + "model": "evaluation.userprofile", + "pk": 705, "fields": { - "evaluation": 1544, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-07T10:56:47.547", + "email": "scotty.daily@institution.example.com", + "title": "", + "first_name_given": "Scotty", + "first_name_chosen": "", + "last_name": "Daily", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3674, + "model": "evaluation.userprofile", + "pk": 706, "fields": { - "evaluation": 1544, - "contributor": [ - "qiana.briscoe@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T22:55:31.384", + "email": "haley.engle@institution.example.com", + "title": "", + "first_name_given": "Haley", + "first_name_chosen": "", + "last_name": "Engle", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3675, + "model": "evaluation.userprofile", + "pk": 707, "fields": { - "evaluation": 1545, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T17:41:35.461", + "email": "inge.baughman@institution.example.com", + "title": "", + "first_name_given": "Inge", + "first_name_chosen": "", + "last_name": "Baughman", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3676, + "model": "evaluation.userprofile", + "pk": 708, "fields": { - "evaluation": 1545, - "contributor": [ - "qiana.briscoe@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T19:39:30.929", + "email": "cyndy.david@institution.example.com", + "title": "", + "first_name_given": "Cyndy", + "first_name_chosen": "", + "last_name": "David", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3679, + "model": "evaluation.userprofile", + "pk": 709, "fields": { - "evaluation": 1547, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T23:02:51.134", + "email": "jere.marr@institution.example.com", + "title": "", + "first_name_given": "Jere", + "first_name_chosen": "", + "last_name": "Marr", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3680, + "model": "evaluation.userprofile", + "pk": 710, "fields": { - "evaluation": 1547, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T15:56:56.046", + "email": "broderick.greenberg@institution.example.com", + "title": "", + "first_name_given": "Broderick", + "first_name_chosen": "", + "last_name": "Greenberg", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3681, + "model": "evaluation.userprofile", + "pk": 711, "fields": { - "evaluation": 1548, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-03T00:24:41.228", + "email": "eryn.devore@institution.example.com", + "title": "", + "first_name_given": "Eryn", + "first_name_chosen": "", + "last_name": "Devore", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3682, + "model": "evaluation.userprofile", + "pk": 712, "fields": { - "evaluation": 1548, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-09T10:24:28.384", + "email": "fran.goodrich@institution.example.com", + "title": "", + "first_name_given": "Fran", + "first_name_chosen": "", + "last_name": "Goodrich", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3683, + "model": "evaluation.userprofile", + "pk": 713, "fields": { - "evaluation": 1549, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 82, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-01-24T16:51:00.749", + "email": "cecille.buck@institution.example.com", + "title": "", + "first_name_given": "Cecille", + "first_name_chosen": "", + "last_name": "Buck", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3684, + "model": "evaluation.userprofile", + "pk": 714, "fields": { - "evaluation": 1549, - "contributor": [ - "wyatt.fairchild@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-02T14:11:53.731", + "email": "yetta.heck@institution.example.com", + "title": "", + "first_name_given": "Yetta", + "first_name_chosen": "", + "last_name": "Heck", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3685, + "model": "evaluation.userprofile", + "pk": 715, "fields": { - "evaluation": 1550, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T14:51:13.092", + "email": "brant.mcduffie@institution.example.com", + "title": "", + "first_name_given": "Brant", + "first_name_chosen": "", + "last_name": "Mcduffie", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3686, + "model": "evaluation.userprofile", + "pk": 716, "fields": { - "evaluation": 1550, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T11:33:59.881", + "email": "echo.andre@institution.example.com", + "title": "", + "first_name_given": "Echo", + "first_name_chosen": "", + "last_name": "Andre", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3693, + "model": "evaluation.userprofile", + "pk": 717, "fields": { - "evaluation": 1554, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-10T15:28:22.492", + "email": "rosendo.carlton@institution.example.com", + "title": "", + "first_name_given": "Rosendo", + "first_name_chosen": "", + "last_name": "Carlton", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3694, + "model": "evaluation.userprofile", + "pk": 718, "fields": { - "evaluation": 1554, - "contributor": [ - "elena.kline@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-31T10:43:28.497", + "email": "daniel.cortez@institution.example.com", + "title": "", + "first_name_given": "Daniel", + "first_name_chosen": "", + "last_name": "Cortez", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3703, + "model": "evaluation.userprofile", + "pk": 719, "fields": { - "evaluation": 1559, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-04T13:52:43.099", + "email": "bee.castellanos@institution.example.com", + "title": "", + "first_name_given": "Bee", + "first_name_chosen": "", + "last_name": "Castellanos", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3704, + "model": "evaluation.userprofile", + "pk": 720, "fields": { - "evaluation": 1559, - "contributor": [ - "darlena.holliman@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T12:51:48.135", + "email": "mirella.behrens@institution.example.com", + "title": "", + "first_name_given": "Mirella", + "first_name_chosen": "", + "last_name": "Behrens", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3711, + "model": "evaluation.userprofile", + "pk": 721, "fields": { - "evaluation": 1563, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 94, - 95, - 96, - 97, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-01T17:54:29.760", + "email": "lasonya.phillip@institution.example.com", + "title": "", + "first_name_given": "Lasonya", + "first_name_chosen": "", + "last_name": "Phillip", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3712, + "model": "evaluation.userprofile", + "pk": 722, "fields": { - "evaluation": 1563, - "contributor": [ - "ingeborg.herring@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T15:09:14.183", + "email": "star.west@institution.example.com", + "title": "", + "first_name_given": "Star", + "first_name_chosen": "", + "last_name": "West", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3713, + "model": "evaluation.userprofile", + "pk": 723, "fields": { - "evaluation": 1564, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-07T11:36:11.243", + "email": "shelia.turney@institution.example.com", + "title": "", + "first_name_given": "Shelia", + "first_name_chosen": "", + "last_name": "Turney", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3714, + "model": "evaluation.userprofile", + "pk": 724, "fields": { - "evaluation": 1564, - "contributor": [ - "amelia.handy@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-24T14:49:39.646", + "email": "sheryl.dow@institution.example.com", + "title": "", + "first_name_given": "Sheryl", + "first_name_chosen": "", + "last_name": "Dow", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3721, + "model": "evaluation.userprofile", + "pk": 725, "fields": { - "evaluation": 1568, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T17:13:30.103", + "email": "yi.thurman@institution.example.com", + "title": "", + "first_name_given": "Yi", + "first_name_chosen": "", + "last_name": "Thurman", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3722, + "model": "evaluation.userprofile", + "pk": 726, "fields": { - "evaluation": 1568, - "contributor": [ - "kindra.hancock@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-05T17:14:15.435", + "email": "leroy.surratt@institution.example.com", + "title": "", + "first_name_given": "Leroy", + "first_name_chosen": "", + "last_name": "Surratt", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3723, + "model": "evaluation.userprofile", + "pk": 727, "fields": { - "evaluation": 1569, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T17:20:02.891", + "email": "cleo.arreola@institution.example.com", + "title": "", + "first_name_given": "Cleo", + "first_name_chosen": "", + "last_name": "Arreola", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3724, + "model": "evaluation.userprofile", + "pk": 728, "fields": { - "evaluation": 1569, - "contributor": [ - "sunni.hollingsworth@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-05T18:13:41.775", + "email": "shakira.gilmer@institution.example.com", + "title": "", + "first_name_given": "Shakira", + "first_name_chosen": "", + "last_name": "Gilmer", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3725, + "model": "evaluation.userprofile", + "pk": 729, "fields": { - "evaluation": 1570, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-12T11:08:20.214", + "email": "donetta.burr@institution.example.com", + "title": "", + "first_name_given": "Donetta", + "first_name_chosen": "", + "last_name": "Burr", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3726, + "model": "evaluation.userprofile", + "pk": 730, "fields": { - "evaluation": 1570, - "contributor": [ - "sunni.hollingsworth@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-07T21:55:50.678", + "email": "reva.farr@institution.example.com", + "title": "", + "first_name_given": "Reva", + "first_name_chosen": "", + "last_name": "Farr", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3727, + "model": "evaluation.userprofile", + "pk": 731, "fields": { - "evaluation": 1571, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-19T03:13:00.219", + "email": "sherryl.dozier@institution.example.com", + "title": "", + "first_name_given": "Sherryl", + "first_name_chosen": "", + "last_name": "Dozier", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3728, + "model": "evaluation.userprofile", + "pk": 732, "fields": { - "evaluation": 1571, - "contributor": [ - "mariann.locke@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-09T00:01:19.137", + "email": "zane.aldridge@institution.example.com", + "title": "", + "first_name_given": "Zane", + "first_name_chosen": "", + "last_name": "Aldridge", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3735, + "model": "evaluation.userprofile", + "pk": 733, "fields": { - "evaluation": 1575, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-08T23:54:56.905", + "email": "haydee.greco@institution.example.com", + "title": "", + "first_name_given": "Haydee", + "first_name_chosen": "", + "last_name": "Greco", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3736, + "model": "evaluation.userprofile", + "pk": 734, "fields": { - "evaluation": 1575, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-13T15:37:07.066", + "email": "elfrieda.bess@institution.example.com", + "title": "", + "first_name_given": "Elfrieda", + "first_name_chosen": "", + "last_name": "Bess", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3739, + "model": "evaluation.userprofile", + "pk": 735, "fields": { - "evaluation": 1577, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-09T07:10:29.849", + "email": "brent.mattson@institution.example.com", + "title": "", + "first_name_given": "Brent", + "first_name_chosen": "", + "last_name": "Mattson", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3740, + "model": "evaluation.userprofile", + "pk": 736, "fields": { - "evaluation": 1577, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-09T07:16:09.848", + "email": "halina.tobias@institution.example.com", + "title": "", + "first_name_given": "Halina", + "first_name_chosen": "", + "last_name": "Tobias", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3745, + "model": "evaluation.userprofile", + "pk": 737, "fields": { - "evaluation": 1580, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-09T15:39:12.208", + "email": "deidre.metzler@institution.example.com", + "title": "", + "first_name_given": "Deidre", + "first_name_chosen": "", + "last_name": "Metzler", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3746, + "model": "evaluation.userprofile", + "pk": 738, "fields": { - "evaluation": 1580, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T15:52:06.542", + "email": "domingo.mcnutt@institution.example.com", + "title": "", + "first_name_given": "Domingo", + "first_name_chosen": "", + "last_name": "Mcnutt", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3751, + "model": "evaluation.userprofile", + "pk": 739, "fields": { - "evaluation": 1583, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T20:18:44.343", + "email": "ayesha.bannister@institution.example.com", + "title": "", + "first_name_given": "Ayesha", + "first_name_chosen": "", + "last_name": "Bannister", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3752, + "model": "evaluation.userprofile", + "pk": 740, "fields": { - "evaluation": 1583, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-24T14:54:21.051", + "email": "arletha.picard@institution.example.com", + "title": "", + "first_name_given": "Arletha", + "first_name_chosen": "", + "last_name": "Picard", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3755, + "model": "evaluation.userprofile", + "pk": 741, "fields": { - "evaluation": 1585, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 94, - 95, - 96, - 97, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T16:26:07.007", + "email": "cierra.oreilly@institution.example.com", + "title": "", + "first_name_given": "Cierra", + "first_name_chosen": "", + "last_name": "Oreilly", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3756, + "model": "evaluation.userprofile", + "pk": 742, "fields": { - "evaluation": 1585, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T19:35:24.016", + "email": "brice.ault@institution.example.com", + "title": "", + "first_name_given": "Brice", + "first_name_chosen": "", + "last_name": "Ault", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3757, + "model": "evaluation.userprofile", + "pk": 743, "fields": { - "evaluation": 1586, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T17:07:50.308", + "email": "lashanda.brownlee@institution.example.com", + "title": "", + "first_name_given": "Lashanda", + "first_name_chosen": "", + "last_name": "Brownlee", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3758, + "model": "evaluation.userprofile", + "pk": 744, "fields": { - "evaluation": 1586, - "contributor": [ - "emilee.beavers@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-05T17:44:05.374", + "email": "refugia.soliz@institution.example.com", + "title": "", + "first_name_given": "Refugia", + "first_name_chosen": "", + "last_name": "Soliz", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3759, + "model": "evaluation.userprofile", + "pk": 745, "fields": { - "evaluation": 1587, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-05T19:42:28.586", + "email": "corinne.neff@institution.example.com", + "title": "", + "first_name_given": "Corinne", + "first_name_chosen": "", + "last_name": "Neff", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3760, + "model": "evaluation.userprofile", + "pk": 746, "fields": { - "evaluation": 1587, - "contributor": [ - "harriet.rushing@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-08T23:58:00.245", + "email": "nicki.spear@institution.example.com", + "title": "", + "first_name_given": "Nicki", + "first_name_chosen": "", + "last_name": "Spear", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3775, + "model": "evaluation.userprofile", + "pk": 747, "fields": { - "evaluation": 1595, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 94, - 95, - 96, - 97, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T23:32:32.440", + "email": "hugh.oliver@institution.example.com", + "title": "", + "first_name_given": "Hugh", + "first_name_chosen": "", + "last_name": "Oliver", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3776, + "model": "evaluation.userprofile", + "pk": 748, "fields": { - "evaluation": 1595, - "contributor": [ - "lizabeth.steward@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:31:55.267", + "email": "juliane.call@institution.example.com", + "title": "", + "first_name_given": "Juliane", + "first_name_chosen": "", + "last_name": "Call", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3781, + "model": "evaluation.userprofile", + "pk": 749, "fields": { - "evaluation": 1598, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 94, - 95, - 96, - 97, - 83 + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-13T09:17:33.402", + "email": "amelia.handy@external.example.com", + "title": "Prof. Dr.", + "first_name_given": "Amelia", + "first_name_chosen": "", + "last_name": "Handy", + "language": "", + "is_proxy_user": false, + "login_key": 165190195, + "login_key_valid_until": "2014-08-11", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [ + 836, + 123 ] } }, { - "model": "evaluation.contribution", - "pk": 3782, + "model": "evaluation.userprofile", + "pk": 750, "fields": { - "evaluation": 1598, - "contributor": [ - "brian.david@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-01-24T16:51:30.301", + "email": "louann.brantley@external.example.com", + "title": "", + "first_name_given": "Louann", + "first_name_chosen": "", + "last_name": "Brantley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3785, + "model": "evaluation.userprofile", + "pk": 751, "fields": { - "evaluation": 1600, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-07T22:00:32.077", + "email": "del.mcnamee@institution.example.com", + "title": "", + "first_name_given": "Del", + "first_name_chosen": "", + "last_name": "Mcnamee", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3786, + "model": "evaluation.userprofile", + "pk": 752, "fields": { - "evaluation": 1600, - "contributor": [ - "chieko.lehman@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T18:56:39.344", + "email": "danyel.robins@institution.example.com", + "title": "", + "first_name_given": "Danyel", + "first_name_chosen": "", + "last_name": "Robins", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3791, + "model": "evaluation.userprofile", + "pk": 753, "fields": { - "evaluation": 1603, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-08T08:21:14.072", + "email": "kallie.peters@institution.example.com", + "title": "", + "first_name_given": "Kallie", + "first_name_chosen": "", + "last_name": "Peters", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3792, + "model": "evaluation.userprofile", + "pk": 754, "fields": { - "evaluation": 1603, - "contributor": [ - "chieko.lehman@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T23:21:18.491", + "email": "diann.deloach@institution.example.com", + "title": "", + "first_name_given": "Diann", + "first_name_chosen": "", + "last_name": "Deloach", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3795, + "model": "evaluation.userprofile", + "pk": 755, "fields": { - "evaluation": 1605, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-31T08:23:30.741", + "email": "ali.best@institution.example.com", + "title": "", + "first_name_given": "Ali", + "first_name_chosen": "", + "last_name": "Best", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3796, + "model": "evaluation.userprofile", + "pk": 756, "fields": { - "evaluation": 1605, - "contributor": [ - "arnold.lane@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-10T10:17:06.005", + "email": "darci.rinehart@institution.example.com", + "title": "", + "first_name_given": "Darci", + "first_name_chosen": "", + "last_name": "Rinehart", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3805, + "model": "evaluation.userprofile", + "pk": 757, "fields": { - "evaluation": 1610, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-06T13:16:27.116", + "email": "latesha.snow@institution.example.com", + "title": "", + "first_name_given": "Latesha", + "first_name_chosen": "", + "last_name": "Snow", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3806, + "model": "evaluation.userprofile", + "pk": 758, "fields": { - "evaluation": 1610, - "contributor": [ - "sonia.dominguez@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-03T00:09:16.700", + "email": "alexia.pederson@institution.example.com", + "title": "", + "first_name_given": "Alexia", + "first_name_chosen": "", + "last_name": "Pederson", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3811, + "model": "evaluation.userprofile", + "pk": 759, "fields": { - "evaluation": 1613, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-03-01T10:52:08.996", + "email": "fernando.grisham@institution.example.com", + "title": "", + "first_name_given": "Fernando", + "first_name_chosen": "", + "last_name": "Grisham", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2013-05-30", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3812, + "model": "evaluation.userprofile", + "pk": 760, "fields": { - "evaluation": 1613, - "contributor": [ - "sandee.coker@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:14:04.758", + "email": "tyisha.reich@institution.example.com", + "title": "", + "first_name_given": "Tyisha", + "first_name_chosen": "", + "last_name": "Reich", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3813, + "model": "evaluation.userprofile", + "pk": 761, "fields": { - "evaluation": 1614, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 104, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-28T10:29:06.118", + "email": "mayme.mcculloch@institution.example.com", + "title": "", + "first_name_given": "Mayme", + "first_name_chosen": "", + "last_name": "Mcculloch", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3814, + "model": "evaluation.userprofile", + "pk": 762, "fields": { - "evaluation": 1614, - "contributor": [ - "sandee.coker@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T15:15:05.402", + "email": "dia.harden@institution.example.com", + "title": "", + "first_name_given": "Dia", + "first_name_chosen": "", + "last_name": "Harden", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3821, + "model": "evaluation.userprofile", + "pk": 763, "fields": { - "evaluation": 1618, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-01-24T16:51:53.099", + "email": "rosina.frasier@institution.example.com", + "title": "", + "first_name_given": "Rosina", + "first_name_chosen": "", + "last_name": "Frasier", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3822, + "model": "evaluation.userprofile", + "pk": 764, "fields": { - "evaluation": 1618, - "contributor": [ - "jospeh.thorp@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-01-24T16:51:54.036", + "email": "margo.hanna@external.example.com", + "title": "", + "first_name_given": "Margo", + "first_name_chosen": "", + "last_name": "Hanna", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3831, + "model": "evaluation.userprofile", + "pk": 765, "fields": { - "evaluation": 1585, - "contributor": [ - "vania.talbert@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-01-25T17:20:03.827", + "email": "karan.bloom@external.example.com", + "title": "", + "first_name_given": "Karan", + "first_name_chosen": "", + "last_name": "Bloom", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3832, + "model": "evaluation.userprofile", + "pk": 766, "fields": { - "evaluation": 1585, - "contributor": [ - "pamala.galbraith@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-01-29T12:50:26.253", + "email": "jacqueline.rubio@external.example.com", + "title": "", + "first_name_given": "Jacqueline", + "first_name_chosen": "", + "last_name": "Rubio", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3834, + "model": "evaluation.userprofile", + "pk": 767, "fields": { - "evaluation": 1598, - "contributor": [ - "latosha.moon@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-02T17:22:15.401", + "email": "valeri.forster@external.example.com", + "title": "", + "first_name_given": "Valeri", + "first_name_chosen": "", + "last_name": "Forster", + "language": "", + "is_proxy_user": false, + "login_key": 210979156, + "login_key_valid_until": "2014-10-28", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3835, + "model": "evaluation.userprofile", + "pk": 768, "fields": { - "evaluation": 1598, - "contributor": [ - "gabriela.carlisle@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T12:59:59", + "email": "lashaunda.benoit@institution.example.com", + "title": "", + "first_name_given": "Lashaunda", + "first_name_chosen": "", + "last_name": "Benoit", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-01-21", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3847, + "model": "evaluation.userprofile", + "pk": 769, "fields": { - "evaluation": 1563, - "contributor": [ - "juanita.kimbrough@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-01-31T17:28:32.063", + "email": "rubin.gaston@external.example.com", + "title": "", + "first_name_given": "Rubin", + "first_name_chosen": "", + "last_name": "Gaston", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3848, + "model": "evaluation.userprofile", + "pk": 770, "fields": { - "evaluation": 1563, - "contributor": [ - "lynn.baptiste@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-01-31T17:28:34.838", + "email": "antwan.brady@external.example.com", + "title": "", + "first_name_given": "Antwan", + "first_name_chosen": "", + "last_name": "Brady", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3849, + "model": "evaluation.userprofile", + "pk": 771, "fields": { - "evaluation": 1595, - "contributor": [ - "trudie.huntley@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-02-03T21:04:16.840", + "email": "cassey.earley@institution.example.com", + "title": "", + "first_name_given": "Cassey", + "first_name_chosen": "", + "last_name": "Earley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3852, + "model": "evaluation.userprofile", + "pk": 772, "fields": { - "evaluation": 1595, - "contributor": [ - "silva.couture@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-21T09:40:51.496", + "email": "tayna.tarver@institution.example.com", + "title": "", + "first_name_given": "Tayna", + "first_name_chosen": "", + "last_name": "Tarver", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3855, + "model": "evaluation.userprofile", + "pk": 773, "fields": { - "evaluation": 1569, - "contributor": [ - "beau.saunders@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-27T10:05:08.265", + "email": "lyla.griffiths@institution.example.com", + "title": "", + "first_name_given": "Lyla", + "first_name_chosen": "", + "last_name": "Griffiths", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3859, + "model": "evaluation.userprofile", + "pk": 774, "fields": { - "evaluation": 1570, - "contributor": [ - "millard.heath@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-04-22T11:26:34.368", + "email": "richelle.chadwick@external.example.com", + "title": "", + "first_name_given": "Richelle", + "first_name_chosen": "", + "last_name": "Chadwick", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3862, + "model": "evaluation.userprofile", + "pk": 775, "fields": { - "evaluation": 1600, - "contributor": [ - "anglea.akers@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T20:52:03.373", + "email": "armand.person@institution.example.com", + "title": "", + "first_name_given": "Armand", + "first_name_chosen": "", + "last_name": "Person", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3879, + "model": "evaluation.userprofile", + "pk": 776, "fields": { - "evaluation": 1559, - "contributor": [ - "hyon.sherry@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T16:47:01.203", + "email": "anton.swank@institution.example.com", + "title": "", + "first_name_given": "Anton", + "first_name_chosen": "", + "last_name": "Swank", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3881, + "model": "evaluation.userprofile", + "pk": 777, "fields": { - "evaluation": 1540, - "contributor": [ - "elissa.fowler@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-22T16:09:29.496", + "email": "albina.dibble@institution.example.com", + "title": "", + "first_name_given": "Albina", + "first_name_chosen": "", + "last_name": "Dibble", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3882, + "model": "evaluation.userprofile", + "pk": 778, "fields": { - "evaluation": 1540, - "contributor": [ - "criselda.henry@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T08:18:25.620", + "email": "pamala.galbraith@external.example.com", + "title": "", + "first_name_given": "Pamala", + "first_name_chosen": "", + "last_name": "Galbraith", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3883, + "model": "evaluation.userprofile", + "pk": 779, "fields": { - "evaluation": 1540, - "contributor": [ - "eugenia.bauer@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-18T19:20:53.058", + "email": "vania.talbert@external.example.com", + "title": "", + "first_name_given": "Vania", + "first_name_chosen": "", + "last_name": "Talbert", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3884, + "model": "evaluation.userprofile", + "pk": 780, "fields": { - "evaluation": 1540, - "contributor": [ - "mirtha.cleveland@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-27T11:06:20.424", + "email": "val.crocker@external.example.com", + "title": "", + "first_name_given": "Val", + "first_name_chosen": "", + "last_name": "Crocker", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3885, + "model": "evaluation.userprofile", + "pk": 781, "fields": { - "evaluation": 1549, - "contributor": [ - "lindsy.clement@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:29.477", + "email": "alta.omalley@institution.example.com", + "title": "", + "first_name_given": "Alta", + "first_name_chosen": "", + "last_name": "Omalley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3886, + "model": "evaluation.userprofile", + "pk": 782, "fields": { - "evaluation": 1549, - "contributor": [ - "ricki.canada@external.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-15T13:21:49.719", + "email": "brynn.mcnair@external.example.com", + "title": "Dr.", + "first_name_given": "Brynn", + "first_name_chosen": "", + "last_name": "Mcnair", + "language": "", + "is_proxy_user": false, + "login_key": 2120134533, + "login_key_valid_until": "2014-08-11", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 836, + 123 ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 85, - 92 - ] + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3890, + "model": "evaluation.userprofile", + "pk": 783, "fields": { - "evaluation": 1548, - "contributor": [ - "laurence.tipton@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:31.503", + "email": "mi.ingraham@external.example.com", + "title": "", + "first_name_given": "Mi", + "first_name_chosen": "", + "last_name": "Ingraham", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3893, + "model": "evaluation.userprofile", + "pk": 784, "fields": { - "evaluation": 1547, - "contributor": [ - "lashaunda.benoit@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:33.539", + "email": "jan.bettencourt@external.example.com", + "title": "", + "first_name_given": "Jan", + "first_name_chosen": "", + "last_name": "Bettencourt", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3894, + "model": "evaluation.userprofile", + "pk": 785, "fields": { - "evaluation": 1550, - "contributor": [ - "lashaunda.benoit@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:35.748", + "email": "arcelia.petrie@external.example.com", + "title": "", + "first_name_given": "Arcelia", + "first_name_chosen": "", + "last_name": "Petrie", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3895, + "model": "evaluation.userprofile", + "pk": 786, "fields": { - "evaluation": 1550, - "contributor": [ - "randolph.patrick@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:35.791", + "email": "tarra.carson@external.example.com", + "title": "", + "first_name_given": "Tarra", + "first_name_chosen": "", + "last_name": "Carson", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3896, + "model": "evaluation.userprofile", + "pk": 787, "fields": { - "evaluation": 1550, - "contributor": [ - "joella.naquin@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:35.832", + "email": "gwyneth.dolan@external.example.com", + "title": "", + "first_name_given": "Gwyneth", + "first_name_chosen": "", + "last_name": "Dolan", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3899, + "model": "evaluation.userprofile", + "pk": 788, "fields": { - "evaluation": 1605, - "contributor": [ - "randee.griffith@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-19T09:44:02.379", + "email": "kira.simone@external.example.com", + "title": "", + "first_name_given": "Kira", + "first_name_chosen": "", + "last_name": "Simone", + "language": "", + "is_proxy_user": false, + "login_key": 983446795, + "login_key_valid_until": "2013-10-17", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3900, + "model": "evaluation.userprofile", + "pk": 789, "fields": { - "evaluation": 1605, - "contributor": [ - "charlsie.pressley@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:35.915", + "email": "elly.mcmahan@external.example.com", + "title": "", + "first_name_given": "Elly", + "first_name_chosen": "", + "last_name": "Mcmahan", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3909, + "model": "evaluation.userprofile", + "pk": 790, "fields": { - "evaluation": 1549, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 0, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:35.957", + "email": "pansy.hanna@external.example.com", + "title": "", + "first_name_given": "Pansy", + "first_name_chosen": "", + "last_name": "Hanna", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3912, + "model": "evaluation.userprofile", + "pk": 791, "fields": { - "evaluation": 1618, - "contributor": [ - "albina.dibble@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] - } -}, -{ - "model": "evaluation.contribution", - "pk": 3913, - "fields": { - "evaluation": 1618, - "contributor": [ - "aline.canady@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.002", + "email": "rosana.limon@external.example.com", + "title": "", + "first_name_given": "Rosana", + "first_name_chosen": "", + "last_name": "Limon", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3914, + "model": "evaluation.userprofile", + "pk": 792, "fields": { - "evaluation": 1618, - "contributor": [ - "velvet.paradis@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-23T20:05:11.967", + "email": "lovie.hammonds@external.example.com", + "title": "", + "first_name_given": "Lovie", + "first_name_chosen": "", + "last_name": "Hammonds", + "language": "", + "is_proxy_user": false, + "login_key": 740394133, + "login_key_valid_until": "2013-12-22", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3915, + "model": "evaluation.userprofile", + "pk": 793, "fields": { - "evaluation": 1564, - "contributor": [ - "carlo.breaux@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-19T10:44:51.953", + "email": "norene.latimer@external.example.com", + "title": "", + "first_name_given": "Norene", + "first_name_chosen": "", + "last_name": "Latimer", + "language": "", + "is_proxy_user": false, + "login_key": 822319998, + "login_key_valid_until": "2013-12-22", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3916, + "model": "evaluation.userprofile", + "pk": 794, "fields": { - "evaluation": 1568, - "contributor": [ - "domingo.mcnutt@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.132", + "email": "barrie.russell@external.example.com", + "title": "", + "first_name_given": "Barrie", + "first_name_chosen": "", + "last_name": "Russell", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3917, + "model": "evaluation.userprofile", + "pk": 795, "fields": { - "evaluation": 1568, - "contributor": [ - "candie.glaser@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.174", + "email": "florene.earnest@external.example.com", + "title": "", + "first_name_given": "Florene", + "first_name_chosen": "", + "last_name": "Earnest", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3918, + "model": "evaluation.userprofile", + "pk": 796, "fields": { - "evaluation": 1568, - "contributor": [ - "lita.regan@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.216", + "email": "ignacia.rucker@external.example.com", + "title": "", + "first_name_given": "Ignacia", + "first_name_chosen": "", + "last_name": "Rucker", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3919, + "model": "evaluation.userprofile", + "pk": 797, "fields": { - "evaluation": 1568, - "contributor": [ - "jen.jacoby@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.258", + "email": "hermila.poole@external.example.com", + "title": "", + "first_name_given": "Hermila", + "first_name_chosen": "", + "last_name": "Poole", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3920, + "model": "evaluation.userprofile", + "pk": 798, "fields": { - "evaluation": 1568, - "contributor": [ - "chrissy.rector@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 4, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.300", + "email": "vicenta.pinto@external.example.com", + "title": "", + "first_name_given": "Vicenta", + "first_name_chosen": "", + "last_name": "Pinto", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3921, + "model": "evaluation.userprofile", + "pk": 799, "fields": { - "evaluation": 1568, - "contributor": [ - "trey.ruby@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 5, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-19T20:01:22.150", + "email": "lance.roy@external.example.com", + "title": "", + "first_name_given": "Lance", + "first_name_chosen": "", + "last_name": "Roy", + "language": "", + "is_proxy_user": false, + "login_key": 2052836776, + "login_key_valid_until": "2013-10-17", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3922, + "model": "evaluation.userprofile", + "pk": 800, "fields": { - "evaluation": 1568, - "contributor": [ - "rubin.gaston@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 6, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.384", + "email": "carie.petit@external.example.com", + "title": "", + "first_name_given": "Carie", + "first_name_chosen": "", + "last_name": "Petit", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3923, + "model": "evaluation.userprofile", + "pk": 801, "fields": { - "evaluation": 1554, - "contributor": [ - "willena.hemphill@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.426", + "email": "rhiannon.gresham@external.example.com", + "title": "", + "first_name_given": "Rhiannon", + "first_name_chosen": "", + "last_name": "Gresham", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3929, + "model": "evaluation.userprofile", + "pk": 802, "fields": { - "evaluation": 1547, - "contributor": [ - "fernande.edwards@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.479", + "email": "melanie.whalen@external.example.com", + "title": "", + "first_name_given": "Melanie", + "first_name_chosen": "", + "last_name": "Whalen", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3932, + "model": "evaluation.userprofile", + "pk": 803, "fields": { - "evaluation": 1577, - "contributor": [ - "sharee.hoskins@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.522", + "email": "lucina.morey@external.example.com", + "title": "", + "first_name_given": "Lucina", + "first_name_chosen": "", + "last_name": "Morey", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3934, + "model": "evaluation.userprofile", + "pk": 804, "fields": { - "evaluation": 1583, - "contributor": [ - "malika.hansen@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-21T20:52:56.417", + "email": "tifany.hinojosa@external.example.com", + "title": "", + "first_name_given": "Tifany", + "first_name_chosen": "", + "last_name": "Hinojosa", + "language": "", + "is_proxy_user": false, + "login_key": 2076676098, + "login_key_valid_until": "2013-10-18", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3935, + "model": "evaluation.userprofile", + "pk": 805, "fields": { - "evaluation": 1583, - "contributor": [ - "timika.angel@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.606", + "email": "francie.loya@external.example.com", + "title": "", + "first_name_given": "Francie", + "first_name_chosen": "", + "last_name": "Loya", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3936, + "model": "evaluation.userprofile", + "pk": 806, "fields": { - "evaluation": 1577, - "contributor": [ - "contributor@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.648", + "email": "zane.calvert@external.example.com", + "title": "", + "first_name_given": "Zane", + "first_name_chosen": "", + "last_name": "Calvert", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3939, + "model": "evaluation.userprofile", + "pk": 807, "fields": { - "evaluation": 1580, - "contributor": [ - "royce.vann@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.690", + "email": "tyesha.schreiner@external.example.com", + "title": "", + "first_name_given": "Tyesha", + "first_name_chosen": "", + "last_name": "Schreiner", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3941, + "model": "evaluation.userprofile", + "pk": 808, "fields": { - "evaluation": 1575, - "contributor": [ - "doria.matthews@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.732", + "email": "may.nation@external.example.com", + "title": "", + "first_name_given": "May", + "first_name_chosen": "", + "last_name": "Nation", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3942, + "model": "evaluation.userprofile", + "pk": 809, "fields": { - "evaluation": 1575, - "contributor": [ - "sharee.hoskins@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-21T14:13:20.051", + "email": "donnetta.hacker@external.example.com", + "title": "", + "first_name_given": "Donnetta", + "first_name_chosen": "", + "last_name": "Hacker", + "language": "", + "is_proxy_user": false, + "login_key": 1692681790, + "login_key_valid_until": "2013-10-19", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3943, + "model": "evaluation.userprofile", + "pk": 810, "fields": { - "evaluation": 1575, - "contributor": [ - "toi.grantham@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:36.815", + "email": "ronni.rousseau@external.example.com", + "title": "", + "first_name_given": "Ronni", + "first_name_chosen": "", + "last_name": "Rousseau", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3944, + "model": "evaluation.userprofile", + "pk": 811, "fields": { - "evaluation": 1575, - "contributor": [ - "shanae.sam@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 91, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:40.559", + "email": "dell.castro@external.example.com", + "title": "", + "first_name_given": "Dell", + "first_name_chosen": "", + "last_name": "Castro", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3960, + "model": "evaluation.userprofile", + "pk": 812, "fields": { - "evaluation": 1587, - "contributor": [ - "errol.simon@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:41.626", + "email": "sterling.hutchins@institution.example.com", + "title": "", + "first_name_given": "Sterling", + "first_name_chosen": "", + "last_name": "Hutchins", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3961, + "model": "evaluation.userprofile", + "pk": 813, "fields": { - "evaluation": 1587, - "contributor": [ - "damion.navarrete@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:49.383", + "email": "azalee.broussard@institution.example.com", + "title": "", + "first_name_given": "Azalee", + "first_name_chosen": "", + "last_name": "Broussard", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3974, + "model": "evaluation.userprofile", + "pk": 814, "fields": { - "evaluation": 1624, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 99, - 100, - 101, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:52.747", + "email": "denny.barrientos@external.example.com", + "title": "", + "first_name_given": "Denny", + "first_name_chosen": "", + "last_name": "Barrientos", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3975, + "model": "evaluation.userprofile", + "pk": 815, "fields": { - "evaluation": 1624, - "contributor": [ - "chieko.lehman@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:54.391", + "email": "jaquelyn.huang@institution.example.com", + "title": "", + "first_name_given": "Jaquelyn", + "first_name_chosen": "", + "last_name": "Huang", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3976, + "model": "evaluation.userprofile", + "pk": 816, "fields": { - "evaluation": 1625, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 104, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:43:57.125", + "email": "lasandra.draper@external.example.com", + "title": "", + "first_name_given": "Lasandra", + "first_name_chosen": "", + "last_name": "Draper", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3977, + "model": "evaluation.userprofile", + "pk": 817, "fields": { - "evaluation": 1625, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:44:00.267", + "email": "emilee.beavers@external.example.com", + "title": "Prof. Dr.", + "first_name_given": "Emilee", + "first_name_chosen": "", + "last_name": "Beavers", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3984, + "model": "evaluation.userprofile", + "pk": 818, "fields": { - "evaluation": 1629, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 99, - 100, - 101, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:44:05.777", + "email": "eunice.ellison@external.example.com", + "title": "", + "first_name_given": "Eunice", + "first_name_chosen": "", + "last_name": "Ellison", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3985, + "model": "evaluation.userprofile", + "pk": 819, "fields": { - "evaluation": 1629, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-13T23:44:18.052", + "email": "tara.snider@institution.example.com", + "title": "", + "first_name_given": "Tara", + "first_name_chosen": "", + "last_name": "Snider", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3994, + "model": "evaluation.userprofile", + "pk": 820, "fields": { - "evaluation": 1634, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 94, - 95, - 96, - 97, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-09-23T20:19:26.722", + "email": "silva.couture@institution.example.com", + "title": "", + "first_name_given": "Silva", + "first_name_chosen": "", + "last_name": "Couture", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 3995, + "model": "evaluation.userprofile", + "pk": 821, "fields": { - "evaluation": 1634, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-02T13:45:32.397", + "email": "anglea.akers@institution.example.com", + "title": "", + "first_name_given": "Anglea", + "first_name_chosen": "", + "last_name": "Akers", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4002, + "model": "evaluation.userprofile", + "pk": 822, "fields": { - "evaluation": 1638, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-19T14:46:14.587", + "email": "hyon.sherry@external.example.com", + "title": "", + "first_name_given": "Hyon", + "first_name_chosen": "", + "last_name": "Sherry", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4003, + "model": "evaluation.userprofile", + "pk": 823, "fields": { - "evaluation": 1638, - "contributor": [ - "lizabeth.steward@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-07T09:04:51.478", + "email": "shanae.sam@institution.example.com", + "title": "", + "first_name_given": "Shanae", + "first_name_chosen": "", + "last_name": "Sam", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4008, + "model": "evaluation.userprofile", + "pk": 824, "fields": { - "evaluation": 1641, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 104, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-06-28T15:29:33.590", + "email": "sharon.bogan@institution.example.com", + "title": "", + "first_name_given": "Sharon", + "first_name_chosen": "", + "last_name": "Bogan", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4009, + "model": "evaluation.userprofile", + "pk": 825, "fields": { - "evaluation": 1641, - "contributor": [ - "lizabeth.steward@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-01T21:17:50.858", + "email": "aline.canady@external.example.com", + "title": "", + "first_name_given": "Aline", + "first_name_chosen": "", + "last_name": "Canady", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4018, + "model": "evaluation.userprofile", + "pk": 826, "fields": { - "evaluation": 1646, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-01T21:18:24.621", + "email": "velvet.paradis@external.example.com", + "title": "", + "first_name_given": "Velvet", + "first_name_chosen": "", + "last_name": "Paradis", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4019, + "model": "evaluation.userprofile", + "pk": 827, "fields": { - "evaluation": 1646, - "contributor": [ - "elena.kline@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-02T07:40:50.269", + "email": "carlo.breaux@external.example.com", + "title": "", + "first_name_given": "Carlo", + "first_name_chosen": "", + "last_name": "Breaux", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4020, + "model": "evaluation.userprofile", + "pk": 828, "fields": { - "evaluation": 1647, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-02T10:13:59.379", + "email": "candie.glaser@external.example.com", + "title": "", + "first_name_given": "Candie", + "first_name_chosen": "", + "last_name": "Glaser", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4021, + "model": "evaluation.userprofile", + "pk": 829, "fields": { - "evaluation": 1647, - "contributor": [ - "elena.kline@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-23T13:35:18.855", + "email": "fernande.edwards@institution.example.com", + "title": "", + "first_name_given": "Fernande", + "first_name_chosen": "", + "last_name": "Edwards", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4022, + "model": "evaluation.userprofile", + "pk": 830, "fields": { - "evaluation": 1648, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-07-14T12:56:16.798", + "email": "monnie.guzman@external.example.com", + "title": "", + "first_name_given": "Monnie", + "first_name_chosen": "", + "last_name": "Guzman", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4023, + "model": "evaluation.userprofile", + "pk": 831, "fields": { - "evaluation": 1648, - "contributor": [ - "elena.kline@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-02T23:42:55.994", + "email": "jarrett.flannery@institution.example.com", + "title": "", + "first_name_given": "Jarrett", + "first_name_chosen": "", + "last_name": "Flannery", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4024, + "model": "evaluation.userprofile", + "pk": 832, "fields": { - "evaluation": 1649, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 99, - 100, - 101, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-06T19:38:33.700", + "email": "adrianne.talley@institution.example.com", + "title": "", + "first_name_given": "Adrianne", + "first_name_chosen": "", + "last_name": "Talley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4025, + "model": "evaluation.userprofile", + "pk": 833, "fields": { - "evaluation": 1649, - "contributor": [ - "elena.kline@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T17:51:05.116", + "email": "georgiana.jasper@institution.example.com", + "title": "", + "first_name_given": "Georgiana", + "first_name_chosen": "", + "last_name": "Jasper", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4028, + "model": "evaluation.userprofile", + "pk": 834, "fields": { - "evaluation": 1651, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-10T16:59:40.468", + "email": "oneida.melendez@institution.example.com", + "title": "", + "first_name_given": "Oneida", + "first_name_chosen": "", + "last_name": "Melendez", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4029, + "model": "evaluation.userprofile", + "pk": 835, "fields": { - "evaluation": 1651, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-10-23T16:09:52.798", + "email": "syreeta.tennant@external.example.com", + "title": "", + "first_name_given": "Syreeta", + "first_name_chosen": "", + "last_name": "Tennant", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4032, + "model": "evaluation.userprofile", + "pk": 836, "fields": { - "evaluation": 1653, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-13T15:21:44.045", + "email": "nicholle.boyce@institution.example.com", + "title": "", + "first_name_given": "Nicholle", + "first_name_chosen": "", + "last_name": "Boyce", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4033, + "model": "evaluation.userprofile", + "pk": 837, "fields": { - "evaluation": 1653, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T18:02:35.335", + "email": "kristi.boykin@institution.example.com", + "title": "", + "first_name_given": "Kristi", + "first_name_chosen": "", + "last_name": "Boykin", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4036, + "model": "evaluation.userprofile", + "pk": 838, "fields": { - "evaluation": 1655, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T18:41:43.424", + "email": "keisha.jordon@institution.example.com", + "title": "", + "first_name_given": "Keisha", + "first_name_chosen": "", + "last_name": "Jordon", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4037, + "model": "evaluation.userprofile", + "pk": 839, "fields": { - "evaluation": 1655, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 89 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T22:48:54.132", + "email": "tod.rowe@institution.example.com", + "title": "", + "first_name_given": "Tod", + "first_name_chosen": "", + "last_name": "Rowe", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4038, + "model": "evaluation.userprofile", + "pk": 840, "fields": { - "evaluation": 1656, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 99, - 100, - 101, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-31T14:00:23.895", + "email": "lindsy.wilke@institution.example.com", + "title": "", + "first_name_given": "Lindsy", + "first_name_chosen": "", + "last_name": "Wilke", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4039, + "model": "evaluation.userprofile", + "pk": 841, "fields": { - "evaluation": 1656, - "contributor": [ - "lahoma.gage@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T17:49:27.553", + "email": "marcelo.lowell@institution.example.com", + "title": "", + "first_name_given": "Marcelo", + "first_name_chosen": "", + "last_name": "Lowell", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4040, + "model": "evaluation.userprofile", + "pk": 842, "fields": { - "evaluation": 1657, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T23:14:22.839", + "email": "brianna.true@institution.example.com", + "title": "", + "first_name_given": "Brianna", + "first_name_chosen": "", + "last_name": "True", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4041, + "model": "evaluation.userprofile", + "pk": 843, "fields": { - "evaluation": 1657, - "contributor": [ - "lyndia.higdon@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 98, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T10:53:19.069", + "email": "ossie.stamper@institution.example.com", + "title": "", + "first_name_given": "Ossie", + "first_name_chosen": "", + "last_name": "Stamper", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4046, + "model": "evaluation.userprofile", + "pk": 844, "fields": { - "evaluation": 1660, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 88, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T12:48:59.772", + "email": "suzi.wick@institution.example.com", + "title": "", + "first_name_given": "Suzi", + "first_name_chosen": "", + "last_name": "Wick", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4047, + "model": "evaluation.userprofile", + "pk": 845, "fields": { - "evaluation": 1660, - "contributor": [ - "evie.martz@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T17:48:33.692", + "email": "latasha.pham@institution.example.com", + "title": "", + "first_name_given": "Latasha", + "first_name_chosen": "", + "last_name": "Pham", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4052, + "model": "evaluation.userprofile", + "pk": 846, "fields": { - "evaluation": 1663, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 86, - 104, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T11:50:48.658", + "email": "elfriede.aguiar@institution.example.com", + "title": "", + "first_name_given": "Elfriede", + "first_name_chosen": "", + "last_name": "Aguiar", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4053, + "model": "evaluation.userprofile", + "pk": 847, "fields": { - "evaluation": 1663, - "contributor": [ - "salena.soriano@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-18T20:46:14.824", + "email": "kanesha.waggoner@institution.example.com", + "title": "", + "first_name_given": "Kanesha", + "first_name_chosen": "", + "last_name": "Waggoner", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4062, + "model": "evaluation.userprofile", + "pk": 848, "fields": { - "evaluation": 1668, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-22T16:32:36.064", + "email": "kristle.ewing@institution.example.com", + "title": "", + "first_name_given": "Kristle", + "first_name_chosen": "", + "last_name": "Ewing", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4063, + "model": "evaluation.userprofile", + "pk": 849, "fields": { - "evaluation": 1668, - "contributor": [ - "salena.soriano@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T21:16:47.777", + "email": "catherine.dillon@institution.example.com", + "title": "", + "first_name_given": "Catherine", + "first_name_chosen": "", + "last_name": "Dillon", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4072, + "model": "evaluation.userprofile", + "pk": 850, "fields": { - "evaluation": 1673, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T03:30:51.032", + "email": "mei.toro@institution.example.com", + "title": "", + "first_name_given": "Mei", + "first_name_chosen": "", + "last_name": "Toro", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4073, + "model": "evaluation.userprofile", + "pk": 851, "fields": { - "evaluation": 1673, - "contributor": [ - "henriette.park@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$20000$W777baxi62RX$1un4e0MdvQvKWTwBBkO/TLOaHGBh1QDQ0XkNreDk77U=", + "last_login": "2015-11-08T14:34:22.886", + "email": "alisa.askew@institution.example.com", + "title": "", + "first_name_given": "Alisa", + "first_name_chosen": "", + "last_name": "Askew", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4084, + "model": "evaluation.userprofile", + "pk": 852, "fields": { - "evaluation": 1679, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T17:46:12.938", + "email": "russel.stroup@institution.example.com", + "title": "", + "first_name_given": "Russel", + "first_name_chosen": "", + "last_name": "Stroup", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4085, + "model": "evaluation.userprofile", + "pk": 853, "fields": { - "evaluation": 1679, - "contributor": [ - "ingeborg.herring@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 90 - ] - } -}, -{ - "model": "evaluation.contribution", - "pk": 4090, + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T10:40:45.594", + "email": "stacy.webber@institution.example.com", + "title": "", + "first_name_given": "Stacy", + "first_name_chosen": "", + "last_name": "Webber", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] + } +}, +{ + "model": "evaluation.userprofile", + "pk": 854, "fields": { - "evaluation": 1682, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 104, - 110, - 83, - 109 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T14:00:42.693", + "email": "herta.bourne@institution.example.com", + "title": "", + "first_name_given": "Herta", + "first_name_chosen": "", + "last_name": "Bourne", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4091, + "model": "evaluation.userprofile", + "pk": 855, "fields": { - "evaluation": 1682, - "contributor": [ - "ingeborg.herring@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-11T08:07:47.300", + "email": "donetta.dempsey@institution.example.com", + "title": "", + "first_name_given": "Donetta", + "first_name_chosen": "", + "last_name": "Dempsey", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4092, + "model": "evaluation.userprofile", + "pk": 856, "fields": { - "evaluation": 1683, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 110 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2013-12-19T09:21:30.582", + "email": "dong.gooden@external.example.com", + "title": "", + "first_name_given": "Dong", + "first_name_chosen": "", + "last_name": "Gooden", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4093, + "model": "evaluation.userprofile", + "pk": 857, "fields": { - "evaluation": 1683, - "contributor": [ - "ingeborg.herring@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-31T00:06:58.086", + "email": "marybeth.groff@institution.example.com", + "title": "", + "first_name_given": "Marybeth", + "first_name_chosen": "", + "last_name": "Groff", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4094, + "model": "evaluation.userprofile", + "pk": 858, "fields": { - "evaluation": 1684, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T15:26:09.952", + "email": "cyndy.salter@institution.example.com", + "title": "", + "first_name_given": "Cyndy", + "first_name_chosen": "", + "last_name": "Salter", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4095, + "model": "evaluation.userprofile", + "pk": 859, "fields": { - "evaluation": 1684, - "contributor": [ - "sonia.dominguez@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T10:35:48.764", + "email": "reid.willingham@institution.example.com", + "title": "", + "first_name_given": "Reid", + "first_name_chosen": "", + "last_name": "Willingham", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4100, + "model": "evaluation.userprofile", + "pk": 860, "fields": { - "evaluation": 1687, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T17:10:23.915", + "email": "johnsie.conrad@institution.example.com", + "title": "", + "first_name_given": "Johnsie", + "first_name_chosen": "", + "last_name": "Conrad", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4101, + "model": "evaluation.userprofile", + "pk": 861, "fields": { - "evaluation": 1687, - "contributor": [ - "sunni.hollingsworth@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-28T19:12:07.601", + "email": "fatimah.mcghee@institution.example.com", + "title": "", + "first_name_given": "Fatimah", + "first_name_chosen": "", + "last_name": "Mcghee", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4112, + "model": "evaluation.userprofile", + "pk": 862, "fields": { - "evaluation": 1693, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T12:37:19.033", + "email": "christine.brinkley@institution.example.com", + "title": "", + "first_name_given": "Christine", + "first_name_chosen": "", + "last_name": "Brinkley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4113, + "model": "evaluation.userprofile", + "pk": 863, "fields": { - "evaluation": 1693, - "contributor": [ - "evap@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:16:58.210", + "email": "cristine.caraballo@external.example.com", + "title": "", + "first_name_given": "Cristine", + "first_name_chosen": "", + "last_name": "Caraballo", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4114, + "model": "evaluation.userprofile", + "pk": 864, "fields": { - "evaluation": 1694, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 105, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:16:58.243", + "email": "giselle.kern@external.example.com", + "title": "", + "first_name_given": "Giselle", + "first_name_chosen": "", + "last_name": "Kern", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4115, + "model": "evaluation.userprofile", + "pk": 865, "fields": { - "evaluation": 1694, - "contributor": [ - "responsible@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 108, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:16:58.289", + "email": "yuriko.lister@external.example.com", + "title": "", + "first_name_given": "Yuriko", + "first_name_chosen": "", + "last_name": "Lister", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4116, + "model": "evaluation.userprofile", + "pk": 866, "fields": { - "evaluation": 1695, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T22:35:17.346", + "email": "diamond.hendrick@institution.example.com", + "title": "", + "first_name_given": "Diamond", + "first_name_chosen": "", + "last_name": "Hendrick", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4117, + "model": "evaluation.userprofile", + "pk": 867, "fields": { - "evaluation": 1695, - "contributor": [ - "amos.benoit@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T18:46:33.937", + "email": "myrna.grant@institution.example.com", + "title": "", + "first_name_given": "Myrna", + "first_name_chosen": "", + "last_name": "Grant", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4118, + "model": "evaluation.userprofile", + "pk": 868, "fields": { - "evaluation": 1696, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T12:07:26.020", + "email": "isabelle.veal@institution.example.com", + "title": "", + "first_name_given": "Isabelle", + "first_name_chosen": "", + "last_name": "Veal", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4119, + "model": "evaluation.userprofile", + "pk": 869, "fields": { - "evaluation": 1696, - "contributor": [ - "lisandra.grace@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 98, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T11:12:24.352", + "email": "felicia.lashley@institution.example.com", + "title": "", + "first_name_given": "Felicia", + "first_name_chosen": "", + "last_name": "Lashley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4120, + "model": "evaluation.userprofile", + "pk": 870, "fields": { - "evaluation": 1697, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-17T12:09:33.327", + "email": "adriane.newby@institution.example.com", + "title": "", + "first_name_given": "Adriane", + "first_name_chosen": "", + "last_name": "Newby", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4121, + "model": "evaluation.userprofile", + "pk": 871, "fields": { - "evaluation": 1697, - "contributor": [ - "odis.cantu@external.example.com" + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-06-03T09:03:55.162", + "email": "manager@institution.example.com", + "title": "", + "first_name_given": "", + "first_name_chosen": "", + "last_name": "manager", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [ + [ + "Manager" + ] ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 92 - ] + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4122, + "model": "evaluation.userprofile", + "pk": 872, "fields": { - "evaluation": 1698, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 86, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-05T18:14:14.763", + "email": "treasa.rinaldi@institution.example.com", + "title": "", + "first_name_given": "Treasa", + "first_name_chosen": "", + "last_name": "Rinaldi", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4123, + "model": "evaluation.userprofile", + "pk": 873, "fields": { - "evaluation": 1698, - "contributor": [ - "mariann.locke@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T13:34:34.741", + "email": "ngan.corbin@institution.example.com", + "title": "", + "first_name_given": "Ngan", + "first_name_chosen": "", + "last_name": "Corbin", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4128, + "model": "evaluation.userprofile", + "pk": 874, "fields": { - "evaluation": 1701, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T17:27:58.283", + "email": "josefa.burkholder@institution.example.com", + "title": "", + "first_name_given": "Josefa", + "first_name_chosen": "", + "last_name": "Burkholder", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4129, + "model": "evaluation.userprofile", + "pk": 875, "fields": { - "evaluation": 1701, - "contributor": [ - "xuan.bustamante@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:47:15.216", + "email": "marquis.brody@institution.example.com", + "title": "", + "first_name_given": "Marquis", + "first_name_chosen": "", + "last_name": "Brody", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4138, + "model": "evaluation.userprofile", + "pk": 876, "fields": { - "evaluation": 1706, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:16:58.960", + "email": "leda.oakes@institution.example.com", + "title": "", + "first_name_given": "Leda", + "first_name_chosen": "", + "last_name": "Oakes", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4139, + "model": "evaluation.userprofile", + "pk": 877, "fields": { - "evaluation": 1706, - "contributor": [ - "amelia.handy@external.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T15:34:05.088", + "email": "maryln.galvan@institution.example.com", + "title": "", + "first_name_given": "Maryln", + "first_name_chosen": "", + "last_name": "Galvan", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4140, + "model": "evaluation.userprofile", + "pk": 878, "fields": { - "evaluation": 1707, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 104, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T11:20:07.995", + "email": "levi.findley@institution.example.com", + "title": "", + "first_name_given": "Levi", + "first_name_chosen": "", + "last_name": "Findley", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4141, + "model": "evaluation.userprofile", + "pk": 879, "fields": { - "evaluation": 1707, - "contributor": [ - "luciana.graves@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T11:43:21.320", + "email": "wm.sierra@institution.example.com", + "title": "", + "first_name_given": "Wm", + "first_name_chosen": "", + "last_name": "Sierra", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4146, + "model": "evaluation.userprofile", + "pk": 880, "fields": { - "evaluation": 1641, - "contributor": [ - "justa.baughman@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:16:59.066", + "email": "leanne.storey@institution.example.com", + "title": "", + "first_name_given": "Leanne", + "first_name_chosen": "", + "last_name": "Storey", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4148, + "model": "evaluation.userprofile", + "pk": 881, "fields": { - "evaluation": 1687, - "contributor": [ - "sudie.phelan@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 98, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T18:30:26.255", + "email": "effie.martindale@institution.example.com", + "title": "", + "first_name_given": "Effie", + "first_name_chosen": "", + "last_name": "Martindale", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4152, + "model": "evaluation.userprofile", + "pk": 882, "fields": { - "evaluation": 1679, - "contributor": [ - "oscar.christie@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 85, - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-05T17:33:28.724", + "email": "anneliese.somerville@institution.example.com", + "title": "", + "first_name_given": "Anneliese", + "first_name_chosen": "", + "last_name": "Somerville", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4153, + "model": "evaluation.userprofile", + "pk": 883, "fields": { - "evaluation": 1679, - "contributor": [ - "lynn.baptiste@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:16:59.167", + "email": "thomas.echols@institution.example.com", + "title": "", + "first_name_given": "Thomas", + "first_name_chosen": "", + "last_name": "Echols", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4154, + "model": "evaluation.userprofile", + "pk": 884, "fields": { - "evaluation": 1679, - "contributor": [ - "karly.clapp@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 85, - 92 - ] - } -}, -{ - "model": "evaluation.contribution", - "pk": 4155, - "fields": { - "evaluation": 1679, - "contributor": [ - "concha.ezell@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T16:06:06.514", + "email": "tai.maurer@institution.example.com", + "title": "", + "first_name_given": "Tai", + "first_name_chosen": "", + "last_name": "Maurer", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4156, + "model": "evaluation.userprofile", + "pk": 885, "fields": { - "evaluation": 1679, - "contributor": [ - "catharine.medeiros@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 4, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-01T13:44:58.055", + "email": "sandra.pulido@institution.example.com", + "title": "", + "first_name_given": "Sandra", + "first_name_chosen": "", + "last_name": "Pulido", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4161, + "model": "evaluation.userprofile", + "pk": 886, "fields": { - "evaluation": 1625, - "contributor": [ - "doria.matthews@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T11:14:27.587", + "email": "ingrid.trice@institution.example.com", + "title": "", + "first_name_given": "Ingrid", + "first_name_chosen": "", + "last_name": "Trice", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4177, + "model": "evaluation.userprofile", + "pk": 887, "fields": { - "evaluation": 1696, - "contributor": [ - "merle.higdon@external.example.com" - ], - "role": 1, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 98, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T10:36:28.123", + "email": "hollie.gallardo@institution.example.com", + "title": "", + "first_name_given": "Hollie", + "first_name_chosen": "", + "last_name": "Gallardo", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4185, + "model": "evaluation.userprofile", + "pk": 888, "fields": { - "evaluation": 1710, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 106, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-10T19:45:58.706", + "email": "shandra.turner@institution.example.com", + "title": "", + "first_name_given": "Shandra", + "first_name_chosen": "", + "last_name": "Turner", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4186, + "model": "evaluation.userprofile", + "pk": 889, "fields": { - "evaluation": 1710, - "contributor": [ - "hugh.runyon@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 90 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-01T13:05:15.478", + "email": "kellye.cobb@institution.example.com", + "title": "", + "first_name_given": "Kellye", + "first_name_chosen": "", + "last_name": "Cobb", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4187, + "model": "evaluation.userprofile", + "pk": 890, "fields": { - "evaluation": 1710, - "contributor": [ - "antony.landry@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-17T11:38:57.616", + "email": "ardella.orr@institution.example.com", + "title": "", + "first_name_given": "Ardella", + "first_name_chosen": "", + "last_name": "Orr", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4188, + "model": "evaluation.userprofile", + "pk": 891, "fields": { - "evaluation": 1710, - "contributor": [ - "marilynn.oconnor@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-08T10:25:33.348", + "email": "claudine.ritchey@institution.example.com", + "title": "", + "first_name_given": "Claudine", + "first_name_chosen": "", + "last_name": "Ritchey", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4189, + "model": "evaluation.userprofile", + "pk": 892, "fields": { - "evaluation": 1710, - "contributor": [ - "hilda.rocha@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 4, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T12:12:12.133", + "email": "pedro.logue@institution.example.com", + "title": "", + "first_name_given": "Pedro", + "first_name_chosen": "", + "last_name": "Logue", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4190, + "model": "evaluation.userprofile", + "pk": 893, "fields": { - "evaluation": 1710, - "contributor": [ - "mirtha.cleveland@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 5, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T12:49:56.336", + "email": "jerrell.bunnell@institution.example.com", + "title": "", + "first_name_given": "Jerrell", + "first_name_chosen": "", + "last_name": "Bunnell", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4191, + "model": "evaluation.userprofile", + "pk": 894, "fields": { - "evaluation": 1710, - "contributor": [ - "ali.best@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 6, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-06T23:59:45.260", + "email": "cyndi.kiefer@institution.example.com", + "title": "", + "first_name_given": "Cyndi", + "first_name_chosen": "", + "last_name": "Kiefer", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4192, + "model": "evaluation.userprofile", + "pk": 895, "fields": { - "evaluation": 1710, - "contributor": [ - "virgina.carrasco@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 7, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T19:12:28.541", + "email": "clement.tibbetts@institution.example.com", + "title": "", + "first_name_given": "Clement", + "first_name_chosen": "", + "last_name": "Tibbetts", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4203, + "model": "evaluation.userprofile", + "pk": 896, "fields": { - "evaluation": 1651, - "contributor": [ - "wyatt.fairchild@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T10:58:31.778", + "email": "nan.simpkins@institution.example.com", + "title": "", + "first_name_given": "Nan", + "first_name_chosen": "", + "last_name": "Simpkins", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4204, + "model": "evaluation.userprofile", + "pk": 897, "fields": { - "evaluation": 1651, - "contributor": [ - "lashaunda.benoit@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T17:53:39.160", + "email": "chuck.singer@institution.example.com", + "title": "", + "first_name_given": "Chuck", + "first_name_chosen": "", + "last_name": "Singer", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4205, + "model": "evaluation.userprofile", + "pk": 898, "fields": { - "evaluation": 1651, - "contributor": [ - "fernande.edwards@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:16:59.931", + "email": "irmgard.loya@institution.example.com", + "title": "", + "first_name_given": "Irmgard", + "first_name_chosen": "", + "last_name": "Loya", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4223, + "model": "evaluation.userprofile", + "pk": 899, "fields": { - "evaluation": 1663, - "contributor": [ - "errol.simon@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-10T13:13:09.375", + "email": "celestina.slattery@institution.example.com", + "title": "", + "first_name_given": "Celestina", + "first_name_chosen": "", + "last_name": "Slattery", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4227, + "model": "evaluation.userprofile", + "pk": 900, "fields": { - "evaluation": 1656, - "contributor": [ - "wyatt.fairchild@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-05T19:03:40.918", + "email": "cleopatra.see@institution.example.com", + "title": "", + "first_name_given": "Cleopatra", + "first_name_chosen": "", + "last_name": "See", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4228, + "model": "evaluation.userprofile", + "pk": 901, "fields": { - "evaluation": 1656, - "contributor": [ - "lindsy.clement@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-30T13:29:27.440", + "email": "paz.jewell@institution.example.com", + "title": "", + "first_name_given": "Paz", + "first_name_chosen": "", + "last_name": "Jewell", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4229, + "model": "evaluation.userprofile", + "pk": 902, "fields": { - "evaluation": 1655, - "contributor": [ - "wyatt.fairchild@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:17:00.104", + "email": "xavier.mckay@institution.example.com", + "title": "", + "first_name_given": "Xavier", + "first_name_chosen": "", + "last_name": "Mckay", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4232, + "model": "evaluation.userprofile", + "pk": 903, "fields": { - "evaluation": 1624, - "contributor": [ - "anglea.akers@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 89 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:17:00.144", + "email": "sherly.lord@institution.example.com", + "title": "", + "first_name_given": "Sherly", + "first_name_chosen": "", + "last_name": "Lord", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4233, + "model": "evaluation.userprofile", + "pk": 904, "fields": { - "evaluation": 1647, - "contributor": [ - "val.crocker@external.example.com" - ], - "role": 1, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T15:47:47.021", + "email": "neville.sales@institution.example.com", + "title": "", + "first_name_given": "Neville", + "first_name_chosen": "", + "last_name": "Sales", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4234, + "model": "evaluation.userprofile", + "pk": 905, "fields": { - "evaluation": 1647, - "contributor": [ - "sergio.reichert@external.example.com" - ], - "role": 1, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 87, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T13:31:15.967", + "email": "vonnie.hills@institution.example.com", + "title": "", + "first_name_given": "Vonnie", + "first_name_chosen": "", + "last_name": "Hills", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4243, + "model": "evaluation.userprofile", + "pk": 906, "fields": { - "evaluation": 1649, - "contributor": [ - "hue.fontenot@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T10:37:38.325", + "email": "len.zarate@institution.example.com", + "title": "", + "first_name_given": "Len", + "first_name_chosen": "", + "last_name": "Zarate", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4244, + "model": "evaluation.userprofile", + "pk": 907, "fields": { - "evaluation": 1648, - "contributor": [ - "hue.fontenot@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 85, - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-08T17:58:42.666", + "email": "gaylord.mcafee@institution.example.com", + "title": "", + "first_name_given": "Gaylord", + "first_name_chosen": "", + "last_name": "Mcafee", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4261, + "model": "evaluation.userprofile", + "pk": 908, "fields": { - "evaluation": 1660, - "contributor": [ - "elias.troy@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:17:00.371", + "email": "cherlyn.gillette@institution.example.com", + "title": "", + "first_name_given": "Cherlyn", + "first_name_chosen": "", + "last_name": "Gillette", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4265, + "model": "evaluation.userprofile", + "pk": 909, "fields": { - "evaluation": 1663, - "contributor": [ - "latosha.moon@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:17:00.411", + "email": "leslee.copeland@institution.example.com", + "title": "", + "first_name_given": "Leslee", + "first_name_chosen": "", + "last_name": "Copeland", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4266, + "model": "evaluation.userprofile", + "pk": 910, "fields": { - "evaluation": 1663, - "contributor": [ - "brian.david@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-12T09:11:11.774", + "email": "dalton.everson@institution.example.com", + "title": "", + "first_name_given": "Dalton", + "first_name_chosen": "", + "last_name": "Everson", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4267, + "model": "evaluation.userprofile", + "pk": 911, "fields": { - "evaluation": 1663, - "contributor": [ - "lyndsey.lattimore@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T17:17:20.145", + "email": "penni.luong@institution.example.com", + "title": "", + "first_name_given": "Penni", + "first_name_chosen": "", + "last_name": "Luong", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4268, + "model": "evaluation.userprofile", + "pk": 912, "fields": { - "evaluation": 1663, - "contributor": [ - "diane.carlton@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 3, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-12T10:36:15.264", + "email": "karoline.hare@institution.example.com", + "title": "", + "first_name_given": "Karoline", + "first_name_chosen": "", + "last_name": "Hare", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4269, + "model": "evaluation.userprofile", + "pk": 913, "fields": { - "evaluation": 1663, - "contributor": [ - "veta.branson@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 4, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T16:06:34.277", + "email": "lenard.post@institution.example.com", + "title": "", + "first_name_given": "Lenard", + "first_name_chosen": "", + "last_name": "Post", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4270, + "model": "evaluation.userprofile", + "pk": 914, "fields": { - "evaluation": 1663, - "contributor": [ - "karine.prater@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 5, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-05T12:00:29.473", + "email": "eleanor.pinkston@institution.example.com", + "title": "", + "first_name_given": "Eleanor", + "first_name_chosen": "", + "last_name": "Pinkston", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4271, + "model": "evaluation.userprofile", + "pk": 915, "fields": { - "evaluation": 1663, - "contributor": [ - "adriane.strain@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 6, - "questionnaires": [ - 89, - 92 - ] - } -}, -{ - "model": "evaluation.contribution", - "pk": 4272, - "fields": { - "evaluation": 1663, - "contributor": [ - "vanetta.fleck@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 7, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-13T08:51:46.860", + "email": "taylor.washington@institution.example.com", + "title": "", + "first_name_given": "Taylor", + "first_name_chosen": "", + "last_name": "Washington", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4278, + "model": "evaluation.userprofile", + "pk": 916, "fields": { - "evaluation": 1629, - "contributor": [ - "vania.talbert@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T08:17:15.290", + "email": "lorna.hubert@institution.example.com", + "title": "", + "first_name_given": "Lorna", + "first_name_chosen": "", + "last_name": "Hubert", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4279, + "model": "evaluation.userprofile", + "pk": 917, "fields": { - "evaluation": 1629, - "contributor": [ - "pamala.galbraith@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 89, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-05T09:32:29.397", + "email": "aurea.hay@institution.example.com", + "title": "", + "first_name_given": "Aurea", + "first_name_chosen": "", + "last_name": "Hay", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4283, + "model": "evaluation.userprofile", + "pk": 918, "fields": { - "evaluation": 1707, - "contributor": [ - "kacy.galvan@external.example.com" - ], - "role": 1, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-04T15:18:16.091", + "email": "yoko.rafferty@institution.example.com", + "title": "", + "first_name_given": "Yoko", + "first_name_chosen": "", + "last_name": "Rafferty", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4284, + "model": "evaluation.userprofile", + "pk": 919, "fields": { - "evaluation": 1707, - "contributor": [ - "reyna.masterson@external.example.com" - ], - "role": 1, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T22:24:02.751", + "email": "tamatha.bivens@institution.example.com", + "title": "", + "first_name_given": "Tamatha", + "first_name_chosen": "", + "last_name": "Bivens", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4292, + "model": "evaluation.userprofile", + "pk": 920, "fields": { - "evaluation": 1712, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 48, - 81, - 82, - 50, - 110, - 83 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T10:35:51.844", + "email": "miss.gorham@institution.example.com", + "title": "", + "first_name_given": "Miss", + "first_name_chosen": "", + "last_name": "Gorham", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4293, + "model": "evaluation.userprofile", + "pk": 921, "fields": { - "evaluation": 1712, - "contributor": [ - "corinne.tolliver@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "GENERAL", - "label": "", - "order": 1, - "questionnaires": [ - 84, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T16:34:13.221", + "email": "alfredo.hutchison@institution.example.com", + "title": "", + "first_name_given": "Alfredo", + "first_name_chosen": "", + "last_name": "Hutchison", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4294, + "model": "evaluation.userprofile", + "pk": 922, "fields": { - "evaluation": 1712, - "contributor": [ - "editor@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "OWN", - "label": "", - "order": 2, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-01T13:11:17.485", + "email": "dayna.valles@institution.example.com", + "title": "", + "first_name_given": "Dayna", + "first_name_chosen": "", + "last_name": "Valles", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4295, + "model": "evaluation.userprofile", + "pk": 923, "fields": { - "evaluation": 1693, - "contributor": [ - "contributor@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 85, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:17:02.217", + "email": "willard.perron@external.example.com", + "title": "", + "first_name_given": "Willard", + "first_name_chosen": "", + "last_name": "Perron", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4296, + "model": "evaluation.userprofile", + "pk": 924, "fields": { - "evaluation": 1499, - "contributor": [ - "evap@institution.example.com" - ], - "role": 1, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:17:02.234", + "email": "audra.alston@external.example.com", + "title": "", + "first_name_given": "Audra", + "first_name_chosen": "", + "last_name": "Alston", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4297, + "model": "evaluation.userprofile", + "pk": 925, "fields": { - "evaluation": 1586, - "contributor": [ - "nolan.pope@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "Guest lecturer", - "order": 0, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:17:02.247", + "email": "marjory.park@external.example.com", + "title": "", + "first_name_given": "Marjory", + "first_name_chosen": "", + "last_name": "Park", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4298, + "model": "evaluation.userprofile", + "pk": 926, "fields": { - "evaluation": 1673, - "contributor": [ - "elbert.baber@external.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "Assistant", - "order": 0, - "questionnaires": [ - 107, - 92 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-31T10:40:42.034", + "email": "shannon.reece@institution.example.com", + "title": "", + "first_name_given": "Shannon", + "first_name_chosen": "", + "last_name": "Reece", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4300, + "model": "evaluation.userprofile", + "pk": 927, "fields": { - "evaluation": 1713, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 1 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-11T21:05:51.120", + "email": "arie.gardiner@institution.example.com", + "title": "", + "first_name_given": "Arie", + "first_name_chosen": "", + "last_name": "Gardiner", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4302, + "model": "evaluation.userprofile", + "pk": 928, "fields": { - "evaluation": 1714, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 0, - "questionnaires": [ - 1 - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:17:04.495", + "email": "mauro.vergara@external.example.com", + "title": "", + "first_name_given": "Mauro", + "first_name_chosen": "", + "last_name": "Vergara", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": "2014-08-06", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4303, + "model": "evaluation.userprofile", + "pk": 929, "fields": { - "evaluation": 1715, - "contributor": null, - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": -1, - "questionnaires": [] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-23T16:12:02.409", + "email": "salena.soriano@institution.example.com", + "title": "Dr.", + "first_name_given": "Salena", + "first_name_chosen": "", + "last_name": "Soriano", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 178 + ], + "cc_users": [] } }, { - "model": "evaluation.contribution", - "pk": 4304, + "model": "evaluation.userprofile", + "pk": 930, "fields": { - "evaluation": 1498, - "contributor": [ - "keva.cheng@institution.example.com" - ], - "role": 0, - "textanswer_visibility": "OWN", - "label": "", - "order": 1, - "questionnaires": [] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:17:10.316", + "email": "leola.flannery@institution.example.com", + "title": "", + "first_name_given": "Leola", + "first_name_chosen": "", + "last_name": "Flannery", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 34, + "model": "evaluation.userprofile", + "pk": 931, "fields": { - "state": 80, - "course": 4, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 7, - "_voter_count": 5, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-06-02", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "trudie.clawson@external.example.com" - ], - [ - "ema.clevenger@external.example.com" - ], - [ - "jana.faust@external.example.com" - ], - [ - "portia.hoffman@institution.example.com" - ], - [ - "corliss.isaacson@external.example.com" - ], - [ - "karine.prater@institution.example.com" - ], - [ - "christel.skinner@external.example.com" - ] - ], - "voters": [ - [ - "jana.faust@external.example.com" - ], - [ - "portia.hoffman@institution.example.com" - ], - [ - "corliss.isaacson@external.example.com" - ], - [ - "karine.prater@institution.example.com" - ], - [ - "christel.skinner@external.example.com" - ] - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-08T23:17:14.490", + "email": "wes.eaton@external.example.com", + "title": "", + "first_name_given": "Wes", + "first_name_chosen": "", + "last_name": "Eaton", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 310, + "model": "evaluation.userprofile", + "pk": 932, "fields": { - "state": 70, - "course": 87, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2022-02-02T00:00:00", - "vote_end_date": "2022-02-12", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "valda.antoine@institution.example.com" - ], - [ - "lelia.beall@institution.example.com" - ], - [ - "veta.branson@institution.example.com" - ], - [ - "osvaldo.carrier@institution.example.com" - ], - [ - "january.copeland@institution.example.com" - ], - [ - "candie.lugo@institution.example.com" - ], - [ - "maegan.mccorkle@institution.example.com" - ], - [ - "maribel.scales@institution.example.com" - ] - ], - "voters": [ - [ - "valda.antoine@institution.example.com" - ], - [ - "lelia.beall@institution.example.com" - ], - [ - "osvaldo.carrier@institution.example.com" - ], - [ - "january.copeland@institution.example.com" - ], - [ - "candie.lugo@institution.example.com" - ], - [ - "maribel.scales@institution.example.com" - ] - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T19:06:39.338", + "email": "odis.cantu@external.example.com", + "title": "Prof. Dr.", + "first_name_given": "Odis", + "first_name_chosen": "", + "last_name": "Cantu", + "language": "", + "is_proxy_user": false, + "login_key": 16347808, + "login_key_valid_until": "2014-10-26", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 311, + "model": "evaluation.userprofile", + "pk": 933, "fields": { - "state": 70, - "course": 116, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2022-02-02T00:00:00", - "vote_end_date": "2022-02-08", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "valda.antoine@institution.example.com" - ], - [ - "lelia.beall@institution.example.com" - ], - [ - "osvaldo.carrier@institution.example.com" - ], - [ - "majorie.godfrey@institution.example.com" - ], - [ - "maribel.scales@institution.example.com" - ], - [ - "meagan.steed@institution.example.com" - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-23T12:34:57.219", + "email": "mariann.locke@external.example.com", + "title": "", + "first_name_given": "Mariann", + "first_name_chosen": "", + "last_name": "Locke", + "language": "", + "is_proxy_user": false, + "login_key": 702798179, + "login_key_valid_until": "2014-08-21", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 836, + 123 ], - "voters": [ - [ - "lelia.beall@institution.example.com" - ], - [ - "osvaldo.carrier@institution.example.com" - ] - ] + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 318, + "model": "evaluation.userprofile", + "pk": 934, "fields": { - "state": 80, - "course": 53, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 12, - "_voter_count": 7, - "vote_start_datetime": "2022-02-02T00:00:00", - "vote_end_date": "2022-03-01", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "diedra.batson@institution.example.com" - ], - [ - "jarod.cate@institution.example.com" - ], - [ - "lavina.connor@institution.example.com" - ], - [ - "delegate@institution.example.com" - ], - [ - "cole.gamboa@institution.example.com" - ], - [ - "elma.huynh@institution.example.com" - ], - [ - "chanell.ly@institution.example.com" - ], - [ - "lorene.moultrie@institution.example.com" - ], - [ - "alfreda.roche@institution.example.com" - ], - [ - "aleta.seymour@institution.example.com" - ], - [ - "michaele.shuler@institution.example.com" - ], - [ - "reynaldo.thayer@institution.example.com" - ] - ], - "voters": [ - [ - "diedra.batson@institution.example.com" - ], - [ - "lavina.connor@institution.example.com" - ], - [ - "delegate@institution.example.com" - ], - [ - "elma.huynh@institution.example.com" - ], - [ - "lorene.moultrie@institution.example.com" - ], - [ - "alfreda.roche@institution.example.com" - ], - [ - "michaele.shuler@institution.example.com" - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-01-29T17:32:33.519", + "email": "xuan.bustamante@external.example.com", + "title": "Prof. Dr.", + "first_name_given": "Xuan", + "first_name_chosen": "", + "last_name": "Bustamante", + "language": "", + "is_proxy_user": false, + "login_key": 929495153, + "login_key_valid_until": "2014-08-21", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [ + 836, + 123 ] } }, { - "model": "evaluation.evaluation", - "pk": 327, + "model": "evaluation.userprofile", + "pk": 935, "fields": { - "state": 80, - "course": 76, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 19, - "_voter_count": 9, - "vote_start_datetime": "2022-02-02T00:00:00", - "vote_end_date": "2022-02-12", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "diedra.batson@institution.example.com" - ], - [ - "conception.belt@institution.example.com" - ], - [ - "lavina.connor@institution.example.com" - ], - [ - "wava.dolan@institution.example.com" - ], - [ - "delena.gooch@institution.example.com" - ], - [ - "mercedes.hatch@institution.example.com" - ], - [ - "amado.huggins@institution.example.com" - ], - [ - "elma.huynh@institution.example.com" - ], - [ - "Matthias.Kober@institution.example.com" - ], - [ - "halley.landrum@institution.example.com" - ], - [ - "renaldo.melendez@institution.example.com" - ], - [ - "lorene.moultrie@institution.example.com" - ], - [ - "gracia.mullins@institution.example.com" - ], - [ - "noriko.rau@institution.example.com" - ], - [ - "alfreda.roche@institution.example.com" - ], - [ - "sunshine.ruby@institution.example.com" - ], - [ - "aleta.seymour@institution.example.com" - ], - [ - "michaele.shuler@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-16T09:26:54.996", + "email": "sudie.phelan@external.example.com", + "title": "Prof. Dr.", + "first_name_given": "Sudie", + "first_name_chosen": "", + "last_name": "Phelan", + "language": "", + "is_proxy_user": false, + "login_key": 110846776, + "login_key_valid_until": "2014-11-07", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 836, + 123 ], - "voters": [ - [ - "diedra.batson@institution.example.com" - ], - [ - "conception.belt@institution.example.com" - ], - [ - "mercedes.hatch@institution.example.com" - ], - [ - "amado.huggins@institution.example.com" - ], - [ - "Matthias.Kober@institution.example.com" - ], - [ - "noriko.rau@institution.example.com" - ], - [ - "alfreda.roche@institution.example.com" - ], - [ - "michaele.shuler@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ] - ] + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 329, + "model": "evaluation.userprofile", + "pk": 936, "fields": { - "state": 70, - "course": 128, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2022-03-01T00:00:00", - "vote_end_date": "2022-03-18", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "damion.aiken@institution.example.com" - ], - [ - "alanna.ali@institution.example.com" - ], - [ - "lenard.bean@institution.example.com" - ], - [ - "veta.branson@institution.example.com" - ], - [ - "odette.chitwood@institution.example.com" - ], - [ - "britany.estrella@institution.example.com" - ], - [ - "sybil.everett@institution.example.com" - ], - [ - "halley.landrum@institution.example.com" - ], - [ - "marna.leboeuf@institution.example.com" - ], - [ - "felice.meek@institution.example.com" - ], - [ - "priscilla.shah@institution.example.com" - ], - [ - "yong.shuler@institution.example.com" - ], - [ - "emmaline.voigt@institution.example.com" - ] - ], - "voters": [ - [ - "odette.chitwood@institution.example.com" - ], - [ - "felice.meek@institution.example.com" - ], - [ - "priscilla.shah@institution.example.com" - ] - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-10T09:58:11.987", + "email": "manie.wiles@external.example.com", + "title": "", + "first_name_given": "Manie", + "first_name_chosen": "", + "last_name": "Wiles", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 332, + "model": "evaluation.userprofile", + "pk": 937, "fields": { - "state": 80, - "course": 100, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 11, - "_voter_count": 4, - "vote_start_datetime": "2022-02-28T00:00:00", - "vote_end_date": "2022-03-07", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "oma.abner@institution.example.com" - ], - [ - "hilde.blankenship@institution.example.com" - ], - [ - "jeni.cloutier@institution.example.com" - ], - [ - "ardath.cross@institution.example.com" - ], - [ - "ariana.houghton@institution.example.com" - ], - [ - "laura.lamb@institution.example.com" - ], - [ - "marna.leboeuf@institution.example.com" - ], - [ - "alfreda.roche@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ], - [ - "marleen.spivey@institution.example.com" - ], - [ - "ilse.switzer@institution.example.com" - ] - ], - "voters": [ - [ - "jeni.cloutier@institution.example.com" - ], - [ - "laura.lamb@institution.example.com" - ], - [ - "marna.leboeuf@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ] - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-02-10T09:31:48.593", + "email": "kathrin.mcrae@external.example.com", + "title": "", + "first_name_given": "Kathrin", + "first_name_chosen": "", + "last_name": "Mcrae", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 333, + "model": "evaluation.userprofile", + "pk": 938, "fields": { - "state": 70, - "course": 83, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2022-03-12T00:00:00", - "vote_end_date": "2022-03-31", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "lenard.bean@institution.example.com" - ], - [ - "raisa.burbank@institution.example.com" - ], - [ - "jeni.cloutier@institution.example.com" - ], - [ - "alan.lachance@institution.example.com" - ], - [ - "ilse.switzer@institution.example.com" - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-05-11T15:51:00.667", + "email": "luciana.graves@institution.example.com", + "title": "Dr.", + "first_name_given": "Luciana", + "first_name_chosen": "", + "last_name": "Graves", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [ + 836, + 123 ], - "voters": [] + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 334, + "model": "evaluation.userprofile", + "pk": 939, "fields": { - "state": 70, - "course": 113, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2022-02-02T00:00:00", - "vote_end_date": "2022-02-12", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "oma.abner@institution.example.com" - ], - [ - "darnell.aguilera@institution.example.com" - ], - [ - "mariann.alfonso@institution.example.com" - ], - [ - "felton.alvarez@institution.example.com" - ], - [ - "diedra.batson@institution.example.com" - ], - [ - "conception.belt@institution.example.com" - ], - [ - "ezequiel.brock@institution.example.com" - ], - [ - "raisa.burbank@institution.example.com" - ], - [ - "jeremiah.burkholder@institution.example.com" - ], - [ - "kayleen.carper@institution.example.com" - ], - [ - "josef.castellano@institution.example.com" - ], - [ - "jarod.cate@institution.example.com" - ], - [ - "isaiah.chisholm@institution.example.com" - ], - [ - "leigha.christie@institution.example.com" - ], - [ - "lavina.connor@institution.example.com" - ], - [ - "ardath.cross@institution.example.com" - ], - [ - "michell.dabbs@institution.example.com" - ], - [ - "cherry.doughty@institution.example.com" - ], - [ - "yolanda.farley@institution.example.com" - ], - [ - "cole.gamboa@institution.example.com" - ], - [ - "collin.hanley@institution.example.com" - ], - [ - "mercedes.hatch@institution.example.com" - ], - [ - "jaquelyn.huang@institution.example.com" - ], - [ - "Matthias.Kober@institution.example.com" - ], - [ - "kathyrn.linder@institution.example.com" - ], - [ - "shela.lowell@institution.example.com" - ], - [ - "marlana.mclain@institution.example.com" - ], - [ - "nana.meador@institution.example.com" - ], - [ - "renaldo.melendez@institution.example.com" - ], - [ - "marya.metcalf@institution.example.com" - ], - [ - "lorene.moultrie@institution.example.com" - ], - [ - "gracia.mullins@institution.example.com" - ], - [ - "chanelle.perales@institution.example.com" - ], - [ - "alfreda.roche@institution.example.com" - ], - [ - "macie.roller@institution.example.com" - ], - [ - "nora.rowley@institution.example.com" - ], - [ - "wade.ryan@institution.example.com" - ], - [ - "keith.sanchez@institution.example.com" - ], - [ - "alexis.sandoval@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ], - [ - "aleta.seymour@institution.example.com" - ], - [ - "michaele.shuler@institution.example.com" - ], - [ - "lyndia.song@institution.example.com" - ], - [ - "gilda.soper@institution.example.com" - ], - [ - "meagan.steed@institution.example.com" - ], - [ - "eugene.tennant@institution.example.com" - ], - [ - "magen.thorn@institution.example.com" - ], - [ - "myrtle.wahl@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ], - [ - "barabara.whitlow@institution.example.com" - ], - [ - "randi.woody@institution.example.com" - ] - ], - "voters": [ - [ - "oma.abner@institution.example.com" - ], - [ - "darnell.aguilera@institution.example.com" - ], - [ - "mariann.alfonso@institution.example.com" - ], - [ - "diedra.batson@institution.example.com" - ], - [ - "conception.belt@institution.example.com" - ], - [ - "michell.dabbs@institution.example.com" - ], - [ - "yolanda.farley@institution.example.com" - ], - [ - "collin.hanley@institution.example.com" - ], - [ - "mercedes.hatch@institution.example.com" - ], - [ - "Matthias.Kober@institution.example.com" - ], - [ - "marlana.mclain@institution.example.com" - ], - [ - "marya.metcalf@institution.example.com" - ], - [ - "alfreda.roche@institution.example.com" - ], - [ - "macie.roller@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ], - [ - "michaele.shuler@institution.example.com" - ], - [ - "meagan.steed@institution.example.com" - ], - [ - "myrtle.wahl@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ], - [ - "barabara.whitlow@institution.example.com" - ] - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-23T22:42:08.010", + "email": "bernardo.moye@external.example.com", + "title": "", + "first_name_given": "Bernardo", + "first_name_chosen": "", + "last_name": "Moye", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 336, + "model": "evaluation.userprofile", + "pk": 940, "fields": { - "state": 80, - "course": 134, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 10, - "_voter_count": 5, - "vote_start_datetime": "2022-02-02T00:00:00", - "vote_end_date": "2022-02-12", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "damion.aiken@institution.example.com" - ], - [ - "audra.alston@external.example.com" - ], - [ - "karly.clapp@institution.example.com" - ], - [ - "delegate@institution.example.com" - ], - [ - "collin.hanley@institution.example.com" - ], - [ - "maegan.mccorkle@institution.example.com" - ], - [ - "wendie.pike@institution.example.com" - ], - [ - "nora.rowley@institution.example.com" - ], - [ - "emmaline.voigt@institution.example.com" - ], - [ - "jennifer.yarbrough@institution.example.com" - ] - ], - "voters": [ - [ - "damion.aiken@institution.example.com" - ], - [ - "karly.clapp@institution.example.com" - ], - [ - "delegate@institution.example.com" - ], - [ - "collin.hanley@institution.example.com" - ], - [ - "emmaline.voigt@institution.example.com" - ] - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-23T23:03:16.324", + "email": "eddy.cho@external.example.com", + "title": "", + "first_name_given": "Eddy", + "first_name_chosen": "", + "last_name": "Cho", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 345, + "model": "evaluation.userprofile", + "pk": 941, "fields": { - "state": 80, - "course": 60, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 20, - "_voter_count": 8, - "vote_start_datetime": "2022-02-02T00:00:00", - "vote_end_date": "2022-02-12", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "felton.alvarez@institution.example.com" - ], - [ - "lenard.bean@institution.example.com" - ], - [ - "raisa.burbank@institution.example.com" - ], - [ - "marquetta.cano@institution.example.com" - ], - [ - "leigha.christie@institution.example.com" - ], - [ - "jeni.cloutier@institution.example.com" - ], - [ - "ardath.cross@institution.example.com" - ], - [ - "jina.cushman@institution.example.com" - ], - [ - "callie.grove@institution.example.com" - ], - [ - "jaquelyn.huang@institution.example.com" - ], - [ - "laura.lamb@institution.example.com" - ], - [ - "halley.landrum@institution.example.com" - ], - [ - "jacqui.lindsey@institution.example.com" - ], - [ - "marlana.mclain@institution.example.com" - ], - [ - "gracia.mullins@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ], - [ - "meagan.steed@institution.example.com" - ], - [ - "student@institution.example.com" - ], - [ - "ilse.switzer@institution.example.com" - ], - [ - "myrtle.wahl@institution.example.com" - ] - ], - "voters": [ - [ - "jina.cushman@institution.example.com" - ], - [ - "callie.grove@institution.example.com" - ], - [ - "laura.lamb@institution.example.com" - ], - [ - "marlana.mclain@institution.example.com" - ], - [ - "gracia.mullins@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ], - [ - "meagan.steed@institution.example.com" - ], - [ - "myrtle.wahl@institution.example.com" - ] - ] + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-24T10:25:43.302", + "email": "dot.carlisle@external.example.com", + "title": "", + "first_name_given": "Dot", + "first_name_chosen": "", + "last_name": "Carlisle", + "language": "", + "is_proxy_user": false, + "login_key": 707881715, + "login_key_valid_until": "2014-10-20", + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 347, + "model": "evaluation.userprofile", + "pk": 942, "fields": { - "state": 70, - "course": 34, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-05-01T00:00:00", - "vote_end_date": "2024-05-31", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "aleisha.brandon@institution.example.com" - ], - [ - "cherry.doughty@institution.example.com" - ], - [ - "sybil.everett@institution.example.com" - ], - [ - "jeannie.guffey@institution.example.com" - ], - [ - "willena.hemphill@institution.example.com" - ], - [ - "Matthias.Kober@institution.example.com" - ], - [ - "corine.lunsford@institution.example.com" - ], - [ - "lissette.mccallister@external.example.com" - ], - [ - "felice.meek@institution.example.com" - ], - [ - "michaele.shuler@institution.example.com" - ], - [ - "myrtle.wahl@institution.example.com" - ], + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-23T23:05:59.690", + "email": "claudie.elmore@external.example.com", + "title": "", + "first_name_given": "Claudie", + "first_name_chosen": "", + "last_name": "Elmore", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] + } +}, +{ + "model": "evaluation.userprofile", + "pk": 943, + "fields": { + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-03-30T16:53:27.693", + "email": "arianna.bower@external.example.com", + "title": "", + "first_name_given": "Arianna", + "first_name_chosen": "", + "last_name": "Bower", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] + } +}, +{ + "model": "evaluation.userprofile", + "pk": 944, + "fields": { + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-01T14:26:12.951", + "email": "kerstin.murry@external.example.com", + "title": "", + "first_name_given": "Kerstin", + "first_name_chosen": "", + "last_name": "Murry", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] + } +}, +{ + "model": "evaluation.userprofile", + "pk": 945, + "fields": { + "is_superuser": false, + "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", + "last_login": "2014-04-15T14:37:53.714", + "email": "katheryn.greiner@institution.example.com", + "title": "", + "first_name_given": "Katheryn", + "first_name_chosen": "", + "last_name": "Greiner", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] + } +}, +{ + "model": "evaluation.userprofile", + "pk": 946, + "fields": { + "is_superuser": false, + "password": "pbkdf2_sha256$100000$OqMHXWeUCCnd$0/jerl1QOWflFRxWyz1LNdEQBEZrYkLEUOQsspUB/70=", + "last_login": "2017-12-23T18:14:16.042", + "email": "grade_publisher@institution.example.com", + "title": "", + "first_name_given": "", + "first_name_chosen": "", + "last_name": "grade_publisher", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [ [ - "fay.westmoreland@institution.example.com" + "Grade publisher" ] ], - "voters": [ - [ - "cherry.doughty@institution.example.com" - ], - [ - "willena.hemphill@institution.example.com" - ], - [ - "Matthias.Kober@institution.example.com" - ], - [ - "corine.lunsford@institution.example.com" - ], - [ - "lissette.mccallister@external.example.com" - ], - [ - "felice.meek@institution.example.com" - ], - [ - "michaele.shuler@institution.example.com" - ], - [ - "myrtle.wahl@institution.example.com" - ], - [ - "fay.westmoreland@institution.example.com" - ] - ] + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 348, + "model": "evaluation.userprofile", + "pk": 947, "fields": { - "state": 80, - "course": 1, - "name_de": "Softwarearchitektur", - "name_en": "Software Architecture", - "weight": 2, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 9, - "_voter_count": 8, - "vote_start_datetime": "2024-05-01T00:00:00", - "vote_end_date": "2024-05-31", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "billi.arce@institution.example.com" - ], - [ - "aida.broome@institution.example.com" - ], - [ - "kiana.easley@institution.example.com" - ], - [ - "maryetta.hollingsworth@institution.example.com" - ], - [ - "ling.mcdade@institution.example.com" - ], - [ - "tawanna.negrete@institution.example.com" - ], - [ - "luann.schulz@institution.example.com" - ], - [ - "giuseppina.waldrop@institution.example.com" - ], + "is_superuser": false, + "password": "pbkdf2_sha256$30000$fxnctep4sBM1$EvsaesmX21Z8vRLdBFKPqHJ1AzW9vlXBwo8740hIrKQ=", + "last_login": null, + "email": "reviewer@institution.example.com", + "title": "", + "first_name_given": "", + "first_name_chosen": "", + "last_name": "reviewer", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [ [ - "fay.westmoreland@institution.example.com" + "Reviewer" ] ], - "voters": [ - [ - "billi.arce@institution.example.com" - ], - [ - "aida.broome@institution.example.com" - ], - [ - "kiana.easley@institution.example.com" - ], - [ - "maryetta.hollingsworth@institution.example.com" - ], - [ - "tawanna.negrete@institution.example.com" - ], - [ - "luann.schulz@institution.example.com" - ], - [ - "giuseppina.waldrop@institution.example.com" - ], - [ - "fay.westmoreland@institution.example.com" - ] - ] + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 350, + "model": "evaluation.userprofile", + "pk": 948, "fields": { - "state": 80, - "course": 126, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 9, - "_voter_count": 5, - "vote_start_datetime": "2022-02-02T00:00:00", - "vote_end_date": "2022-02-12", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "darnell.aguilera@institution.example.com" - ], - [ - "audra.alston@external.example.com" - ], - [ - "brenda.conway@institution.example.com" - ], - [ - "ariana.houghton@institution.example.com" - ], - [ - "clarence.kirkland@institution.example.com" - ], - [ - "sabine.knight@institution.example.com" - ], - [ - "marna.leboeuf@institution.example.com" - ], - [ - "nora.rowley@institution.example.com" - ], + "is_superuser": false, + "password": "pbkdf2_sha256$30000$fxnctep4sBM1$EvsaesmX21Z8vRLdBFKPqHJ1AzW9vlXBwo8740hIrKQ=", + "last_login": null, + "email": "proxy@institution.example.com", + "title": "", + "first_name_given": "", + "first_name_chosen": "", + "last_name": "proxy", + "language": "", + "is_proxy_user": true, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [ [ - "lois.seibert@institution.example.com" + "Reviewer" ] ], - "voters": [ - [ - "darnell.aguilera@institution.example.com" - ], - [ - "brenda.conway@institution.example.com" - ], - [ - "ariana.houghton@institution.example.com" - ], - [ - "clarence.kirkland@institution.example.com" - ], - [ - "sabine.knight@institution.example.com" - ] - ] + "user_permissions": [], + "delegates": [ + 949, + 950 + ], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 356, + "model": "evaluation.userprofile", + "pk": 949, "fields": { - "state": 80, - "course": 141, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 62, - "_voter_count": 35, - "vote_start_datetime": "2022-02-02T00:00:00", - "vote_end_date": "2022-02-12", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "sandie.aiello@institution.example.com" - ], - [ - "sheena.arsenault@institution.example.com" - ], - [ - "gwyn.berger@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "angelo.bridges@institution.example.com" - ], - [ - "jennette.briggs@institution.example.com" - ], - [ - "delbert.calkins@institution.example.com" - ], - [ - "cecile.caron@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "gracie.childs@institution.example.com" - ], - [ - "contributor@institution.example.com" - ], - [ - "larita.dejesus@institution.example.com" - ], - [ - "mickie.england@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "yong.furr@institution.example.com" - ], - [ - "louann.gee@institution.example.com" - ], - [ - "annmarie.godfrey@institution.example.com" - ], - [ - "monet.greenlee@institution.example.com" - ], - [ - "marshall.guerrero@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "etha.hastings@institution.example.com" - ], - [ - "mitchel.heard@institution.example.com" - ], - [ - "lucia.helton@institution.example.com" - ], - [ - "bertram.hendrick@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "brigette.holden@institution.example.com" - ], - [ - "marcos.huang@institution.example.com" - ], - [ - "caryl.ivory@institution.example.com" - ], - [ - "shanta.jay@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "velda.kimble@institution.example.com" - ], - [ - "aide.kraft@institution.example.com" - ], - [ - "kristine.leatherman@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "dannielle.mattingly@institution.example.com" - ], - [ - "ashlyn.mccartney@institution.example.com" - ], - [ - "birdie.mcclintock@institution.example.com" - ], - [ - "catharine.medeiros@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "daphne.moll@institution.example.com" - ], - [ - "xiomara.nakamura@institution.example.com" - ], - [ - "shemeka.nieves@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "roxy.olds@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "precious.reiss@institution.example.com" - ], - [ - "enid.robb@institution.example.com" - ], - [ - "hilda.rocha@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "camila.sharp@institution.example.com" - ], - [ - "carman.slagle@institution.example.com" - ], - [ - "jeannie.spears@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "rozella.swenson@institution.example.com" - ], - [ - "karan.thacker@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ], + "is_superuser": false, + "password": "pbkdf2_sha256$30000$fxnctep4sBM1$EvsaesmX21Z8vRLdBFKPqHJ1AzW9vlXBwo8740hIrKQ=", + "last_login": null, + "email": "proxy_delegate@institution.example.com", + "title": "", + "first_name_given": "", + "first_name_chosen": "", + "last_name": "proxy_delegate", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [ [ - "danika.wills@institution.example.com" + "Reviewer" ] ], - "voters": [ - [ - "sheena.arsenault@institution.example.com" - ], - [ - "gwyn.berger@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "delbert.calkins@institution.example.com" - ], - [ - "cecile.caron@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "contributor@institution.example.com" - ], - [ - "larita.dejesus@institution.example.com" - ], - [ - "mickie.england@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "monet.greenlee@institution.example.com" - ], - [ - "marshall.guerrero@institution.example.com" - ], - [ - "etha.hastings@institution.example.com" - ], - [ - "mitchel.heard@institution.example.com" - ], - [ - "lucia.helton@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "brigette.holden@institution.example.com" - ], - [ - "marcos.huang@institution.example.com" - ], - [ - "shanta.jay@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "aide.kraft@institution.example.com" - ], - [ - "kristine.leatherman@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "ashlyn.mccartney@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "xiomara.nakamura@institution.example.com" - ], - [ - "shemeka.nieves@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "rozella.swenson@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ] - ] + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 358, + "model": "evaluation.userprofile", + "pk": 950, "fields": { - "state": 80, - "course": 69, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 78, - "_voter_count": 36, - "vote_start_datetime": "2022-02-02T00:00:00", - "vote_end_date": "2022-02-09", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "herminia.alley@institution.example.com" - ], - [ - "shaunna.barnard@institution.example.com" - ], - [ - "cherly.bobbitt@institution.example.com" - ], - [ - "myrtice.bohannon@institution.example.com" - ], - [ - "vincenzo.boston@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "florene.carney@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "zack.chaffin@institution.example.com" - ], - [ - "keva.cheng@institution.example.com" - ], - [ - "dannie.cochran@institution.example.com" - ], - [ - "maribeth.compton@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "mable.craddock@institution.example.com" - ], - [ - "mercedez.cupp@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "hester.ferro@institution.example.com" - ], - [ - "elissa.fowler@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "wilmer.goodson@institution.example.com" - ], - [ - "wyatt.hale@institution.example.com" - ], - [ - "kaitlin.hamblin@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "azzie.heaton@institution.example.com" - ], - [ - "arturo.heflin@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "genevive.kelly@institution.example.com" - ], - [ - "hollie.labonte@institution.example.com" - ], - [ - "melody.large@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "bud.ledbetter@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "corey.loera@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "audie.luna@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "sima.marquardt@institution.example.com" - ], - [ - "irving.mcdade@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "minerva.moe@institution.example.com" - ], - [ - "kandra.monahan@institution.example.com" - ], - [ - "alta.omalley@institution.example.com" - ], - [ - "fabian.orta@institution.example.com" - ], - [ - "lashandra.peacock@institution.example.com" - ], - [ - "wava.pearl@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "felicia.rawlings@institution.example.com" - ], - [ - "christel.rayburn@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "alton.smalley@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "yong.staley@institution.example.com" - ], - [ - "gidget.stern@institution.example.com" - ], - [ - "tayna.tarver@institution.example.com" - ], - [ - "karan.thacker@institution.example.com" - ], - [ - "chong.thorne@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "marcia.trammell@institution.example.com" - ], - [ - "vella.valerio@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ], - [ - "dominga.vega@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ], - "voters": [ - [ - "herminia.alley@institution.example.com" - ], - [ - "cherly.bobbitt@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "maribeth.compton@institution.example.com" - ], - [ - "mercedez.cupp@institution.example.com" - ], - [ - "hester.ferro@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "azzie.heaton@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "audie.luna@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "minerva.moe@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "felicia.rawlings@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "alton.smalley@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "yong.staley@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "marcia.trammell@institution.example.com" - ], - [ - "dominga.vega@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 359, - "fields": { - "state": 80, - "course": 5, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 36, - "_voter_count": 14, - "vote_start_datetime": "2022-04-12T00:00:00", - "vote_end_date": "2022-04-26", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "gwyn.berger@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "jennette.briggs@institution.example.com" - ], - [ - "mariano.burns@institution.example.com" - ], - [ - "shemeka.cabrera@institution.example.com" - ], - [ - "edda.cady@institution.example.com" - ], - [ - "delbert.calkins@institution.example.com" - ], - [ - "gracie.childs@institution.example.com" - ], - [ - "lupe.comstock@institution.example.com" - ], - [ - "larita.dejesus@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "rhona.earl@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "evelyne.grigsby@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "agatha.howe@institution.example.com" - ], - [ - "shanta.jay@institution.example.com" - ], - [ - "hilde.langston@institution.example.com" - ], - [ - "sheridan.limon@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "cheryl.lucas@institution.example.com" - ], - [ - "arline.maier@institution.example.com" - ], - [ - "christia.manzo@institution.example.com" - ], - [ - "catharine.medeiros@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "chantay.reedy@institution.example.com" - ], - [ - "winston.samples@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "angelita.stearns@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ] - ], - "voters": [ - [ - "gwyn.berger@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "jennette.briggs@institution.example.com" - ], - [ - "shemeka.cabrera@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "sheridan.limon@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "christia.manzo@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "chantay.reedy@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 363, - "fields": { - "state": 80, - "course": 37, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 10, - "_voter_count": 2, - "vote_start_datetime": "2022-03-27T00:00:00", - "vote_end_date": "2022-04-04", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "donnie.bates@institution.example.com" - ], - [ - "eugenia.bauer@institution.example.com" - ], - [ - "hoyt.bohn@institution.example.com" - ], - [ - "almeta.cody@institution.example.com" - ], - [ - "belia.coe@institution.example.com" - ], - [ - "corrinne.ferraro@institution.example.com" - ], - [ - "linnea.humes@institution.example.com" - ], - [ - "hassan.hyde@institution.example.com" - ], - [ - "mandie.lomax@institution.example.com" - ], - [ - "lorrine.robertson@institution.example.com" - ] - ], - "voters": [ - [ - "hoyt.bohn@institution.example.com" - ], - [ - "corrinne.ferraro@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 370, - "fields": { - "state": 80, - "course": 26, - "name_de": "", - "name_en": "", - "weight": 3, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 79, - "_voter_count": 41, - "vote_start_datetime": "2022-01-30T00:00:00", - "vote_end_date": "2022-02-08", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "kristina.baker@institution.example.com" - ], - [ - "gwyn.berger@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "verena.blaylock@institution.example.com" - ], - [ - "maybelle.bolton@institution.example.com" - ], - [ - "crysta.bounds@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "angelo.bridges@institution.example.com" - ], - [ - "jennette.briggs@institution.example.com" - ], - [ - "mariano.burns@institution.example.com" - ], - [ - "shemeka.cabrera@institution.example.com" - ], - [ - "edda.cady@institution.example.com" - ], - [ - "delbert.calkins@institution.example.com" - ], - [ - "cecile.caron@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "maxie.childers@institution.example.com" - ], - [ - "gracie.childs@institution.example.com" - ], - [ - "mirtha.cleveland@institution.example.com" - ], - [ - "lupe.comstock@institution.example.com" - ], - [ - "jerald.cooper@institution.example.com" - ], - [ - "larita.dejesus@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "rhona.earl@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "lilia.erwin@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "evelyne.grigsby@institution.example.com" - ], - [ - "marshall.guerrero@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "bertram.hendrick@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "agatha.howe@institution.example.com" - ], - [ - "caryl.ivory@institution.example.com" - ], - [ - "shanta.jay@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "margarette.kersey@institution.example.com" - ], - [ - "willodean.kitchens@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "hilde.langston@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "sheridan.limon@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "cheryl.lucas@institution.example.com" - ], - [ - "arline.maier@institution.example.com" - ], - [ - "christia.manzo@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "ashlyn.mccartney@institution.example.com" - ], - [ - "birdie.mcclintock@institution.example.com" - ], - [ - "catharine.medeiros@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "daphne.moll@institution.example.com" - ], - [ - "xiomara.nakamura@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "chantay.reedy@institution.example.com" - ], - [ - "precious.reiss@institution.example.com" - ], - [ - "hilda.rocha@institution.example.com" - ], - [ - "ethyl.rust@institution.example.com" - ], - [ - "winston.samples@institution.example.com" - ], - [ - "roxanna.sandlin@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "camila.sharp@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "thomas.spearman@institution.example.com" - ], - [ - "angelita.stearns@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "rozella.swenson@institution.example.com" - ], - [ - "karan.thacker@institution.example.com" - ], - [ - "kandis.thurston@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ], - [ - "mario.voigt@institution.example.com" - ], - [ - "danika.wills@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ] - ], - "voters": [ - [ - "kristina.baker@institution.example.com" - ], - [ - "gwyn.berger@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "jennette.briggs@institution.example.com" - ], - [ - "shemeka.cabrera@institution.example.com" - ], - [ - "edda.cady@institution.example.com" - ], - [ - "delbert.calkins@institution.example.com" - ], - [ - "maxie.childers@institution.example.com" - ], - [ - "mirtha.cleveland@institution.example.com" - ], - [ - "jerald.cooper@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "evelyne.grigsby@institution.example.com" - ], - [ - "marshall.guerrero@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "shanta.jay@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "margarette.kersey@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "sheridan.limon@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "christia.manzo@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "ashlyn.mccartney@institution.example.com" - ], - [ - "catharine.medeiros@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "xiomara.nakamura@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "chantay.reedy@institution.example.com" - ], - [ - "ethyl.rust@institution.example.com" - ], - [ - "winston.samples@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "thomas.spearman@institution.example.com" - ], - [ - "kandis.thurston@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 372, - "fields": { - "state": 80, - "course": 26, - "name_de": "C³: Konsistente Fahrzeug Gruppierung", - "name_en": "C³: Consistent Car Clustering", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 84, - "_voter_count": 44, - "vote_start_datetime": "2022-02-02T00:00:00", - "vote_end_date": "2022-02-12", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "kristina.baker@institution.example.com" - ], - [ - "gwyn.berger@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "verena.blaylock@institution.example.com" - ], - [ - "maybelle.bolton@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "angelo.bridges@institution.example.com" - ], - [ - "jennette.briggs@institution.example.com" - ], - [ - "mariano.burns@institution.example.com" - ], - [ - "shemeka.cabrera@institution.example.com" - ], - [ - "edda.cady@institution.example.com" - ], - [ - "delbert.calkins@institution.example.com" - ], - [ - "cecile.caron@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "virgina.carrasco@institution.example.com" - ], - [ - "maxie.childers@institution.example.com" - ], - [ - "gracie.childs@institution.example.com" - ], - [ - "mirtha.cleveland@institution.example.com" - ], - [ - "lupe.comstock@institution.example.com" - ], - [ - "jerald.cooper@institution.example.com" - ], - [ - "larita.dejesus@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "rhona.earl@institution.example.com" - ], - [ - "kiana.easley@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "lilia.erwin@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "concha.ezell@institution.example.com" - ], - [ - "palma.feliciano@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "evelyne.grigsby@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "lucia.helton@institution.example.com" - ], - [ - "bertram.hendrick@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "agatha.howe@institution.example.com" - ], - [ - "hassan.hyde@institution.example.com" - ], - [ - "caryl.ivory@institution.example.com" - ], - [ - "shanta.jay@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "margarette.kersey@institution.example.com" - ], - [ - "jenniffer.kinard@institution.example.com" - ], - [ - "willodean.kitchens@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "hilde.langston@institution.example.com" - ], - [ - "sheridan.limon@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "cheryl.lucas@institution.example.com" - ], - [ - "arline.maier@institution.example.com" - ], - [ - "christia.manzo@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "dannielle.mattingly@institution.example.com" - ], - [ - "ashlyn.mccartney@institution.example.com" - ], - [ - "birdie.mcclintock@institution.example.com" - ], - [ - "catharine.medeiros@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "daphne.moll@institution.example.com" - ], - [ - "xiomara.nakamura@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "shavon.price@institution.example.com" - ], - [ - "chantay.reedy@institution.example.com" - ], - [ - "hilda.rocha@institution.example.com" - ], - [ - "ethyl.rust@institution.example.com" - ], - [ - "winston.samples@institution.example.com" - ], - [ - "roxanna.sandlin@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "camila.sharp@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "thomas.spearman@institution.example.com" - ], - [ - "angelita.stearns@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "rozella.swenson@institution.example.com" - ], - [ - "karan.thacker@institution.example.com" - ], - [ - "kandis.thurston@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ], - [ - "mario.voigt@institution.example.com" - ], - [ - "danika.wills@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ] - ], - "voters": [ - [ - "kristina.baker@institution.example.com" - ], - [ - "gwyn.berger@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "shemeka.cabrera@institution.example.com" - ], - [ - "edda.cady@institution.example.com" - ], - [ - "cecile.caron@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "mirtha.cleveland@institution.example.com" - ], - [ - "larita.dejesus@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "concha.ezell@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "lucia.helton@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "margarette.kersey@institution.example.com" - ], - [ - "jenniffer.kinard@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "hilde.langston@institution.example.com" - ], - [ - "sheridan.limon@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "ashlyn.mccartney@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "xiomara.nakamura@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "chantay.reedy@institution.example.com" - ], - [ - "ethyl.rust@institution.example.com" - ], - [ - "winston.samples@institution.example.com" - ], - [ - "roxanna.sandlin@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "thomas.spearman@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "rozella.swenson@institution.example.com" - ], - [ - "kandis.thurston@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 375, - "fields": { - "state": 80, - "course": 50, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 15, - "_voter_count": 11, - "vote_start_datetime": "2022-02-02T00:00:00", - "vote_end_date": "2022-02-12", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "jennette.briggs@institution.example.com" - ], - [ - "edda.cady@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "corey.loera@institution.example.com" - ], - [ - "arline.maier@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "daphne.moll@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "roxanna.sandlin@institution.example.com" - ], - [ - "kandis.thurston@institution.example.com" - ] - ], - "voters": [ - [ - "jennette.briggs@institution.example.com" - ], - [ - "edda.cady@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "roxanna.sandlin@institution.example.com" - ], - [ - "kandis.thurston@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 478, - "fields": { - "state": 70, - "course": 38, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2022-01-22T00:00:00", - "vote_end_date": "2022-01-23", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "viola.barringer@institution.example.com" - ], - [ - "heike.cartwright@external.example.com" - ], - [ - "january.copeland@institution.example.com" - ], - [ - "britteny.easley@institution.example.com" - ], - [ - "tonita.gallardo@institution.example.com" - ], - [ - "gwyn.lloyd@institution.example.com" - ], - [ - "hugh.runyon@institution.example.com" - ], - [ - "harriet.rushing@institution.example.com" - ], - [ - "tracie.shephard@external.example.com" - ], - [ - "pamula.sims@institution.example.com" - ], - [ - "laurence.tipton@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 482, - "fields": { - "state": 80, - "course": 44, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 74, - "_voter_count": 44, - "vote_start_datetime": "2022-02-02T00:00:00", - "vote_end_date": "2022-02-12", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "herminia.alley@institution.example.com" - ], - [ - "shaunna.barnard@institution.example.com" - ], - [ - "cherly.bobbitt@institution.example.com" - ], - [ - "vincenzo.boston@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "florene.carney@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "zack.chaffin@institution.example.com" - ], - [ - "keva.cheng@institution.example.com" - ], - [ - "dannie.cochran@institution.example.com" - ], - [ - "maribeth.compton@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "mable.craddock@institution.example.com" - ], - [ - "mercedez.cupp@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "hester.ferro@institution.example.com" - ], - [ - "elissa.fowler@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "wilmer.goodson@institution.example.com" - ], - [ - "wyatt.hale@institution.example.com" - ], - [ - "kaitlin.hamblin@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "azzie.heaton@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "genevive.kelly@institution.example.com" - ], - [ - "hollie.labonte@institution.example.com" - ], - [ - "melody.large@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "corey.loera@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "audie.luna@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "sima.marquardt@institution.example.com" - ], - [ - "irving.mcdade@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "minerva.moe@institution.example.com" - ], - [ - "kandra.monahan@institution.example.com" - ], - [ - "alta.omalley@institution.example.com" - ], - [ - "fabian.orta@institution.example.com" - ], - [ - "lashandra.peacock@institution.example.com" - ], - [ - "wava.pearl@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "felicia.rawlings@institution.example.com" - ], - [ - "christel.rayburn@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "alton.smalley@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "gidget.stern@institution.example.com" - ], - [ - "doyle.stump@institution.example.com" - ], - [ - "tayna.tarver@institution.example.com" - ], - [ - "chong.thorne@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "marcia.trammell@institution.example.com" - ], - [ - "vella.valerio@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ], - [ - "dominga.vega@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ], - "voters": [ - [ - "cherly.bobbitt@institution.example.com" - ], - [ - "vincenzo.boston@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "keva.cheng@institution.example.com" - ], - [ - "maribeth.compton@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "mable.craddock@institution.example.com" - ], - [ - "mercedez.cupp@institution.example.com" - ], - [ - "hester.ferro@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "azzie.heaton@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "audie.luna@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "minerva.moe@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "felicia.rawlings@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "alton.smalley@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "marcia.trammell@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ], - [ - "dominga.vega@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 641, - "fields": { - "state": 80, - "course": 16, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 74, - "_voter_count": 27, - "vote_start_datetime": "2022-07-09T00:00:00", - "vote_end_date": "2022-07-29", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "herminia.alley@institution.example.com" - ], - [ - "kristina.baker@institution.example.com" - ], - [ - "shaunna.barnard@institution.example.com" - ], - [ - "gwyn.berger@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "verena.blaylock@institution.example.com" - ], - [ - "maybelle.bolton@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "angelo.bridges@institution.example.com" - ], - [ - "jennette.briggs@institution.example.com" - ], - [ - "mariano.burns@institution.example.com" - ], - [ - "shemeka.cabrera@institution.example.com" - ], - [ - "delbert.calkins@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "zack.chaffin@institution.example.com" - ], - [ - "maxie.childers@institution.example.com" - ], - [ - "mirtha.cleveland@institution.example.com" - ], - [ - "lupe.comstock@institution.example.com" - ], - [ - "jerald.cooper@institution.example.com" - ], - [ - "larita.dejesus@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "rhona.earl@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "kiana.easley@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "lilia.erwin@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "evelyne.grigsby@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "etha.hastings@institution.example.com" - ], - [ - "bertram.hendrick@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "caryl.ivory@institution.example.com" - ], - [ - "shanta.jay@institution.example.com" - ], - [ - "margarette.kersey@institution.example.com" - ], - [ - "willodean.kitchens@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "sheridan.limon@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "arline.maier@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "ashlyn.mccartney@institution.example.com" - ], - [ - "birdie.mcclintock@institution.example.com" - ], - [ - "catharine.medeiros@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "daphne.moll@institution.example.com" - ], - [ - "xiomara.nakamura@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "wava.pearl@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "shavon.price@institution.example.com" - ], - [ - "felicia.rawlings@institution.example.com" - ], - [ - "hilda.rocha@institution.example.com" - ], - [ - "ethyl.rust@institution.example.com" - ], - [ - "winston.samples@institution.example.com" - ], - [ - "roxanna.sandlin@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "camila.sharp@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "thomas.spearman@institution.example.com" - ], - [ - "angelita.stearns@institution.example.com" - ], - [ - "gidget.stern@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "kandis.thurston@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ], - [ - "mario.voigt@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ] - ], - "voters": [ - [ - "herminia.alley@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "jennette.briggs@institution.example.com" - ], - [ - "jerald.cooper@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "etha.hastings@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "sheridan.limon@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "ashlyn.mccartney@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "ethyl.rust@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 643, - "fields": { - "state": 80, - "course": 12, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 82, - "_voter_count": 32, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "herminia.alley@institution.example.com" - ], - [ - "shaunna.barnard@institution.example.com" - ], - [ - "vincenzo.boston@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "florene.carney@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "zack.chaffin@institution.example.com" - ], - [ - "keva.cheng@institution.example.com" - ], - [ - "dannie.cochran@institution.example.com" - ], - [ - "maribeth.compton@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "mable.craddock@institution.example.com" - ], - [ - "mercedez.cupp@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "kiana.easley@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "elissa.fowler@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "benito.fuqua@institution.example.com" - ], - [ - "wilmer.goodson@institution.example.com" - ], - [ - "wyatt.hale@institution.example.com" - ], - [ - "kaitlin.hamblin@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "azzie.heaton@institution.example.com" - ], - [ - "arturo.heflin@institution.example.com" - ], - [ - "bertram.hendrick@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "genevive.kelly@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "aide.kraft@institution.example.com" - ], - [ - "melody.large@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "sima.marquardt@institution.example.com" - ], - [ - "irving.mcdade@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "minerva.moe@institution.example.com" - ], - [ - "alta.omalley@institution.example.com" - ], - [ - "lashandra.peacock@institution.example.com" - ], - [ - "wava.pearl@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "felicia.rawlings@institution.example.com" - ], - [ - "christel.rayburn@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "reva.root@institution.example.com" - ], - [ - "ethyl.rust@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "alton.smalley@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "yong.staley@institution.example.com" - ], - [ - "gidget.stern@institution.example.com" - ], - [ - "doyle.stump@institution.example.com" - ], - [ - "tayna.tarver@institution.example.com" - ], - [ - "karan.thacker@institution.example.com" - ], - [ - "chong.thorne@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "marcia.trammell@institution.example.com" - ], - [ - "vella.valerio@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ], - [ - "dominga.vega@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "mario.voigt@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ], - [ - "ute.ybarra@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ], - "voters": [ - [ - "herminia.alley@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "benito.fuqua@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "melody.large@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "yong.staley@institution.example.com" - ], - [ - "chong.thorne@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 648, - "fields": { - "state": 80, - "course": 2, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 108, - "_voter_count": 32, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "sandie.aiello@institution.example.com" - ], - [ - "ariana.amaya@institution.example.com" - ], - [ - "kristina.baker@institution.example.com" - ], - [ - "gwyn.berger@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "verena.blaylock@institution.example.com" - ], - [ - "hoyt.bohn@institution.example.com" - ], - [ - "lyndsey.bolt@institution.example.com" - ], - [ - "maybelle.bolton@institution.example.com" - ], - [ - "lyndon.bowles@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "angelo.bridges@institution.example.com" - ], - [ - "jennette.briggs@institution.example.com" - ], - [ - "azalee.broussard@institution.example.com" - ], - [ - "kimbery.burnette@institution.example.com" - ], - [ - "mariano.burns@institution.example.com" - ], - [ - "armandina.byrne@institution.example.com" - ], - [ - "shemeka.cabrera@institution.example.com" - ], - [ - "edda.cady@institution.example.com" - ], - [ - "delbert.calkins@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "asa.carlton@institution.example.com" - ], - [ - "cecile.caron@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "virgina.carrasco@institution.example.com" - ], - [ - "dell.castro@external.example.com" - ], - [ - "merideth.chandler@institution.example.com" - ], - [ - "gracie.childs@institution.example.com" - ], - [ - "mirtha.cleveland@institution.example.com" - ], - [ - "belia.coe@institution.example.com" - ], - [ - "lupe.comstock@institution.example.com" - ], - [ - "jerald.cooper@institution.example.com" - ], - [ - "larita.dejesus@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "janise.denman@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "rhona.earl@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "yong.furr@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "louann.gee@institution.example.com" - ], - [ - "annmarie.godfrey@institution.example.com" - ], - [ - "monet.greenlee@institution.example.com" - ], - [ - "natalie.gregory@institution.example.com" - ], - [ - "evelyne.grigsby@institution.example.com" - ], - [ - "marshall.guerrero@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "etha.hastings@institution.example.com" - ], - [ - "mitchel.heard@institution.example.com" - ], - [ - "arturo.heflin@institution.example.com" - ], - [ - "lucia.helton@institution.example.com" - ], - [ - "bertram.hendrick@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "agatha.howe@institution.example.com" - ], - [ - "linnea.humes@institution.example.com" - ], - [ - "hassan.hyde@institution.example.com" - ], - [ - "caryl.ivory@institution.example.com" - ], - [ - "shanta.jay@institution.example.com" - ], - [ - "bryant.johnson@institution.example.com" - ], - [ - "sharice.kasper@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "margarette.kersey@institution.example.com" - ], - [ - "velda.kimble@institution.example.com" - ], - [ - "willodean.kitchens@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "hilde.langston@institution.example.com" - ], - [ - "sheridan.limon@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "cheryl.lucas@institution.example.com" - ], - [ - "arline.maier@institution.example.com" - ], - [ - "christia.manzo@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "dannielle.mattingly@institution.example.com" - ], - [ - "ashlyn.mccartney@institution.example.com" - ], - [ - "birdie.mcclintock@institution.example.com" - ], - [ - "catharine.medeiros@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "daphne.moll@institution.example.com" - ], - [ - "xiomara.nakamura@institution.example.com" - ], - [ - "shemeka.nieves@institution.example.com" - ], - [ - "armida.nobles@institution.example.com" - ], - [ - "marvel.oakley@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "shavon.price@institution.example.com" - ], - [ - "chantay.reedy@institution.example.com" - ], - [ - "hilda.rocha@institution.example.com" - ], - [ - "ethyl.rust@institution.example.com" - ], - [ - "winston.samples@institution.example.com" - ], - [ - "roxanna.sandlin@institution.example.com" - ], - [ - "stacy.sawyer@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "camila.sharp@institution.example.com" - ], - [ - "carman.slagle@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "thomas.spearman@institution.example.com" - ], - [ - "angelita.stearns@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "rozella.swenson@institution.example.com" - ], - [ - "karan.thacker@institution.example.com" - ], - [ - "kandis.thurston@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ], - [ - "mario.voigt@institution.example.com" - ], - [ - "danika.wills@institution.example.com" - ] - ], - "voters": [ - [ - "kristina.baker@institution.example.com" - ], - [ - "gwyn.berger@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "maybelle.bolton@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "kimbery.burnette@institution.example.com" - ], - [ - "asa.carlton@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "rhona.earl@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "marshall.guerrero@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "etha.hastings@institution.example.com" - ], - [ - "mitchel.heard@institution.example.com" - ], - [ - "lucia.helton@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "velda.kimble@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "armida.nobles@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "ethyl.rust@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "rozella.swenson@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ], - [ - "danika.wills@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 652, - "fields": { - "state": 80, - "course": 82, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 76, - "_voter_count": 34, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-11", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "kristina.baker@institution.example.com" - ], - [ - "gwyn.berger@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "verena.blaylock@institution.example.com" - ], - [ - "maybelle.bolton@institution.example.com" - ], - [ - "crysta.bounds@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "angelo.bridges@institution.example.com" - ], - [ - "jennette.briggs@institution.example.com" - ], - [ - "mariano.burns@institution.example.com" - ], - [ - "shemeka.cabrera@institution.example.com" - ], - [ - "edda.cady@institution.example.com" - ], - [ - "delbert.calkins@institution.example.com" - ], - [ - "cecile.caron@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "maxie.childers@institution.example.com" - ], - [ - "gracie.childs@institution.example.com" - ], - [ - "mirtha.cleveland@institution.example.com" - ], - [ - "lupe.comstock@institution.example.com" - ], - [ - "jerald.cooper@institution.example.com" - ], - [ - "larita.dejesus@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "rhona.earl@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "evelyne.grigsby@institution.example.com" - ], - [ - "marshall.guerrero@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "bertram.hendrick@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "agatha.howe@institution.example.com" - ], - [ - "caryl.ivory@institution.example.com" - ], - [ - "shanta.jay@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "margarette.kersey@institution.example.com" - ], - [ - "willodean.kitchens@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "hilde.langston@institution.example.com" - ], - [ - "sheridan.limon@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "cheryl.lucas@institution.example.com" - ], - [ - "arline.maier@institution.example.com" - ], - [ - "christia.manzo@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "ashlyn.mccartney@institution.example.com" - ], - [ - "birdie.mcclintock@institution.example.com" - ], - [ - "catharine.medeiros@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "daphne.moll@institution.example.com" - ], - [ - "xiomara.nakamura@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "chantay.reedy@institution.example.com" - ], - [ - "hilda.rocha@institution.example.com" - ], - [ - "ethyl.rust@institution.example.com" - ], - [ - "winston.samples@institution.example.com" - ], - [ - "roxanna.sandlin@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "camila.sharp@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "thomas.spearman@institution.example.com" - ], - [ - "angelita.stearns@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "rozella.swenson@institution.example.com" - ], - [ - "karan.thacker@institution.example.com" - ], - [ - "kandis.thurston@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ], - [ - "mario.voigt@institution.example.com" - ], - [ - "danika.wills@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ] - ], - "voters": [ - [ - "kristina.baker@institution.example.com" - ], - [ - "gwyn.berger@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "maybelle.bolton@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "jennette.briggs@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "lupe.comstock@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "rhona.earl@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "marshall.guerrero@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "hilde.langston@institution.example.com" - ], - [ - "sheridan.limon@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "ashlyn.mccartney@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "xiomara.nakamura@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "chantay.reedy@institution.example.com" - ], - [ - "ethyl.rust@institution.example.com" - ], - [ - "thomas.spearman@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ], - [ - "danika.wills@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 654, - "fields": { - "state": 80, - "course": 59, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 26, - "_voter_count": 10, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "hester.bettencourt@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "angelo.bridges@institution.example.com" - ], - [ - "azalee.broussard@institution.example.com" - ], - [ - "mariano.burns@institution.example.com" - ], - [ - "cecile.caron@institution.example.com" - ], - [ - "maxie.childers@institution.example.com" - ], - [ - "jerald.cooper@institution.example.com" - ], - [ - "florrie.deluca@institution.example.com" - ], - [ - "janise.denman@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "mitchel.heard@institution.example.com" - ], - [ - "bertram.hendrick@institution.example.com" - ], - [ - "shayna.hyde@institution.example.com" - ], - [ - "shanta.jay@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "cheryl.lucas@institution.example.com" - ], - [ - "birdie.mcclintock@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "karan.thacker@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ], - [ - "mario.voigt@institution.example.com" - ] - ], - "voters": [ - [ - "hester.bettencourt@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "jerald.cooper@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "mitchel.heard@institution.example.com" - ], - [ - "shayna.hyde@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 655, - "fields": { - "state": 80, - "course": 52, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 16, - "_voter_count": 4, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "sandie.aiello@institution.example.com" - ], - [ - "hoyt.bohn@institution.example.com" - ], - [ - "lyndon.bowles@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "benito.fuqua@institution.example.com" - ], - [ - "louann.gee@institution.example.com" - ], - [ - "kayce.grigsby@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "hilde.langston@institution.example.com" - ], - [ - "tiffaney.leung@institution.example.com" - ], - [ - "mandie.lomax@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "cheryl.lucas@institution.example.com" - ], - [ - "shemeka.nieves@institution.example.com" - ], - [ - "randell.reis@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ] - ], - "voters": [ - [ - "benito.fuqua@institution.example.com" - ], - [ - "kayce.grigsby@institution.example.com" - ], - [ - "mandie.lomax@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 657, - "fields": { - "state": 80, - "course": 130, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 9, - "_voter_count": 5, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "almeta.cody@institution.example.com" - ], - [ - "rhona.earl@institution.example.com" - ], - [ - "elissa.fowler@institution.example.com" - ], - [ - "birdie.mcclintock@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "doyle.stump@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ] - ], - "voters": [ - [ - "rhona.earl@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 663, - "fields": { - "state": 80, - "course": 94, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 20, - "_voter_count": 11, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "felton.alvarez@institution.example.com" - ], - [ - "delbert.calkins@institution.example.com" - ], - [ - "josef.castellano@institution.example.com" - ], - [ - "odette.chitwood@institution.example.com" - ], - [ - "jina.cushman@institution.example.com" - ], - [ - "eden.desimone@institution.example.com" - ], - [ - "chasidy.draper@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "callie.grove@institution.example.com" - ], - [ - "Matthias.Kober@institution.example.com" - ], - [ - "hiram.lemus@institution.example.com" - ], - [ - "corine.lunsford@institution.example.com" - ], - [ - "inge.mcmullen@institution.example.com" - ], - [ - "norris.peeler@institution.example.com" - ], - [ - "macie.roller@institution.example.com" - ], - [ - "regan.swank@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ], - [ - "giuseppina.waldrop@institution.example.com" - ], - [ - "randi.woody@institution.example.com" - ] - ], - "voters": [ - [ - "odette.chitwood@institution.example.com" - ], - [ - "eden.desimone@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "callie.grove@institution.example.com" - ], - [ - "Matthias.Kober@institution.example.com" - ], - [ - "hiram.lemus@institution.example.com" - ], - [ - "corine.lunsford@institution.example.com" - ], - [ - "macie.roller@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ], - [ - "giuseppina.waldrop@institution.example.com" - ], - [ - "randi.woody@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 664, - "fields": { - "state": 80, - "course": 115, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 27, - "_voter_count": 14, - "vote_start_datetime": "2022-07-05T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "gwyn.berger@institution.example.com" - ], - [ - "maybelle.bolton@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "shemeka.cabrera@institution.example.com" - ], - [ - "edda.cady@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "keva.cheng@institution.example.com" - ], - [ - "mable.craddock@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "agatha.howe@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "caryl.ivory@institution.example.com" - ], - [ - "shanta.jay@institution.example.com" - ], - [ - "jenniffer.kinard@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "catharine.medeiros@institution.example.com" - ], - [ - "chantay.reedy@institution.example.com" - ], - [ - "hilda.rocha@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "angelita.stearns@institution.example.com" - ], - [ - "tayna.tarver@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ] - ], - "voters": [ - [ - "gwyn.berger@institution.example.com" - ], - [ - "maybelle.bolton@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "jenniffer.kinard@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "chantay.reedy@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 665, - "fields": { - "state": 80, - "course": 103, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 17, - "_voter_count": 5, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "lavonna.burgos@institution.example.com" - ], - [ - "josef.castellano@institution.example.com" - ], - [ - "milly.early@institution.example.com" - ], - [ - "yolanda.farley@institution.example.com" - ], - [ - "cole.gamboa@institution.example.com" - ], - [ - "carol.grier@institution.example.com" - ], - [ - "fritz.joe@institution.example.com" - ], - [ - "inge.mcmullen@institution.example.com" - ], - [ - "felice.meek@institution.example.com" - ], - [ - "lorene.moultrie@institution.example.com" - ], - [ - "lavona.pond@institution.example.com" - ], - [ - "macie.roller@institution.example.com" - ], - [ - "alexis.sandoval@institution.example.com" - ], - [ - "lyndia.song@institution.example.com" - ], - [ - "gilda.soper@institution.example.com" - ], - [ - "raymonde.stock@institution.example.com" - ], - [ - "jennifer.yarbrough@institution.example.com" - ] - ], - "voters": [ - [ - "milly.early@institution.example.com" - ], - [ - "yolanda.farley@institution.example.com" - ], - [ - "lavona.pond@institution.example.com" - ], - [ - "raymonde.stock@institution.example.com" - ], - [ - "jennifer.yarbrough@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 666, - "fields": { - "state": 80, - "course": 35, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 19, - "_voter_count": 9, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-12", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "justa.baughman@institution.example.com" - ], - [ - "odette.chitwood@institution.example.com" - ], - [ - "conchita.dent@external.example.com" - ], - [ - "chasidy.draper@institution.example.com" - ], - [ - "cole.gamboa@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "jaquelyn.huang@institution.example.com" - ], - [ - "nita.jennings@institution.example.com" - ], - [ - "clarence.kirkland@institution.example.com" - ], - [ - "tula.langdon@institution.example.com" - ], - [ - "jacqui.lindsey@institution.example.com" - ], - [ - "lissette.mccallister@external.example.com" - ], - [ - "alexis.sandoval@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ], - [ - "aleta.seymour@institution.example.com" - ], - [ - "tara.snider@institution.example.com" - ], - [ - "regan.swank@institution.example.com" - ], - [ - "giuseppina.waldrop@institution.example.com" - ], - [ - "jennifer.yarbrough@institution.example.com" - ] - ], - "voters": [ - [ - "justa.baughman@institution.example.com" - ], - [ - "odette.chitwood@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "clarence.kirkland@institution.example.com" - ], - [ - "lissette.mccallister@external.example.com" - ], - [ - "elden.seitz@institution.example.com" - ], - [ - "aleta.seymour@institution.example.com" - ], - [ - "giuseppina.waldrop@institution.example.com" - ], - [ - "jennifer.yarbrough@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 669, - "fields": { - "state": 80, - "course": 51, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 28, - "_voter_count": 10, - "vote_start_datetime": "2022-07-05T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "oma.abner@institution.example.com" - ], - [ - "diedra.batson@institution.example.com" - ], - [ - "conception.belt@institution.example.com" - ], - [ - "ezequiel.brock@institution.example.com" - ], - [ - "lavonna.burgos@institution.example.com" - ], - [ - "josef.castellano@institution.example.com" - ], - [ - "jarod.cate@institution.example.com" - ], - [ - "eden.desimone@institution.example.com" - ], - [ - "milly.early@institution.example.com" - ], - [ - "cole.gamboa@institution.example.com" - ], - [ - "majorie.godfrey@institution.example.com" - ], - [ - "callie.grove@institution.example.com" - ], - [ - "quincy.hammond@institution.example.com" - ], - [ - "collin.hanley@institution.example.com" - ], - [ - "jaquelyn.huang@institution.example.com" - ], - [ - "alan.lachance@institution.example.com" - ], - [ - "jacqui.lindsey@institution.example.com" - ], - [ - "shela.lowell@institution.example.com" - ], - [ - "felice.meek@institution.example.com" - ], - [ - "renaldo.melendez@institution.example.com" - ], - [ - "wendie.pike@institution.example.com" - ], - [ - "jeannetta.reichert@external.example.com" - ], - [ - "alfreda.roche@institution.example.com" - ], - [ - "keith.sanchez@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ], - [ - "meagan.steed@institution.example.com" - ], - [ - "student@institution.example.com" - ], - [ - "eugene.tennant@institution.example.com" - ] - ], - "voters": [ - [ - "diedra.batson@institution.example.com" - ], - [ - "conception.belt@institution.example.com" - ], - [ - "eden.desimone@institution.example.com" - ], - [ - "milly.early@institution.example.com" - ], - [ - "majorie.godfrey@institution.example.com" - ], - [ - "callie.grove@institution.example.com" - ], - [ - "alan.lachance@institution.example.com" - ], - [ - "wendie.pike@institution.example.com" - ], - [ - "alfreda.roche@institution.example.com" - ], - [ - "meagan.steed@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 675, - "fields": { - "state": 80, - "course": 86, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 7, - "_voter_count": 5, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "etta.child@institution.example.com" - ], - [ - "elma.huynh@institution.example.com" - ], - [ - "kellee.maldonado@institution.example.com" - ], - [ - "lavona.pond@institution.example.com" - ], - [ - "maribel.scales@institution.example.com" - ], - [ - "tara.snider@institution.example.com" - ] - ], - "voters": [ - [ - "elma.huynh@institution.example.com" - ], - [ - "kellee.maldonado@institution.example.com" - ], - [ - "lavona.pond@institution.example.com" - ], - [ - "maribel.scales@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 682, - "fields": { - "state": 80, - "course": 90, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 11, - "_voter_count": 7, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "conception.belt@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "callie.grove@institution.example.com" - ], - [ - "clarence.kirkland@institution.example.com" - ], - [ - "sabine.knight@institution.example.com" - ], - [ - "Matthias.Kober@institution.example.com" - ], - [ - "hiram.lemus@institution.example.com" - ], - [ - "gracia.mullins@institution.example.com" - ], - [ - "noriko.rau@institution.example.com" - ], - [ - "wade.ryan@institution.example.com" - ], - [ - "jennifer.yarbrough@institution.example.com" - ] - ], - "voters": [ - [ - "conception.belt@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "callie.grove@institution.example.com" - ], - [ - "clarence.kirkland@institution.example.com" - ], - [ - "Matthias.Kober@institution.example.com" - ], - [ - "noriko.rau@institution.example.com" - ], - [ - "jennifer.yarbrough@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 686, - "fields": { - "state": 80, - "course": 73, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 23, - "_voter_count": 8, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "valda.antoine@institution.example.com" - ], - [ - "lelia.beall@institution.example.com" - ], - [ - "jammie.bey@institution.example.com" - ], - [ - "lavonna.burgos@institution.example.com" - ], - [ - "osvaldo.carrier@institution.example.com" - ], - [ - "isaiah.chisholm@institution.example.com" - ], - [ - "yolanda.farley@institution.example.com" - ], - [ - "vicky.gann@institution.example.com" - ], - [ - "majorie.godfrey@institution.example.com" - ], - [ - "mercedes.hatch@institution.example.com" - ], - [ - "jaquelyn.huang@institution.example.com" - ], - [ - "fritz.joe@institution.example.com" - ], - [ - "lyndsey.lattimore@institution.example.com" - ], - [ - "clemencia.lea@institution.example.com" - ], - [ - "jacqui.lindsey@institution.example.com" - ], - [ - "celsa.macias@institution.example.com" - ], - [ - "ling.mcdade@institution.example.com" - ], - [ - "lavona.pond@institution.example.com" - ], - [ - "nora.rowley@institution.example.com" - ], - [ - "alexis.sandoval@institution.example.com" - ], - [ - "michaele.shuler@institution.example.com" - ], - [ - "meagan.steed@institution.example.com" - ] - ], - "voters": [ - [ - "jammie.bey@institution.example.com" - ], - [ - "isaiah.chisholm@institution.example.com" - ], - [ - "yolanda.farley@institution.example.com" - ], - [ - "vicky.gann@institution.example.com" - ], - [ - "majorie.godfrey@institution.example.com" - ], - [ - "lyndsey.lattimore@institution.example.com" - ], - [ - "lavona.pond@institution.example.com" - ], - [ - "meagan.steed@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 690, - "fields": { - "state": 80, - "course": 121, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 10, - "_voter_count": 4, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "cecile.caron@institution.example.com" - ], - [ - "gracie.childs@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "daphne.moll@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "hilda.rocha@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "rozella.swenson@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ] - ], - "voters": [ - [ - "earlene.marquis@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "rozella.swenson@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 695, - "fields": { - "state": 80, - "course": 118, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": 3, - "_voter_count": 0, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "cherry.doughty@institution.example.com" - ], - [ - "quincy.hammond@institution.example.com" - ], - [ - "inge.mcmullen@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 697, - "fields": { - "state": 80, - "course": 18, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 7, - "_voter_count": 5, - "vote_start_datetime": "2022-07-06T00:00:00", - "vote_end_date": "2022-07-19", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "elvie.chaffin@institution.example.com" - ], - [ - "ardelle.crouse@institution.example.com" - ], - [ - "eden.desimone@institution.example.com" - ], - [ - "corine.lunsford@institution.example.com" - ], - [ - "larissa.osteen@institution.example.com" - ], - [ - "gidget.raney@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ] - ], - "voters": [ - [ - "elvie.chaffin@institution.example.com" - ], - [ - "eden.desimone@institution.example.com" - ], - [ - "corine.lunsford@institution.example.com" - ], - [ - "larissa.osteen@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 698, - "fields": { - "state": 80, - "course": 75, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 4, - "_voter_count": 2, - "vote_start_datetime": "2022-07-06T00:00:00", - "vote_end_date": "2022-07-19", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "lindsey.carranza@institution.example.com" - ], - [ - "bertram.hendrick@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "kandis.thurston@institution.example.com" - ] - ], - "voters": [ - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "kandis.thurston@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 702, - "fields": { - "state": 80, - "course": 24, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 7, - "_voter_count": 4, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "ezequiel.brock@institution.example.com" - ], - [ - "milly.early@institution.example.com" - ], - [ - "eleanor.freese@institution.example.com" - ], - [ - "quincy.hammond@institution.example.com" - ], - [ - "ozella.hooper@institution.example.com" - ], - [ - "hiram.lemus@institution.example.com" - ], - [ - "melania.wolfe@institution.example.com" - ] - ], - "voters": [ - [ - "milly.early@institution.example.com" - ], - [ - "ozella.hooper@institution.example.com" - ], - [ - "hiram.lemus@institution.example.com" - ], - [ - "melania.wolfe@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 709, - "fields": { - "state": 80, - "course": 55, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 6, - "_voter_count": 3, - "vote_start_datetime": "2022-07-01T00:00:00", - "vote_end_date": "2022-07-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "aida.broome@institution.example.com" - ], - [ - "dell.castro@external.example.com" - ], - [ - "louann.gee@institution.example.com" - ], - [ - "marshall.guerrero@institution.example.com" - ], - [ - "hassan.hyde@institution.example.com" - ], - [ - "danika.wills@institution.example.com" - ] - ], - "voters": [ - [ - "aida.broome@institution.example.com" - ], - [ - "marshall.guerrero@institution.example.com" - ], - [ - "danika.wills@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 730, - "fields": { - "state": 80, - "course": 61, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 17, - "_voter_count": 2, - "vote_start_datetime": "2022-08-17T00:00:00", - "vote_end_date": "2022-08-24", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "felton.alvarez@institution.example.com" - ], - [ - "ezequiel.brock@institution.example.com" - ], - [ - "wava.dolan@institution.example.com" - ], - [ - "milly.early@institution.example.com" - ], - [ - "cole.gamboa@institution.example.com" - ], - [ - "delena.gooch@institution.example.com" - ], - [ - "callie.grove@institution.example.com" - ], - [ - "fritz.joe@institution.example.com" - ], - [ - "maegan.mccorkle@institution.example.com" - ], - [ - "inge.mcmullen@institution.example.com" - ], - [ - "lorene.moultrie@institution.example.com" - ], - [ - "larissa.osteen@institution.example.com" - ], - [ - "macie.roller@institution.example.com" - ], - [ - "aleta.seymour@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ], - [ - "melania.wolfe@institution.example.com" - ], - [ - "randi.woody@institution.example.com" - ] - ], - "voters": [ - [ - "macie.roller@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1454, - "fields": { - "state": 80, - "course": 109, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 72, - "_voter_count": 23, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "herminia.alley@institution.example.com" - ], - [ - "shaunna.barnard@institution.example.com" - ], - [ - "cherly.bobbitt@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "angelo.bridges@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "zack.chaffin@institution.example.com" - ], - [ - "keva.cheng@institution.example.com" - ], - [ - "dannie.cochran@institution.example.com" - ], - [ - "maribeth.compton@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "mable.craddock@institution.example.com" - ], - [ - "mercedez.cupp@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "lilia.erwin@institution.example.com" - ], - [ - "elissa.fowler@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "wilmer.goodson@institution.example.com" - ], - [ - "wyatt.hale@institution.example.com" - ], - [ - "kaitlin.hamblin@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "verdell.joyner@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "genevive.kelly@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "melody.large@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "sima.marquardt@institution.example.com" - ], - [ - "irving.mcdade@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "minerva.moe@institution.example.com" - ], - [ - "alta.omalley@institution.example.com" - ], - [ - "lashandra.peacock@institution.example.com" - ], - [ - "wava.pearl@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "felicia.rawlings@institution.example.com" - ], - [ - "christel.rayburn@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "alton.smalley@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "yong.staley@institution.example.com" - ], - [ - "gidget.stern@institution.example.com" - ], - [ - "shakira.stricklin@institution.example.com" - ], - [ - "doyle.stump@institution.example.com" - ], - [ - "tayna.tarver@institution.example.com" - ], - [ - "chong.thorne@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "vella.valerio@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ], - [ - "dominga.vega@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "mario.voigt@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ], - "voters": [ - [ - "cherly.bobbitt@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "elissa.fowler@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1460, - "fields": { - "state": 80, - "course": 21, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": 2, - "_voter_count": 1, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "maureen.moe@institution.example.com" - ], - [ - "rozella.swenson@institution.example.com" - ] - ], - "voters": [ - [ - "maureen.moe@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1463, - "fields": { - "state": 80, - "course": 17, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 13, - "_voter_count": 8, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "cecile.caron@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "sima.marquardt@institution.example.com" - ], - [ - "arletha.picard@institution.example.com" - ], - [ - "porfirio.rasmussen@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "alton.smalley@institution.example.com" - ], - [ - "tayna.tarver@institution.example.com" - ], - [ - "chong.thorne@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "star.west@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ], - "voters": [ - [ - "cecile.caron@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "arletha.picard@institution.example.com" - ], - [ - "porfirio.rasmussen@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "tayna.tarver@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1468, - "fields": { - "state": 80, - "course": 3, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": 6, - "_voter_count": 1, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "maybelle.bolton@institution.example.com" - ], - [ - "gracie.childs@institution.example.com" - ], - [ - "mirtha.cleveland@institution.example.com" - ], - [ - "irving.mcdade@institution.example.com" - ], - [ - "lin.sales@institution.example.com" - ], - [ - "camila.sharp@institution.example.com" - ] - ], - "voters": [ - [ - "lin.sales@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1472, - "fields": { - "state": 80, - "course": 131, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 58, - "_voter_count": 27, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "louann.brantley@external.example.com" - ], - [ - "mariano.burns@institution.example.com" - ], - [ - "shemeka.cabrera@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "keva.cheng@institution.example.com" - ], - [ - "dannie.cochran@institution.example.com" - ], - [ - "lupe.comstock@institution.example.com" - ], - [ - "mable.craddock@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "rhona.earl@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "hester.ferro@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "wilmer.goodson@institution.example.com" - ], - [ - "wyatt.hale@institution.example.com" - ], - [ - "kaitlin.hamblin@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "genevive.kelly@institution.example.com" - ], - [ - "willodean.kitchens@institution.example.com" - ], - [ - "melody.large@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "cheryl.lucas@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "sima.marquardt@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "minerva.moe@institution.example.com" - ], - [ - "marvel.oakley@institution.example.com" - ], - [ - "alta.omalley@institution.example.com" - ], - [ - "lashandra.peacock@institution.example.com" - ], - [ - "christel.rayburn@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "stacy.sawyer@institution.example.com" - ], - [ - "holly.slade@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "doyle.stump@institution.example.com" - ], - [ - "tayna.tarver@institution.example.com" - ], - [ - "chong.thorne@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "marcia.trammell@institution.example.com" - ], - [ - "vella.valerio@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ], - [ - "mario.voigt@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ] - ], - "voters": [ - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "dannie.cochran@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "wilmer.goodson@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "melody.large@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "cheryl.lucas@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "minerva.moe@institution.example.com" - ], - [ - "lashandra.peacock@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "tayna.tarver@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1474, - "fields": { - "state": 80, - "course": 97, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 6, - "_voter_count": 3, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "lyndsey.bolt@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "kimbery.burnette@institution.example.com" - ], - [ - "jerald.cooper@institution.example.com" - ], - [ - "sharice.kasper@institution.example.com" - ], - [ - "adelia.whittington@institution.example.com" - ] - ], - "voters": [ - [ - "salina.boykin@institution.example.com" - ], - [ - "kimbery.burnette@institution.example.com" - ], - [ - "sharice.kasper@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1479, - "fields": { - "state": 80, - "course": 30, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 30, - "_voter_count": 7, - "vote_start_datetime": "2023-04-01T00:00:00", - "vote_end_date": "2023-04-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "herminia.alley@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "mariano.burns@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "lilia.erwin@institution.example.com" - ], - [ - "hester.ferro@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "wilmer.goodson@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "verdell.joyner@institution.example.com" - ], - [ - "genevive.kelly@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "sima.marquardt@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "alta.omalley@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "felicia.rawlings@institution.example.com" - ], - [ - "christel.rayburn@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "chong.thorne@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "vella.valerio@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ] - ], - "voters": [ - [ - "jesusita.box@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1480, - "fields": { - "state": 80, - "course": 82, - "name_de": "Automated Analysis of Formal Models", - "name_en": "Automated Analysis of Formal Models", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 19, - "_voter_count": 9, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-17", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "crysta.bounds@institution.example.com" - ], - [ - "angelo.bridges@institution.example.com" - ], - [ - "jennette.briggs@institution.example.com" - ], - [ - "mariano.burns@institution.example.com" - ], - [ - "edda.cady@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "larita.dejesus@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "daphne.moll@institution.example.com" - ], - [ - "armida.nobles@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "karan.thacker@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ], - [ - "mario.voigt@institution.example.com" - ], - [ - "adelia.whittington@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ] - ], - "voters": [ - [ - "crysta.bounds@institution.example.com" - ], - [ - "jennette.briggs@institution.example.com" - ], - [ - "edda.cady@institution.example.com" - ], - [ - "larita.dejesus@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "joette.lindley@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1485, - "fields": { - "state": 80, - "course": 28, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 14, - "_voter_count": 5, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "kimbery.burnette@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "rhona.earl@institution.example.com" - ], - [ - "yong.furr@institution.example.com" - ], - [ - "sharice.kasper@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "cheryl.lucas@institution.example.com" - ], - [ - "armida.nobles@institution.example.com" - ], - [ - "marvel.oakley@institution.example.com" - ], - [ - "stacy.sawyer@institution.example.com" - ], - [ - "karan.thacker@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ] - ], - "voters": [ - [ - "kimbery.burnette@institution.example.com" - ], - [ - "yong.furr@institution.example.com" - ], - [ - "sharice.kasper@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "cheryl.lucas@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1488, - "fields": { - "state": 80, - "course": 14, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 80, - "_voter_count": 27, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "lulu.ackerman@institution.example.com" - ], - [ - "herminia.alley@institution.example.com" - ], - [ - "brice.ault@institution.example.com" - ], - [ - "shaunna.barnard@institution.example.com" - ], - [ - "cherly.bobbitt@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "armandina.byrne@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "zack.chaffin@institution.example.com" - ], - [ - "keva.cheng@institution.example.com" - ], - [ - "maxie.childers@institution.example.com" - ], - [ - "dannie.cochran@institution.example.com" - ], - [ - "maribeth.compton@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "mable.craddock@institution.example.com" - ], - [ - "mercedez.cupp@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "lilia.erwin@institution.example.com" - ], - [ - "elissa.fowler@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "benito.fuqua@institution.example.com" - ], - [ - "wilmer.goodson@institution.example.com" - ], - [ - "wyatt.hale@institution.example.com" - ], - [ - "kaitlin.hamblin@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "sharice.kasper@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "genevive.kelly@institution.example.com" - ], - [ - "melody.large@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "sima.marquardt@institution.example.com" - ], - [ - "irving.mcdade@institution.example.com" - ], - [ - "domingo.mcnutt@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "minerva.moe@institution.example.com" - ], - [ - "alta.omalley@institution.example.com" - ], - [ - "lashandra.peacock@institution.example.com" - ], - [ - "wava.pearl@institution.example.com" - ], - [ - "arletha.picard@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "felicia.rawlings@institution.example.com" - ], - [ - "christel.rayburn@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "darci.rinehart@institution.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "lin.sales@institution.example.com" - ], - [ - "alton.smalley@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "yong.staley@institution.example.com" - ], - [ - "gidget.stern@institution.example.com" - ], - [ - "doyle.stump@institution.example.com" - ], - [ - "tayna.tarver@institution.example.com" - ], - [ - "chong.thorne@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "marcia.trammell@institution.example.com" - ], - [ - "vella.valerio@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ], - [ - "dominga.vega@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "star.west@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ], - "voters": [ - [ - "lulu.ackerman@institution.example.com" - ], - [ - "brice.ault@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "elissa.fowler@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "benito.fuqua@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "sharice.kasper@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "domingo.mcnutt@institution.example.com" - ], - [ - "arletha.picard@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "darci.rinehart@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "dominga.vega@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1494, - "fields": { - "state": 80, - "course": 29, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 84, - "_voter_count": 37, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "lulu.ackerman@institution.example.com" - ], - [ - "zane.aldridge@institution.example.com" - ], - [ - "echo.andre@institution.example.com" - ], - [ - "heide.andrew@institution.example.com" - ], - [ - "cleo.arreola@institution.example.com" - ], - [ - "brice.ault@institution.example.com" - ], - [ - "ayesha.bannister@institution.example.com" - ], - [ - "isaura.baptiste@institution.example.com" - ], - [ - "inge.baughman@institution.example.com" - ], - [ - "mirella.behrens@institution.example.com" - ], - [ - "millicent.belcher@institution.example.com" - ], - [ - "elfrieda.bess@institution.example.com" - ], - [ - "giovanna.browne@institution.example.com" - ], - [ - "lashanda.brownlee@institution.example.com" - ], - [ - "cecille.buck@institution.example.com" - ], - [ - "donetta.burr@institution.example.com" - ], - [ - "dia.bussey@institution.example.com" - ], - [ - "juliane.call@institution.example.com" - ], - [ - "rosendo.carlton@institution.example.com" - ], - [ - "bee.castellanos@institution.example.com" - ], - [ - "debra.chesser@institution.example.com" - ], - [ - "raelene.clancy@institution.example.com" - ], - [ - "daniel.cortez@institution.example.com" - ], - [ - "scotty.daily@institution.example.com" - ], - [ - "cyndy.david@institution.example.com" - ], - [ - "eryn.devore@institution.example.com" - ], - [ - "sheryl.dow@institution.example.com" - ], - [ - "sherryl.dozier@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "haley.engle@institution.example.com" - ], - [ - "reva.farr@institution.example.com" - ], - [ - "ivana.ferro@institution.example.com" - ], - [ - "dwayne.fortier@institution.example.com" - ], - [ - "shakira.gilmer@institution.example.com" - ], - [ - "rasheeda.glynn@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "haydee.greco@institution.example.com" - ], - [ - "broderick.greenberg@institution.example.com" - ], - [ - "tyrone.guay@institution.example.com" - ], - [ - "tony.hawkins@institution.example.com" - ], - [ - "yetta.heck@institution.example.com" - ], - [ - "freddy.hitt@institution.example.com" - ], - [ - "carylon.hoffmann@institution.example.com" - ], - [ - "haywood.hogue@institution.example.com" - ], - [ - "enrique.horne@institution.example.com" - ], - [ - "verdell.joyner@institution.example.com" - ], - [ - "giovanni.leger@institution.example.com" - ], - [ - "tanya.maple@institution.example.com" - ], - [ - "jere.marr@institution.example.com" - ], - [ - "brent.mattson@institution.example.com" - ], - [ - "thi.mcallister@institution.example.com" - ], - [ - "jill.mccauley@institution.example.com" - ], - [ - "brant.mcduffie@institution.example.com" - ], - [ - "domingo.mcnutt@institution.example.com" - ], - [ - "deidre.metzler@institution.example.com" - ], - [ - "maricruz.nall@institution.example.com" - ], - [ - "corinne.neff@institution.example.com" - ], - [ - "freida.ness@institution.example.com" - ], - [ - "maye.noonan@institution.example.com" - ], - [ - "emmy.norwood@institution.example.com" - ], - [ - "hugh.oliver@institution.example.com" - ], - [ - "cierra.oreilly@institution.example.com" - ], - [ - "lasonya.phillip@institution.example.com" - ], - [ - "toshia.piazza@institution.example.com" - ], - [ - "arletha.picard@institution.example.com" - ], - [ - "beverley.pitcher@institution.example.com" - ], - [ - "karri.putnam@institution.example.com" - ], - [ - "porfirio.rasmussen@institution.example.com" - ], - [ - "charlyn.robins@institution.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "francene.sabo@institution.example.com" - ], - [ - "lin.sales@institution.example.com" - ], - [ - "alton.smalley@institution.example.com" - ], - [ - "refugia.soliz@institution.example.com" - ], - [ - "nicki.spear@institution.example.com" - ], - [ - "leroy.surratt@institution.example.com" - ], - [ - "yi.thurman@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ], - [ - "halina.tobias@institution.example.com" - ], - [ - "shelia.turney@institution.example.com" - ], - [ - "carma.watters@institution.example.com" - ], - [ - "star.west@institution.example.com" - ], - [ - "virgen.willingham@institution.example.com" - ] - ], - "voters": [ - [ - "lulu.ackerman@institution.example.com" - ], - [ - "zane.aldridge@institution.example.com" - ], - [ - "cleo.arreola@institution.example.com" - ], - [ - "mirella.behrens@institution.example.com" - ], - [ - "elfrieda.bess@institution.example.com" - ], - [ - "giovanna.browne@institution.example.com" - ], - [ - "lashanda.brownlee@institution.example.com" - ], - [ - "raelene.clancy@institution.example.com" - ], - [ - "scotty.daily@institution.example.com" - ], - [ - "eryn.devore@institution.example.com" - ], - [ - "sheryl.dow@institution.example.com" - ], - [ - "sherryl.dozier@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "ivana.ferro@institution.example.com" - ], - [ - "shakira.gilmer@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "haydee.greco@institution.example.com" - ], - [ - "haywood.hogue@institution.example.com" - ], - [ - "enrique.horne@institution.example.com" - ], - [ - "jere.marr@institution.example.com" - ], - [ - "thi.mcallister@institution.example.com" - ], - [ - "jill.mccauley@institution.example.com" - ], - [ - "brant.mcduffie@institution.example.com" - ], - [ - "domingo.mcnutt@institution.example.com" - ], - [ - "deidre.metzler@institution.example.com" - ], - [ - "corinne.neff@institution.example.com" - ], - [ - "freida.ness@institution.example.com" - ], - [ - "emmy.norwood@institution.example.com" - ], - [ - "cierra.oreilly@institution.example.com" - ], - [ - "toshia.piazza@institution.example.com" - ], - [ - "arletha.picard@institution.example.com" - ], - [ - "beverley.pitcher@institution.example.com" - ], - [ - "charlyn.robins@institution.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "lin.sales@institution.example.com" - ], - [ - "shelia.turney@institution.example.com" - ], - [ - "carma.watters@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1497, - "fields": { - "state": 80, - "course": 122, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 17, - "_voter_count": 9, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "sheena.arsenault@institution.example.com" - ], - [ - "ali.best@institution.example.com" - ], - [ - "asa.carlton@institution.example.com" - ], - [ - "etta.child@institution.example.com" - ], - [ - "lavina.connor@institution.example.com" - ], - [ - "diann.deloach@institution.example.com" - ], - [ - "janise.denman@institution.example.com" - ], - [ - "cassey.earley@institution.example.com" - ], - [ - "milly.early@institution.example.com" - ], - [ - "britany.estrella@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "collin.hanley@institution.example.com" - ], - [ - "antony.landry@institution.example.com" - ], - [ - "kallie.peters@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "bailey.roybal@institution.example.com" - ], - [ - "alexis.sandoval@institution.example.com" - ] - ], - "voters": [ - [ - "asa.carlton@institution.example.com" - ], - [ - "diann.deloach@institution.example.com" - ], - [ - "janise.denman@institution.example.com" - ], - [ - "cassey.earley@institution.example.com" - ], - [ - "milly.early@institution.example.com" - ], - [ - "britany.estrella@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "antony.landry@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1498, - "fields": { - "state": 50, - "course": 46, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2023-10-28T19:16:36.113", - "vote_end_date": "2099-09-18", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "felton.alvarez@institution.example.com" - ], - [ - "thi.anthony@institution.example.com" - ], - [ - "chasidy.draper@institution.example.com" - ], - [ - "vanna.escamilla@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "alfreda.roche@institution.example.com" - ], - [ - "sunshine.ruby@institution.example.com" - ], - [ - "aleta.seymour@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1499, - "fields": { - "state": 20, - "course": 1, - "name_de": "", - "name_en": "", - "weight": 2, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-08-01T00:00:00", - "vote_end_date": "2024-08-31", - "allow_editors_to_edit": false, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "alanna.ali@institution.example.com" - ], - [ - "lyndsey.bolt@institution.example.com" - ], - [ - "asa.carlton@institution.example.com" - ], - [ - "etta.child@institution.example.com" - ], - [ - "janise.denman@institution.example.com" - ], - [ - "maegan.mccorkle@institution.example.com" - ], - [ - "shemeka.nieves@institution.example.com" - ], - [ - "tara.snider@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1500, - "fields": { - "state": 10, - "course": 65, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "raymond.bickford@institution.example.com" - ], - [ - "diann.deloach@institution.example.com" - ], - [ - "cassey.earley@institution.example.com" - ], - [ - "fernando.grisham@institution.example.com" - ], - [ - "quincy.hammond@institution.example.com" - ], - [ - "jaquelyn.huang@institution.example.com" - ], - [ - "alan.lachance@institution.example.com" - ], - [ - "darcy.osorio@institution.example.com" - ], - [ - "alexia.pederson@institution.example.com" - ], - [ - "darci.rinehart@institution.example.com" - ], - [ - "latesha.snow@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1502, - "fields": { - "state": 80, - "course": 84, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 14, - "_voter_count": 3, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "mariann.alfonso@institution.example.com" - ], - [ - "valda.antoine@institution.example.com" - ], - [ - "wava.dolan@institution.example.com" - ], - [ - "chasidy.draper@institution.example.com" - ], - [ - "delena.gooch@institution.example.com" - ], - [ - "beula.hopkins@institution.example.com" - ], - [ - "velda.kimble@institution.example.com" - ], - [ - "kellee.maldonado@institution.example.com" - ], - [ - "sheron.mccleary@institution.example.com" - ], - [ - "lorene.moultrie@institution.example.com" - ], - [ - "randell.reis@institution.example.com" - ], - [ - "alexis.sandoval@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ] - ], - "voters": [ - [ - "beula.hopkins@institution.example.com" - ], - [ - "sheron.mccleary@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1503, - "fields": { - "state": 60, - "course": 98, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-05-01T00:00:00", - "vote_end_date": "2024-05-31", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "valda.antoine@institution.example.com" - ], - [ - "jarod.cate@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "renaldo.melendez@institution.example.com" - ], - [ - "lavona.pond@institution.example.com" - ] - ], - "voters": [ - [ - "valda.antoine@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1504, - "fields": { - "state": 80, - "course": 78, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 11, - "_voter_count": 6, - "vote_start_datetime": "2023-02-04T00:00:00", - "vote_end_date": "2023-02-17", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "hilde.blankenship@institution.example.com" - ], - [ - "vanna.escamilla@institution.example.com" - ], - [ - "vicky.gann@institution.example.com" - ], - [ - "lyla.griffiths@institution.example.com" - ], - [ - "kristine.leatherman@institution.example.com" - ], - [ - "marlana.mclain@institution.example.com" - ], - [ - "del.mcnamee@institution.example.com" - ], - [ - "tyisha.reich@institution.example.com" - ], - [ - "nora.rowley@institution.example.com" - ], - [ - "aleta.seymour@institution.example.com" - ] - ], - "voters": [ - [ - "hilde.blankenship@institution.example.com" - ], - [ - "vanna.escamilla@institution.example.com" - ], - [ - "vicky.gann@institution.example.com" - ], - [ - "kristine.leatherman@institution.example.com" - ], - [ - "tyisha.reich@institution.example.com" - ], - [ - "aleta.seymour@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1506, - "fields": { - "state": 10, - "course": 102, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "eden.desimone@institution.example.com" - ], - [ - "cole.gamboa@institution.example.com" - ], - [ - "alexia.pederson@institution.example.com" - ], - [ - "raymonde.stock@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1507, - "fields": { - "state": 10, - "course": 63, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "lavina.connor@institution.example.com" - ], - [ - "wava.dolan@institution.example.com" - ], - [ - "delena.gooch@institution.example.com" - ], - [ - "lorene.moultrie@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ], - [ - "eugene.tennant@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1508, - "fields": { - "state": 80, - "course": 27, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 27, - "_voter_count": 9, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "mariann.alfonso@institution.example.com" - ], - [ - "felton.alvarez@institution.example.com" - ], - [ - "jammie.bey@institution.example.com" - ], - [ - "jeremiah.burkholder@institution.example.com" - ], - [ - "diann.deloach@institution.example.com" - ], - [ - "janise.denman@institution.example.com" - ], - [ - "vicky.gann@institution.example.com" - ], - [ - "kayce.grigsby@institution.example.com" - ], - [ - "margo.hanna@external.example.com" - ], - [ - "Matthias.Kober@institution.example.com" - ], - [ - "kellee.maldonado@institution.example.com" - ], - [ - "inge.mcmullen@institution.example.com" - ], - [ - "odessa.mcmullen@institution.example.com" - ], - [ - "alexia.pederson@institution.example.com" - ], - [ - "randell.reis@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "macie.roller@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ], - [ - "bailey.roybal@institution.example.com" - ], - [ - "alexis.sandoval@institution.example.com" - ], - [ - "carman.slagle@institution.example.com" - ], - [ - "kristie.stump@institution.example.com" - ], - [ - "corinne.tolliver@institution.example.com" - ], - [ - "kanesha.waggoner@institution.example.com" - ], - [ - "randi.woody@institution.example.com" - ], - [ - "jennifer.yarbrough@institution.example.com" - ] - ], - "voters": [ - [ - "diann.deloach@institution.example.com" - ], - [ - "janise.denman@institution.example.com" - ], - [ - "vicky.gann@institution.example.com" - ], - [ - "kayce.grigsby@institution.example.com" - ], - [ - "alexia.pederson@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "carman.slagle@institution.example.com" - ], - [ - "corinne.tolliver@institution.example.com" - ], - [ - "jennifer.yarbrough@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1510, - "fields": { - "state": 80, - "course": 70, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 9, - "_voter_count": 5, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-28", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "diedra.batson@institution.example.com" - ], - [ - "britany.estrella@institution.example.com" - ], - [ - "corrinne.ferraro@institution.example.com" - ], - [ - "chelsey.fried@institution.example.com" - ], - [ - "beula.hopkins@institution.example.com" - ], - [ - "renaldo.melendez@institution.example.com" - ], - [ - "darci.rinehart@institution.example.com" - ], - [ - "sunshine.ruby@institution.example.com" - ], - [ - "reynaldo.thayer@institution.example.com" - ] - ], - "voters": [ - [ - "britany.estrella@institution.example.com" - ], - [ - "chelsey.fried@institution.example.com" - ], - [ - "beula.hopkins@institution.example.com" - ], - [ - "darci.rinehart@institution.example.com" - ], - [ - "reynaldo.thayer@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1513, - "fields": { - "state": 80, - "course": 119, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 25, - "_voter_count": 10, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "felton.alvarez@institution.example.com" - ], - [ - "eugenia.bauer@institution.example.com" - ], - [ - "lelia.beall@institution.example.com" - ], - [ - "jammie.bey@institution.example.com" - ], - [ - "hoyt.bohn@institution.example.com" - ], - [ - "diann.deloach@institution.example.com" - ], - [ - "cassey.earley@institution.example.com" - ], - [ - "milly.early@institution.example.com" - ], - [ - "margo.hanna@external.example.com" - ], - [ - "nita.jennings@institution.example.com" - ], - [ - "velda.kimble@institution.example.com" - ], - [ - "stepanie.kimmel@institution.example.com" - ], - [ - "alan.lachance@institution.example.com" - ], - [ - "mandie.lomax@institution.example.com" - ], - [ - "inge.mcmullen@institution.example.com" - ], - [ - "roxy.olds@institution.example.com" - ], - [ - "darcy.osorio@institution.example.com" - ], - [ - "alexia.pederson@institution.example.com" - ], - [ - "elicia.rawlins@institution.example.com" - ], - [ - "darci.rinehart@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "macie.roller@institution.example.com" - ], - [ - "maribel.scales@institution.example.com" - ], - [ - "michaele.shuler@institution.example.com" - ], - [ - "reynaldo.thayer@institution.example.com" - ] - ], - "voters": [ - [ - "hoyt.bohn@institution.example.com" - ], - [ - "diann.deloach@institution.example.com" - ], - [ - "cassey.earley@institution.example.com" - ], - [ - "milly.early@institution.example.com" - ], - [ - "roxy.olds@institution.example.com" - ], - [ - "darci.rinehart@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "maribel.scales@institution.example.com" - ], - [ - "michaele.shuler@institution.example.com" - ], - [ - "reynaldo.thayer@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1514, - "fields": { - "state": 80, - "course": 120, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 63, - "_voter_count": 20, - "vote_start_datetime": "2023-01-26T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "crysta.ainsworth@institution.example.com" - ], - [ - "felton.alvarez@institution.example.com" - ], - [ - "ali.best@institution.example.com" - ], - [ - "jammie.bey@institution.example.com" - ], - [ - "hilde.blankenship@institution.example.com" - ], - [ - "veta.branson@institution.example.com" - ], - [ - "jeremiah.burkholder@institution.example.com" - ], - [ - "virgina.carrasco@institution.example.com" - ], - [ - "osvaldo.carrier@institution.example.com" - ], - [ - "etta.child@institution.example.com" - ], - [ - "karly.clapp@institution.example.com" - ], - [ - "lavina.connor@institution.example.com" - ], - [ - "ardath.cross@institution.example.com" - ], - [ - "eden.desimone@institution.example.com" - ], - [ - "wava.dolan@institution.example.com" - ], - [ - "editor@institution.example.com" - ], - [ - "vanna.escamilla@institution.example.com" - ], - [ - "britany.estrella@institution.example.com" - ], - [ - "chelsey.fried@institution.example.com" - ], - [ - "delena.gooch@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "carol.grier@institution.example.com" - ], - [ - "lyla.griffiths@institution.example.com" - ], - [ - "kayce.grigsby@institution.example.com" - ], - [ - "callie.grove@institution.example.com" - ], - [ - "beula.hopkins@institution.example.com" - ], - [ - "ariana.houghton@institution.example.com" - ], - [ - "fritz.joe@institution.example.com" - ], - [ - "Matthias.Kober@institution.example.com" - ], - [ - "alan.lachance@institution.example.com" - ], - [ - "shela.lowell@institution.example.com" - ], - [ - "kellee.maldonado@institution.example.com" - ], - [ - "ling.mcdade@institution.example.com" - ], - [ - "noma.mcdougall@institution.example.com" - ], - [ - "odessa.mcmullen@institution.example.com" - ], - [ - "renaldo.melendez@institution.example.com" - ], - [ - "lorene.moultrie@institution.example.com" - ], - [ - "shemeka.nieves@institution.example.com" - ], - [ - "alexia.pederson@institution.example.com" - ], - [ - "noriko.rau@institution.example.com" - ], - [ - "elicia.rawlins@institution.example.com" - ], - [ - "tyisha.reich@institution.example.com" - ], - [ - "darci.rinehart@institution.example.com" - ], - [ - "macie.roller@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ], - [ - "nora.rowley@institution.example.com" - ], - [ - "bailey.roybal@institution.example.com" - ], - [ - "keith.sanchez@institution.example.com" - ], - [ - "maribel.scales@institution.example.com" - ], - [ - "latesha.snow@institution.example.com" - ], - [ - "raymonde.stock@institution.example.com" - ], - [ - "magen.thorn@institution.example.com" - ], - [ - "corinne.tolliver@institution.example.com" - ], - [ - "luis.truong@institution.example.com" - ], - [ - "emmaline.voigt@institution.example.com" - ], - [ - "kanesha.waggoner@institution.example.com" - ], - [ - "myrtle.wahl@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ], - [ - "melania.wolfe@institution.example.com" - ], - [ - "randi.woody@institution.example.com" - ], - [ - "ute.ybarra@institution.example.com" - ] - ], - "voters": [ - [ - "karly.clapp@institution.example.com" - ], - [ - "eden.desimone@institution.example.com" - ], - [ - "editor@institution.example.com" - ], - [ - "vanna.escamilla@institution.example.com" - ], - [ - "britany.estrella@institution.example.com" - ], - [ - "chelsey.fried@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "kayce.grigsby@institution.example.com" - ], - [ - "ariana.houghton@institution.example.com" - ], - [ - "tyisha.reich@institution.example.com" - ], - [ - "darci.rinehart@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ], - [ - "maribel.scales@institution.example.com" - ], - [ - "corinne.tolliver@institution.example.com" - ], - [ - "luis.truong@institution.example.com" - ], - [ - "myrtle.wahl@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ], - [ - "melania.wolfe@institution.example.com" - ], - [ - "ute.ybarra@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1518, - "fields": { - "state": 80, - "course": 132, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 17, - "_voter_count": 4, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-03-20", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "eugenia.bauer@institution.example.com" - ], - [ - "jarod.cate@institution.example.com" - ], - [ - "eden.desimone@institution.example.com" - ], - [ - "wava.dolan@institution.example.com" - ], - [ - "delena.gooch@institution.example.com" - ], - [ - "dia.harden@institution.example.com" - ], - [ - "hassan.hyde@institution.example.com" - ], - [ - "fritz.joe@institution.example.com" - ], - [ - "alan.lachance@institution.example.com" - ], - [ - "marna.leboeuf@institution.example.com" - ], - [ - "mandie.lomax@institution.example.com" - ], - [ - "nana.meador@institution.example.com" - ], - [ - "wendie.pike@institution.example.com" - ], - [ - "lorrine.robertson@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ], - [ - "marleen.spivey@institution.example.com" - ], - [ - "randi.woody@institution.example.com" - ] - ], - "voters": [ - [ - "eugenia.bauer@institution.example.com" - ], - [ - "eden.desimone@institution.example.com" - ], - [ - "dia.harden@institution.example.com" - ], - [ - "marleen.spivey@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1520, - "fields": { - "state": 80, - "course": 7, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 40, - "_voter_count": 15, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "crysta.ainsworth@institution.example.com" - ], - [ - "valda.antoine@institution.example.com" - ], - [ - "virgina.carrasco@institution.example.com" - ], - [ - "josef.castellano@institution.example.com" - ], - [ - "karly.clapp@institution.example.com" - ], - [ - "lavina.connor@institution.example.com" - ], - [ - "diann.deloach@institution.example.com" - ], - [ - "janise.denman@institution.example.com" - ], - [ - "wava.dolan@institution.example.com" - ], - [ - "cassey.earley@institution.example.com" - ], - [ - "corrinne.ferraro@institution.example.com" - ], - [ - "chelsey.fried@institution.example.com" - ], - [ - "cole.gamboa@institution.example.com" - ], - [ - "delena.gooch@institution.example.com" - ], - [ - "carol.grier@institution.example.com" - ], - [ - "kayce.grigsby@institution.example.com" - ], - [ - "hiram.lemus@institution.example.com" - ], - [ - "ling.mcdade@institution.example.com" - ], - [ - "noma.mcdougall@institution.example.com" - ], - [ - "odessa.mcmullen@institution.example.com" - ], - [ - "lorene.moultrie@institution.example.com" - ], - [ - "shemeka.nieves@institution.example.com" - ], - [ - "alexia.pederson@institution.example.com" - ], - [ - "norris.peeler@institution.example.com" - ], - [ - "kallie.peters@institution.example.com" - ], - [ - "wendie.pike@institution.example.com" - ], - [ - "chauncey.rivera@institution.example.com" - ], - [ - "lorrine.robertson@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ], - [ - "bailey.roybal@institution.example.com" - ], - [ - "carman.slagle@institution.example.com" - ], - [ - "jeannie.spears@institution.example.com" - ], - [ - "raymonde.stock@institution.example.com" - ], - [ - "student@institution.example.com" - ], - [ - "magen.thorn@institution.example.com" - ], - [ - "luis.truong@institution.example.com" - ], - [ - "emmaline.voigt@institution.example.com" - ], - [ - "melania.wolfe@institution.example.com" - ], - [ - "ute.ybarra@institution.example.com" - ] - ], - "voters": [ - [ - "josef.castellano@institution.example.com" - ], - [ - "karly.clapp@institution.example.com" - ], - [ - "cassey.earley@institution.example.com" - ], - [ - "chelsey.fried@institution.example.com" - ], - [ - "kayce.grigsby@institution.example.com" - ], - [ - "hiram.lemus@institution.example.com" - ], - [ - "alexia.pederson@institution.example.com" - ], - [ - "chauncey.rivera@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ], - [ - "carman.slagle@institution.example.com" - ], - [ - "student@institution.example.com" - ], - [ - "luis.truong@institution.example.com" - ], - [ - "melania.wolfe@institution.example.com" - ], - [ - "ute.ybarra@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1525, - "fields": { - "state": 40, - "course": 23, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2099-12-01T00:00:00", - "vote_end_date": "2099-12-31", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "hiram.lemus@institution.example.com" - ], - [ - "student@institution.example.com" - ], - [ - "magen.thorn@institution.example.com" - ], - [ - "luis.truong@institution.example.com" - ], - [ - "melania.wolfe@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1531, - "fields": { - "state": 80, - "course": 49, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 28, - "_voter_count": 10, - "vote_start_datetime": "2023-02-02T00:00:00", - "vote_end_date": "2023-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "valda.antoine@institution.example.com" - ], - [ - "virgina.carrasco@institution.example.com" - ], - [ - "corrinne.ferraro@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "lyla.griffiths@institution.example.com" - ], - [ - "kayce.grigsby@institution.example.com" - ], - [ - "callie.grove@institution.example.com" - ], - [ - "collin.hanley@institution.example.com" - ], - [ - "kristine.leatherman@institution.example.com" - ], - [ - "hiram.lemus@institution.example.com" - ], - [ - "kellee.maldonado@institution.example.com" - ], - [ - "sheron.mccleary@institution.example.com" - ], - [ - "noma.mcdougall@institution.example.com" - ], - [ - "odessa.mcmullen@institution.example.com" - ], - [ - "norris.peeler@institution.example.com" - ], - [ - "randell.reis@institution.example.com" - ], - [ - "chauncey.rivera@institution.example.com" - ], - [ - "lorrine.robertson@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ], - [ - "bailey.roybal@institution.example.com" - ], - [ - "jeannie.spears@institution.example.com" - ], - [ - "raymonde.stock@institution.example.com" - ], - [ - "kristie.stump@institution.example.com" - ], - [ - "eugene.tennant@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ], - [ - "melania.wolfe@institution.example.com" - ], - [ - "ute.ybarra@institution.example.com" - ] - ], - "voters": [ - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "kayce.grigsby@institution.example.com" - ], - [ - "hiram.lemus@institution.example.com" - ], - [ - "sheron.mccleary@institution.example.com" - ], - [ - "chauncey.rivera@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ], - [ - "melania.wolfe@institution.example.com" - ], - [ - "ute.ybarra@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1534, - "fields": { - "state": 80, - "course": 33, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 40, - "_voter_count": 9, - "vote_start_datetime": "2023-02-25T00:00:00", - "vote_end_date": "2023-03-03", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "felton.alvarez@institution.example.com" - ], - [ - "thi.anthony@institution.example.com" - ], - [ - "lelia.beall@institution.example.com" - ], - [ - "jeremiah.burkholder@institution.example.com" - ], - [ - "osvaldo.carrier@institution.example.com" - ], - [ - "elvie.chaffin@institution.example.com" - ], - [ - "etta.child@institution.example.com" - ], - [ - "lavina.connor@institution.example.com" - ], - [ - "january.copeland@institution.example.com" - ], - [ - "editor@institution.example.com" - ], - [ - "vanna.escamilla@institution.example.com" - ], - [ - "yolanda.farley@institution.example.com" - ], - [ - "rosina.frasier@institution.example.com" - ], - [ - "vicky.gann@institution.example.com" - ], - [ - "lyla.griffiths@institution.example.com" - ], - [ - "fernando.grisham@institution.example.com" - ], - [ - "dia.harden@institution.example.com" - ], - [ - "Matthias.Kober@institution.example.com" - ], - [ - "tula.langdon@institution.example.com" - ], - [ - "clemencia.lea@institution.example.com" - ], - [ - "marna.leboeuf@institution.example.com" - ], - [ - "jacqui.lindsey@institution.example.com" - ], - [ - "maegan.mccorkle@institution.example.com" - ], - [ - "mayme.mcculloch@institution.example.com" - ], - [ - "marlana.mclain@institution.example.com" - ], - [ - "inge.mcmullen@institution.example.com" - ], - [ - "del.mcnamee@institution.example.com" - ], - [ - "darcy.osorio@institution.example.com" - ], - [ - "larissa.osteen@institution.example.com" - ], - [ - "kallie.peters@institution.example.com" - ], - [ - "tyisha.reich@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ], - [ - "alexis.sandoval@institution.example.com" - ], - [ - "latesha.snow@institution.example.com" - ], - [ - "regan.swank@institution.example.com" - ], - [ - "kanesha.waggoner@institution.example.com" - ], - [ - "jennifer.yarbrough@institution.example.com" - ] - ], - "voters": [ - [ - "editor@institution.example.com" - ], - [ - "vanna.escamilla@institution.example.com" - ], - [ - "yolanda.farley@institution.example.com" - ], - [ - "vicky.gann@institution.example.com" - ], - [ - "dia.harden@institution.example.com" - ], - [ - "tyisha.reich@institution.example.com" - ], - [ - "alexis.sandoval@institution.example.com" - ], - [ - "jennifer.yarbrough@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1540, - "fields": { - "state": 80, - "course": 114, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 18, - "_voter_count": 11, - "vote_start_datetime": "2023-06-28T00:00:00", - "vote_end_date": "2023-07-04", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "cherly.bobbitt@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "dannie.cochran@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "rasheeda.glynn@institution.example.com" - ], - [ - "kaitlin.hamblin@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "lin.sales@institution.example.com" - ], - [ - "alton.smalley@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "dominga.vega@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ], - "voters": [ - [ - "cherly.bobbitt@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "dannie.cochran@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "lin.sales@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "dominga.vega@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1544, - "fields": { - "state": 30, - "course": 72, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-09-22", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "herminia.alley@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "debra.chesser@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "mercedez.cupp@institution.example.com" - ], - [ - "conchita.dent@external.example.com" - ], - [ - "christia.manzo@institution.example.com" - ], - [ - "brant.mcduffie@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "alta.omalley@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1545, - "fields": { - "state": 30, - "course": 89, - "name_de": "IT-Recht", - "name_en": "Legal Aspects of Information Technology", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2099-08-01T00:00:00", - "vote_end_date": "2099-08-31", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "benito.fuqua@institution.example.com" - ], - [ - "antony.landry@institution.example.com" - ], - [ - "mayme.mcculloch@institution.example.com" - ], - [ - "noma.mcdougall@institution.example.com" - ], - [ - "antonetta.middleton@institution.example.com" - ], - [ - "armand.person@institution.example.com" - ], - [ - "jeannie.spears@institution.example.com" - ], - [ - "student@institution.example.com" - ], - [ - "kristie.stump@institution.example.com" - ], - [ - "anton.swank@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ], - [ - "ute.ybarra@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1547, - "fields": { - "state": 80, - "course": 58, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 95, - "_voter_count": 25, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-21", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "zane.aldridge@institution.example.com" - ], - [ - "ayesha.bannister@institution.example.com" - ], - [ - "millicent.belcher@institution.example.com" - ], - [ - "jan.bettencourt@external.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "giovanna.browne@institution.example.com" - ], - [ - "kimbery.burnette@institution.example.com" - ], - [ - "donetta.burr@institution.example.com" - ], - [ - "zane.calvert@external.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "tarra.carson@external.example.com" - ], - [ - "dannie.cochran@institution.example.com" - ], - [ - "maribeth.compton@institution.example.com" - ], - [ - "elenora.crawford@institution.example.com" - ], - [ - "mercedez.cupp@institution.example.com" - ], - [ - "cyndy.david@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "gwyneth.dolan@external.example.com" - ], - [ - "sheryl.dow@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "florene.earnest@external.example.com" - ], - [ - "lilia.erwin@institution.example.com" - ], - [ - "hester.ferro@institution.example.com" - ], - [ - "dwayne.fortier@institution.example.com" - ], - [ - "elissa.fowler@institution.example.com" - ], - [ - "rasheeda.glynn@institution.example.com" - ], - [ - "wilmer.goodson@institution.example.com" - ], - [ - "rhiannon.gresham@external.example.com" - ], - [ - "tyrone.guay@institution.example.com" - ], - [ - "donnetta.hacker@external.example.com" - ], - [ - "lovie.hammonds@external.example.com" - ], - [ - "pansy.hanna@external.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "tifany.hinojosa@external.example.com" - ], - [ - "freddy.hitt@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "mi.ingraham@external.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "sharice.kasper@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "genevive.kelly@institution.example.com" - ], - [ - "melody.large@institution.example.com" - ], - [ - "norene.latimer@external.example.com" - ], - [ - "giovanni.leger@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "rosana.limon@external.example.com" - ], - [ - "francie.loya@external.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "tanya.maple@institution.example.com" - ], - [ - "sima.marquardt@institution.example.com" - ], - [ - "elly.mcmahan@external.example.com" - ], - [ - "domingo.mcnutt@institution.example.com" - ], - [ - "maureen.moe@institution.example.com" - ], - [ - "minerva.moe@institution.example.com" - ], - [ - "lucina.morey@external.example.com" - ], - [ - "may.nation@external.example.com" - ], - [ - "emmy.norwood@institution.example.com" - ], - [ - "alta.omalley@institution.example.com" - ], - [ - "carie.petit@external.example.com" - ], - [ - "arcelia.petrie@external.example.com" - ], - [ - "lasonya.phillip@institution.example.com" - ], - [ - "vicenta.pinto@external.example.com" - ], - [ - "hermila.poole@external.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "karri.putnam@institution.example.com" - ], - [ - "porfirio.rasmussen@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "ronni.rousseau@external.example.com" - ], - [ - "lance.roy@external.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "ignacia.rucker@external.example.com" - ], - [ - "barrie.russell@external.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "francene.sabo@institution.example.com" - ], - [ - "lin.sales@institution.example.com" - ], - [ - "tyesha.schreiner@external.example.com" - ], - [ - "kira.simone@external.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "gidget.stern@institution.example.com" - ], - [ - "doyle.stump@institution.example.com" - ], - [ - "tayna.tarver@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "marcia.trammell@institution.example.com" - ], - [ - "vella.valerio@institution.example.com" - ], - [ - "dominga.vega@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "star.west@institution.example.com" - ], - [ - "melanie.whalen@external.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ], - "voters": [ - [ - "ayesha.bannister@institution.example.com" - ], - [ - "giovanna.browne@institution.example.com" - ], - [ - "kimbery.burnette@institution.example.com" - ], - [ - "donetta.burr@institution.example.com" - ], - [ - "sheryl.dow@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "dwayne.fortier@institution.example.com" - ], - [ - "rasheeda.glynn@institution.example.com" - ], - [ - "donnetta.hacker@external.example.com" - ], - [ - "tifany.hinojosa@external.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "giovanni.leger@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "porfirio.rasmussen@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "lance.roy@external.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "lin.sales@institution.example.com" - ], - [ - "kira.simone@external.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1548, - "fields": { - "state": 80, - "course": 117, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 5, - "_voter_count": 2, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-09-30", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "hoyt.bohn@institution.example.com" - ], - [ - "almeta.cody@institution.example.com" - ], - [ - "dia.harden@institution.example.com" - ], - [ - "mandie.lomax@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ] - ], - "voters": [ - [ - "hoyt.bohn@institution.example.com" - ], - [ - "almeta.cody@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1549, - "fields": { - "state": 80, - "course": 22, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 16, - "_voter_count": 8, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-21", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "hoyt.bohn@institution.example.com" - ], - [ - "josef.castellano@institution.example.com" - ], - [ - "mitchel.heard@institution.example.com" - ], - [ - "ariana.houghton@institution.example.com" - ], - [ - "mandie.lomax@institution.example.com" - ], - [ - "celsa.macias@institution.example.com" - ], - [ - "armida.nobles@institution.example.com" - ], - [ - "larissa.osteen@institution.example.com" - ], - [ - "noriko.rau@institution.example.com" - ], - [ - "elicia.rawlins@institution.example.com" - ], - [ - "lorrine.robertson@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ], - [ - "jeannie.spears@institution.example.com" - ], - [ - "anton.swank@institution.example.com" - ], - [ - "eugene.tennant@institution.example.com" - ], - [ - "randi.woody@institution.example.com" - ] - ], - "voters": [ - [ - "hoyt.bohn@institution.example.com" - ], - [ - "mitchel.heard@institution.example.com" - ], - [ - "ariana.houghton@institution.example.com" - ], - [ - "mandie.lomax@institution.example.com" - ], - [ - "lorrine.robertson@institution.example.com" - ], - [ - "elden.seitz@institution.example.com" - ], - [ - "jeannie.spears@institution.example.com" - ], - [ - "randi.woody@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1550, - "fields": { - "state": 80, - "course": 112, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 12, - "_voter_count": 6, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "herminia.alley@institution.example.com" - ], - [ - "cherly.bobbitt@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "mi.ingraham@external.example.com" - ], - [ - "melody.large@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "wava.pearl@institution.example.com" - ], - [ - "felicia.rawlings@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ], - "voters": [ - [ - "cherly.bobbitt@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "melody.large@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1554, - "fields": { - "state": 80, - "course": 80, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 3, - "_voter_count": 2, - "vote_start_datetime": "2023-09-01T00:00:00", - "vote_end_date": "2023-09-15", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "corrinne.ferraro@institution.example.com" - ], - [ - "nora.rowley@institution.example.com" - ] - ], - "voters": [ - [ - "corrinne.ferraro@institution.example.com" - ], - [ - "nora.rowley@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1559, - "fields": { - "state": 80, - "course": 54, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 32, - "_voter_count": 5, - "vote_start_datetime": "2023-08-12T00:00:00", - "vote_end_date": "2023-08-23", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "crysta.ainsworth@institution.example.com" - ], - [ - "mariann.alfonso@institution.example.com" - ], - [ - "lelia.beall@institution.example.com" - ], - [ - "hilde.blankenship@institution.example.com" - ], - [ - "lyndsey.bolt@institution.example.com" - ], - [ - "armandina.byrne@institution.example.com" - ], - [ - "osvaldo.carrier@institution.example.com" - ], - [ - "dell.castro@external.example.com" - ], - [ - "lavina.connor@institution.example.com" - ], - [ - "ardath.cross@institution.example.com" - ], - [ - "shameka.dew@institution.example.com" - ], - [ - "corrinne.ferraro@institution.example.com" - ], - [ - "jarrett.flannery@institution.example.com" - ], - [ - "benito.fuqua@institution.example.com" - ], - [ - "carol.grier@institution.example.com" - ], - [ - "kayce.grigsby@institution.example.com" - ], - [ - "fernando.grisham@institution.example.com" - ], - [ - "sterling.hutchins@institution.example.com" - ], - [ - "hassan.hyde@institution.example.com" - ], - [ - "shayna.hyde@institution.example.com" - ], - [ - "halley.landrum@institution.example.com" - ], - [ - "hiram.lemus@institution.example.com" - ], - [ - "roxy.olds@institution.example.com" - ], - [ - "randell.reis@institution.example.com" - ], - [ - "lorrine.robertson@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "nora.rowley@institution.example.com" - ], - [ - "kallie.sierra@institution.example.com" - ], - [ - "gilda.soper@institution.example.com" - ], - [ - "jeannie.spears@institution.example.com" - ], - [ - "ilse.switzer@institution.example.com" - ], - [ - "eugene.tennant@institution.example.com" - ] - ], - "voters": [ - [ - "benito.fuqua@institution.example.com" - ], - [ - "kayce.grigsby@institution.example.com" - ], - [ - "shayna.hyde@institution.example.com" - ], - [ - "randell.reis@institution.example.com" - ], - [ - "gilda.soper@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1563, - "fields": { - "state": 80, - "course": 127, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 5, - "_voter_count": 4, - "vote_start_datetime": "2023-06-24T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "gwyn.berger@institution.example.com" - ], - [ - "hilde.langston@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "cheryl.lucas@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ] - ], - "voters": [ - [ - "gwyn.berger@institution.example.com" - ], - [ - "hilde.langston@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1564, - "fields": { - "state": 80, - "course": 88, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": 4, - "_voter_count": 0, - "vote_start_datetime": "2024-05-01T00:00:00", - "vote_end_date": "2024-05-31", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "jammie.bey@institution.example.com" - ], - [ - "vanna.escamilla@institution.example.com" - ], - [ - "lyla.griffiths@institution.example.com" - ], - [ - "aleta.seymour@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1568, - "fields": { - "state": 80, - "course": 64, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 107, - "_voter_count": 26, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-18", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "lulu.ackerman@institution.example.com" - ], - [ - "herminia.alley@institution.example.com" - ], - [ - "brice.ault@institution.example.com" - ], - [ - "shaunna.barnard@institution.example.com" - ], - [ - "cherly.bobbitt@institution.example.com" - ], - [ - "terisa.bottoms@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "angelo.bridges@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "azalee.broussard@institution.example.com" - ], - [ - "kimbery.burnette@institution.example.com" - ], - [ - "mariano.burns@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "cecile.caron@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "zack.chaffin@institution.example.com" - ], - [ - "keva.cheng@institution.example.com" - ], - [ - "maxie.childers@institution.example.com" - ], - [ - "gracie.childs@institution.example.com" - ], - [ - "dannie.cochran@institution.example.com" - ], - [ - "maribeth.compton@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "mable.craddock@institution.example.com" - ], - [ - "mercedez.cupp@institution.example.com" - ], - [ - "larita.dejesus@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "lilia.erwin@institution.example.com" - ], - [ - "elissa.fowler@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "yong.furr@institution.example.com" - ], - [ - "wilmer.goodson@institution.example.com" - ], - [ - "wyatt.hale@institution.example.com" - ], - [ - "kaitlin.hamblin@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "bertram.hendrick@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "agatha.howe@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "shanta.jay@institution.example.com" - ], - [ - "sharice.kasper@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "genevive.kelly@institution.example.com" - ], - [ - "willodean.kitchens@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "melody.large@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "clemencia.lea@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "cheryl.lucas@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "sima.marquardt@institution.example.com" - ], - [ - "birdie.mcclintock@institution.example.com" - ], - [ - "irving.mcdade@institution.example.com" - ], - [ - "domingo.mcnutt@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "minerva.moe@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "alta.omalley@institution.example.com" - ], - [ - "lashandra.peacock@institution.example.com" - ], - [ - "wava.pearl@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "felicia.rawlings@institution.example.com" - ], - [ - "christel.rayburn@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "sherie.ruth@institution.example.com" - ], - [ - "stacy.sawyer@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "alton.smalley@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "yong.staley@institution.example.com" - ], - [ - "angelita.stearns@institution.example.com" - ], - [ - "gidget.stern@institution.example.com" - ], - [ - "doyle.stump@institution.example.com" - ], - [ - "tayna.tarver@institution.example.com" - ], - [ - "karan.thacker@institution.example.com" - ], - [ - "chong.thorne@institution.example.com" - ], - [ - "kandis.thurston@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "marcia.trammell@institution.example.com" - ], - [ - "vella.valerio@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ], - [ - "dominga.vega@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "mario.voigt@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "star.west@institution.example.com" - ], - [ - "adelia.whittington@institution.example.com" - ], - [ - "danika.wills@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ], - [ - "gwendolyn.yoo@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ], - "voters": [ - [ - "lulu.ackerman@institution.example.com" - ], - [ - "brice.ault@institution.example.com" - ], - [ - "shaunna.barnard@institution.example.com" - ], - [ - "jesusita.box@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "sharice.kasper@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1569, - "fields": { - "state": 80, - "course": 125, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 15, - "_voter_count": 6, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "crysta.ainsworth@institution.example.com" - ], - [ - "ali.best@institution.example.com" - ], - [ - "hoyt.bohn@institution.example.com" - ], - [ - "lucia.helton@institution.example.com" - ], - [ - "noma.mcdougall@institution.example.com" - ], - [ - "antonetta.middleton@institution.example.com" - ], - [ - "alexia.pederson@institution.example.com" - ], - [ - "chauncey.rivera@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ], - [ - "kallie.sierra@institution.example.com" - ], - [ - "latesha.snow@institution.example.com" - ], - [ - "eugene.tennant@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ], - [ - "ute.ybarra@institution.example.com" - ] - ], - "voters": [ - [ - "ali.best@institution.example.com" - ], - [ - "antonetta.middleton@institution.example.com" - ], - [ - "chauncey.rivera@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ], - [ - "ute.ybarra@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1570, - "fields": { - "state": 80, - "course": 43, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 82, - "_voter_count": 29, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "lulu.ackerman@institution.example.com" - ], - [ - "zane.aldridge@institution.example.com" - ], - [ - "echo.andre@institution.example.com" - ], - [ - "heide.andrew@institution.example.com" - ], - [ - "cleo.arreola@institution.example.com" - ], - [ - "brice.ault@institution.example.com" - ], - [ - "ayesha.bannister@institution.example.com" - ], - [ - "isaura.baptiste@institution.example.com" - ], - [ - "denny.barrientos@external.example.com" - ], - [ - "inge.baughman@institution.example.com" - ], - [ - "mirella.behrens@institution.example.com" - ], - [ - "millicent.belcher@institution.example.com" - ], - [ - "elfrieda.bess@institution.example.com" - ], - [ - "giovanna.browne@institution.example.com" - ], - [ - "lashanda.brownlee@institution.example.com" - ], - [ - "cecille.buck@institution.example.com" - ], - [ - "donetta.burr@institution.example.com" - ], - [ - "dia.bussey@institution.example.com" - ], - [ - "juliane.call@institution.example.com" - ], - [ - "rosendo.carlton@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "bee.castellanos@institution.example.com" - ], - [ - "debra.chesser@institution.example.com" - ], - [ - "raelene.clancy@institution.example.com" - ], - [ - "daniel.cortez@institution.example.com" - ], - [ - "elenora.crawford@institution.example.com" - ], - [ - "scotty.daily@institution.example.com" - ], - [ - "cyndy.david@institution.example.com" - ], - [ - "eryn.devore@institution.example.com" - ], - [ - "sheryl.dow@institution.example.com" - ], - [ - "sherryl.dozier@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "haley.engle@institution.example.com" - ], - [ - "reva.farr@institution.example.com" - ], - [ - "ivana.ferro@institution.example.com" - ], - [ - "dwayne.fortier@institution.example.com" - ], - [ - "shakira.gilmer@institution.example.com" - ], - [ - "rasheeda.glynn@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "haydee.greco@institution.example.com" - ], - [ - "broderick.greenberg@institution.example.com" - ], - [ - "tyrone.guay@institution.example.com" - ], - [ - "yetta.heck@institution.example.com" - ], - [ - "freddy.hitt@institution.example.com" - ], - [ - "carylon.hoffmann@institution.example.com" - ], - [ - "haywood.hogue@institution.example.com" - ], - [ - "enrique.horne@institution.example.com" - ], - [ - "verdell.joyner@institution.example.com" - ], - [ - "giovanni.leger@institution.example.com" - ], - [ - "tanya.maple@institution.example.com" - ], - [ - "brent.mattson@institution.example.com" - ], - [ - "thi.mcallister@institution.example.com" - ], - [ - "jill.mccauley@institution.example.com" - ], - [ - "brant.mcduffie@institution.example.com" - ], - [ - "domingo.mcnutt@institution.example.com" - ], - [ - "deidre.metzler@institution.example.com" - ], - [ - "maricruz.nall@institution.example.com" - ], - [ - "corinne.neff@institution.example.com" - ], - [ - "freida.ness@institution.example.com" - ], - [ - "maye.noonan@institution.example.com" - ], - [ - "emmy.norwood@institution.example.com" - ], - [ - "hugh.oliver@institution.example.com" - ], - [ - "cierra.oreilly@institution.example.com" - ], - [ - "lasonya.phillip@institution.example.com" - ], - [ - "toshia.piazza@institution.example.com" - ], - [ - "arletha.picard@institution.example.com" - ], - [ - "beverley.pitcher@institution.example.com" - ], - [ - "karri.putnam@institution.example.com" - ], - [ - "porfirio.rasmussen@institution.example.com" - ], - [ - "charlyn.robins@institution.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "francene.sabo@institution.example.com" - ], - [ - "lin.sales@institution.example.com" - ], - [ - "refugia.soliz@institution.example.com" - ], - [ - "nicki.spear@institution.example.com" - ], - [ - "leroy.surratt@institution.example.com" - ], - [ - "yi.thurman@institution.example.com" - ], - [ - "halina.tobias@institution.example.com" - ], - [ - "shelia.turney@institution.example.com" - ], - [ - "carma.watters@institution.example.com" - ], - [ - "star.west@institution.example.com" - ], - [ - "virgen.willingham@institution.example.com" - ] - ], - "voters": [ - [ - "lulu.ackerman@institution.example.com" - ], - [ - "heide.andrew@institution.example.com" - ], - [ - "mirella.behrens@institution.example.com" - ], - [ - "elfrieda.bess@institution.example.com" - ], - [ - "giovanna.browne@institution.example.com" - ], - [ - "lashanda.brownlee@institution.example.com" - ], - [ - "donetta.burr@institution.example.com" - ], - [ - "debra.chesser@institution.example.com" - ], - [ - "raelene.clancy@institution.example.com" - ], - [ - "scotty.daily@institution.example.com" - ], - [ - "eryn.devore@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "haley.engle@institution.example.com" - ], - [ - "shakira.gilmer@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "broderick.greenberg@institution.example.com" - ], - [ - "carylon.hoffmann@institution.example.com" - ], - [ - "haywood.hogue@institution.example.com" - ], - [ - "verdell.joyner@institution.example.com" - ], - [ - "thi.mcallister@institution.example.com" - ], - [ - "jill.mccauley@institution.example.com" - ], - [ - "corinne.neff@institution.example.com" - ], - [ - "toshia.piazza@institution.example.com" - ], - [ - "arletha.picard@institution.example.com" - ], - [ - "beverley.pitcher@institution.example.com" - ], - [ - "porfirio.rasmussen@institution.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "shelia.turney@institution.example.com" - ], - [ - "virgen.willingham@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1571, - "fields": { - "state": 80, - "course": 60, - "name_de": "Business Process Compliance", - "name_en": "Business Process Compliance", - "weight": 2, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 26, - "_voter_count": 12, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "isaura.baptiste@institution.example.com" - ], - [ - "juliane.call@institution.example.com" - ], - [ - "keva.cheng@institution.example.com" - ], - [ - "debra.chesser@institution.example.com" - ], - [ - "scotty.daily@institution.example.com" - ], - [ - "eryn.devore@institution.example.com" - ], - [ - "sherryl.dozier@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "dwayne.fortier@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "shakira.gilmer@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "tyrone.guay@institution.example.com" - ], - [ - "yetta.heck@institution.example.com" - ], - [ - "carylon.hoffmann@institution.example.com" - ], - [ - "enrique.horne@institution.example.com" - ], - [ - "brent.mattson@institution.example.com" - ], - [ - "brant.mcduffie@institution.example.com" - ], - [ - "maricruz.nall@institution.example.com" - ], - [ - "lasonya.phillip@institution.example.com" - ], - [ - "karri.putnam@institution.example.com" - ], - [ - "charlyn.robins@institution.example.com" - ], - [ - "refugia.soliz@institution.example.com" - ], - [ - "leroy.surratt@institution.example.com" - ], - [ - "yi.thurman@institution.example.com" - ], - [ - "shelia.turney@institution.example.com" - ] - ], - "voters": [ - [ - "debra.chesser@institution.example.com" - ], - [ - "scotty.daily@institution.example.com" - ], - [ - "eryn.devore@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "delila.fredrickson@institution.example.com" - ], - [ - "shakira.gilmer@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "yetta.heck@institution.example.com" - ], - [ - "carylon.hoffmann@institution.example.com" - ], - [ - "enrique.horne@institution.example.com" - ], - [ - "charlyn.robins@institution.example.com" - ], - [ - "shelia.turney@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1575, - "fields": { - "state": 80, - "course": 77, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 9, - "_voter_count": 4, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "terisa.bottoms@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "chong.thorne@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ] - ], - "voters": [ - [ - "terisa.bottoms@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1577, - "fields": { - "state": 80, - "course": 9, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 26, - "_voter_count": 9, - "vote_start_datetime": "2024-05-01T00:00:00", - "vote_end_date": "2024-05-31", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "felton.alvarez@institution.example.com" - ], - [ - "sheena.arsenault@institution.example.com" - ], - [ - "diedra.batson@institution.example.com" - ], - [ - "crysta.bounds@institution.example.com" - ], - [ - "armandina.byrne@institution.example.com" - ], - [ - "merideth.chandler@institution.example.com" - ], - [ - "etta.child@institution.example.com" - ], - [ - "almeta.cody@institution.example.com" - ], - [ - "shameka.dew@institution.example.com" - ], - [ - "benito.fuqua@institution.example.com" - ], - [ - "fernando.grisham@institution.example.com" - ], - [ - "collin.hanley@institution.example.com" - ], - [ - "mitchel.heard@institution.example.com" - ], - [ - "nana.meador@institution.example.com" - ], - [ - "shemeka.nieves@institution.example.com" - ], - [ - "armida.nobles@institution.example.com" - ], - [ - "roxy.olds@institution.example.com" - ], - [ - "armand.person@institution.example.com" - ], - [ - "elicia.rawlins@institution.example.com" - ], - [ - "alfreda.roche@institution.example.com" - ], - [ - "macie.roller@institution.example.com" - ], - [ - "carman.slagle@institution.example.com" - ], - [ - "latesha.snow@institution.example.com" - ], - [ - "raymonde.stock@institution.example.com" - ], - [ - "student@institution.example.com" - ], - [ - "reynaldo.thayer@institution.example.com" - ] - ], - "voters": [ - [ - "sheena.arsenault@institution.example.com" - ], - [ - "diedra.batson@institution.example.com" - ], - [ - "armandina.byrne@institution.example.com" - ], - [ - "almeta.cody@institution.example.com" - ], - [ - "benito.fuqua@institution.example.com" - ], - [ - "armida.nobles@institution.example.com" - ], - [ - "roxy.olds@institution.example.com" - ], - [ - "armand.person@institution.example.com" - ], - [ - "raymonde.stock@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1580, - "fields": { - "state": 80, - "course": 91, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 10, - "_voter_count": 5, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "jesusita.box@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "maxie.childers@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "christel.rayburn@institution.example.com" - ], - [ - "yong.staley@institution.example.com" - ], - [ - "gidget.stern@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ] - ], - "voters": [ - [ - "jesusita.box@institution.example.com" - ], - [ - "margery.campos@institution.example.com" - ], - [ - "maxie.childers@institution.example.com" - ], - [ - "tuan.malcolm@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1583, - "fields": { - "state": 80, - "course": 41, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 9, - "_voter_count": 2, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "lashanda.brownlee@institution.example.com" - ], - [ - "debra.chesser@institution.example.com" - ], - [ - "lupe.comstock@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "randee.dellinger@institution.example.com" - ], - [ - "ivana.ferro@institution.example.com" - ], - [ - "haydee.greco@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "cierra.oreilly@institution.example.com" - ] - ], - "voters": [ - [ - "lashanda.brownlee@institution.example.com" - ], - [ - "debra.chesser@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1585, - "fields": { - "state": 80, - "course": 99, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": 4, - "_voter_count": 1, - "vote_start_datetime": "2023-06-24T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "rhona.earl@institution.example.com" - ], - [ - "isiah.hammonds@institution.example.com" - ], - [ - "birdie.mcclintock@institution.example.com" - ], - [ - "alona.oldham@institution.example.com" - ] - ], - "voters": [ - [ - "alona.oldham@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1586, - "fields": { - "state": 10, - "course": 67, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "armandina.byrne@institution.example.com" - ], - [ - "jarod.cate@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "taunya.weinstein@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1587, - "fields": { - "state": 80, - "course": 11, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": 10, - "_voter_count": 1, - "vote_start_datetime": "2023-07-12T00:00:00", - "vote_end_date": "2023-07-29", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "vanna.escamilla@institution.example.com" - ], - [ - "eleanor.freese@institution.example.com" - ], - [ - "jackelyn.gooding@institution.example.com" - ], - [ - "mayme.mcculloch@institution.example.com" - ], - [ - "marlana.mclain@institution.example.com" - ], - [ - "del.mcnamee@institution.example.com" - ], - [ - "norris.peeler@institution.example.com" - ], - [ - "kallie.peters@institution.example.com" - ], - [ - "magen.thorn@institution.example.com" - ], - [ - "jennifer.yarbrough@institution.example.com" - ] - ], - "voters": [ - [ - "eleanor.freese@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1595, - "fields": { - "state": 80, - "course": 96, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 6, - "_voter_count": 6, - "vote_start_datetime": "2023-06-24T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "shemeka.cabrera@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "evelyne.grigsby@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ] - ], - "voters": [ - [ - "shemeka.cabrera@institution.example.com" - ], - [ - "hassie.dortch@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "evelyne.grigsby@institution.example.com" - ], - [ - "kelsey.kay@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1598, - "fields": { - "state": 80, - "course": 138, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 5, - "_voter_count": 3, - "vote_start_datetime": "2023-06-24T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "larita.dejesus@institution.example.com" - ], - [ - "tia.gall@institution.example.com" - ], - [ - "arline.maier@institution.example.com" - ], - [ - "karan.thacker@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ] - ], - "voters": [ - [ - "tia.gall@institution.example.com" - ], - [ - "arline.maier@institution.example.com" - ], - [ - "stacey.timmerman@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1600, - "fields": { - "state": 60, - "course": 40, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-05-01T00:00:00", - "vote_end_date": "2024-05-31", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "virgina.carrasco@institution.example.com" - ], - [ - "shameka.dew@institution.example.com" - ], - [ - "jarrett.flannery@institution.example.com" - ], - [ - "callie.grove@institution.example.com" - ], - [ - "sterling.hutchins@institution.example.com" - ], - [ - "shayna.hyde@institution.example.com" - ], - [ - "odessa.mcmullen@institution.example.com" - ], - [ - "shemeka.nieves@institution.example.com" - ], - [ - "noriko.rau@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ] - ], - "voters": [ - [ - "virgina.carrasco@institution.example.com" - ], - [ - "jarrett.flannery@institution.example.com" - ], - [ - "odessa.mcmullen@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1603, - "fields": { - "state": 10, - "course": 57, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "kallie.sierra@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1605, - "fields": { - "state": 80, - "course": 39, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 6, - "_voter_count": 3, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "terisa.bottoms@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "sima.marquardt@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "vella.valerio@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ] - ], - "voters": [ - [ - "ta.larry@institution.example.com" - ], - [ - "maura.sosa@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1610, - "fields": { - "state": 10, - "course": 81, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "ali.best@institution.example.com" - ], - [ - "jammie.bey@institution.example.com" - ], - [ - "virgina.carrasco@institution.example.com" - ], - [ - "almeta.cody@institution.example.com" - ], - [ - "florrie.deluca@institution.example.com" - ], - [ - "janise.denman@institution.example.com" - ], - [ - "eden.desimone@institution.example.com" - ], - [ - "shameka.dew@institution.example.com" - ], - [ - "eleanor.freese@institution.example.com" - ], - [ - "vicky.gann@institution.example.com" - ], - [ - "carol.grier@institution.example.com" - ], - [ - "dia.harden@institution.example.com" - ], - [ - "lucia.helton@institution.example.com" - ], - [ - "antony.landry@institution.example.com" - ], - [ - "kristine.leatherman@institution.example.com" - ], - [ - "renaldo.melendez@institution.example.com" - ], - [ - "norris.peeler@institution.example.com" - ], - [ - "wendie.pike@institution.example.com" - ], - [ - "michaele.shuler@institution.example.com" - ], - [ - "latesha.snow@institution.example.com" - ], - [ - "jeannie.spears@institution.example.com" - ], - [ - "kristie.stump@institution.example.com" - ], - [ - "reynaldo.thayer@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1613, - "fields": { - "state": 10, - "course": 93, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": 2, - "_voter_count": 0, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "yong.furr@institution.example.com" - ], - [ - "tara.snider@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1614, - "fields": { - "state": 40, - "course": 47, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2099-12-01T00:00:00", - "vote_end_date": "2099-12-31", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "lilia.erwin@institution.example.com" - ], - [ - "evap@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1618, - "fields": { - "state": 80, - "course": 105, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 9, - "_voter_count": 4, - "vote_start_datetime": "2023-07-01T00:00:00", - "vote_end_date": "2023-07-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "felton.alvarez@institution.example.com" - ], - [ - "hilde.blankenship@institution.example.com" - ], - [ - "diann.deloach@institution.example.com" - ], - [ - "vicky.gann@institution.example.com" - ], - [ - "fernando.grisham@institution.example.com" - ], - [ - "mayme.mcculloch@institution.example.com" - ], - [ - "inge.mcmullen@institution.example.com" - ], - [ - "del.mcnamee@institution.example.com" - ], - [ - "tyisha.reich@institution.example.com" - ] - ], - "voters": [ - [ - "diann.deloach@institution.example.com" - ], - [ - "vicky.gann@institution.example.com" - ], - [ - "inge.mcmullen@institution.example.com" - ], - [ - "tyisha.reich@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1624, - "fields": { - "state": 80, - "course": 104, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 3, - "_voter_count": 2, - "vote_start_datetime": "2024-03-31T00:00:00", - "vote_end_date": "2024-04-06", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "virgina.carrasco@institution.example.com" - ], - [ - "diann.deloach@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ] - ], - "voters": [ - [ - "diann.deloach@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1625, - "fields": { - "state": 80, - "course": 122, - "name_de": "Piggyback Profiling: Metadata for Query Results", - "name_en": "Piggyback Profiling: Metadata for Query Results", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": 4, - "_voter_count": 1, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "cristine.caraballo@external.example.com" - ], - [ - "cecile.caron@institution.example.com" - ], - [ - "hilda.rocha@institution.example.com" - ], - [ - "reva.root@institution.example.com" - ] - ], - "voters": [ - [ - "hilda.rocha@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1629, - "fields": { - "state": 70, - "course": 129, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-03-31T00:00:00", - "vote_end_date": "2024-04-06", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "armandina.byrne@institution.example.com" - ], - [ - "benito.fuqua@institution.example.com" - ], - [ - "del.mcnamee@institution.example.com" - ], - [ - "kallie.peters@institution.example.com" - ] - ], - "voters": [ - [ - "armandina.byrne@institution.example.com" - ], - [ - "benito.fuqua@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1634, - "fields": { - "state": 50, - "course": 8, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2099-05-08", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "evap@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "marcella.lu@institution.example.com" - ] - ], - "voters": [] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1638, - "fields": { - "state": 80, - "course": 139, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 11, - "_voter_count": 6, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "terisa.bottoms@institution.example.com" - ], - [ - "giovanna.browne@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "lilia.erwin@institution.example.com" - ], - [ - "hester.ferro@institution.example.com" - ], - [ - "haywood.hogue@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "alta.omalley@institution.example.com" - ], - [ - "felicia.rawlings@institution.example.com" - ], - [ - "halina.tobias@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ] - ], - "voters": [ - [ - "terisa.bottoms@institution.example.com" - ], - [ - "giovanna.browne@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "haywood.hogue@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "stanford.vernon@institution.example.com" - ] - ] - } -}, -{ - "model": "evaluation.evaluation", - "pk": 1641, - "fields": { - "state": 80, - "course": 107, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 6, - "_voter_count": 3, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "crysta.ainsworth@institution.example.com" - ], - [ - "crysta.bounds@institution.example.com" - ], - [ - "benito.fuqua@institution.example.com" - ], - [ - "monet.greenlee@institution.example.com" - ], - [ - "antonetta.middleton@institution.example.com" - ], - [ - "enid.robb@institution.example.com" - ] - ], - "voters": [ - [ - "benito.fuqua@institution.example.com" - ], - [ - "monet.greenlee@institution.example.com" - ], - [ - "antonetta.middleton@institution.example.com" - ] - ] + "is_superuser": false, + "password": "pbkdf2_sha256$30000$fxnctep4sBM1$EvsaesmX21Z8vRLdBFKPqHJ1AzW9vlXBwo8740hIrKQ=", + "last_login": null, + "email": "proxy_delegate_2@institution.example.com", + "title": "", + "first_name_given": "", + "first_name_chosen": "", + "last_name": "proxy_delegate_2", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 1646, + "model": "evaluation.userprofile", + "pk": 951, "fields": { - "state": 10, - "course": 142, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": 4, - "_voter_count": 0, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "lilia.erwin@institution.example.com" - ], - [ - "wyatt.hale@institution.example.com" - ], - [ - "risa.hammer@institution.example.com" - ], - [ - "lashandra.peacock@institution.example.com" - ] - ], - "voters": [] + "is_superuser": false, + "password": "eZAyFmtqHydCIFtGdbevAxiVjiRpqMtmaVUCrmkcfXdoJDigmGWPVNHeoYYyRojokKUJjsgPSPvZkjiiIHSIQlBfOKtQFDbZlPEyKnrQRrHdPtEhUYHqJauIlyIkYpBM", + "last_login": null, + "email": "vincenzo.boston@student.institution.example.com", + "title": "", + "first_name_given": "Vincenzo Alfredo", + "first_name_chosen": "", + "last_name": "Boston", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 1647, + "model": "evaluation.userprofile", + "pk": 952, "fields": { - "state": 80, - "course": 48, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 6, - "_voter_count": 3, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "sandie.aiello@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "corrinne.ferraro@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "larissa.osteen@institution.example.com" - ], - [ - "lorrine.robertson@institution.example.com" - ] - ], - "voters": [ - [ - "sandie.aiello@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ] - ] + "is_superuser": false, + "password": "utAhMBbTpirVqtaoPpadEHdamaehnXWbEsliMMSnwDBYJcTnHluinAxkTeEupPoBzpuDBMYeXbpwmockMtQNYegbMuxkUBEBKqWGkOEFAWxzUFjdxevtIwYzvAgHCAwD", + "last_login": null, + "email": "bud.ledbetter@student.institution.example.com", + "title": "", + "first_name_given": "Bud", + "first_name_chosen": "", + "last_name": "LedBetter", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 1648, + "model": "evaluation.userprofile", + "pk": 953, "fields": { - "state": 80, - "course": 19, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 7, - "_voter_count": 4, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-16", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "sandie.aiello@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "asa.carlton@institution.example.com" - ], - [ - "kristle.ewing@institution.example.com" - ], - [ - "celsa.macias@institution.example.com" - ], - [ - "mayme.mcculloch@institution.example.com" - ], - [ - "bailey.roybal@institution.example.com" - ] - ], - "voters": [ - [ - "sandie.aiello@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "kristle.ewing@institution.example.com" - ], - [ - "bailey.roybal@institution.example.com" - ] - ] + "is_superuser": false, + "password": "naFmzOVrFhXrVVLsIGFYceDAarTGwDRFZKGJwBvKhNFCpupezBrwhorUHsyQSpUxLFKSQuOurcIyoBBYRjARXjzcJCbqYRiKRMOwvdTqwNjAbYDhUKbopBPDYhANXUkI", + "last_login": null, + "email": "melody.large@student.institution.example.com", + "title": "", + "first_name_given": "Melody", + "first_name_chosen": "", + "last_name": "Large", + "language": "", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "notes": "", + "startpage": "DE", + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] } }, { - "model": "evaluation.evaluation", - "pk": 1649, + "model": "evaluation.emailtemplate", + "pk": 1, "fields": { - "state": 80, - "course": 135, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": 3, - "_voter_count": 1, - "vote_start_datetime": "2024-03-31T00:00:00", - "vote_end_date": "2024-04-06", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "etta.child@institution.example.com" - ], - [ - "corrinne.ferraro@institution.example.com" - ], - [ - "larissa.osteen@institution.example.com" - ] - ], - "voters": [ - [ - "corrinne.ferraro@institution.example.com" - ] - ] + "name": "Editor Review Notice", + "subject": "[EvaP] Neue Lehrveranstaltungen stehen zur Überprüfung bereit / New courses ready for approval", + "plain_content": "{% load evaluation_filters %}(English version below)\r\n\r\n\r\nSehr geehrte Dozentin, sehr geehrter Dozent,\r\n\r\nvielen Dank, dass Sie in diesem Semester Veranstaltungen anbieten. Um die Evaluierung dieser Veranstaltungen auf unserer Plattform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} durchführen zu können, benötigen wir Ihre Mithilfe.\r\n\r\nSie können die folgenden Aufgaben auch an Ihre Mitarbeitenden delegieren. Unter \"Einstellungen\" können Sie Stellvertreter·innen hinzufügen, die damit Bearbeitungsrechte für alle Ihre Veranstaltungen erhalten. Beim Bearbeiten einzelner Evaluierungen können Sie ebenfalls Bearbeitungsrechte vergeben, die sich auf diese Evaluierung beschränken.\r\n{% if user.needs_login_key and login_url %}\r\nMit diesem Link können Sie sich einmalig bei der Platform anmelden: {{ login_url }}\r\n{% elif user.needs_login_key %}\r\nEin Link zum Anmelden wird Ihnen per E-Mail zugesendet.\r\n{% endif %}\r\nWir möchten Sie bitten, für Ihre Evaluierungen innerhalb der nächsten Woche Folgendes zu überprüfen:\r\n - Ist der Evaluierungszeitraum angemessen? Bitte legen Sie das Ende der Evaluierung vor die finale Prüfungsleistung (Klausur, Prüfung, Ausarbeitung etc.).\r\n - Wurden die für die Evaluierung geeigneten Fragebögen ausgewählt? Bitte passen Sie die Auswahl gegebenenfalls an.\r\n - Werden alle beteiligten Dozent·innen, Übungsleiter·innen, Projektleiter·innen, Seminarbetreuer·innen etc. evaluiert? Fügen Sie bitte alle weiteren Personen mit den passenden Fragebögen hinzu.\r\n\r\nFolgende Evaluierungen benötigen Ihre Freigabe:\r\n{% for evaluation in evaluations|order_by:\"full_name_de\" %} - {{ evaluation.full_name_de }}\r\n{% endfor %}\r\nVielen Dank im Voraus für Ihre Mühe!\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).\r\n\r\nFreundliche Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear lecturer,\r\n\r\nThank you very much for teaching during this semester. We need your help so we can evaluate all courses on our platform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.\r\n\r\nYou can delegate the following tasks to your staff. Under \"Settings\" you can assign your delegates, which thereby will gain editing rights for all your courses. On the details page of a single evaluation you can also add persons and assign edit rights for this evaluation to them.\r\n{% if user.needs_login_key and login_url %}\r\nWith the following one-time URL you can login to the evaluation platform: {{ login_url }}\r\n{% elif user.needs_login_key %}\r\nWe will send you a one-time login URL in a separate email.\r\n{% endif %}\r\nTo prepare your evaluations we would like to ask you for the following within a week:\r\n - Is the evaluation period appropriate? Please let the evaluation end before the final exam (written or oral examination, final assignment, etc.) of your course.\r\n - Are the selected questionnaires adequate for the evaluation? Please adapt the selection if necessary.\r\n - Are all contributors (lecturers, teaching assistants, etc.) included in the evaluation? Please add all additional persons with their appropriate questionnaires.\r\n\r\nThese evaluations need your approval:\r\n{% for evaluation in evaluations|order_by:\"full_name_en\" %} - {{ evaluation.full_name_en }}\r\n{% endfor %}\r\nThank you very much in advance for your efforts!\r\nIf you have any questions or feedback, please contact the evaluation team ({{ contact_email }}).\r\n\r\nKind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", + "html_content": "{% load evaluation_filters %}\r\n(English version below)


\r\n\r\n\r\nSehr geehrte Dozentin, sehr geehrter Dozent,

\r\n\r\nvielen Dank, dass Sie in diesem Semester Veranstaltungen anbieten. Um die Evaluierung dieser Veranstaltungen auf unserer Plattform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} durchführen zu können, benötigen wir Ihre Mithilfe.

\r\n\r\nSie können die folgenden Aufgaben auch an Ihre Mitarbeitenden delegieren. Unter \"Einstellungen\" können Sie Stellvertreter·innen hinzufügen, die damit Bearbeitungsrechte für alle Ihre Veranstaltungen erhalten. Beim Bearbeiten einzelner Evaluierungen können Sie ebenfalls Bearbeitungsrechte vergeben, die sich auf diese Evaluierung beschränken.

\r\n\r\n{% if user.needs_login_key and login_url %}\r\nMit diesem Link können Sie sich einmalig bei der Platform anmelden: {{ login_url }}

\r\n{% elif user.needs_login_key %}\r\nEin Link zum Anmelden wird Ihnen per E-Mail zugesendet.

\r\n{% endif %}\r\n\r\nWir möchten Sie bitten, für Ihre Evaluierungen innerhalb der nächsten Woche Folgendes zu überprüfen:\r\n
\r\n\r\nFolgende Evaluierungen benötigen Ihre Freigabe:
\r\n
\r\n\r\nVielen Dank im Voraus für Ihre Mühe!
\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).

\r\n\r\nFreundliche Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear lecturer,

\r\n\r\nThank you very much for teaching during this semester. We need your help so we can evaluate all courses on our platform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.

\r\n\r\nYou can delegate the following tasks to your staff. Under \"Settings\" you can assign your delegates, which thereby will gain editing rights for all your courses. On the details page of a single evaluation you can also add persons and assign edit rights for this evaluation to them.

\r\n\r\n{% if user.needs_login_key and login_url %}\r\nWith the following one-time URL you can login to the evaluation platform: {{ login_url }}

\r\n{% elif user.needs_login_key %}\r\nWe will send you a one-time login URL in a separate email.

\r\n{% endif %}\r\n\r\nTo prepare your evaluations we would like to ask you for the following within a week:\r\n
\r\n\r\nThese evaluations need your approval:\r\n
\r\n\r\nThank you very much in advance for your efforts!
\r\nIf you have any questions or feedback, please contact the evaluation team ({{ contact_email }}).

\r\n\r\nKind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" } }, { - "model": "evaluation.evaluation", - "pk": 1651, + "model": "evaluation.emailtemplate", + "pk": 2, "fields": { - "state": 80, - "course": 137, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 38, - "_voter_count": 17, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "zane.aldridge@institution.example.com" - ], - [ - "ayesha.bannister@institution.example.com" - ], - [ - "annmarie.briscoe@institution.example.com" - ], - [ - "donetta.burr@institution.example.com" - ], - [ - "rosendo.carlton@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "zack.chaffin@institution.example.com" - ], - [ - "keva.cheng@institution.example.com" - ], - [ - "dannie.cochran@institution.example.com" - ], - [ - "elenora.crawford@institution.example.com" - ], - [ - "maxine.dexter@institution.example.com" - ], - [ - "sheryl.dow@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "hester.ferro@institution.example.com" - ], - [ - "dwayne.fortier@institution.example.com" - ], - [ - "rasheeda.glynn@institution.example.com" - ], - [ - "tyrone.guay@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "melody.large@institution.example.com" - ], - [ - "denna.lester@institution.example.com" - ], - [ - "tanya.maple@institution.example.com" - ], - [ - "sima.marquardt@institution.example.com" - ], - [ - "jere.marr@institution.example.com" - ], - [ - "domingo.mcnutt@institution.example.com" - ], - [ - "minerva.moe@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "karri.putnam@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "francene.sabo@institution.example.com" - ], - [ - "lin.sales@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "marcia.trammell@institution.example.com" - ], - [ - "dominga.vega@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "star.west@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ], - "voters": [ - [ - "ayesha.bannister@institution.example.com" - ], - [ - "donetta.burr@institution.example.com" - ], - [ - "jeremy.carrington@institution.example.com" - ], - [ - "keva.cheng@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "rasheeda.glynn@institution.example.com" - ], - [ - "jere.marr@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "karri.putnam@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "lin.sales@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ], - [ - "mistie.weddle@institution.example.com" - ], - [ - "star.west@institution.example.com" - ], - [ - "carlota.zaragoza@institution.example.com" - ] - ] + "name": "Student Reminder", + "subject": "[EvaP] Die Evaluierung endet {% if first_due_in_days == 0 %}heute{% elif first_due_in_days == 1 %}morgen{% else %}in {{ first_due_in_days }} Tagen{% endif %} / The evaluation is about to end {% if first_due_in_days == 0 %}today{% elif first_due_in_days == 1 %}tomorrow{% else %}in {{ first_due_in_days }} days{% endif %}", + "plain_content": "(English version below)\r\n\r\n\r\nHallo {{ user.first_name }},\r\n\r\nfür eine deiner Evaluierungen endet {% if first_due_in_days == 0 %}heute{% elif first_due_in_days == 1 %}morgen{% else %}in {{ first_due_in_days }} Tagen{% endif %} die Evaluierungsfrist.\r\n\r\nAn folgenden Evaluierungen hast du noch nicht teilgenommen:\r\n{% for evaluation, due_in_days in due_evaluations %} - {{ evaluation.full_name_de }} (endet {% if due_in_days == 0 %}heute{% elif due_in_days == 1 %}morgen{% else %}in {{ due_in_days }} Tagen{% endif %})\r\n{% endfor %}\r\nDu kannst dein Feedback auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} abgeben, wir würden uns über deine Stimme freuen :)\r\nBei Fragen und Rückmeldungen kannst du dich jederzeit an uns wenden ({{ contact_email }}).\r\n{% if user.needs_login_key %}\r\nKlicke hier, um dich anzumelden: {{ login_url }}\r\n{% endif%}\r\nVielen Dank für deine Mühe und viele Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear {{ user.first_name }},\r\n\r\nThe evaluation period for one of your evaluations will end {% if first_due_in_days == 0 %}today{% elif first_due_in_days == 1 %}tomorrow{% else %}in {{ first_due_in_days }} days{% endif %}.\r\n\r\nYou did not yet participate in the following evaluations:\r\n{% for evaluation, due_in_days in due_evaluations %} - {{ evaluation.full_name_en }} (ends {% if due_in_days == 0 %}today{% elif due_in_days == 1 %}tomorrow{% else %}in {{ due_in_days }} days{% endif %})\r\n{% endfor %}\r\nYou can give your opinion on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}. We’re looking forward to receive your feedback :)\r\nIf you have any questions or feedback, please let us know ({{ contact_email }}).\r\n{% if user.needs_login_key %}\r\nClick here to login: {{ login_url }}\r\n{% endif%}\r\nThank you very much for your efforts and kind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", + "html_content": "(English version below)


\r\n\r\n\r\nHallo {{ user.first_name }},

\r\n\r\nfür eine deiner Evaluierungen endet {% if first_due_in_days == 0 %}heute{% elif first_due_in_days == 1 %}morgen{% else %}in {{ first_due_in_days }} Tagen{% endif %} die Evaluierungsfrist.

\r\n\r\nAn folgenden Evaluierungen hast du noch nicht teilgenommen:\r\n
\r\n\r\nDu kannst dein Feedback auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} abgeben, wir würden uns über deine Stimme freuen :)
\r\nBei Fragen und Rückmeldungen kannst du dich jederzeit an uns wenden ({{ contact_email }}).

\r\n\r\n{% if user.needs_login_key %}\r\nKlicke hier, um dich anzumelden: {{ login_url }}

\r\n{% endif%}\r\n\r\nVielen Dank für deine Mühe und viele Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear {{ user.first_name }},

\r\n\r\nThe evaluation period for one of your evaluations will end {% if first_due_in_days == 0 %}today{% elif first_due_in_days == 1 %}tomorrow{% else %}in {{ first_due_in_days }} days{% endif %}.

\r\n\r\nYou did not yet participate in the following evaluations:\r\n
\r\n\r\nYou can give your opinion on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}. We’re looking forward to receive your feedback :)
\r\nIf you have any questions or feedback, please let us know ({{ contact_email }}).

\r\n\r\n{% if user.needs_login_key %}\r\nClick here to login: {{ login_url }}

\r\n{% endif%}\r\n\r\nThank you very much for your efforts and kind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" } }, { - "model": "evaluation.evaluation", - "pk": 1653, + "model": "evaluation.emailtemplate", + "pk": 3, "fields": { - "state": 10, - "course": 71, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "cherly.bobbitt@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "lita.regan@institution.example.com" - ], - [ - "marcia.trammell@institution.example.com" - ] - ], - "voters": [] + "name": "Publishing Notice Contributor", + "subject": "[EvaP] Evaluierungsergebnisse veröffentlicht / Evaluation results published", + "plain_content": "{% load evaluation_filters %}(English version below)\r\n\r\n\r\nSehr geehrte Dozentin, sehr geehrter Dozent,\r\n\r\ndie folgenden Evaluierungsergebnisse wurden soeben veröffentlicht:\r\n{% for evaluation in evaluations|order_by:\"full_name_de\" %} - {{ evaluation.full_name_de }}\r\n{% endfor %}\r\nDie Ergebnisse können auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} eingesehen werden.{% if user.needs_login_key and login_url %} Hier klicken zum Anmelden: {{ login_url }}{% elif user.needs_login_key %} Ein Link zum Anmelden wird per E-Mail zugesendet.{% endif %}\r\n\r\nBei Fragen und Rückmeldungen stehen wir gerne zur Verfügung ({{ contact_email }}).\r\n\r\nFreundliche Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear lecturer,\r\n\r\nthe results of the following evaluations have just been published:\r\n{% for evaluation in evaluations|order_by:\"full_name_en\" %} - {{ evaluation.full_name_en }}\r\n{% endfor %}\r\nYou can view the results on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.{% if user.needs_login_key and login_url %} Click here to login: {{ login_url }}{% elif user.needs_login_key %} We will send you a one-time login URL in a separate email.{% endif %}\r\n\r\nIf you have any questions or feedback, please let us know ({{ contact_email }}).\r\n\r\nKind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", + "html_content": "{% load evaluation_filters %}\r\n(English version below)


\r\n\r\n\r\nSehr geehrte Dozentin, sehr geehrter Dozent,

\r\n\r\ndie folgenden Evaluierungsergebnisse wurden soeben veröffentlicht:\r\n
\r\n\r\nDie Ergebnisse können auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} eingesehen werden.
\r\n{% if user.needs_login_key and login_url %}\r\nHier klicken zum Anmelden: {{ login_url }}
\r\n{% elif user.needs_login_key %}\r\nEin Link zum Anmelden wird per E-Mail zugesendet.
\r\n{% endif %}
\r\n\r\nBei Fragen und Rückmeldungen stehen wir gerne zur Verfügung ({{ contact_email }}).

\r\n\r\nFreundliche Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\n\r\nDear lecturer,

\r\n\r\nthe results of the following evaluations have just been published:\r\n
\r\n\r\nYou can view the results on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.
\r\n{% if user.needs_login_key and login_url %}\r\nClick here to login: {{ login_url }}
\r\n{% elif user.needs_login_key %}\r\nWe will send you a one-time login URL in a separate email.
\r\n{% endif %}
\r\n\r\nIf you have any questions or feedback, please let us know ({{ contact_email }}).

\r\n\r\nKind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" } }, { - "model": "evaluation.evaluation", - "pk": 1655, + "model": "evaluation.emailtemplate", + "pk": 4, "fields": { - "state": 80, - "course": 79, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": 4, - "_voter_count": 1, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "almeta.cody@institution.example.com" - ], - [ - "ariana.houghton@institution.example.com" - ], - [ - "roxanna.sandlin@institution.example.com" - ], - [ - "eugene.tennant@institution.example.com" - ] - ], - "voters": [ - [ - "almeta.cody@institution.example.com" - ] - ] + "name": "Login Key Created", + "subject": "[EvaP] Ihr Anmeldelink / Your login URL", + "plain_content": "BITTE NICHT WEITERLEITEN / PLEASE DO NOT FORWARD\r\n\r\nMit dem folgenden Link können Sie sich einmalig mit einem externen Account bei der Evaluierungsplattform anmelden:\r\nWith the following one-time URL you can login to the evaluation platform as an external user:\r\n\r\n{{ login_url }}\r\n\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).\r\nIf you have any questions or feedback, please contact the Evaluation Team ({{ contact_email }}).", + "html_content": "BITTE NICHT WEITERLEITEN / PLEASE DO NOT FORWARD

\r\n\r\nMit dem folgenden Link können Sie sich einmalig mit einem externen Account bei der Evaluierungsplattform anmelden:
\r\nWith the following one-time URL you can login to the evaluation platform as an external user:

\r\n\r\n{{ login_url }}

\r\n\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).
\r\nIf you have any questions or feedback, please contact the Evaluation Team ({{ contact_email }})." } }, { - "model": "evaluation.evaluation", - "pk": 1656, + "model": "evaluation.emailtemplate", + "pk": 5, "fields": { - "state": 80, - "course": 74, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 6, - "_voter_count": 3, - "vote_start_datetime": "2024-03-31T00:00:00", - "vote_end_date": "2024-04-06", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "hoyt.bohn@institution.example.com" - ], - [ - "almeta.cody@institution.example.com" - ], - [ - "jarrett.flannery@institution.example.com" - ], - [ - "mandie.lomax@institution.example.com" - ], - [ - "marilynn.oconnor@institution.example.com" - ], - [ - "latesha.snow@institution.example.com" - ] - ], - "voters": [ - [ - "hoyt.bohn@institution.example.com" - ], - [ - "almeta.cody@institution.example.com" - ], - [ - "mandie.lomax@institution.example.com" - ] - ] + "name": "Evaluation Started", + "subject": "[EvaP] Evaluierung hat begonnen / Evaluation started", + "plain_content": "{% load evaluation_filters %}(English version below)\r\n\r\n\r\nHallo {{ user.first_name }},\r\n\r\nfür die folgenden Evaluierungen hat die Evaluierungsphase begonnen:\r\n{% for evaluation, due_in_days in evaluations %} - {{ evaluation.full_name_de }} (endet {% if due_in_days == 0 %}heute{% elif due_in_days == 1 %}morgen{% else %}in {{ due_in_days }} Tagen{% endif %})\r\n{% endfor %}\r\nDu kannst dein Feedback auf EvaP{% if not user.needs_login_key %} (https://evap.hpi.de){% endif %} abgeben, die Mitwirkenden und wir freuen uns über deine Bewertung. Bei Fragen und Rückmeldungen kannst du dich jederzeit an uns wenden (evaluierung@hpi.de).\r\n\r\n{% if user.needs_login_key %}Klicke hier, um dich anzumelden: {{ login_url }}\r\n{% endif %}{% if due_evaluations|length > 1%}Diese Evaluierungen warten auf deine Bewertung:\r\n{% for evaluation, due_in_days in due_evaluations %} - {{ evaluation.full_name_de }} (endet {% if due_in_days == 0 %}heute{% elif due_in_days == 1 %}morgen{% else %}in {{ due_in_days }} Tagen{% endif %})\r\n{% endfor %}{% endif %}\r\nVielen Dank für deine Mühe und viele Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\nDear {{ user.first_name }},\r\n\r\nThe evaluation period for the following evaluations just started:\r\n{% for evaluation, due_in_days in evaluations %} - {{ evaluation.full_name_en }} (ends {% if due_in_days == 0 %}today{% elif due_in_days == 1 %}tomorrow{% else %}in {{ due_in_days }} days{% endif %})\r\n{% endfor %}\r\nYou can evaluate them on EvaP{% if not user.needs_login_key %} (https://evap.hpi.de){% endif %}. The lecturers and we are looking forward to receive your feedback. If you have any questions or feedback, please let us know (evaluierung@hpi.de).\r\n\r\n{% if user.needs_login_key %}Click here to login: {{ login_url }}\r\n{% endif %}{% if due_evaluations|length > 1%}These evaluations are waiting for your feedback:\r\n{% for evaluation, due_in_days in due_evaluations %} - {{ evaluation.full_name_en }} (ends {% if due_in_days == 0 %}today{% elif due_in_days == 1 %}tomorrow{% else %}in {{ due_in_days }} days{% endif %})\r\n{% endfor %}{% endif %}\r\nThank you very much for your efforts and kind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", + "html_content": "{% load evaluation_filters %}\r\n(English version below)


\r\n\r\n\r\nHallo {{ user.first_name }},

\r\n\r\nfür die folgenden Evaluierungen hat die Evaluierungsphase begonnen:\r\n
\r\n\r\nDu kannst dein Feedback auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} abgeben, die Mitwirkenden und wir freuen uns über deine Bewertung. Bei Fragen und Rückmeldungen kannst du dich jederzeit an uns wenden ({{ contact_email }}).

\r\n\r\n{% if user.needs_login_key %}\r\nKlicke hier, um dich anzumelden: {{ login_url }}

\r\n{% endif %}\r\n\r\n{% if due_evaluations|length > 1%}\r\nDiese Evaluierungen warten auf deine Bewertung:\r\n
\r\n{% endif %}\r\n\r\nVielen Dank für deine Mühe und viele Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear {{ user.first_name }},

\r\n\r\nThe evaluation period for the following evaluations just started:\r\n
\r\n\r\nYou can evaluate them on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}. The lecturers and we are looking forward to receive your feedback. If you have any questions or feedback, please let us know ({{ contact_email }}).

\r\n\r\n{% if user.needs_login_key %}\r\nClick here to login: {{ login_url }}

\r\n{% endif %}\r\n{% if due_evaluations|length > 1%}\r\nThese evaluations are waiting for your feedback:\r\n
\r\n{% endif %}\r\n\r\nThank you very much for your efforts and kind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" } }, { - "model": "evaluation.evaluation", - "pk": 1657, + "model": "evaluation.emailtemplate", + "pk": 6, "fields": { - "state": 80, - "course": 108, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": 10, - "_voter_count": 1, - "vote_start_datetime": "2024-02-11T00:00:00", - "vote_end_date": "2024-02-16", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "hassie.dortch@institution.example.com" - ], - [ - "corrinne.ferraro@institution.example.com" - ], - [ - "laveta.grubbs@institution.example.com" - ], - [ - "dia.harden@institution.example.com" - ], - [ - "mandie.lomax@institution.example.com" - ], - [ - "allie.lowell@institution.example.com" - ], - [ - "larissa.osteen@institution.example.com" - ], - [ - "armand.person@institution.example.com" - ], - [ - "kristie.stump@institution.example.com" - ], - [ - "ilse.switzer@institution.example.com" - ] - ], - "voters": [ - [ - "dia.harden@institution.example.com" - ] - ] + "name": "Editor Review Reminder", + "subject": "[EvaP] Reminder: Neue Lehrveranstaltungen stehen zur Überprüfung bereit / New Evaluation ready for approval", + "plain_content": "{% load evaluation_filters %}(English version below)\r\n\r\n\r\nSehr geehrte Dozentin, sehr geehrter Dozent,\r\n\r\num die Evaluierung Ihrer Veranstaltungen auf unserer Plattform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} durchführen zu können, benötigen wir Ihre Mithilfe.\r\n\r\nSie können die folgenden Aufgaben auch an Ihre Mitarbeitenden delegieren. Unter \"Einstellungen\" können Sie Stellvertreter·innen hinzufügen, die damit Bearbeitungsrechte für alle Ihre Veranstaltungen erhalten. Beim Bearbeiten einzelner Evaluierungen können Sie ebenfalls Bearbeitungsrechte vergeben, die sich auf diese Evaluierung beschränken.\r\n{% if user.needs_login_key and login_url %}\r\nMit diesem Link können Sie sich einmalig bei der Platform anmelden: {{ login_url }}\r\n{% elif user.needs_login_key %}\r\nEin Link zum Anmelden wird Ihnen per E-Mail zugesendet.\r\n{% endif %}\r\nWir möchten Sie bitten, für Ihre Evaluierungen sobald wie möglich Folgendes zu überprüfen:\r\n - Ist der Evaluierungszeitraum angemessen? Bitte legen Sie das Ende der Evaluierung vor die finale Prüfungsleistung (Klausur, Prüfung, Ausarbeitung etc.).\r\n - Wurden die für die Evaluierung geeigneten Fragebögen ausgewählt? Bitte passen Sie die Auswahl gegebenenfalls an.\r\n - Werden alle beteiligten Dozent·innen, Übungsleiter·innen, Projektleiter·innen, Seminarbetreuer·innen etc. evaluiert? Fügen Sie bitte alle weiteren Personen mit den passenden Fragebögen hinzu.\r\n\r\nFolgende Evaluierungen benötigen Ihre Freigabe:\r\n{% for evaluation in evaluations|order_by:\"full_name_de\" %} - {{ evaluation.full_name_de }}\r\n{% endfor %}\r\nVielen Dank im Voraus für Ihre Mühe!\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).\r\n\r\nFreundliche Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear lecturer,\r\n\r\nwe need your help so we can evaluate all courses on our platform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.\r\n\r\nYou can delegate the following tasks to your staff. Under \"Settings\" you can assign your delegates, which thereby will gain editing rights for all your courses. On the details page of a single evaluation you can also add persons and assign edit rights for this evaluation to them.\r\n{% if user.needs_login_key and login_url %}\r\nWith the following one-time URL you can login to the evaluation platform: {{ login_url }}\r\n{% elif user.needs_login_key %}\r\nWe will send you a one-time login URL in a separate email.\r\n{% endif %}\r\nTo prepare your evaluations we would like to ask you for the following as soon as possible:\r\n - Is the evaluation period appropriate? Please let the evaluation end before the final exam (written or oral examination, final assignment, etc.) of your course.\r\n - Are the selected questionnaires adequate for the evaluation? Please adapt the selection if necessary.\r\n - Are all contributors (lecturers, teaching assistants, etc.) included in the evaluation? Please add all additional persons with their appropriate questionnaires.\r\n\r\nThese evaluations need your approval:\r\n{% for evaluation in evaluations|order_by:\"full_name_en\" %} - {{ evaluation.full_name_en }}\r\n{% endfor %}\r\nThank you very much in advance for your efforts!\r\nIf you have any questions or feedback, please contact the evaluation team ({{ contact_email }}).\r\n\r\nKind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", + "html_content": "{% load evaluation_filters %}\r\n(English version below)


\r\n\r\n\r\nSehr geehrte Dozentin, sehr geehrter Dozent,

\r\n\r\num die Evaluierung Ihrer Veranstaltungen auf unserer Plattform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} durchführen zu können, benötigen wir Ihre Mithilfe.

\r\n\r\nSie können die folgenden Aufgaben auch an Ihre Mitarbeitenden delegieren. Unter \"Einstellungen\" können Sie Stellvertreter·innen hinzufügen, die damit Bearbeitungsrechte für alle Ihre Veranstaltungen erhalten. Beim Bearbeiten einzelner Evaluierungen können Sie ebenfalls Bearbeitungsrechte vergeben, die sich auf diese Evaluierung beschränken.

\r\n\r\n{% if user.needs_login_key and login_url %}\r\nMit diesem Link können Sie sich einmalig bei der Platform anmelden: {{ login_url }}

\r\n{% elif user.needs_login_key %}\r\nEin Link zum Anmelden wird Ihnen per E-Mail zugesendet.

\r\n{% endif %}\r\n\r\nWir möchten Sie bitten, für Ihre Evaluierungen sobald wie möglich Folgendes zu überprüfen:\r\n
\r\n\r\nFolgende Evaluierungen benötigen Ihre Freigabe:\r\n
\r\n\r\nVielen Dank im Voraus für Ihre Mühe!
\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).

\r\n\r\nFreundliche Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear lecturer,

\r\n\r\nwe need your help so we can evaluate all courses on our platform EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.

\r\n\r\nYou can delegate the following tasks to your staff. Under \"Settings\" you can assign your delegates, which thereby will gain editing rights for all your courses. On the details page of a single evaluation you can also add persons and assign edit rights for this evaluation to them.

\r\n\r\n{% if user.needs_login_key and login_url %}\r\nWith the following one-time URL you can login to the evaluation platform: {{ login_url }}

\r\n{% elif user.needs_login_key %}\r\nWe will send you a one-time login URL in a separate email.

\r\n{% endif %}\r\n\r\nTo prepare your evaluations we would like to ask you for the following as soon as possible:\r\n
\r\n\r\nThese evaluations need your approval:\r\n
\r\n\r\nThank you very much in advance for your efforts!
\r\nIf you have any questions or feedback, please contact the evaluation team ({{ contact_email }}).

\r\n\r\nKind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" } }, { - "model": "evaluation.evaluation", - "pk": 1660, + "model": "evaluation.emailtemplate", + "pk": 7, "fields": { - "state": 80, - "course": 85, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 20, - "_voter_count": 11, - "vote_start_datetime": "2024-01-28T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "heide.andrew@institution.example.com" - ], - [ - "elfrieda.bess@institution.example.com" - ], - [ - "dia.bussey@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "zack.chaffin@institution.example.com" - ], - [ - "debra.chesser@institution.example.com" - ], - [ - "maribeth.compton@institution.example.com" - ], - [ - "daniel.cortez@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "haley.engle@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "dwayne.fortier@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "arletha.picard@institution.example.com" - ], - [ - "charlyn.robins@institution.example.com" - ], - [ - "doyle.stump@institution.example.com" - ], - [ - "yi.thurman@institution.example.com" - ], - [ - "vella.valerio@institution.example.com" - ] - ], - "voters": [ - [ - "heide.andrew@institution.example.com" - ], - [ - "elfrieda.bess@institution.example.com" - ], - [ - "debra.chesser@institution.example.com" - ], - [ - "penelope.covert@institution.example.com" - ], - [ - "haley.engle@institution.example.com" - ], - [ - "virgie.engle@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "ta.larry@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "arletha.picard@institution.example.com" - ], - [ - "vella.valerio@institution.example.com" - ] - ] + "name": "Direct Delegation", + "subject": "[EvaP] Bitte Evaluierung vorbereiten / Please prepare evaluation", + "plain_content": "(English version below)\r\n\r\n\r\nHallo {{ delegate_user.full_name }},\r\n\r\nSie werden von {{ user.full_name }} darum gebeten, die Evaluierung für \"{{ evaluation.full_name_de }}\" auf der Plattform EvaP ({{ page_url }}) vorzubereiten.\r\n\r\nBitte überprüfen Sie möglichst bald die folgenden Dinge:\r\n - Ist der Evaluierungszeitraum angemessen? Bitte legen Sie das Ende der Evaluierung vor die finale Prüfungsleistung (Klausur, Prüfung, Ausarbeitung etc.).\r\n - Wurden die für die Veranstaltung geeigneten Fragebögen ausgewählt? Bitte passen Sie die Auswahl gegebenenfalls an.\r\n - Werden alle beteiligten Dozent·innen, Übungsleiter·innen, Projektleiter·innen, Seminarbetreuer·innen etc. evaluiert? Fügen Sie bitte alle weiteren Personen mit den passenden Fragebögen hinzu.\r\n\r\nVielen Dank im Voraus für Ihre Mühe!\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).\r\n\r\nFreundliche Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear {{ delegate_user.full_name }},\r\n\r\n{{ user.full_name }} asks you to prepare the evaluation for \"{{ evaluation.full_name_en }}\" on the platform EvaP ({{ page_url }}).\r\n\r\nPlease check the following as soon as possible:\r\n - Is the evaluation period appropriate? Please let the evaluation end before the final exam (written or oral examination, final assignment, etc.) of your course.\r\n - Are the selected questionnaires adequate for the course? Please adapt the selection if necessary.\r\n - Are all contributors (lecturers, teaching assistants, etc.) included in the evaluation? Please add all additional persons with their appropriate questionnaires.\r\n\r\nThank you very much in advance for your efforts!\r\nIf you have any questions or feedback, please contact the evaluation team ({{ contact_email }}).\r\n\r\nKind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", + "html_content": "(English version below)


\r\n\r\n\r\nHallo {{ delegate_user.full_name }},

\r\n\r\nSie werden von {{ user.full_name }} darum gebeten, die Evaluierung für \"{{ evaluation.full_name_de }}\" auf der Plattform EvaP ({{ page_url }}) vorzubereiten.

\r\n\r\nBitte überprüfen Sie möglichst bald die folgenden Dinge:\r\n
\r\n\r\nVielen Dank im Voraus für Ihre Mühe!
\r\nBei Fragen und Rückmeldungen können Sie sich jederzeit gerne an das Evaluierungsteam wenden ({{ contact_email }}).

\r\n\r\nFreundliche Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear {{ delegate_user.full_name }},

\r\n\r\n{{ user.full_name }} asks you to prepare the evaluation for \"{{ evaluation.full_name_en }}\" on the platform EvaP ({{ page_url }}).

\r\n\r\nPlease check the following as soon as possible:\r\n
\r\n\r\nThank you very much in advance for your efforts!
\r\nIf you have any questions or feedback, please contact the evaluation team ({{ contact_email }}).

\r\n\r\nKind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" } }, { - "model": "evaluation.evaluation", - "pk": 1663, + "model": "evaluation.emailtemplate", + "pk": 8, "fields": { - "state": 80, - "course": 66, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 24, - "_voter_count": 8, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "sandie.aiello@institution.example.com" - ], - [ - "joi.almond@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "myrtice.bohannon@institution.example.com" - ], - [ - "shameka.dew@institution.example.com" - ], - [ - "editor@institution.example.com" - ], - [ - "mickie.england@institution.example.com" - ], - [ - "jene.fowlkes@institution.example.com" - ], - [ - "eleanor.freese@institution.example.com" - ], - [ - "fernando.grisham@institution.example.com" - ], - [ - "laveta.grubbs@institution.example.com" - ], - [ - "dia.harden@institution.example.com" - ], - [ - "bertram.hendrick@institution.example.com" - ], - [ - "marcos.huang@institution.example.com" - ], - [ - "aide.kraft@institution.example.com" - ], - [ - "marlana.mclain@institution.example.com" - ], - [ - "del.mcnamee@institution.example.com" - ], - [ - "willard.perron@external.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "bailey.roybal@institution.example.com" - ], - [ - "roxanna.sandlin@institution.example.com" - ], - [ - "latesha.snow@institution.example.com" - ], - [ - "ilse.switzer@institution.example.com" - ] - ], - "voters": [ - [ - "sandie.aiello@institution.example.com" - ], - [ - "hester.bettencourt@institution.example.com" - ], - [ - "editor@institution.example.com" - ], - [ - "mickie.england@institution.example.com" - ], - [ - "eleanor.freese@institution.example.com" - ], - [ - "dia.harden@institution.example.com" - ], - [ - "aide.kraft@institution.example.com" - ], - [ - "bailey.roybal@institution.example.com" - ] - ] + "name": "Publishing Notice Participant", + "subject": "[EvaP] Evaluierungsergebnisse veröffentlicht / Evaluation results published", + "plain_content": "{% load evaluation_filters %}(English version below)\r\n\r\n\r\nHallo {{ user.first_name }},\r\n\r\ndie folgenden Evaluierungsergebnisse wurden soeben veröffentlicht:\r\n{% for evaluation in evaluations|order_by:\"full_name_de\" %} - {{ evaluation.full_name_de }}\r\n{% endfor %}\r\nDie Ergebnisse können auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} eingesehen werden.{% if user.needs_login_key and login_url %} Hier klicken zum Anmelden: {{ login_url }}{% elif user.needs_login_key %} Ein Link zum Anmelden wird per E-Mail zugesendet.{% endif %}\r\n\r\nBei Fragen und Rückmeldungen stehen wir gerne zur Verfügung ({{ contact_email }}).\r\n\r\nFreundliche Grüße,\r\ndas Evaluierungsteam\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear {{ user.first_name }},\r\n\r\nthe results of the following evaluations have just been published:\r\n{% for evaluation in evaluations|order_by:\"full_name_en\" %} - {{ evaluation.full_name_en }}\r\n{% endfor %}\r\nYou can view the results on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.{% if user.needs_login_key and login_url %} Click here to login: {{ login_url }}{% elif user.needs_login_key %} We will send you a one-time login URL in a separate email.{% endif %}\r\n\r\nIf you have any questions or feedback, please let us know ({{ contact_email }}).\r\n\r\nKind regards,\r\nthe Evaluation Team\r\n\r\n(This is an automated message.)", + "html_content": "{% load evaluation_filters %}\r\n(English version below)


\r\n\r\n\r\nHallo {{ user.first_name }},

\r\n\r\ndie folgenden Evaluierungsergebnisse wurden soeben veröffentlicht:\r\n
\r\n\r\nDie Ergebnisse können auf EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %} eingesehen werden.
\r\n{% if user.needs_login_key and login_url %}\r\nHier klicken zum Anmelden: {{ login_url }}
\r\n{% elif user.needs_login_key %}\r\nEin Link zum Anmelden wird per E-Mail zugesendet.
\r\n{% endif %}
\r\n\r\nBei Fragen und Rückmeldungen stehen wir gerne zur Verfügung ({{ contact_email }}).

\r\n\r\nFreundliche Grüße,
\r\ndas Evaluierungsteam

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear {{ user.first_name }},

\r\n\r\nthe results of the following evaluations have just been published:\r\n
\r\n\r\nYou can view the results on EvaP{% if not user.needs_login_key %} ({{ page_url }}){% endif %}.
\r\n{% if user.needs_login_key and login_url %}\r\nClick here to login: {{ login_url }}
\r\n{% elif user.needs_login_key %}\r\nWe will send you a one-time login URL in a separate email.
\r\n{% endif %}
\r\n\r\nIf you have any questions or feedback, please let us know ({{ contact_email }}).

\r\n\r\nKind regards,
\r\nthe Evaluation Team

\r\n\r\n(This is an automated message.)" } }, { - "model": "evaluation.evaluation", - "pk": 1668, + "model": "evaluation.emailtemplate", + "pk": 9, "fields": { - "state": 10, - "course": 56, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "penelope.covert@institution.example.com" - ], - [ - "corrine.kell@institution.example.com" - ], - [ - "minerva.moe@institution.example.com" - ], - [ - "gidget.stern@institution.example.com" - ], - [ - "doyle.stump@institution.example.com" - ], - [ - "irwin.tompkins@institution.example.com" - ] - ], - "voters": [] + "name": "Text Answer Review Reminder", + "subject": "[EvaP] Bitte Textantworten überprüfen / Please review text answers", + "plain_content": "(English version below)\r\n\r\n\r\nHallo {{ user.first_name }},\r\n\r\nes gibt noch nicht überprüfte Textantworten für eine oder mehrere Evaluierungen, bei denen der Evaluierungszeitraum abgelaufen ist und nicht mehr auf Notenveröffentlichungen gewartet werden muss. Bitte überprüfe die Textantworten für diese Evaluierungen möglichst bald:\r\n{% for evaluation, url in evaluation_url_tuples %} - {{ evaluation.full_name_de }} ({{ url }})\r\n{% endfor %}\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)\r\n\r\n\r\n--\r\n\r\n\r\nDear {{ user.first_name }},\r\n\r\nthere are text answers not yet reviewed for one or more evaluations where the evaluation period has ended and there is no need to wait for grade publishing. Please review the text answers for these evaluations as soon as possible:\r\n{% for evaluation, url in evaluation_url_tuples %} - {{ evaluation.full_name_en }} ({{ url }})\r\n{% endfor %}\r\n\r\n(This is an automated message.)", + "html_content": "(English version below)


\r\n\r\n\r\nHallo {{ user.first_name }},

\r\n\r\nes gibt noch nicht überprüfte Textantworten für eine oder mehrere Evaluierungen, bei denen der Evaluierungszeitraum abgelaufen ist und nicht mehr auf Notenveröffentlichungen gewartet werden muss. Bitte überprüfe die Textantworten für diese Evaluierungen möglichst bald:\r\n

\r\n\r\n(Dies ist eine automatisch versendete E-Mail.)

\r\n\r\n


\r\n\r\nDear {{ user.first_name }},

\r\n\r\nthere are text answers not yet reviewed for one or more evaluations where the evaluation period has ended and there is no need to wait for grade publishing. Please review the text answers for these evaluations as soon as possible:\r\n

\r\n\r\n(This is an automated message.)" } }, { - "model": "evaluation.evaluation", - "pk": 1673, + "model": "evaluation.votetimestamp", + "pk": 1, "fields": { - "state": 50, - "course": 140, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-06-01T00:00:00", - "vote_end_date": "2099-12-31", - "allow_editors_to_edit": false, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "terisa.bottoms@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "elissa.fowler@institution.example.com" - ], - [ - "kaitlin.hamblin@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "student@institution.example.com" - ], - [ - "lelia.worley@institution.example.com" - ] - ], - "voters": [ - [ - "terisa.bottoms@institution.example.com" - ], - [ - "kirstin.carbone@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ] - ] + "evaluation": 347, + "timestamp": "2024-05-07T00:19:49" } -}, -{ - "model": "evaluation.evaluation", - "pk": 1679, - "fields": { - "state": 80, - "course": 32, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 84, - "_voter_count": 51, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-05", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "elfriede.aguiar@institution.example.com" - ], - [ - "alisa.askew@institution.example.com" - ], - [ - "tamatha.bivens@institution.example.com" - ], - [ - "herta.bourne@institution.example.com" - ], - [ - "kristi.boykin@institution.example.com" - ], - [ - "christine.brinkley@institution.example.com" - ], - [ - "marquis.brody@institution.example.com" - ], - [ - "jerrell.bunnell@institution.example.com" - ], - [ - "josefa.burkholder@institution.example.com" - ], - [ - "kellye.cobb@institution.example.com" - ], - [ - "johnsie.conrad@institution.example.com" - ], - [ - "leslee.copeland@institution.example.com" - ], - [ - "ngan.corbin@institution.example.com" - ], - [ - "donetta.dempsey@institution.example.com" - ], - [ - "catherine.dillon@institution.example.com" - ], - [ - "thomas.echols@institution.example.com" - ], - [ - "dalton.everson@institution.example.com" - ], - [ - "levi.findley@institution.example.com" - ], - [ - "leola.flannery@institution.example.com" - ], - [ - "hollie.gallardo@institution.example.com" - ], - [ - "maryln.galvan@institution.example.com" - ], - [ - "cherlyn.gillette@institution.example.com" - ], - [ - "miss.gorham@institution.example.com" - ], - [ - "myrna.grant@institution.example.com" - ], - [ - "marybeth.groff@institution.example.com" - ], - [ - "tyrone.guay@institution.example.com" - ], - [ - "karoline.hare@institution.example.com" - ], - [ - "aurea.hay@institution.example.com" - ], - [ - "diamond.hendrick@institution.example.com" - ], - [ - "vonnie.hills@institution.example.com" - ], - [ - "haywood.hogue@institution.example.com" - ], - [ - "lorna.hubert@institution.example.com" - ], - [ - "alfredo.hutchison@institution.example.com" - ], - [ - "paz.jewell@institution.example.com" - ], - [ - "keisha.jordon@institution.example.com" - ], - [ - "cyndi.kiefer@institution.example.com" - ], - [ - "felicia.lashley@institution.example.com" - ], - [ - "pedro.logue@institution.example.com" - ], - [ - "sherly.lord@institution.example.com" - ], - [ - "marcelo.lowell@institution.example.com" - ], - [ - "irmgard.loya@institution.example.com" - ], - [ - "penni.luong@institution.example.com" - ], - [ - "manager@institution.example.com" - ], - [ - "effie.martindale@institution.example.com" - ], - [ - "tai.maurer@institution.example.com" - ], - [ - "gaylord.mcafee@institution.example.com" - ], - [ - "fatimah.mcghee@institution.example.com" - ], - [ - "xavier.mckay@institution.example.com" - ], - [ - "adriane.newby@institution.example.com" - ], - [ - "leda.oakes@institution.example.com" - ], - [ - "ardella.orr@institution.example.com" - ], - [ - "latasha.pham@institution.example.com" - ], - [ - "eleanor.pinkston@institution.example.com" - ], - [ - "lenard.post@institution.example.com" - ], - [ - "sandra.pulido@institution.example.com" - ], - [ - "yoko.rafferty@institution.example.com" - ], - [ - "porfirio.rasmussen@institution.example.com" - ], - [ - "treasa.rinaldi@institution.example.com" - ], - [ - "claudine.ritchey@institution.example.com" - ], - [ - "tod.rowe@institution.example.com" - ], - [ - "neville.sales@institution.example.com" - ], - [ - "cyndy.salter@institution.example.com" - ], - [ - "cleopatra.see@institution.example.com" - ], - [ - "wm.sierra@institution.example.com" - ], - [ - "nan.simpkins@institution.example.com" - ], - [ - "chuck.singer@institution.example.com" - ], - [ - "celestina.slattery@institution.example.com" - ], - [ - "anneliese.somerville@institution.example.com" - ], - [ - "ossie.stamper@institution.example.com" - ], - [ - "leanne.storey@institution.example.com" - ], - [ - "russel.stroup@institution.example.com" - ], - [ - "clement.tibbetts@institution.example.com" - ], - [ - "mei.toro@institution.example.com" - ], - [ - "ingrid.trice@institution.example.com" - ], - [ - "brianna.true@institution.example.com" - ], - [ - "shandra.turner@institution.example.com" - ], - [ - "dayna.valles@institution.example.com" - ], - [ - "isabelle.veal@institution.example.com" - ], - [ - "taylor.washington@institution.example.com" - ], - [ - "stacy.webber@institution.example.com" - ], - [ - "suzi.wick@institution.example.com" - ], - [ - "lindsy.wilke@institution.example.com" - ], - [ - "reid.willingham@institution.example.com" - ], - [ - "len.zarate@institution.example.com" - ] - ], - "voters": [ - [ - "elfriede.aguiar@institution.example.com" - ], - [ - "alisa.askew@institution.example.com" - ], - [ - "herta.bourne@institution.example.com" - ], - [ - "kristi.boykin@institution.example.com" - ], - [ - "christine.brinkley@institution.example.com" - ], - [ - "marquis.brody@institution.example.com" - ], - [ - "jerrell.bunnell@institution.example.com" - ], - [ - "josefa.burkholder@institution.example.com" - ], - [ - "kellye.cobb@institution.example.com" - ], - [ - "ngan.corbin@institution.example.com" - ], - [ - "catherine.dillon@institution.example.com" - ], - [ - "dalton.everson@institution.example.com" - ], - [ - "levi.findley@institution.example.com" - ], - [ - "hollie.gallardo@institution.example.com" - ], - [ - "miss.gorham@institution.example.com" - ], - [ - "karoline.hare@institution.example.com" - ], - [ - "aurea.hay@institution.example.com" - ], - [ - "diamond.hendrick@institution.example.com" - ], - [ - "vonnie.hills@institution.example.com" - ], - [ - "haywood.hogue@institution.example.com" - ], - [ - "lorna.hubert@institution.example.com" - ], - [ - "keisha.jordon@institution.example.com" - ], - [ - "cyndi.kiefer@institution.example.com" - ], - [ - "pedro.logue@institution.example.com" - ], - [ - "marcelo.lowell@institution.example.com" - ], - [ - "penni.luong@institution.example.com" - ], - [ - "effie.martindale@institution.example.com" - ], - [ - "gaylord.mcafee@institution.example.com" - ], - [ - "adriane.newby@institution.example.com" - ], - [ - "ardella.orr@institution.example.com" - ], - [ - "latasha.pham@institution.example.com" - ], - [ - "eleanor.pinkston@institution.example.com" - ], - [ - "lenard.post@institution.example.com" - ], - [ - "claudine.ritchey@institution.example.com" - ], - [ - "tod.rowe@institution.example.com" - ], - [ - "cyndy.salter@institution.example.com" - ], - [ - "cleopatra.see@institution.example.com" - ], - [ - "nan.simpkins@institution.example.com" - ], - [ - "anneliese.somerville@institution.example.com" - ], - [ - "ossie.stamper@institution.example.com" - ], - [ - "russel.stroup@institution.example.com" - ], - [ - "clement.tibbetts@institution.example.com" - ], - [ - "ingrid.trice@institution.example.com" - ], - [ - "brianna.true@institution.example.com" - ], - [ - "shandra.turner@institution.example.com" - ], - [ - "isabelle.veal@institution.example.com" - ], - [ - "taylor.washington@institution.example.com" - ], - [ - "stacy.webber@institution.example.com" - ], - [ - "suzi.wick@institution.example.com" - ], - [ - "lindsy.wilke@institution.example.com" - ], - [ - "reid.willingham@institution.example.com" - ] - ] +}, +{ + "model": "evaluation.votetimestamp", + "pk": 2, + "fields": { + "evaluation": 347, + "timestamp": "2024-05-11T01:33:38" } }, { - "model": "evaluation.evaluation", - "pk": 1682, + "model": "evaluation.votetimestamp", + "pk": 3, "fields": { - "state": 50, - "course": 111, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-01-01T00:00:00", - "vote_end_date": "2099-12-31", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "jeremy.carrington@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "alton.smalley@institution.example.com" - ], - [ - "madelyn.walker@institution.example.com" - ] - ], - "voters": [ - [ - "jeremy.carrington@institution.example.com" - ], - [ - "lachelle.hermann@institution.example.com" - ], - [ - "alton.smalley@institution.example.com" - ] - ] + "evaluation": 347, + "timestamp": "2024-05-23T06:09:16" } }, { - "model": "evaluation.evaluation", - "pk": 1683, + "model": "evaluation.votetimestamp", + "pk": 4, "fields": { - "state": 10, - "course": 124, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "dannie.cochran@institution.example.com" - ], - [ - "wilmer.goodson@institution.example.com" - ], - [ - "chia.spalding@institution.example.com" - ], - [ - "gladis.vandiver@institution.example.com" - ], - [ - "florencia.washington@institution.example.com" - ] - ], - "voters": [] + "evaluation": 347, + "timestamp": "2024-05-03T19:27:37" } }, { - "model": "evaluation.evaluation", - "pk": 1684, + "model": "evaluation.votetimestamp", + "pk": 5, "fields": { - "state": 80, - "course": 68, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 19, - "_voter_count": 10, - "vote_start_datetime": "2024-03-07T00:00:00", - "vote_end_date": "2024-03-16", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "sandie.aiello@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "mickie.england@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "jarrett.flannery@institution.example.com" - ], - [ - "georgiana.jasper@institution.example.com" - ], - [ - "vernia.keel@institution.example.com" - ], - [ - "aide.kraft@institution.example.com" - ], - [ - "halley.landrum@institution.example.com" - ], - [ - "kellee.maldonado@institution.example.com" - ], - [ - "christia.manzo@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "del.mcnamee@institution.example.com" - ], - [ - "antonetta.middleton@institution.example.com" - ], - [ - "willard.perron@external.example.com" - ], - [ - "reva.root@institution.example.com" - ], - [ - "raymonde.stock@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ] - ], - "voters": [ - [ - "sandie.aiello@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "georgiana.jasper@institution.example.com" - ], - [ - "aide.kraft@institution.example.com" - ], - [ - "halley.landrum@institution.example.com" - ], - [ - "christia.manzo@institution.example.com" - ], - [ - "earlene.marquis@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ] - ] + "evaluation": 347, + "timestamp": "2024-05-02T00:11:57" } }, { - "model": "evaluation.evaluation", - "pk": 1687, + "model": "evaluation.votetimestamp", + "pk": 6, "fields": { - "state": 80, - "course": 42, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 81, - "_voter_count": 28, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-07", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "lulu.ackerman@institution.example.com" - ], - [ - "zane.aldridge@institution.example.com" - ], - [ - "herminia.alley@institution.example.com" - ], - [ - "echo.andre@institution.example.com" - ], - [ - "heide.andrew@institution.example.com" - ], - [ - "cleo.arreola@institution.example.com" - ], - [ - "brice.ault@institution.example.com" - ], - [ - "ayesha.bannister@institution.example.com" - ], - [ - "isaura.baptiste@institution.example.com" - ], - [ - "inge.baughman@institution.example.com" - ], - [ - "mirella.behrens@institution.example.com" - ], - [ - "elfrieda.bess@institution.example.com" - ], - [ - "giovanna.browne@institution.example.com" - ], - [ - "lashanda.brownlee@institution.example.com" - ], - [ - "cecille.buck@institution.example.com" - ], - [ - "donetta.burr@institution.example.com" - ], - [ - "dia.bussey@institution.example.com" - ], - [ - "juliane.call@institution.example.com" - ], - [ - "rosendo.carlton@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "debra.chesser@institution.example.com" - ], - [ - "raelene.clancy@institution.example.com" - ], - [ - "daniel.cortez@institution.example.com" - ], - [ - "elenora.crawford@institution.example.com" - ], - [ - "scotty.daily@institution.example.com" - ], - [ - "cyndy.david@institution.example.com" - ], - [ - "eryn.devore@institution.example.com" - ], - [ - "sheryl.dow@institution.example.com" - ], - [ - "sherryl.dozier@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "wes.eaton@external.example.com" - ], - [ - "haley.engle@institution.example.com" - ], - [ - "lilia.erwin@institution.example.com" - ], - [ - "reva.farr@institution.example.com" - ], - [ - "ivana.ferro@institution.example.com" - ], - [ - "dwayne.fortier@institution.example.com" - ], - [ - "rasheeda.glynn@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "haydee.greco@institution.example.com" - ], - [ - "broderick.greenberg@institution.example.com" - ], - [ - "tyrone.guay@institution.example.com" - ], - [ - "yetta.heck@institution.example.com" - ], - [ - "freddy.hitt@institution.example.com" - ], - [ - "carylon.hoffmann@institution.example.com" - ], - [ - "haywood.hogue@institution.example.com" - ], - [ - "enrique.horne@institution.example.com" - ], - [ - "verdell.joyner@institution.example.com" - ], - [ - "giovanni.leger@institution.example.com" - ], - [ - "tanya.maple@institution.example.com" - ], - [ - "brent.mattson@institution.example.com" - ], - [ - "thi.mcallister@institution.example.com" - ], - [ - "jill.mccauley@institution.example.com" - ], - [ - "brant.mcduffie@institution.example.com" - ], - [ - "domingo.mcnutt@institution.example.com" - ], - [ - "deidre.metzler@institution.example.com" - ], - [ - "maricruz.nall@institution.example.com" - ], - [ - "corinne.neff@institution.example.com" - ], - [ - "freida.ness@institution.example.com" - ], - [ - "maye.noonan@institution.example.com" - ], - [ - "emmy.norwood@institution.example.com" - ], - [ - "hugh.oliver@institution.example.com" - ], - [ - "cierra.oreilly@institution.example.com" - ], - [ - "lasonya.phillip@institution.example.com" - ], - [ - "toshia.piazza@institution.example.com" - ], - [ - "arletha.picard@institution.example.com" - ], - [ - "beverley.pitcher@institution.example.com" - ], - [ - "karri.putnam@institution.example.com" - ], - [ - "porfirio.rasmussen@institution.example.com" - ], - [ - "charlyn.robins@institution.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "francene.sabo@institution.example.com" - ], - [ - "lin.sales@institution.example.com" - ], - [ - "refugia.soliz@institution.example.com" - ], - [ - "nicki.spear@institution.example.com" - ], - [ - "leroy.surratt@institution.example.com" - ], - [ - "yi.thurman@institution.example.com" - ], - [ - "halina.tobias@institution.example.com" - ], - [ - "shelia.turney@institution.example.com" - ], - [ - "carma.watters@institution.example.com" - ], - [ - "star.west@institution.example.com" - ], - [ - "virgen.willingham@institution.example.com" - ] - ], - "voters": [ - [ - "lulu.ackerman@institution.example.com" - ], - [ - "heide.andrew@institution.example.com" - ], - [ - "giovanna.browne@institution.example.com" - ], - [ - "donetta.burr@institution.example.com" - ], - [ - "juliane.call@institution.example.com" - ], - [ - "debra.chesser@institution.example.com" - ], - [ - "raelene.clancy@institution.example.com" - ], - [ - "scotty.daily@institution.example.com" - ], - [ - "cyndy.david@institution.example.com" - ], - [ - "eryn.devore@institution.example.com" - ], - [ - "haley.engle@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "carylon.hoffmann@institution.example.com" - ], - [ - "haywood.hogue@institution.example.com" - ], - [ - "enrique.horne@institution.example.com" - ], - [ - "jill.mccauley@institution.example.com" - ], - [ - "brant.mcduffie@institution.example.com" - ], - [ - "deidre.metzler@institution.example.com" - ], - [ - "corinne.neff@institution.example.com" - ], - [ - "toshia.piazza@institution.example.com" - ], - [ - "arletha.picard@institution.example.com" - ], - [ - "karri.putnam@institution.example.com" - ], - [ - "porfirio.rasmussen@institution.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "refugia.soliz@institution.example.com" - ], - [ - "shelia.turney@institution.example.com" - ], - [ - "star.west@institution.example.com" - ], - [ - "virgen.willingham@institution.example.com" - ] - ] + "evaluation": 347, + "timestamp": "2024-05-29T16:22:45" } }, { - "model": "evaluation.evaluation", - "pk": 1693, + "model": "evaluation.votetimestamp", + "pk": 7, "fields": { - "state": 20, - "course": 92, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-08-01T00:00:00", - "vote_end_date": "2024-08-31", - "allow_editors_to_edit": false, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "mable.craddock@institution.example.com" - ], - [ - "lyla.griffiths@institution.example.com" - ], - [ - "hilde.langston@institution.example.com" - ], - [ - "jere.marr@institution.example.com" - ], - [ - "anton.swank@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ], - [ - "mario.voigt@institution.example.com" - ] - ], - "voters": [] + "evaluation": 347, + "timestamp": "2024-05-16T06:15:26" } }, { - "model": "evaluation.evaluation", - "pk": 1694, + "model": "evaluation.votetimestamp", + "pk": 8, "fields": { - "state": 50, - "course": 89, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-06-01T00:00:00", - "vote_end_date": "2099-12-31", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "etta.child@institution.example.com" - ], - [ - "lilia.erwin@institution.example.com" - ], - [ - "yong.furr@institution.example.com" - ], - [ - "student@institution.example.com" - ] - ], - "voters": [ - [ - "etta.child@institution.example.com" - ] - ] + "evaluation": 347, + "timestamp": "2024-05-09T13:41:46" } }, { - "model": "evaluation.evaluation", - "pk": 1695, + "model": "evaluation.votetimestamp", + "pk": 9, "fields": { - "state": 80, - "course": 106, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 48, - "_voter_count": 17, - "vote_start_datetime": "2024-02-04T00:00:00", - "vote_end_date": "2024-02-16", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "crysta.ainsworth@institution.example.com" - ], - [ - "joi.almond@institution.example.com" - ], - [ - "sheena.arsenault@institution.example.com" - ], - [ - "eugenia.bauer@institution.example.com" - ], - [ - "ali.best@institution.example.com" - ], - [ - "verena.blaylock@institution.example.com" - ], - [ - "myrtice.bohannon@institution.example.com" - ], - [ - "maybelle.bolton@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "mirtha.cleveland@institution.example.com" - ], - [ - "shameka.dew@institution.example.com" - ], - [ - "rhona.earl@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "kristle.ewing@institution.example.com" - ], - [ - "concha.ezell@institution.example.com" - ], - [ - "corrinne.ferraro@institution.example.com" - ], - [ - "jene.fowlkes@institution.example.com" - ], - [ - "yong.furr@institution.example.com" - ], - [ - "monet.greenlee@institution.example.com" - ], - [ - "mitchel.heard@institution.example.com" - ], - [ - "bertram.hendrick@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "shanta.jay@institution.example.com" - ], - [ - "velda.kimble@institution.example.com" - ], - [ - "gertude.knotts@institution.example.com" - ], - [ - "mandie.lomax@institution.example.com" - ], - [ - "celsa.macias@institution.example.com" - ], - [ - "christia.manzo@institution.example.com" - ], - [ - "noma.mcdougall@institution.example.com" - ], - [ - "catharine.medeiros@institution.example.com" - ], - [ - "antonetta.middleton@institution.example.com" - ], - [ - "shemeka.nieves@institution.example.com" - ], - [ - "armand.person@institution.example.com" - ], - [ - "tyrell.pfeiffer@institution.example.com" - ], - [ - "elicia.rawlins@institution.example.com" - ], - [ - "shannon.reece@institution.example.com" - ], - [ - "enid.robb@institution.example.com" - ], - [ - "lorrine.robertson@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ], - [ - "bailey.roybal@institution.example.com" - ], - [ - "roxanna.sandlin@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "kristie.stump@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ], - [ - "kanesha.waggoner@institution.example.com" - ], - [ - "ute.ybarra@institution.example.com" - ] - ], - "voters": [ - [ - "salina.boykin@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "mirtha.cleveland@institution.example.com" - ], - [ - "rhona.earl@institution.example.com" - ], - [ - "elenora.ellis@institution.example.com" - ], - [ - "kristle.ewing@institution.example.com" - ], - [ - "yong.furr@institution.example.com" - ], - [ - "mitchel.heard@institution.example.com" - ], - [ - "criselda.henry@institution.example.com" - ], - [ - "christia.manzo@institution.example.com" - ], - [ - "antonetta.middleton@institution.example.com" - ], - [ - "armand.person@institution.example.com" - ], - [ - "bailey.roybal@institution.example.com" - ], - [ - "rebecca.schuler@institution.example.com" - ], - [ - "bari.soares@institution.example.com" - ], - [ - "kristie.stump@institution.example.com" - ], - [ - "esther.ulrich@institution.example.com" - ] - ] + "evaluation": 347, + "timestamp": "2024-05-29T13:03:12" } }, { - "model": "evaluation.evaluation", - "pk": 1696, + "model": "evaluation.votetimestamp", + "pk": 10, "fields": { - "state": 80, - "course": 110, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 18, - "_voter_count": 8, - "vote_start_datetime": "2024-02-05T00:00:00", - "vote_end_date": "2024-02-12", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "maybelle.bolton@institution.example.com" - ], - [ - "crysta.bounds@institution.example.com" - ], - [ - "salina.boykin@institution.example.com" - ], - [ - "asa.carlton@institution.example.com" - ], - [ - "cecile.caron@institution.example.com" - ], - [ - "mirtha.cleveland@institution.example.com" - ], - [ - "yong.furr@institution.example.com" - ], - [ - "monet.greenlee@institution.example.com" - ], - [ - "marcos.huang@institution.example.com" - ], - [ - "georgiana.jasper@institution.example.com" - ], - [ - "oneida.melendez@institution.example.com" - ], - [ - "marilynn.oconnor@institution.example.com" - ], - [ - "chauncey.rivera@institution.example.com" - ], - [ - "enid.robb@institution.example.com" - ], - [ - "hilda.rocha@institution.example.com" - ], - [ - "roxanna.sandlin@institution.example.com" - ], - [ - "adrianne.talley@institution.example.com" - ], - [ - "mauro.vergara@external.example.com" - ] - ], - "voters": [ - [ - "salina.boykin@institution.example.com" - ], - [ - "mirtha.cleveland@institution.example.com" - ], - [ - "yong.furr@institution.example.com" - ], - [ - "oneida.melendez@institution.example.com" - ], - [ - "marilynn.oconnor@institution.example.com" - ], - [ - "chauncey.rivera@institution.example.com" - ], - [ - "hilda.rocha@institution.example.com" - ], - [ - "adrianne.talley@institution.example.com" - ] - ] + "evaluation": 348, + "timestamp": "2024-05-02T12:24:13" } }, { - "model": "evaluation.evaluation", - "pk": 1697, + "model": "evaluation.votetimestamp", + "pk": 11, "fields": { - "state": 80, - "course": 36, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 76, - "_voter_count": 32, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "zane.aldridge@institution.example.com" - ], - [ - "herminia.alley@institution.example.com" - ], - [ - "echo.andre@institution.example.com" - ], - [ - "heide.andrew@institution.example.com" - ], - [ - "cleo.arreola@institution.example.com" - ], - [ - "ayesha.bannister@institution.example.com" - ], - [ - "isaura.baptiste@institution.example.com" - ], - [ - "inge.baughman@institution.example.com" - ], - [ - "mirella.behrens@institution.example.com" - ], - [ - "elfrieda.bess@institution.example.com" - ], - [ - "giovanna.browne@institution.example.com" - ], - [ - "lashanda.brownlee@institution.example.com" - ], - [ - "donetta.burr@institution.example.com" - ], - [ - "dia.bussey@institution.example.com" - ], - [ - "juliane.call@institution.example.com" - ], - [ - "rosendo.carlton@institution.example.com" - ], - [ - "alene.casas@institution.example.com" - ], - [ - "debra.chesser@institution.example.com" - ], - [ - "raelene.clancy@institution.example.com" - ], - [ - "daniel.cortez@institution.example.com" - ], - [ - "elenora.crawford@institution.example.com" - ], - [ - "scotty.daily@institution.example.com" - ], - [ - "cyndy.david@institution.example.com" - ], - [ - "eryn.devore@institution.example.com" - ], - [ - "sheryl.dow@institution.example.com" - ], - [ - "sherryl.dozier@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "haley.engle@institution.example.com" - ], - [ - "reva.farr@institution.example.com" - ], - [ - "hester.ferro@institution.example.com" - ], - [ - "ivana.ferro@institution.example.com" - ], - [ - "dwayne.fortier@institution.example.com" - ], - [ - "shakira.gilmer@institution.example.com" - ], - [ - "rasheeda.glynn@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "haydee.greco@institution.example.com" - ], - [ - "broderick.greenberg@institution.example.com" - ], - [ - "tyrone.guay@institution.example.com" - ], - [ - "yetta.heck@institution.example.com" - ], - [ - "freddy.hitt@institution.example.com" - ], - [ - "carylon.hoffmann@institution.example.com" - ], - [ - "haywood.hogue@institution.example.com" - ], - [ - "enrique.horne@institution.example.com" - ], - [ - "tami.isaac@institution.example.com" - ], - [ - "giovanni.leger@institution.example.com" - ], - [ - "tanya.maple@institution.example.com" - ], - [ - "jere.marr@institution.example.com" - ], - [ - "brent.mattson@institution.example.com" - ], - [ - "thi.mcallister@institution.example.com" - ], - [ - "jill.mccauley@institution.example.com" - ], - [ - "brant.mcduffie@institution.example.com" - ], - [ - "deidre.metzler@institution.example.com" - ], - [ - "maricruz.nall@institution.example.com" - ], - [ - "corinne.neff@institution.example.com" - ], - [ - "freida.ness@institution.example.com" - ], - [ - "maye.noonan@institution.example.com" - ], - [ - "emmy.norwood@institution.example.com" - ], - [ - "hugh.oliver@institution.example.com" - ], - [ - "cierra.oreilly@institution.example.com" - ], - [ - "lasonya.phillip@institution.example.com" - ], - [ - "toshia.piazza@institution.example.com" - ], - [ - "beverley.pitcher@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "karri.putnam@institution.example.com" - ], - [ - "porfirio.rasmussen@institution.example.com" - ], - [ - "charlyn.robins@institution.example.com" - ], - [ - "francene.sabo@institution.example.com" - ], - [ - "refugia.soliz@institution.example.com" - ], - [ - "anneliese.somerville@institution.example.com" - ], - [ - "leroy.surratt@institution.example.com" - ], - [ - "yi.thurman@institution.example.com" - ], - [ - "halina.tobias@institution.example.com" - ], - [ - "shelia.turney@institution.example.com" - ], - [ - "carma.watters@institution.example.com" - ], - [ - "virgen.willingham@institution.example.com" - ] - ], - "voters": [ - [ - "heide.andrew@institution.example.com" - ], - [ - "elfrieda.bess@institution.example.com" - ], - [ - "giovanna.browne@institution.example.com" - ], - [ - "donetta.burr@institution.example.com" - ], - [ - "debra.chesser@institution.example.com" - ], - [ - "raelene.clancy@institution.example.com" - ], - [ - "scotty.daily@institution.example.com" - ], - [ - "eryn.devore@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "dale.earnest@institution.example.com" - ], - [ - "haley.engle@institution.example.com" - ], - [ - "rasheeda.glynn@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "carylon.hoffmann@institution.example.com" - ], - [ - "haywood.hogue@institution.example.com" - ], - [ - "enrique.horne@institution.example.com" - ], - [ - "giovanni.leger@institution.example.com" - ], - [ - "brent.mattson@institution.example.com" - ], - [ - "thi.mcallister@institution.example.com" - ], - [ - "jill.mccauley@institution.example.com" - ], - [ - "brant.mcduffie@institution.example.com" - ], - [ - "deidre.metzler@institution.example.com" - ], - [ - "corinne.neff@institution.example.com" - ], - [ - "emmy.norwood@institution.example.com" - ], - [ - "cierra.oreilly@institution.example.com" - ], - [ - "toshia.piazza@institution.example.com" - ], - [ - "beverley.pitcher@institution.example.com" - ], - [ - "ileana.puente@institution.example.com" - ], - [ - "karri.putnam@institution.example.com" - ], - [ - "refugia.soliz@institution.example.com" - ], - [ - "shelia.turney@institution.example.com" - ], - [ - "virgen.willingham@institution.example.com" - ] - ] + "evaluation": 348, + "timestamp": "2024-05-25T19:09:52" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 12, + "fields": { + "evaluation": 348, + "timestamp": "2024-05-11T23:41:20" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 13, + "fields": { + "evaluation": 348, + "timestamp": "2024-05-30T21:17:46" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 14, + "fields": { + "evaluation": 348, + "timestamp": "2024-05-18T06:08:40" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 15, + "fields": { + "evaluation": 348, + "timestamp": "2024-05-03T18:12:06" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 16, + "fields": { + "evaluation": 348, + "timestamp": "2024-05-11T15:03:02" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 17, + "fields": { + "evaluation": 348, + "timestamp": "2024-05-13T05:31:39" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 18, + "fields": { + "evaluation": 1503, + "timestamp": "2024-05-13T19:12:47" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 19, + "fields": { + "evaluation": 1577, + "timestamp": "2024-05-05T21:46:10" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 20, + "fields": { + "evaluation": 1577, + "timestamp": "2024-05-25T19:28:09" } }, { - "model": "evaluation.evaluation", - "pk": 1698, + "model": "evaluation.votetimestamp", + "pk": 21, "fields": { - "state": 80, - "course": 101, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 12, - "_voter_count": 5, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "ayesha.bannister@institution.example.com" - ], - [ - "inge.baughman@institution.example.com" - ], - [ - "josefa.burkholder@institution.example.com" - ], - [ - "catherine.dillon@institution.example.com" - ], - [ - "haley.engle@institution.example.com" - ], - [ - "caryl.ivory@institution.example.com" - ], - [ - "giovanni.leger@institution.example.com" - ], - [ - "maye.noonan@institution.example.com" - ], - [ - "alta.omalley@institution.example.com" - ], - [ - "ardella.orr@institution.example.com" - ], - [ - "tod.rowe@institution.example.com" - ], - [ - "carma.watters@institution.example.com" - ] - ], - "voters": [ - [ - "josefa.burkholder@institution.example.com" - ], - [ - "catherine.dillon@institution.example.com" - ], - [ - "haley.engle@institution.example.com" - ], - [ - "giovanni.leger@institution.example.com" - ], - [ - "tod.rowe@institution.example.com" - ] - ] + "evaluation": 1577, + "timestamp": "2024-05-14T03:40:33" } }, { - "model": "evaluation.evaluation", - "pk": 1701, + "model": "evaluation.votetimestamp", + "pk": 22, "fields": { - "state": 80, - "course": 10, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 28, - "_voter_count": 16, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": false, - "participants": [ - [ - "maybelle.bolton@institution.example.com" - ], - [ - "crysta.bounds@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "almeta.cody@institution.example.com" - ], - [ - "benito.fuqua@institution.example.com" - ], - [ - "yong.furr@institution.example.com" - ], - [ - "cole.gamboa@institution.example.com" - ], - [ - "monet.greenlee@institution.example.com" - ], - [ - "laveta.grubbs@institution.example.com" - ], - [ - "mitchel.heard@institution.example.com" - ], - [ - "shayna.hyde@institution.example.com" - ], - [ - "georgiana.jasper@institution.example.com" - ], - [ - "hilde.langston@institution.example.com" - ], - [ - "marilynn.oconnor@institution.example.com" - ], - [ - "roxy.olds@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "marjory.park@external.example.com" - ], - [ - "elicia.rawlins@institution.example.com" - ], - [ - "shannon.reece@institution.example.com" - ], - [ - "randell.reis@institution.example.com" - ], - [ - "chauncey.rivera@institution.example.com" - ], - [ - "enid.robb@institution.example.com" - ], - [ - "danyel.robins@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ], - [ - "tara.snider@institution.example.com" - ], - [ - "jeannie.spears@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "kristie.stump@institution.example.com" - ] - ], - "voters": [ - [ - "maybelle.bolton@institution.example.com" - ], - [ - "lindsey.carranza@institution.example.com" - ], - [ - "almeta.cody@institution.example.com" - ], - [ - "benito.fuqua@institution.example.com" - ], - [ - "yong.furr@institution.example.com" - ], - [ - "monet.greenlee@institution.example.com" - ], - [ - "shayna.hyde@institution.example.com" - ], - [ - "hilde.langston@institution.example.com" - ], - [ - "marilynn.oconnor@institution.example.com" - ], - [ - "roxy.olds@institution.example.com" - ], - [ - "larraine.olson@institution.example.com" - ], - [ - "randell.reis@institution.example.com" - ], - [ - "chauncey.rivera@institution.example.com" - ], - [ - "carolyn.rose@institution.example.com" - ], - [ - "kymberly.strange@institution.example.com" - ], - [ - "kristie.stump@institution.example.com" - ] - ] + "evaluation": 1577, + "timestamp": "2024-05-11T19:45:23" } }, { - "model": "evaluation.evaluation", - "pk": 1706, + "model": "evaluation.votetimestamp", + "pk": 23, "fields": { - "state": 80, - "course": 25, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 81, - "_voter_count": 39, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-10", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "elfriede.aguiar@institution.example.com" - ], - [ - "alisa.askew@institution.example.com" - ], - [ - "tamatha.bivens@institution.example.com" - ], - [ - "herta.bourne@institution.example.com" - ], - [ - "kristi.boykin@institution.example.com" - ], - [ - "christine.brinkley@institution.example.com" - ], - [ - "marquis.brody@institution.example.com" - ], - [ - "jerrell.bunnell@institution.example.com" - ], - [ - "josefa.burkholder@institution.example.com" - ], - [ - "kellye.cobb@institution.example.com" - ], - [ - "johnsie.conrad@institution.example.com" - ], - [ - "leslee.copeland@institution.example.com" - ], - [ - "ngan.corbin@institution.example.com" - ], - [ - "elenora.crawford@institution.example.com" - ], - [ - "donetta.dempsey@institution.example.com" - ], - [ - "catherine.dillon@institution.example.com" - ], - [ - "thomas.echols@institution.example.com" - ], - [ - "dalton.everson@institution.example.com" - ], - [ - "levi.findley@institution.example.com" - ], - [ - "hollie.gallardo@institution.example.com" - ], - [ - "maryln.galvan@institution.example.com" - ], - [ - "cherlyn.gillette@institution.example.com" - ], - [ - "miss.gorham@institution.example.com" - ], - [ - "myrna.grant@institution.example.com" - ], - [ - "marybeth.groff@institution.example.com" - ], - [ - "karoline.hare@institution.example.com" - ], - [ - "aurea.hay@institution.example.com" - ], - [ - "diamond.hendrick@institution.example.com" - ], - [ - "vonnie.hills@institution.example.com" - ], - [ - "lorna.hubert@institution.example.com" - ], - [ - "alfredo.hutchison@institution.example.com" - ], - [ - "paz.jewell@institution.example.com" - ], - [ - "keisha.jordon@institution.example.com" - ], - [ - "cyndi.kiefer@institution.example.com" - ], - [ - "felicia.lashley@institution.example.com" - ], - [ - "pedro.logue@institution.example.com" - ], - [ - "sherly.lord@institution.example.com" - ], - [ - "marcelo.lowell@institution.example.com" - ], - [ - "irmgard.loya@institution.example.com" - ], - [ - "penni.luong@institution.example.com" - ], - [ - "manager@institution.example.com" - ], - [ - "effie.martindale@institution.example.com" - ], - [ - "tai.maurer@institution.example.com" - ], - [ - "gaylord.mcafee@institution.example.com" - ], - [ - "fatimah.mcghee@institution.example.com" - ], - [ - "xavier.mckay@institution.example.com" - ], - [ - "adriane.newby@institution.example.com" - ], - [ - "leda.oakes@institution.example.com" - ], - [ - "ardella.orr@institution.example.com" - ], - [ - "latasha.pham@institution.example.com" - ], - [ - "eleanor.pinkston@institution.example.com" - ], - [ - "lenard.post@institution.example.com" - ], - [ - "sandra.pulido@institution.example.com" - ], - [ - "yoko.rafferty@institution.example.com" - ], - [ - "treasa.rinaldi@institution.example.com" - ], - [ - "claudine.ritchey@institution.example.com" - ], - [ - "tod.rowe@institution.example.com" - ], - [ - "neville.sales@institution.example.com" - ], - [ - "cyndy.salter@institution.example.com" - ], - [ - "cleopatra.see@institution.example.com" - ], - [ - "wm.sierra@institution.example.com" - ], - [ - "nan.simpkins@institution.example.com" - ], - [ - "chuck.singer@institution.example.com" - ], - [ - "celestina.slattery@institution.example.com" - ], - [ - "anneliese.somerville@institution.example.com" - ], - [ - "ossie.stamper@institution.example.com" - ], - [ - "leanne.storey@institution.example.com" - ], - [ - "russel.stroup@institution.example.com" - ], - [ - "clement.tibbetts@institution.example.com" - ], - [ - "mei.toro@institution.example.com" - ], - [ - "ingrid.trice@institution.example.com" - ], - [ - "brianna.true@institution.example.com" - ], - [ - "shandra.turner@institution.example.com" - ], - [ - "dayna.valles@institution.example.com" - ], - [ - "isabelle.veal@institution.example.com" - ], - [ - "taylor.washington@institution.example.com" - ], - [ - "stacy.webber@institution.example.com" - ], - [ - "suzi.wick@institution.example.com" - ], - [ - "lindsy.wilke@institution.example.com" - ], - [ - "reid.willingham@institution.example.com" - ], - [ - "len.zarate@institution.example.com" - ] - ], - "voters": [ - [ - "elfriede.aguiar@institution.example.com" - ], - [ - "alisa.askew@institution.example.com" - ], - [ - "herta.bourne@institution.example.com" - ], - [ - "kristi.boykin@institution.example.com" - ], - [ - "christine.brinkley@institution.example.com" - ], - [ - "marquis.brody@institution.example.com" - ], - [ - "kellye.cobb@institution.example.com" - ], - [ - "ngan.corbin@institution.example.com" - ], - [ - "catherine.dillon@institution.example.com" - ], - [ - "levi.findley@institution.example.com" - ], - [ - "hollie.gallardo@institution.example.com" - ], - [ - "marybeth.groff@institution.example.com" - ], - [ - "aurea.hay@institution.example.com" - ], - [ - "vonnie.hills@institution.example.com" - ], - [ - "lorna.hubert@institution.example.com" - ], - [ - "keisha.jordon@institution.example.com" - ], - [ - "pedro.logue@institution.example.com" - ], - [ - "penni.luong@institution.example.com" - ], - [ - "effie.martindale@institution.example.com" - ], - [ - "gaylord.mcafee@institution.example.com" - ], - [ - "latasha.pham@institution.example.com" - ], - [ - "eleanor.pinkston@institution.example.com" - ], - [ - "lenard.post@institution.example.com" - ], - [ - "sandra.pulido@institution.example.com" - ], - [ - "claudine.ritchey@institution.example.com" - ], - [ - "tod.rowe@institution.example.com" - ], - [ - "cyndy.salter@institution.example.com" - ], - [ - "nan.simpkins@institution.example.com" - ], - [ - "celestina.slattery@institution.example.com" - ], - [ - "ossie.stamper@institution.example.com" - ], - [ - "russel.stroup@institution.example.com" - ], - [ - "clement.tibbetts@institution.example.com" - ], - [ - "ingrid.trice@institution.example.com" - ], - [ - "brianna.true@institution.example.com" - ], - [ - "shandra.turner@institution.example.com" - ], - [ - "isabelle.veal@institution.example.com" - ], - [ - "stacy.webber@institution.example.com" - ], - [ - "suzi.wick@institution.example.com" - ], - [ - "reid.willingham@institution.example.com" - ] - ] + "evaluation": 1577, + "timestamp": "2024-05-02T01:32:22" } }, { - "model": "evaluation.evaluation", - "pk": 1707, + "model": "evaluation.votetimestamp", + "pk": 24, "fields": { - "state": 80, - "course": 15, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 48, - "_voter_count": 9, - "vote_start_datetime": "2024-04-06T00:00:00", - "vote_end_date": "2024-04-13", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "zane.aldridge@institution.example.com" - ], - [ - "echo.andre@institution.example.com" - ], - [ - "heide.andrew@institution.example.com" - ], - [ - "cleo.arreola@institution.example.com" - ], - [ - "shaunna.barnard@institution.example.com" - ], - [ - "giovanna.browne@institution.example.com" - ], - [ - "cecille.buck@institution.example.com" - ], - [ - "rosendo.carlton@institution.example.com" - ], - [ - "zack.chaffin@institution.example.com" - ], - [ - "keva.cheng@institution.example.com" - ], - [ - "mable.craddock@institution.example.com" - ], - [ - "elenora.crawford@institution.example.com" - ], - [ - "cyndy.david@institution.example.com" - ], - [ - "sherryl.dozier@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "reva.farr@institution.example.com" - ], - [ - "ivana.ferro@institution.example.com" - ], - [ - "dwayne.fortier@institution.example.com" - ], - [ - "rasheeda.glynn@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "haydee.greco@institution.example.com" - ], - [ - "tyrone.guay@institution.example.com" - ], - [ - "freddy.hitt@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "giovanni.leger@institution.example.com" - ], - [ - "tanya.maple@institution.example.com" - ], - [ - "brent.mattson@institution.example.com" - ], - [ - "thi.mcallister@institution.example.com" - ], - [ - "jill.mccauley@institution.example.com" - ], - [ - "irving.mcdade@institution.example.com" - ], - [ - "brant.mcduffie@institution.example.com" - ], - [ - "domingo.mcnutt@institution.example.com" - ], - [ - "maricruz.nall@institution.example.com" - ], - [ - "corinne.neff@institution.example.com" - ], - [ - "freida.ness@institution.example.com" - ], - [ - "maye.noonan@institution.example.com" - ], - [ - "lasonya.phillip@institution.example.com" - ], - [ - "toshia.piazza@institution.example.com" - ], - [ - "beverley.pitcher@institution.example.com" - ], - [ - "karri.putnam@institution.example.com" - ], - [ - "porfirio.rasmussen@institution.example.com" - ], - [ - "christel.rayburn@institution.example.com" - ], - [ - "trey.ruby@institution.example.com" - ], - [ - "nicki.spear@institution.example.com" - ], - [ - "yong.staley@institution.example.com" - ], - [ - "gidget.stern@institution.example.com" - ], - [ - "halina.tobias@institution.example.com" - ], - [ - "marcia.trammell@institution.example.com" - ] - ], - "voters": [ - [ - "mable.craddock@institution.example.com" - ], - [ - "dominga.earley@institution.example.com" - ], - [ - "fran.goodrich@institution.example.com" - ], - [ - "kristyn.holcomb@institution.example.com" - ], - [ - "brent.mattson@institution.example.com" - ], - [ - "thi.mcallister@institution.example.com" - ], - [ - "jill.mccauley@institution.example.com" - ], - [ - "brant.mcduffie@institution.example.com" - ], - [ - "karri.putnam@institution.example.com" - ] - ] + "evaluation": 1577, + "timestamp": "2024-05-25T00:39:24" } }, { - "model": "evaluation.evaluation", - "pk": 1710, + "model": "evaluation.votetimestamp", + "pk": 25, "fields": { - "state": 80, - "course": 133, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 80, - "_voter_count": 42, - "vote_start_datetime": "2024-02-01T00:00:00", - "vote_end_date": "2024-02-14", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "elfriede.aguiar@institution.example.com" - ], - [ - "alisa.askew@institution.example.com" - ], - [ - "tamatha.bivens@institution.example.com" - ], - [ - "herta.bourne@institution.example.com" - ], - [ - "kristi.boykin@institution.example.com" - ], - [ - "christine.brinkley@institution.example.com" - ], - [ - "marquis.brody@institution.example.com" - ], - [ - "jerrell.bunnell@institution.example.com" - ], - [ - "josefa.burkholder@institution.example.com" - ], - [ - "kellye.cobb@institution.example.com" - ], - [ - "johnsie.conrad@institution.example.com" - ], - [ - "leslee.copeland@institution.example.com" - ], - [ - "ngan.corbin@institution.example.com" - ], - [ - "donetta.dempsey@institution.example.com" - ], - [ - "catherine.dillon@institution.example.com" - ], - [ - "thomas.echols@institution.example.com" - ], - [ - "dalton.everson@institution.example.com" - ], - [ - "levi.findley@institution.example.com" - ], - [ - "leola.flannery@institution.example.com" - ], - [ - "hollie.gallardo@institution.example.com" - ], - [ - "maryln.galvan@institution.example.com" - ], - [ - "cherlyn.gillette@institution.example.com" - ], - [ - "miss.gorham@institution.example.com" - ], - [ - "myrna.grant@institution.example.com" - ], - [ - "marybeth.groff@institution.example.com" - ], - [ - "karoline.hare@institution.example.com" - ], - [ - "aurea.hay@institution.example.com" - ], - [ - "diamond.hendrick@institution.example.com" - ], - [ - "vonnie.hills@institution.example.com" - ], - [ - "lorna.hubert@institution.example.com" - ], - [ - "alfredo.hutchison@institution.example.com" - ], - [ - "paz.jewell@institution.example.com" - ], - [ - "keisha.jordon@institution.example.com" - ], - [ - "cyndi.kiefer@institution.example.com" - ], - [ - "felicia.lashley@institution.example.com" - ], - [ - "pedro.logue@institution.example.com" - ], - [ - "sherly.lord@institution.example.com" - ], - [ - "marcelo.lowell@institution.example.com" - ], - [ - "irmgard.loya@institution.example.com" - ], - [ - "penni.luong@institution.example.com" - ], - [ - "manager@institution.example.com" - ], - [ - "effie.martindale@institution.example.com" - ], - [ - "tai.maurer@institution.example.com" - ], - [ - "gaylord.mcafee@institution.example.com" - ], - [ - "fatimah.mcghee@institution.example.com" - ], - [ - "xavier.mckay@institution.example.com" - ], - [ - "adriane.newby@institution.example.com" - ], - [ - "leda.oakes@institution.example.com" - ], - [ - "ardella.orr@institution.example.com" - ], - [ - "latasha.pham@institution.example.com" - ], - [ - "lenard.post@institution.example.com" - ], - [ - "sandra.pulido@institution.example.com" - ], - [ - "yoko.rafferty@institution.example.com" - ], - [ - "treasa.rinaldi@institution.example.com" - ], - [ - "claudine.ritchey@institution.example.com" - ], - [ - "tod.rowe@institution.example.com" - ], - [ - "neville.sales@institution.example.com" - ], - [ - "cyndy.salter@institution.example.com" - ], - [ - "cleopatra.see@institution.example.com" - ], - [ - "wm.sierra@institution.example.com" - ], - [ - "nan.simpkins@institution.example.com" - ], - [ - "chuck.singer@institution.example.com" - ], - [ - "celestina.slattery@institution.example.com" - ], - [ - "anneliese.somerville@institution.example.com" - ], - [ - "ossie.stamper@institution.example.com" - ], - [ - "leanne.storey@institution.example.com" - ], - [ - "russel.stroup@institution.example.com" - ], - [ - "clement.tibbetts@institution.example.com" - ], - [ - "mei.toro@institution.example.com" - ], - [ - "ingrid.trice@institution.example.com" - ], - [ - "brianna.true@institution.example.com" - ], - [ - "shandra.turner@institution.example.com" - ], - [ - "dayna.valles@institution.example.com" - ], - [ - "isabelle.veal@institution.example.com" - ], - [ - "taylor.washington@institution.example.com" - ], - [ - "stacy.webber@institution.example.com" - ], - [ - "suzi.wick@institution.example.com" - ], - [ - "lindsy.wilke@institution.example.com" - ], - [ - "reid.willingham@institution.example.com" - ], - [ - "len.zarate@institution.example.com" - ] - ], - "voters": [ - [ - "elfriede.aguiar@institution.example.com" - ], - [ - "alisa.askew@institution.example.com" - ], - [ - "kristi.boykin@institution.example.com" - ], - [ - "christine.brinkley@institution.example.com" - ], - [ - "marquis.brody@institution.example.com" - ], - [ - "jerrell.bunnell@institution.example.com" - ], - [ - "josefa.burkholder@institution.example.com" - ], - [ - "kellye.cobb@institution.example.com" - ], - [ - "ngan.corbin@institution.example.com" - ], - [ - "catherine.dillon@institution.example.com" - ], - [ - "dalton.everson@institution.example.com" - ], - [ - "levi.findley@institution.example.com" - ], - [ - "hollie.gallardo@institution.example.com" - ], - [ - "karoline.hare@institution.example.com" - ], - [ - "aurea.hay@institution.example.com" - ], - [ - "vonnie.hills@institution.example.com" - ], - [ - "lorna.hubert@institution.example.com" - ], - [ - "keisha.jordon@institution.example.com" - ], - [ - "cyndi.kiefer@institution.example.com" - ], - [ - "pedro.logue@institution.example.com" - ], - [ - "penni.luong@institution.example.com" - ], - [ - "effie.martindale@institution.example.com" - ], - [ - "gaylord.mcafee@institution.example.com" - ], - [ - "adriane.newby@institution.example.com" - ], - [ - "latasha.pham@institution.example.com" - ], - [ - "lenard.post@institution.example.com" - ], - [ - "sandra.pulido@institution.example.com" - ], - [ - "claudine.ritchey@institution.example.com" - ], - [ - "tod.rowe@institution.example.com" - ], - [ - "cyndy.salter@institution.example.com" - ], - [ - "cleopatra.see@institution.example.com" - ], - [ - "nan.simpkins@institution.example.com" - ], - [ - "celestina.slattery@institution.example.com" - ], - [ - "ossie.stamper@institution.example.com" - ], - [ - "russel.stroup@institution.example.com" - ], - [ - "clement.tibbetts@institution.example.com" - ], - [ - "ingrid.trice@institution.example.com" - ], - [ - "brianna.true@institution.example.com" - ], - [ - "shandra.turner@institution.example.com" - ], - [ - "taylor.washington@institution.example.com" - ], - [ - "stacy.webber@institution.example.com" - ], - [ - "suzi.wick@institution.example.com" - ] - ] + "evaluation": 1577, + "timestamp": "2024-05-28T19:24:29" } }, { - "model": "evaluation.evaluation", - "pk": 1712, + "model": "evaluation.votetimestamp", + "pk": 26, "fields": { - "state": 20, - "course": 45, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": false, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": null, - "_voter_count": null, - "vote_start_datetime": "2024-08-01T00:00:00", - "vote_end_date": "2024-08-31", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [ - [ - "donetta.burr@institution.example.com" - ], - [ - "evap@institution.example.com" - ], - [ - "jere.marr@institution.example.com" - ], - [ - "marya.metcalf@institution.example.com" - ], - [ - "carmelo.michael@institution.example.com" - ], - [ - "wade.ryan@institution.example.com" - ], - [ - "celesta.york@external.example.com" - ] - ], - "voters": [] + "evaluation": 1577, + "timestamp": "2024-05-21T05:43:29" } }, { - "model": "evaluation.evaluation", - "pk": 1713, + "model": "evaluation.votetimestamp", + "pk": 27, "fields": { - "state": 80, - "course": 136, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": true, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 31, - "_voter_count": 31, - "vote_start_datetime": "2023-11-01T00:00:00", - "vote_end_date": "2023-11-01", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": false, - "participants": [], - "voters": [] + "evaluation": 1577, + "timestamp": "2024-05-18T07:03:43" } }, { - "model": "evaluation.evaluation", - "pk": 1714, + "model": "evaluation.votetimestamp", + "pk": 28, "fields": { - "state": 70, - "course": 31, - "name_de": "", - "name_en": "", - "weight": 1, - "is_single_result": true, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": true, - "_participant_count": 50, - "_voter_count": 50, - "vote_start_datetime": "2023-10-01T00:00:00", - "vote_end_date": "2023-10-01", - "allow_editors_to_edit": false, - "wait_for_grade_upload_before_publishing": false, - "participants": [], - "voters": [] + "evaluation": 1600, + "timestamp": "2024-05-14T12:47:54" } }, { - "model": "evaluation.evaluation", - "pk": 1715, + "model": "evaluation.votetimestamp", + "pk": 29, "fields": { - "state": 80, - "course": 1, - "name_de": "CG quick", - "name_en": "CG quick", - "weight": 1, - "is_single_result": true, - "is_rewarded": true, - "is_midterm_evaluation": false, - "can_publish_text_results": false, - "_participant_count": 23, - "_voter_count": 23, - "vote_start_datetime": "2024-06-20T00:00:00", - "vote_end_date": "2024-06-20", - "allow_editors_to_edit": true, - "wait_for_grade_upload_before_publishing": true, - "participants": [], - "voters": [] + "evaluation": 1600, + "timestamp": "2024-05-05T16:04:27" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 30, + "fields": { + "evaluation": 1600, + "timestamp": "2024-05-10T04:58:38" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 31, + "fields": { + "evaluation": 1673, + "timestamp": "2016-07-23T19:19:13" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 32, + "fields": { + "evaluation": 1673, + "timestamp": "2021-05-24T05:33:10" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 33, + "fields": { + "evaluation": 1673, + "timestamp": "2015-10-31T12:39:08" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 34, + "fields": { + "evaluation": 1682, + "timestamp": "2016-09-20T00:45:07" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 35, + "fields": { + "evaluation": 1682, + "timestamp": "2023-07-13T23:17:07" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 36, + "fields": { + "evaluation": 1682, + "timestamp": "2016-04-05T13:11:54" + } +}, +{ + "model": "evaluation.votetimestamp", + "pk": 37, + "fields": { + "evaluation": 1694, + "timestamp": "2017-11-29T01:40:06" + } +}, +{ + "model": "rewards.rewardpointredemptionevent", + "pk": 1, + "fields": { + "name": "Big party", + "date": "2099-12-31", + "redeem_end_date": "2099-12-30" } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 1, "fields": { - "semester": 21, - "name_de": "3D-Computergrafik I", - "name_en": "3D-Computer Graphic I", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 846, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.413", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 2, "fields": { + "user_profile": 235, "semester": 19, - "name_de": "Advanced Data Profiling", - "name_en": "Advanced Data Profiling", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "kindra.hancock@external.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:23.424", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 3, "fields": { - "semester": 18, - "name_de": "Algorithmen und Techniken der Geovisualisierung", - "name_en": "Algorithms and Techniques for Geovisualization", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "henriette.park@institution.example.com" - ] - ] + "user_profile": 678, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.455", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 4, "fields": { + "user_profile": 270, "semester": 19, - "name_de": "Analyse & Visualisierung von 3D-Punktwolken", - "name_en": "Analysis and Visualization of 3D Point Clouds", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "chieko.lehman@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:23.463", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 5, "fields": { + "user_profile": 851, "semester": 19, - "name_de": "Automated Analysis of Formal Models", - "name_en": "Automated Analysis of Formal Models", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "luciana.graves@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:23.476", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", + "pk": 6, + "fields": { + "user_profile": 339, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.484", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", "pk": 7, "fields": { - "semester": 18, - "name_de": "BPMN Models to SQL Queries", - "name_en": "BPMN Models to SQL Queries", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "ingeborg.herring@institution.example.com" - ] - ] + "user_profile": 222, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.514", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 8, "fields": { - "semester": 21, - "name_de": "Beautiful Data", - "name_en": "Beautiful Data", - "type": 4, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 240, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.529", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 9, "fields": { - "semester": 21, - "name_de": "Betriebssysteme I", - "name_en": "Operating Systems I", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 355, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.536", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 10, "fields": { + "user_profile": 734, "semester": 19, - "name_de": "Bring your own project: IT-Projekte erfolgreich planen und managen", - "name_en": "Bring Your Own Project: How to plan and manage IT-projects successfully", - "type": 2, - "is_private": true, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "xuan.bustamante@external.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:23.541", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 11, "fields": { - "semester": 18, - "name_de": "Business Etikette - HPI Charm School", - "name_en": "Business Etiquette - HPI Charm School", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "harriet.rushing@institution.example.com" - ] - ] + "user_profile": 438, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.548", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 12, "fields": { - "semester": 17, - "name_de": "Business Etikette - HPI Charm School", - "name_en": "Business Etiquette - HPI Charm School", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "viola.barringer@institution.example.com" - ] - ] + "user_profile": 455, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.572", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", + "pk": 13, + "fields": { + "user_profile": 854, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.600", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", "pk": 14, "fields": { - "semester": 17, - "name_de": "Cloud Computing Technologien", - "name_en": "Cloud Computing Technologies", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "kindra.hancock@external.example.com" - ] - ] + "user_profile": 837, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.612", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 15, "fields": { - "semester": 18, - "name_de": "Cloud und Virtualisierung", - "name_en": "Cloud and Virtualization", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "luciana.graves@institution.example.com" - ] - ] + "user_profile": 368, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.617", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 16, "fields": { - "semester": 17, - "name_de": "Computergrafik II", - "name_en": "Computer Graphics II", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "user_profile": 862, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.636", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 17, "fields": { + "user_profile": 875, "semester": 19, - "name_de": "Computergrafik II", - "name_en": "Computer Graphics II", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "mariann.locke@external.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:23.646", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 18, "fields": { + "user_profile": 472, "semester": 19, - "name_de": "Creating Interactive Web-based Apps in the Context of eLearning", - "name_en": "Creating Interactive Web-based Apps in the Context of eLearning", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "evie.martz@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:23.651", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 19, "fields": { - "semester": 17, - "name_de": "Cybersecurity for the Masses", - "name_en": "Cybersecurity for the Masses", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "elena.kline@institution.example.com" - ] - ] + "user_profile": 541, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.680", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", + "pk": 20, + "fields": { + "user_profile": 412, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.720", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", "pk": 21, "fields": { + "user_profile": 475, "semester": 19, - "name_de": "Data Mining and Probabilistic Reasoning", - "name_en": "Data Mining and Probabilistic Reasoning", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "ingeborg.herring@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:23.726", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 22, "fields": { - "semester": 18, - "name_de": "Data Profiling and Data Cleansing", - "name_en": "Data Profiling and Data Cleansing", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "user_profile": 231, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.748", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 23, "fields": { - "semester": 21, - "name_de": "Datenbanksysteme I", - "name_en": "Database Systems I", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "ingeborg.herring@institution.example.com" - ] - ] + "user_profile": 245, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.769", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 24, "fields": { - "semester": 18, - "name_de": "Design Thinking Advanced Track", - "name_en": "Design Thinking Advanced Track", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "ranae.fry@external.example.com" - ] - ] + "user_profile": 282, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.802", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 25, "fields": { + "user_profile": 279, "semester": 19, - "name_de": "Design Thinking Advanced Track", - "name_en": "Design Thinking Advanced Track", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "amelia.handy@external.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:23.817", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 26, "fields": { + "user_profile": 889, "semester": 19, - "name_de": "Design Thinking Basic Track", - "name_en": "Design Thinking Basic Track", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "ingeborg.herring@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:23.837", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 27, "fields": { - "semester": 17, - "name_de": "Design Thinking Basic Track", - "name_en": "Design Thinking Basic Track", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "trudie.huntley@institution.example.com" - ] - ] + "user_profile": 503, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.844", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 28, "fields": { + "user_profile": 372, "semester": 19, - "name_de": "Designing Interactive Systems", - "name_en": "Designing Interactive Systems", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:23.852", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 29, "fields": { - "semester": 17, - "name_de": "Designing Interactive Systems", - "name_en": "Designing Interactive Systems", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "amelia.handy@external.example.com" - ] - ] + "user_profile": 873, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.911", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 30, "fields": { + "user_profile": 174, "semester": 19, - "name_de": "Drug Response Analysis on In-Memory Technology", - "name_en": "Drug Response Analysis on In-Memory Technology", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "luciana.graves@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:23.952", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 31, "fields": { - "semester": 21, - "name_de": "Effizienz und Langeweile", - "name_en": "Efficiency and Boredom", - "type": 5, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 3 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 705, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.959", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 32, "fields": { - "semester": 18, - "name_de": "Einführung in das Design Thinking", - "name_en": "Introduction Design Thinking", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "ingeborg.herring@institution.example.com" - ] - ] + "user_profile": 256, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.970", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 33, "fields": { - "semester": 17, - "name_de": "Einführung in das Design Thinking (BA)", - "name_en": "Introduction of Design Thinking (BA)", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "harriet.rushing@institution.example.com" - ] - ] + "user_profile": 754, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.978", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 34, "fields": { - "semester": 21, - "name_de": "Einführung in das Design Thinking (MA)", - "name_en": "Introduction Design Thinking (MA)", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "shayne.scruggs@external.example.com" - ] - ] + "user_profile": 711, + "semester": 19, + "granting_time": "2015-11-08T14:27:23.995", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 35, "fields": { + "user_profile": 424, "semester": 19, - "name_de": "Eingebettete Betriebssysteme", - "name_en": "Embedded Operating Systems", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "darlena.holliman@external.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:24.003", + "value": 3 } }, { - "model": "evaluation.course", + "model": "rewards.rewardpointgranting", "pk": 36, "fields": { - "semester": 18, - "name_de": "Entwurf und Implementierung digitaler Schaltungen mit VHDL", - "name_en": "Digital Circuit Design using VHDL", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "odis.cantu@external.example.com" - ] - ] + "user_profile": 849, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.009", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 37, + "fields": { + "user_profile": 771, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.035", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 38, + "fields": { + "user_profile": 682, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.040", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 39, + "fields": { + "user_profile": 332, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.045", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 40, + "fields": { + "user_profile": 706, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.072", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 41, + "fields": { + "user_profile": 275, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.086", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 42, + "fields": { + "user_profile": 452, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.091", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 43, + "fields": { + "user_profile": 848, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.101", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 44, + "fields": { + "user_profile": 878, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.125", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 45, + "fields": { + "user_profile": 249, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.153", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 46, + "fields": { + "user_profile": 494, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.160", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 47, + "fields": { + "user_profile": 887, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.174", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 48, + "fields": { + "user_profile": 728, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.198", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 49, + "fields": { + "user_profile": 221, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.209", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 50, + "fields": { + "user_profile": 638, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.219", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 51, + "fields": { + "user_profile": 712, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.224", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 52, + "fields": { + "user_profile": 857, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.264", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 53, + "fields": { + "user_profile": 297, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.270", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 54, + "fields": { + "user_profile": 507, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.281", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 55, + "fields": { + "user_profile": 405, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.295", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 56, + "fields": { + "user_profile": 544, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.319", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 57, + "fields": { + "user_profile": 329, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.323", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 58, + "fields": { + "user_profile": 917, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.330", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 59, + "fields": { + "user_profile": 714, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.341", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 60, + "fields": { + "user_profile": 905, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.374", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 61, + "fields": { + "user_profile": 136, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.381", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 62, + "fields": { + "user_profile": 692, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.386", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 63, + "fields": { + "user_profile": 389, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.393", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 64, + "fields": { + "user_profile": 657, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.405", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 65, + "fields": { + "user_profile": 704, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.410", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 66, + "fields": { + "user_profile": 916, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.428", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 67, + "fields": { + "user_profile": 244, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.432", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 68, + "fields": { + "user_profile": 375, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.454", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 69, + "fields": { + "user_profile": 545, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.460", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 70, + "fields": { + "user_profile": 838, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.489", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 71, + "fields": { + "user_profile": 413, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.500", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 72, + "fields": { + "user_profile": 345, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.528", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 73, + "fields": { + "user_profile": 224, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.533", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 74, + "fields": { + "user_profile": 319, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.549", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 75, + "fields": { + "user_profile": 220, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.563", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 76, + "fields": { + "user_profile": 253, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.572", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 77, + "fields": { + "user_profile": 502, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.586", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 78, + "fields": { + "user_profile": 41, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.604", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 79, + "fields": { + "user_profile": 160, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.628", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 80, + "fields": { + "user_profile": 892, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.642", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 81, + "fields": { + "user_profile": 555, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.668", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 82, + "fields": { + "user_profile": 242, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.676", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 83, + "fields": { + "user_profile": 230, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.683", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 84, + "fields": { + "user_profile": 911, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.688", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 37, + "model": "rewards.rewardpointgranting", + "pk": 85, "fields": { - "semester": 18, - "name_de": "Evolving Applications: Object -migration with Ruby and GemStone", - "name_en": "Evolving Applications: Object -migration with Ruby and GemStone", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "user_profile": 535, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.704", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 38, + "model": "rewards.rewardpointgranting", + "pk": 86, "fields": { + "user_profile": 364, "semester": 19, - "name_de": "Explorative Erstellung von Visualisierungen in einem Interaktiven Programmiersystem", - "name_en": "Exploratory Authoring of Interative Content in a Live Environment", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "luann.schulz@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:24.720", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 39, + "model": "rewards.rewardpointgranting", + "pk": 87, "fields": { + "user_profile": 881, "semester": 19, - "name_de": "Fachspezifisches Englisch (Level 1)", - "name_en": "Subject-specific English (Level 1)", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "arnold.lane@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:24.727", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 40, + "model": "rewards.rewardpointgranting", + "pk": 88, "fields": { - "semester": 21, - "name_de": "Fachspezifisches Englisch (Level 2)", - "name_en": "Subject-specific English (Level 2)", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "chieko.lehman@institution.example.com" - ] - ] + "user_profile": 907, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.743", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 41, + "model": "rewards.rewardpointgranting", + "pk": 89, "fields": { - "semester": 18, - "name_de": "Fachspezifisches Englisch (Level 2)", - "name_en": "Subject-specific English (Level 2)", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 252, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.786", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 42, + "model": "rewards.rewardpointgranting", + "pk": 90, "fields": { - "semester": 18, - "name_de": "Fachspezifisches Englisch (Level 3)", - "name_en": "Subject-Specific English (Level 3)", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "sunni.hollingsworth@institution.example.com" - ] - ] + "user_profile": 431, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.824", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 43, + "model": "rewards.rewardpointgranting", + "pk": 91, "fields": { - "semester": 18, - "name_de": "From Creative Ideas to Well-Founded Engineering", - "name_en": "From Creative Ideas to Well-Founded Engineering", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "sunni.hollingsworth@institution.example.com" - ] - ] + "user_profile": 500, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.830", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 44, + "model": "rewards.rewardpointgranting", + "pk": 92, "fields": { - "semester": 18, - "name_de": "Führungskompetenz", - "name_en": "Leadership Competence", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "viola.barringer@institution.example.com" - ] - ] + "user_profile": 377, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.834", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 45, + "model": "rewards.rewardpointgranting", + "pk": 93, "fields": { - "semester": 21, - "name_de": "Game Programming", - "name_en": "Game Programming", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "corinne.tolliver@institution.example.com" - ] - ] + "user_profile": 492, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.893", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 46, + "model": "rewards.rewardpointgranting", + "pk": 94, "fields": { + "user_profile": 388, "semester": 19, - "name_de": "Game Programming", - "name_en": "Game Programming", - "type": 5, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:24.897", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 47, + "model": "rewards.rewardpointgranting", + "pk": 95, "fields": { - "semester": 21, - "name_de": "Gamification für openHPI", - "name_en": "Gamification für openHPI", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "sandee.coker@institution.example.com" - ] - ] + "user_profile": 522, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.902", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 48, + "model": "rewards.rewardpointgranting", + "pk": 96, "fields": { + "user_profile": 550, "semester": 19, - "name_de": "Geovisualisierung", - "name_en": "Geo-Visualization", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "elena.kline@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:24.933", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 49, + "model": "rewards.rewardpointgranting", + "pk": 97, "fields": { - "semester": 18, - "name_de": "Geovisualisierung", - "name_en": "Geo-Visualization", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "ingeborg.herring@institution.example.com" - ] - ] + "user_profile": 775, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.948", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 50, + "model": "rewards.rewardpointgranting", + "pk": 98, "fields": { - "semester": 17, - "name_de": "Global Team-Based Product Innovation & Engineering I, ME 310", - "name_en": "Global Team-Based Product Innovation & Engineering I, ME 310", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "ranae.fry@external.example.com" - ] - ] + "user_profile": 845, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.960", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 51, + "model": "rewards.rewardpointgranting", + "pk": 99, "fields": { + "user_profile": 740, "semester": 19, - "name_de": "Global Team-Based Product Innovation & Engineering I, ME 310", - "name_en": "Global Team-Based Product Innovation & Engineering I, ME 310", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "hugh.runyon@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:24.969", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 52, + "model": "rewards.rewardpointgranting", + "pk": 100, "fields": { - "semester": 18, - "name_de": "Global Team-Based Product Innovation & Engineering II, ME 310", - "name_en": "Global Team-Based Product Innovation & Engineering II, ME 310", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 914, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.977", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 53, + "model": "rewards.rewardpointgranting", + "pk": 101, "fields": { - "semester": 18, - "name_de": "Grafikprogrammierung mit OpenGL und C++", - "name_en": "Graphics Programming with OpenGL and C++", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 913, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.987", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 54, + "model": "rewards.rewardpointgranting", + "pk": 102, "fields": { - "semester": 17, - "name_de": "Grundlagen digitaler Systeme", - "name_en": "Foundations of Digital Systems", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "darlena.holliman@external.example.com" - ] - ] + "user_profile": 129, + "semester": 19, + "granting_time": "2015-11-08T14:27:24.991", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 55, + "model": "rewards.rewardpointgranting", + "pk": 103, "fields": { + "user_profile": 885, "semester": 19, - "name_de": "HCI Project Seminar on Interactive Fabrication and Muscle Interfaces", - "name_en": "HCI Project Seminar on Interactive Fabrication and Muscle Interfaces", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "junie.hicks@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.004", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 56, + "model": "rewards.rewardpointgranting", + "pk": 104, "fields": { - "semester": 21, - "name_de": "HCI Project Seminar on Kinect, Multitouch and Arduino", - "name_en": "HCI Project Seminar on Kinect, Multitouch and Arduino", - "type": 4, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "salena.soriano@institution.example.com" - ] - ] + "user_profile": 700, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.019", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 57, + "model": "rewards.rewardpointgranting", + "pk": 105, "fields": { - "semester": 18, - "name_de": "HCI Project Seminar on Motion Capture, On-Body Interaction & Fabrication", - "name_en": "HCI Project Seminar on Motion Capture, On-Body Interaction & Fabrication", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "chieko.lehman@institution.example.com" - ] - ] + "user_profile": 284, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.023", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 58, + "model": "rewards.rewardpointgranting", + "pk": 106, "fields": { - "semester": 18, - "name_de": "HCI Project: Underwater Interaction", - "name_en": "HCI Project: Underwater Interaction", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "user_profile": 350, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.047", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 59, + "model": "rewards.rewardpointgranting", + "pk": 107, "fields": { - "semester": 17, - "name_de": "HCI Project: Underwater Motion Capture using Depth Cameras", - "name_en": "HCI Project: Underwater Motion Capture using Depth Cameras", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 383, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.054", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 60, + "model": "rewards.rewardpointgranting", + "pk": 108, "fields": { + "user_profile": 756, "semester": 19, - "name_de": "IT-Entrepreneurship", - "name_en": "IT-Entrepreneurship", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "beau.saunders@external.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.068", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 61, + "model": "rewards.rewardpointgranting", + "pk": 109, "fields": { - "semester": 17, - "name_de": "IT-Entrepreneurship I", - "name_en": "IT-Entrepreneurship I", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "sonia.dominguez@external.example.com" - ] - ] + "user_profile": 891, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.072", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 63, + "model": "rewards.rewardpointgranting", + "pk": 110, "fields": { + "user_profile": 486, "semester": 19, - "name_de": "IT-Recht", - "name_en": "Legal Aspects of Information Technology", - "type": 5, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.076", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 64, + "model": "rewards.rewardpointgranting", + "pk": 111, "fields": { - "semester": 18, - "name_de": "Implementierung einer Mehrschichtenarchitektur für das Tumor-Dokumentationssystem GTDS", - "name_en": "An implementation of a multi tier architecture for cancer documentation system GTDS", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "kindra.hancock@external.example.com" - ] - ] + "user_profile": 839, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.113", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 65, + "model": "rewards.rewardpointgranting", + "pk": 112, "fields": { - "semester": 18, - "name_de": "In-Memory Data Management for Enhanced ERP", - "name_en": "In-Memory Data Management for Enhanced ERP", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "sandee.coker@institution.example.com" - ] - ] + "user_profile": 549, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.137", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 66, + "model": "rewards.rewardpointgranting", + "pk": 113, "fields": { - "semester": 17, - "name_de": "Indoor Visualization & Software Visualization", - "name_en": "Indoor Visualization & Software Visualization", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "salena.soriano@institution.example.com" - ] - ] + "user_profile": 520, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.142", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 67, + "model": "rewards.rewardpointgranting", + "pk": 114, "fields": { - "semester": 21, - "name_de": "Information Retrieval", - "name_en": "Information Retrieval", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "emilee.beavers@external.example.com" - ] - ] + "user_profile": 664, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.152", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 68, + "model": "rewards.rewardpointgranting", + "pk": 115, "fields": { - "semester": 18, - "name_de": "Informationssicherheit", - "name_en": "Information Security", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "sonia.dominguez@external.example.com" - ] - ] + "user_profile": 858, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.160", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 69, + "model": "rewards.rewardpointgranting", + "pk": 116, "fields": { - "semester": 18, - "name_de": "Interactive Representations of Data Structures and Algorithms", - "name_en": "Interactive Representations of Data Structures and Algorithms", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "amelia.handy@external.example.com" - ] - ] + "user_profile": 277, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.182", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 70, + "model": "rewards.rewardpointgranting", + "pk": 117, "fields": { + "user_profile": 444, "semester": 19, - "name_de": "Interaktionen auf 10.000 m²-Fußböden", - "name_en": "Interaction on 10.000m² interactive floors", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "elena.kline@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.188", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 71, + "model": "rewards.rewardpointgranting", + "pk": 118, "fields": { - "semester": 18, - "name_de": "Interaktive 3D-Modelle auf mobilen Geräten", - "name_en": "Interactive 3D Models on mobile Devices", - "type": 4, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "user_profile": 330, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.212", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 72, + "model": "rewards.rewardpointgranting", + "pk": 119, "fields": { + "user_profile": 896, "semester": 19, - "name_de": "Internet-Security - Weaknesses and Targets", - "name_en": "Internet-Security - Weaknesses and Targets", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "qiana.briscoe@external.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.227", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 73, + "model": "rewards.rewardpointgranting", + "pk": 120, "fields": { - "semester": 17, - "name_de": "Internet-Security - Weaknesses and Targets", - "name_en": "Internet-Security - Weaknesses and Targets", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "charity.leonard@institution.example.com" - ] - ] + "user_profile": 899, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.244", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 74, + "model": "rewards.rewardpointgranting", + "pk": 121, "fields": { - "semester": 17, - "name_de": "Investigating Practical MDE-Approches", - "name_en": "Investigating Practical MDE-Approches", - "type": 5, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "user_profile": 843, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.295", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 75, + "model": "rewards.rewardpointgranting", + "pk": 122, "fields": { + "user_profile": 261, "semester": 19, - "name_de": "Joint Data Profiling", - "name_en": "Joint Data Profiling", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.304", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 76, + "model": "rewards.rewardpointgranting", + "pk": 123, "fields": { + "user_profile": 852, "semester": 19, - "name_de": "Kliniksystemaufsatz basierend auf In-Memory-Technologie", - "name_en": "Prototypical clinical information system based on in-memroy technology", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "arnold.lane@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.324", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 77, + "model": "rewards.rewardpointgranting", + "pk": 124, "fields": { - "semester": 17, - "name_de": "Knowledge-intensive Business Processes", - "name_en": "Knowledge-intensive Business Processes", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 481, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.335", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 78, + "model": "rewards.rewardpointgranting", + "pk": 125, "fields": { - "semester": 17, - "name_de": "Konflikt- und Kommunikationsmanagement", - "name_en": "Conflict and Communication managment", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "harriet.rushing@institution.example.com" - ] - ] + "user_profile": 772, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.358", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 79, + "model": "rewards.rewardpointgranting", + "pk": 126, "fields": { + "user_profile": 314, "semester": 19, - "name_de": "Konzepte paralleler Programmierung", - "name_en": "Parallel Programming Concepts", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.370", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 80, + "model": "rewards.rewardpointgranting", + "pk": 127, "fields": { - "semester": 17, - "name_de": "Konzepte und Techniken der 3D-Visualisierung", - "name_en": "Concepts and Techniques of 3D Visualization", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "elena.kline@institution.example.com" - ] - ] + "user_profile": 895, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.387", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 81, + "model": "rewards.rewardpointgranting", + "pk": 128, "fields": { - "semester": 18, - "name_de": "Large Scale Duplicate Detection", - "name_en": "Large Scale Duplicate Detection", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "sonia.dominguez@external.example.com" - ] - ] + "user_profile": 479, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.405", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 82, + "model": "rewards.rewardpointgranting", + "pk": 129, "fields": { - "semester": 18, - "name_de": "Management Essentials", - "name_en": "Management Essentials", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "ingeborg.herring@institution.example.com" - ] - ] + "user_profile": 886, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.418", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 83, + "model": "rewards.rewardpointgranting", + "pk": 130, "fields": { + "user_profile": 842, "semester": 19, - "name_de": "Mathematik I - Diskrete Strukturen und Logik", - "name_en": "Discrete Structures and Logic", - "type": 5, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "laurence.tipton@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.423", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 84, + "model": "rewards.rewardpointgranting", + "pk": 131, "fields": { - "semester": 18, - "name_de": "Mathematik II", - "name_en": "Mathematics II", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "mariann.locke@external.example.com" - ] - ] + "user_profile": 888, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.430", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 85, + "model": "rewards.rewardpointgranting", + "pk": 132, "fields": { + "user_profile": 723, "semester": 19, - "name_de": "Model-Based Adaption for Embedded Systems", - "name_en": "Model-Based Adaption for Embedded Systems", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "evie.martz@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.434", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 86, + "model": "rewards.rewardpointgranting", + "pk": 133, "fields": { - "semester": 17, - "name_de": "Modellgetriebene Softwareentwicklung", - "name_en": "Model-driven Software Development", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "henriette.park@institution.example.com" - ] - ] + "user_profile": 868, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.454", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 87, + "model": "rewards.rewardpointgranting", + "pk": 134, "fields": { + "user_profile": 509, "semester": 19, - "name_de": "Modellierung I", - "name_en": "Modeling I", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "al.jean@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.459", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 88, + "model": "rewards.rewardpointgranting", + "pk": 135, "fields": { - "semester": 21, - "name_de": "Modellierung I", - "name_en": "Modeling I", - "type": 3, - "is_private": false, - "gets_no_grade_documents": true, - "programs": [ - 1 - ], - "responsibles": [ - [ - "amelia.handy@external.example.com" - ] - ] + "user_profile": 361, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.463", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 89, + "model": "rewards.rewardpointgranting", + "pk": 136, "fields": { - "semester": 21, - "name_de": "Modellierung II", - "name_en": "Modeling II", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 274, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.469", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 137, + "fields": { + "user_profile": 318, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.480", + "value": 3 + } +}, +{ + "model": "rewards.rewardpointgranting", + "pk": 138, + "fields": { + "user_profile": 257, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.484", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 90, + "model": "rewards.rewardpointgranting", + "pk": 139, "fields": { + "user_profile": 403, "semester": 19, - "name_de": "Modern Computer-aided Software Engineering", - "name_en": "Modern Computer-aided Software Engineering", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.493", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 91, + "model": "rewards.rewardpointgranting", + "pk": 140, "fields": { - "semester": 17, - "name_de": "Modulsysteme", - "name_en": "Modulsystems", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 853, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.503", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 92, + "model": "rewards.rewardpointgranting", + "pk": 141, "fields": { - "semester": 21, - "name_de": "Network Security in Practice", - "name_en": "Network Security in Practice", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "evap@institution.example.com" - ] - ] + "user_profile": 430, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.507", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 93, + "model": "rewards.rewardpointgranting", + "pk": 142, "fields": { - "semester": 17, - "name_de": "Persönlichkeits- und Selbstmanagement", - "name_en": "Personality and Selfmanagement", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "sandee.coker@institution.example.com" - ] - ] + "user_profile": 326, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.512", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 94, + "model": "rewards.rewardpointgranting", + "pk": 143, "fields": { - "semester": 18, - "name_de": "Physical Interaction across touch-sensitive rooms", - "name_en": "Physical Interaction across touch-sensitive rooms", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "gaylene.timmons@external.example.com" - ] - ] + "user_profile": 844, + "semester": 19, + "granting_time": "2015-11-08T14:27:25.527", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 96, + "model": "rewards.rewardpointgranting", + "pk": 144, "fields": { + "user_profile": 859, "semester": 19, - "name_de": "Privacy and Security in IPv6", - "name_en": "Privacy and Security in IPv6", - "type": 4, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lizabeth.steward@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.541", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 97, + "model": "rewards.rewardpointgranting", + "pk": 145, "fields": { + "user_profile": 457, "semester": 19, - "name_de": "Professionalisierte Lerntechniken", - "name_en": "Professionalized Learning Techniques", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "elena.kline@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:27:25.555", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 98, + "model": "rewards.rewardpointgranting", + "pk": 146, "fields": { + "user_profile": 270, "semester": 21, - "name_de": "Projektentwicklung und -management", - "name_en": "Project Development and Management", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lizabeth.steward@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:31:14.091", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 99, + "model": "rewards.rewardpointgranting", + "pk": 147, "fields": { - "semester": 17, - "name_de": "Projektentwicklung und -management (ohne Kolloquium)", - "name_en": "Project Development and Management (without Colloquium)", - "type": 4, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 447, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.097", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 100, + "model": "rewards.rewardpointgranting", + "pk": 148, "fields": { - "semester": 19, - "name_de": "Projektentwicklung und -management (ohne Kolloquium)", - "name_en": "Project Development and Management (without Colloquium)", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "user_profile": 393, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.115", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 101, + "model": "rewards.rewardpointgranting", + "pk": 149, "fields": { - "semester": 17, - "name_de": "Prozessorientierte Informationssysteme I", - "name_en": "Process oriented Information Systems I", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "mariann.locke@external.example.com" - ] - ] + "user_profile": 310, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.140", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 102, + "model": "rewards.rewardpointgranting", + "pk": 150, "fields": { - "semester": 19, - "name_de": "Prozessorientierte Informationssysteme I", - "name_en": "Process oriented Information Systems I", - "type": 5, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "henriette.park@institution.example.com" - ] - ] + "user_profile": 459, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.201", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 103, + "model": "rewards.rewardpointgranting", + "pk": 151, "fields": { - "semester": 18, - "name_de": "Präsentationsdesign und visuelle Kommunikation", - "name_en": "Präsentationsdesign und visuelle Kommunikation", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "donnetta.casillas@institution.example.com" - ] - ] + "user_profile": 472, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.242", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 104, + "model": "rewards.rewardpointgranting", + "pk": 152, "fields": { - "semester": 18, - "name_de": "Real-time Analysis of Genome Data", - "name_en": "Real-time Analysis of Genome Data", - "type": 5, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "chieko.lehman@institution.example.com" - ] - ] + "user_profile": 412, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.293", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 105, + "model": "rewards.rewardpointgranting", + "pk": 153, "fields": { - "semester": 18, - "name_de": "Recht für Ingenieure I", - "name_en": "Law for Engineers I", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "jospeh.thorp@external.example.com" - ] - ] + "user_profile": 446, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.313", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 106, + "model": "rewards.rewardpointgranting", + "pk": 154, "fields": { - "semester": 19, - "name_de": "Recht für Ingenieure II", - "name_en": "Law for Engineers II", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "amos.benoit@institution.example.com" - ] - ] + "user_profile": 528, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.320", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 107, + "model": "rewards.rewardpointgranting", + "pk": 155, "fields": { - "semester": 17, - "name_de": "Recognizing Cross-cutting Concerns by Revealing Task Contexts", - "name_en": "Recognizing Cross-cutting Concerns by Revealing Task Contexts", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lizabeth.steward@institution.example.com" - ] - ] + "user_profile": 372, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.376", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 108, + "model": "rewards.rewardpointgranting", + "pk": 156, "fields": { - "semester": 17, - "name_de": "Requirements Engineering: Elicitation and Negotiation", - "name_en": "Requirements Engineering: Elicitation and Negotiation", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lyndia.higdon@institution.example.com" - ] - ] + "user_profile": 74, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.467", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 109, + "model": "rewards.rewardpointgranting", + "pk": 157, "fields": { - "semester": 18, - "name_de": "Security Testing and Surveillance for Large-Scale Software", - "name_en": "Security Testing and Surveillance for Large-Scale Software", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "arron.tran@institution.example.com" - ] - ] + "user_profile": 526, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.492", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 110, + "model": "rewards.rewardpointgranting", + "pk": 158, "fields": { - "semester": 18, - "name_de": "Semantic Multimedia", - "name_en": "Semantic Multimedia", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lisandra.grace@external.example.com" - ] - ] + "user_profile": 831, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.546", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 111, + "model": "rewards.rewardpointgranting", + "pk": 159, "fields": { + "user_profile": 11, "semester": 21, - "name_de": "Semantic Web Technologien", - "name_en": "Semantic Web Technologien", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "ingeborg.herring@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:31:14.704", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 112, + "model": "rewards.rewardpointgranting", + "pk": 160, "fields": { - "semester": 19, - "name_de": "Semantische Erschließung des tele-TASK-Archivs", - "name_en": "Semantische Erschließung des tele-TASK-Archivs", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "user_profile": 386, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.715", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 113, + "model": "rewards.rewardpointgranting", + "pk": 161, "fields": { - "semester": 18, - "name_de": "Seminar des Forschungskollegs", - "name_en": "Research School Seminar", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "viola.barringer@institution.example.com" - ] - ] + "user_profile": 16, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.738", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 114, + "model": "rewards.rewardpointgranting", + "pk": 162, "fields": { - "semester": 19, - "name_de": "Sicherheit in komplexen IT-Landschaften", - "name_en": "Security in complex-IT-landscapes", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "henriette.park@institution.example.com" - ] - ] + "user_profile": 545, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.778", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 115, + "model": "rewards.rewardpointgranting", + "pk": 163, "fields": { - "semester": 17, - "name_de": "Social Reputation", - "name_en": "Social Reputation", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "hugh.runyon@institution.example.com" - ] - ] + "user_profile": 319, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.833", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 116, + "model": "rewards.rewardpointgranting", + "pk": 164, "fields": { - "semester": 18, - "name_de": "Software Adaption", - "name_en": "Software Adaption", - "type": 5, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "karine.prater@institution.example.com" - ] - ] + "user_profile": 230, + "semester": 21, + "granting_time": "2015-11-08T14:31:14.927", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 117, + "model": "rewards.rewardpointgranting", + "pk": 165, "fields": { - "semester": 19, - "name_de": "Software Engineering for Embedded Systems", - "name_en": "Software Engineering for Embedded Systems", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "user_profile": 534, + "semester": 21, + "granting_time": "2015-11-08T14:31:15.008", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 118, + "model": "rewards.rewardpointgranting", + "pk": 166, "fields": { - "semester": 18, - "name_de": "Software Profiling", - "name_en": "Software Profiling", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "chieko.lehman@institution.example.com" - ] - ] + "user_profile": 307, + "semester": 21, + "granting_time": "2015-11-08T14:31:15.022", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 119, + "model": "rewards.rewardpointgranting", + "pk": 167, "fields": { - "semester": 19, - "name_de": "Software-Analyse und Visualisierung", - "name_en": "Software Analysis and Visualization", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "merle.higdon@external.example.com" - ] - ] + "user_profile": 483, + "semester": 21, + "granting_time": "2015-11-08T14:31:15.074", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 120, + "model": "rewards.rewardpointgranting", + "pk": 168, "fields": { - "semester": 17, - "name_de": "Software-Design", - "name_en": "Software Design", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "ingeborg.herring@institution.example.com" - ] - ] + "user_profile": 402, + "semester": 21, + "granting_time": "2015-11-08T14:31:15.086", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 121, + "model": "rewards.rewardpointgranting", + "pk": 169, "fields": { - "semester": 18, - "name_de": "Software-as-a-Service and Multi-tenancy", - "name_en": "Software-as-a-Service and Multi-tenancy", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 522, + "semester": 21, + "granting_time": "2015-11-08T14:31:15.102", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 122, + "model": "rewards.rewardpointgranting", + "pk": 170, "fields": { - "semester": 19, - "name_de": "Softwarearchitektur", - "name_en": "Software Architecture", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 1, + "semester": 21, + "granting_time": "2015-11-08T14:31:15.310", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 124, + "model": "rewards.rewardpointgranting", + "pk": 171, "fields": { + "user_profile": 330, "semester": 21, - "name_de": "Softwaretechnik I", - "name_en": "Software Technology I", - "type": 4, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "ingeborg.herring@institution.example.com" - ] - ] + "granting_time": "2015-11-08T14:31:15.344", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 125, + "model": "rewards.rewardpointgranting", + "pk": 172, "fields": { - "semester": 19, - "name_de": "Softwaretechnik II", - "name_en": "Software Technology II", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "sunni.hollingsworth@institution.example.com" - ] - ] + "user_profile": 411, + "semester": 21, + "granting_time": "2015-11-08T14:31:15.376", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 126, + "model": "rewards.rewardpointgranting", + "pk": 173, "fields": { - "semester": 18, - "name_de": "Softwarevisualisierungsverfahren", - "name_en": "Software Visualization Techniques", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "ranae.fry@external.example.com" - ] - ] + "user_profile": 621, + "semester": 21, + "granting_time": "2015-11-08T14:31:15.431", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 127, + "model": "rewards.rewardpointgranting", + "pk": 174, "fields": { - "semester": 19, - "name_de": "Studienbegleitendes Seminar", - "name_en": "Accompanying Seminar", - "type": 4, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "ingeborg.herring@institution.example.com" - ] - ] + "user_profile": 318, + "semester": 21, + "granting_time": "2015-11-08T14:31:15.547", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 128, + "model": "rewards.rewardpointgranting", + "pk": 175, "fields": { - "semester": 18, - "name_de": "Telemedicine", - "name_en": "Telemedicine", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "pamula.sims@institution.example.com" - ] - ] + "user_profile": 257, + "semester": 21, + "granting_time": "2015-11-08T14:31:15.552", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 129, + "model": "rewards.rewardpointgranting", + "pk": 176, "fields": { - "semester": 19, - "name_de": "Theoretische Informatik I", - "name_en": "Theoretical Computer Science I", - "type": 5, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 320, + "semester": 21, + "granting_time": "2015-11-08T14:31:15.577", + "value": 3 } }, { - "model": "evaluation.course", - "pk": 130, + "model": "rewards.rewardpointredemption", + "pk": 1, "fields": { - "semester": 18, - "name_de": "Trends and Concepts in the Software Industry I: Inner Mechanics of In-Memory Databases", - "name_en": "Trends and Concepts in the Software Industry I: Inner Mechanics of In-Memory Databases", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "ranae.fry@external.example.com" - ] - ] + "user_profile": 310, + "redemption_time": "2015-11-08T14:33:43.674", + "value": 3, + "event": 1 } }, { - "model": "evaluation.course", - "pk": 131, + "model": "rewards.rewardpointredemption", + "pk": 2, "fields": { - "semester": 19, - "name_de": "Trends und Konzepte in der Software Industrie II - Next Generation Clinical Information Systems", - "name_en": "Trends and Concepts in Software Industry II - Next Generation Clinical Information Systems", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 393, + "redemption_time": "2015-11-08T14:34:00.945", + "value": 3, + "event": 1 } }, { - "model": "evaluation.course", - "pk": 132, + "model": "rewards.rewardpointredemption", + "pk": 3, "fields": { - "semester": 17, - "name_de": "Trends und Konzepte in der Software-Industrie II - Hauptspeicherdatenbanken für Geschäftsanwendungen.", - "name_en": "Trends and Concepts in the Software Industry II - Main Memory Databases for Enterprise Applications.", - "type": 1, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "user_profile": 339, + "redemption_time": "2015-11-08T14:34:14.636", + "value": 2, + "event": 1 } }, { - "model": "evaluation.course", - "pk": 133, + "model": "rewards.rewardpointredemption", + "pk": 4, "fields": { - "semester": 18, - "name_de": "VIP 2.0: Celebrity Exploration", - "name_en": "VIP 2.0: Celebrity Exploration", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "hugh.runyon@institution.example.com" - ] - ] + "user_profile": 851, + "redemption_time": "2015-11-08T14:34:28.035", + "value": 1, + "event": 1 } }, { - "model": "evaluation.course", - "pk": 134, + "model": "rewards.rewardpointredemption", + "pk": 5, "fields": { - "semester": 19, - "name_de": "Virtuelle Maschinen und Ausführungsumgebungen", - "name_en": "Virtuelle Maschinen und Ausführungsumgebungen", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "luciana.graves@institution.example.com" - ] - ] + "user_profile": 270, + "redemption_time": "2015-11-08T14:34:44.250", + "value": 2, + "event": 1 } }, { - "model": "evaluation.course", - "pk": 135, + "model": "rewards.rewardpointredemption", + "pk": 6, "fields": { - "semester": 18, - "name_de": "Visualisierungswerkzeug für Systemevolution", - "name_en": "A Visualization Tool for Software System Evolution", - "type": 5, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "elena.kline@institution.example.com" - ] - ] + "user_profile": 270, + "redemption_time": "2015-11-08T14:34:50.295", + "value": 4, + "event": 1 } }, { - "model": "evaluation.course", - "pk": 136, + "model": "rewards.rewardpointredemption", + "pk": 7, "fields": { - "semester": 21, - "name_de": "Wer spricht worüber?", - "name_en": "Who talks about what?", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 3 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "user_profile": 678, + "redemption_time": "2015-11-08T14:35:08.786", + "value": 3, + "event": 1 } }, { - "model": "evaluation.course", - "pk": 137, + "model": "rewards.semesteractivation", + "pk": 1, "fields": { - "semester": 17, - "name_de": "Wirtschaftliche Grundlagen", - "name_en": "Economic Basis", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "lahoma.gage@institution.example.com" - ] - ] + "semester": 19, + "is_active": true } }, { - "model": "evaluation.course", - "pk": 138, + "model": "rewards.semesteractivation", + "pk": 2, "fields": { - "semester": 19, - "name_de": "Überzeugend Präsentieren - der erste Eindruck zählt", - "name_en": "Presenting Succesfully - First Impression Counts", - "type": 4, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "latosha.moon@institution.example.com" - ] - ] + "semester": 21, + "is_active": true } }, { - "model": "evaluation.course", - "pk": 139, + "model": "student.textanswerwarning", + "pk": 1, "fields": { - "semester": 18, - "name_de": "Überzeugend Präsentieren - der erste Eindruck zählt", - "name_en": "Presenting Succesfully - First Impression Counts", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "lizabeth.steward@institution.example.com" - ] - ] + "warning_text_de": "Es sieht so aus, als ob du auf eine andere Antwort verweist. Alle Antworten werden unabhängig voneinander gespeichert, also werden andere nicht wissen, worauf du dich beziehst.", + "warning_text_en": "It looks like you are referencing another answer. All answers are saved independently of each other, so others won't know which answer you are referring to.", + "trigger_strings": "[\"s.o.\", \"s. o.\", \"siehe oben\", \"wie oben\", \"see above\", \"bereits erw\\u00e4hnt\", \"already stated\"]", + "order": 0 } }, { - "model": "evaluation.course", - "pk": 140, + "model": "grades.gradedocument", + "pk": 2, "fields": { - "semester": 21, - "name_de": "Überzeugend Präsentieren - noch besser auftreten", - "name_en": "Presenting Succesfully - How to Make an Even Better Impression", - "type": 3, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "henriette.park@institution.example.com" - ] - ] + "course": 9, + "file": "grades/1577/test_results_03.txt", + "type": "FIN", + "description_de": "Final grades", + "description_en": "Final grades", + "last_modified_time": "2016-02-01T21:56:14.372", + "last_modified_user": 946 } }, { - "model": "evaluation.course", - "pk": 141, + "model": "grades.gradedocument", + "pk": 3, "fields": { - "semester": 17, - "name_de": "Überzeugend Präsentieren I", - "name_en": "Effective Presentations I", - "type": 2, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 1 - ], - "responsibles": [ - [ - "responsible@institution.example.com" - ] - ] + "course": 23, + "file": "grades/1525/test_results_01.txt", + "type": "MID", + "description_de": "Midterm grades", + "description_en": "Midterm grades", + "last_modified_time": "2016-02-01T21:56:14.373", + "last_modified_user": 946 } }, { - "model": "evaluation.course", - "pk": 142, + "model": "grades.gradedocument", + "pk": 4, "fields": { - "semester": 17, - "name_de": "Überzeugend Präsentieren II", - "name_en": "Effective Presentations II", - "type": 4, - "is_private": false, - "gets_no_grade_documents": false, - "programs": [ - 2 - ], - "responsibles": [ - [ - "elena.kline@institution.example.com" - ] - ] + "course": 89, + "file": "grades/1694/test_results_02.txt", + "type": "MID", + "description_de": "Midterm grades", + "description_en": "Midterm grades", + "last_modified_time": "2016-02-01T21:56:14.374", + "last_modified_user": 946 } } ] From cea86176b8cfdd037486b9235777267b545feb7c Mon Sep 17 00:00:00 2001 From: Jonas Dittrich <58814480+Kakadus@users.noreply.github.com> Date: Mon, 23 Sep 2024 21:04:01 +0200 Subject: [PATCH 4/8] make eddy cho contributor --- evap/development/fixtures/test_data.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/evap/development/fixtures/test_data.json b/evap/development/fixtures/test_data.json index 97d3e6cd1..4356eb485 100644 --- a/evap/development/fixtures/test_data.json +++ b/evap/development/fixtures/test_data.json @@ -14738,7 +14738,7 @@ "role": 1, "textanswer_visibility": "GENERAL", "label": "", - "order": 1, + "order": 2, "questionnaires": [ 107, 92 @@ -19708,7 +19708,7 @@ "role": 1, "textanswer_visibility": "OWN", "label": "", - "order": 0, + "order": 1, "questionnaires": [ 107, 92 @@ -19803,6 +19803,19 @@ "questionnaires": [] } }, +{ + "model": "evaluation.contribution", + "pk": 4305, + "fields": { + "evaluation": 1499, + "contributor": 940, + "role": 0, + "textanswer_visibility": "OWN", + "label": "", + "order": 3, + "questionnaires": [] + } +}, { "model": "evaluation.question", "pk": 1, From afb3b268f31b14f581b5a2948f557d7c989317cd Mon Sep 17 00:00:00 2001 From: Jonas Dittrich <58814480+Kakadus@users.noreply.github.com> Date: Mon, 23 Sep 2024 21:04:30 +0200 Subject: [PATCH 5/8] remove email of eddy --- evap/development/fixtures/test_data.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evap/development/fixtures/test_data.json b/evap/development/fixtures/test_data.json index 4356eb485..80cc7746b 100644 --- a/evap/development/fixtures/test_data.json +++ b/evap/development/fixtures/test_data.json @@ -152682,7 +152682,7 @@ "is_superuser": false, "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-23T23:03:16.324", - "email": "eddy.cho@external.example.com", + "email": null, "title": "", "first_name_given": "Eddy", "first_name_chosen": "", From 321c5c86324080e9ccd7089708ced7eee6186ffb Mon Sep 17 00:00:00 2001 From: Jonas Dittrich <58814480+Kakadus@users.noreply.github.com> Date: Mon, 26 Aug 2024 22:16:43 +0200 Subject: [PATCH 6/8] remove unused ModelBackend --- evap/settings.py | 1 - 1 file changed, 1 deletion(-) diff --git a/evap/settings.py b/evap/settings.py index be20a246f..353ec69f2 100644 --- a/evap/settings.py +++ b/evap/settings.py @@ -286,7 +286,6 @@ class ManifestStaticFilesStorageWithJsReplacement(ManifestStaticFilesStorage): "evap.evaluation.auth.RequestAuthUserBackend", "evap.evaluation.auth.OpenIDAuthenticationBackend", "evap.evaluation.auth.EmailAuthenticationBackend", - "django.contrib.auth.backends.ModelBackend", ] DEFAULT_AUTO_FIELD = "django.db.models.AutoField" From dabc4b38d4e680d1c7ae62e4015e2a6730e2c5fe Mon Sep 17 00:00:00 2001 From: Jonas Dittrich <58814480+Kakadus@users.noreply.github.com> Date: Mon, 30 Sep 2024 22:43:32 +0200 Subject: [PATCH 7/8] introduce loaddata_unlogged command, which does not create additional logentries --- deployment/manage_autocompletion.sh | 2 +- .../management/commands/loaddata_unlogged.py | 12 ++++++++++++ evap/evaluation/models_logging.py | 15 ++++++++++++++- pyproject.toml | 2 +- 4 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 evap/evaluation/management/commands/loaddata_unlogged.py diff --git a/deployment/manage_autocompletion.sh b/deployment/manage_autocompletion.sh index 9083a7931..b7f9ad679 100755 --- a/deployment/manage_autocompletion.sh +++ b/deployment/manage_autocompletion.sh @@ -2,7 +2,7 @@ # generated using # ./manage.py | grep -v -E "^\[|^$" | tail -n +3 | sort | xargs -COMMANDS="admin_generator anonymize changepassword check clean_pyc clear_cache clearsessions collectstatic compile_pyc compilemessages create_command create_jobs create_template_tags createcachetable createsuperuser dbshell delete_squashed_migrations describe_form diffsettings drop_test_database dump_testdata dumpdata dumpscript export_emails find_template findstatic flush format generate_password generate_secret_key graph_models inspectdb lint list_model_info list_signals loaddata mail_debug makemessages makemigrations merge_model_instances migrate notes pipchecker precommit print_settings print_user_for_session refresh_results_cache reload_testdata remove_stale_contenttypes reset_db reset_schema run runjob runjobs runprofileserver runscript runserver runserver_plus scss send_reminders sendtestemail set_default_site set_fake_emails set_fake_passwords shell shell_plus show_template_tags show_urls showmigrations sqlcreate sqldiff sqldsn sqlflush sqlmigrate sqlsequencereset squashmigrations startapp startproject sync_s3 syncdata test testserver tools translate ts typecheck unreferenced_files update_evaluation_states update_permissions validate_templates" +COMMANDS="admin_generator anonymize changepassword check clean_pyc clear_cache clearsessions collectstatic compile_pyc compilemessages create_command create_jobs create_template_tags createcachetable createsuperuser dbshell delete_squashed_migrations describe_form diffsettings drop_test_database dump_testdata dumpdata dumpscript export_emails find_template findstatic flush format generate_password generate_secret_key graph_models inspectdb lint list_model_info list_signals loaddata loaddata_unlogged mail_debug makemessages makemigrations managestate merge_model_instances migrate notes optimizemigration pipchecker precommit print_settings print_user_for_session raise_test_exception refresh_results_cache reload_testdata remove_stale_contenttypes reset_db reset_schema run runjob runjobs runprofileserver runscript runserver runserver_plus scss send_reminders sendtestemail set_default_site set_fake_emails set_fake_passwords shell shell_plus show_template_tags show_urls showmigrations sqlcreate sqldiff sqldsn sqlflush sqlmigrate sqlsequencereset squashmigrations startapp startproject sync_s3 syncdata test testserver tools translate ts typecheck unreferenced_files update_evaluation_states update_permissions validate_templates" TS_COMMANDS="compile test render_pages" _managepy_complete() diff --git a/evap/evaluation/management/commands/loaddata_unlogged.py b/evap/evaluation/management/commands/loaddata_unlogged.py new file mode 100644 index 000000000..1f1522f28 --- /dev/null +++ b/evap/evaluation/management/commands/loaddata_unlogged.py @@ -0,0 +1,12 @@ +from django.core.management.commands.loaddata import Command as LoadDataCommand + +from evap.evaluation.models_logging import disable_logentries + + +class Command(LoadDataCommand): + args = "" + help = "Loads the test data without creating evaluation log entries." + + @disable_logentries() + def handle(self, *args, **options): + super().handle(*args, **options) diff --git a/evap/evaluation/models_logging.py b/evap/evaluation/models_logging.py index bcbaa6c55..2cdab1182 100644 --- a/evap/evaluation/models_logging.py +++ b/evap/evaluation/models_logging.py @@ -1,6 +1,8 @@ import itertools import threading from collections import defaultdict, namedtuple +from collections.abc import Iterator +from contextlib import contextmanager from datetime import date, datetime, time from enum import Enum from json import JSONEncoder @@ -19,6 +21,17 @@ from evap.evaluation.tools import capitalize_first +CREATE_LOGENTRIES = True + + +@contextmanager +def disable_logentries() -> Iterator[None]: + global CREATE_LOGENTRIES # noqa: PLW0603 + old_mode = CREATE_LOGENTRIES + CREATE_LOGENTRIES = False + yield + CREATE_LOGENTRIES = old_mode + class FieldActionType(str, Enum): M2M_ADD = "add" @@ -242,7 +255,7 @@ def _attach_log_entry_if_not_exists(self, *args, **kwargs): self._logentry = self._create_log_entry(*args, **kwargs) def _update_log(self, changes, action_type: InstanceActionType, store_in_db=True): - if not changes: + if not changes or not CREATE_LOGENTRIES: return self._attach_log_entry_if_not_exists(action_type) diff --git a/pyproject.toml b/pyproject.toml index a40022137..a4c67da03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -96,7 +96,7 @@ disable = [ "use-implicit-booleaness-not-comparison-to-string", # forces us to use less expressive code "use-implicit-booleaness-not-comparison-to-zero", # forces us to use less expressive code # the following are covered by ruff - "broad-exception-caught", "line-too-long", "unused-wildcard-import", "wildcard-import", "too-many-arguments", "too-many-statements", "too-many-return-statements", "too-many-branches", + "broad-exception-caught", "line-too-long", "unused-wildcard-import", "wildcard-import", "too-many-arguments", "too-many-statements", "too-many-return-statements", "too-many-branches", "global-statement" ] [tool.pylint.design] From 47a9abbb7599af4cefad375a631480a00fe85058 Mon Sep 17 00:00:00 2001 From: Jonas Dittrich <58814480+Kakadus@users.noreply.github.com> Date: Mon, 30 Sep 2024 22:44:37 +0200 Subject: [PATCH 8/8] use loaddata_unlogged command in production backup --- deployment/load_production_backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/load_production_backup.sh b/deployment/load_production_backup.sh index 45a96ac57..a2d957ba1 100755 --- a/deployment/load_production_backup.sh +++ b/deployment/load_production_backup.sh @@ -53,7 +53,7 @@ sudo -H -u "$USERNAME" "$ENVDIR/bin/python" manage.py collectstatic --noinput sudo -H -u "$USERNAME" "$ENVDIR/bin/python" manage.py reset_db "$CONDITIONAL_NOINPUT" sudo -H -u "$USERNAME" "$ENVDIR/bin/python" manage.py migrate sudo -H -u "$USERNAME" "$ENVDIR/bin/python" manage.py flush "$CONDITIONAL_NOINPUT" -sudo -H -u "$USERNAME" "$ENVDIR/bin/python" manage.py loaddata "$1" +sudo -H -u "$USERNAME" "$ENVDIR/bin/python" manage.py loaddata_unlogged "$1" sudo -H -u "$USERNAME" "$ENVDIR/bin/python" manage.py clear_cache --all -v=1 sudo -H -u "$USERNAME" "$ENVDIR/bin/python" manage.py refresh_results_cache