summaryrefslogtreecommitdiffstats
path: root/askbot/tests
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2013-01-10 09:21:00 -0600
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2013-01-10 09:21:00 -0600
commit31b4af444274fb0bfbf633f12a55e1208ef5ae01 (patch)
treec9c9964bcbec7a012cca4c9e66c9057dd2391248 /askbot/tests
parent24ef17c6a95c3f52bc2d39061e6ca1fe98b30d25 (diff)
parent3087781bbba06373797e3010f5ae78abcc9b380a (diff)
downloadaskbot-31b4af444274fb0bfbf633f12a55e1208ef5ae01.tar.gz
askbot-31b4af444274fb0bfbf633f12a55e1208ef5ae01.tar.bz2
askbot-31b4af444274fb0bfbf633f12a55e1208ef5ae01.zip
Merge branch 'master' into tag_subscription
Diffstat (limited to 'askbot/tests')
-rw-r--r--askbot/tests/page_load_tests.py9
-rw-r--r--askbot/tests/question_views_tests.py8
-rw-r--r--askbot/tests/reply_by_email_tests.py2
-rw-r--r--askbot/tests/test_data.json12264
4 files changed, 12 insertions, 12271 deletions
diff --git a/askbot/tests/page_load_tests.py b/askbot/tests/page_load_tests.py
index 91b8015d..c4ee8554 100644
--- a/askbot/tests/page_load_tests.py
+++ b/askbot/tests/page_load_tests.py
@@ -6,6 +6,7 @@ from django.core import management
from django.core.cache.backends.dummy import DummyCache
from django.core import cache
from django.utils import simplejson
+from django.utils.translation import activate as activate_language
import coffin
import coffin.template
@@ -20,7 +21,6 @@ from askbot.tests.utils import skipIf
from askbot.tests.utils import with_settings
-
def patch_jinja2():
from jinja2 import Template
ORIG_JINJA2_RENDERER = Template.render
@@ -54,6 +54,7 @@ class PageLoadTestCase(AskbotTestCase):
@classmethod
def setUpClass(cls):
management.call_command('flush', verbosity=0, interactive=False)
+ activate_language(settings.LANGUAGE_CODE)
management.call_command('askbot_add_test_content', verbosity=0, interactive=False)
@classmethod
@@ -104,6 +105,9 @@ class PageLoadTestCase(AskbotTestCase):
if hasattr(self.client, 'redirect_chain'):
print 'redirect chain: %s' % ','.join(self.client.redirect_chain)
+ if r.status_code != status_code:
+ print 'Error in status code for url: %s' % url
+
self.assertEqual(r.status_code, status_code)
if template and status_code != 302:
@@ -135,7 +139,8 @@ class PageLoadTestCase(AskbotTestCase):
response = self.client.get(reverse('index'), follow=True)
self.assertEqual(response.status_code, 200)
self.failUnless(len(response.redirect_chain) == 1)
- self.failUnless(response.redirect_chain[0][0].endswith('/questions/'))
+ redirect_url = response.redirect_chain[0][0]
+ self.failUnless(unicode(redirect_url).endswith('/questions/'))
self.assertTrue(isinstance(response.template, list))
self.assertIn('main_page.html', [t.name for t in response.template])
diff --git a/askbot/tests/question_views_tests.py b/askbot/tests/question_views_tests.py
index 223f65f6..9486b854 100644
--- a/askbot/tests/question_views_tests.py
+++ b/askbot/tests/question_views_tests.py
@@ -32,7 +32,7 @@ class PrivateQuestionViewsTests(AskbotTestCase):
response2 = self.client.get(response1['location'])
dom = BeautifulSoup(response2.content)
title = dom.find('h1').text
- self.assertTrue(const.POST_STATUS['private'] in title)
+ self.assertTrue(unicode(const.POST_STATUS['private']) in title)
question = models.Thread.objects.get(id=1)
self.assertEqual(question.title, self.qdata['title'])
self.assertFalse(models.Group.objects.get_global_group() in set(question.groups.all()))
@@ -54,7 +54,7 @@ class PrivateQuestionViewsTests(AskbotTestCase):
def test_publish_private_question(self):
question = self.post_question(user=self.user, is_private=True)
title = question.thread.get_title()
- self.assertTrue(const.POST_STATUS['private'] in title)
+ self.assertTrue(unicode(const.POST_STATUS['private']) in title)
data = self.qdata
#data['post_privately'] = 'false'
data['select_revision'] = 'false'
@@ -76,7 +76,7 @@ class PrivateQuestionViewsTests(AskbotTestCase):
def test_privatize_public_question(self):
question = self.post_question(user=self.user)
title = question.thread.get_title()
- self.assertFalse(const.POST_STATUS['private'] in title)
+ self.assertFalse(unicode(const.POST_STATUS['private']) in title)
data = self.qdata
data['post_privately'] = 'checked'
data['select_revision'] = 'false'
@@ -88,7 +88,7 @@ class PrivateQuestionViewsTests(AskbotTestCase):
dom = BeautifulSoup(response2.content)
title = dom.find('h1').text
self.assertFalse(models.Group.objects.get_global_group() in set(question.groups.all()))
- self.assertTrue(const.POST_STATUS['private'] in title)
+ self.assertTrue(unicode(const.POST_STATUS['private']) in title)
def test_private_checkbox_is_on_when_editing_private_question(self):
question = self.post_question(user=self.user, is_private=True)
diff --git a/askbot/tests/reply_by_email_tests.py b/askbot/tests/reply_by_email_tests.py
index 5353586c..ec63e38a 100644
--- a/askbot/tests/reply_by_email_tests.py
+++ b/askbot/tests/reply_by_email_tests.py
@@ -1,4 +1,4 @@
-from django.utils.translation import ugettext as _
+from django.utils.translation import ugettext_lazy as _
from askbot.models import ReplyAddress
from askbot.mail.lamson_handlers import PROCESS, VALIDATE_EMAIL, get_parts
from askbot.mail import extract_user_signature
diff --git a/askbot/tests/test_data.json b/askbot/tests/test_data.json
deleted file mode 100644
index b8050889..00000000
--- a/askbot/tests/test_data.json
+++ /dev/null
@@ -1,12264 +0,0 @@
-[
- {
- "pk": 22,
- "model": "auth.permission",
- "fields": {
- "codename": "add_logentry",
- "name": "Can add log entry",
- "content_type": 8
- }
- },
- {
- "pk": 23,
- "model": "auth.permission",
- "fields": {
- "codename": "change_logentry",
- "name": "Can change log entry",
- "content_type": 8
- }
- },
- {
- "pk": 24,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_logentry",
- "name": "Can delete log entry",
- "content_type": 8
- }
- },
- {
- "pk": 37,
- "model": "auth.permission",
- "fields": {
- "codename": "add_activity",
- "name": "Can add activity",
- "content_type": 13
- }
- },
- {
- "pk": 38,
- "model": "auth.permission",
- "fields": {
- "codename": "change_activity",
- "name": "Can change activity",
- "content_type": 13
- }
- },
- {
- "pk": 39,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_activity",
- "name": "Can delete activity",
- "content_type": 13
- }
- },
- {
- "pk": 34,
- "model": "auth.permission",
- "fields": {
- "codename": "add_activityauditstatus",
- "name": "Can add activity audit status",
- "content_type": 12
- }
- },
- {
- "pk": 35,
- "model": "auth.permission",
- "fields": {
- "codename": "change_activityauditstatus",
- "name": "Can change activity audit status",
- "content_type": 12
- }
- },
- {
- "pk": 36,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_activityauditstatus",
- "name": "Can delete activity audit status",
- "content_type": 12
- }
- },
- {
- "pk": 73,
- "model": "auth.permission",
- "fields": {
- "codename": "add_anonymousanswer",
- "name": "Can add anonymous answer",
- "content_type": 25
- }
- },
- {
- "pk": 74,
- "model": "auth.permission",
- "fields": {
- "codename": "change_anonymousanswer",
- "name": "Can change anonymous answer",
- "content_type": 25
- }
- },
- {
- "pk": 75,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_anonymousanswer",
- "name": "Can delete anonymous answer",
- "content_type": 25
- }
- },
- {
- "pk": 67,
- "model": "auth.permission",
- "fields": {
- "codename": "add_anonymousquestion",
- "name": "Can add anonymous question",
- "content_type": 23
- }
- },
- {
- "pk": 68,
- "model": "auth.permission",
- "fields": {
- "codename": "change_anonymousquestion",
- "name": "Can change anonymous question",
- "content_type": 23
- }
- },
- {
- "pk": 69,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_anonymousquestion",
- "name": "Can delete anonymous question",
- "content_type": 23
- }
- },
- {
- "pk": 70,
- "model": "auth.permission",
- "fields": {
- "codename": "add_answer",
- "name": "Can add answer",
- "content_type": 24
- }
- },
- {
- "pk": 71,
- "model": "auth.permission",
- "fields": {
- "codename": "change_answer",
- "name": "Can change answer",
- "content_type": 24
- }
- },
- {
- "pk": 72,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_answer",
- "name": "Can delete answer",
- "content_type": 24
- }
- },
- {
- "pk": 28,
- "model": "auth.permission",
- "fields": {
- "codename": "add_award",
- "name": "Can add award",
- "content_type": 10
- }
- },
- {
- "pk": 29,
- "model": "auth.permission",
- "fields": {
- "codename": "change_award",
- "name": "Can change award",
- "content_type": 10
- }
- },
- {
- "pk": 30,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_award",
- "name": "Can delete award",
- "content_type": 10
- }
- },
- {
- "pk": 25,
- "model": "auth.permission",
- "fields": {
- "codename": "add_badgedata",
- "name": "Can add badge data",
- "content_type": 9
- }
- },
- {
- "pk": 26,
- "model": "auth.permission",
- "fields": {
- "codename": "change_badgedata",
- "name": "Can change badge data",
- "content_type": 9
- }
- },
- {
- "pk": 27,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_badgedata",
- "name": "Can delete badge data",
- "content_type": 9
- }
- },
- {
- "pk": 46,
- "model": "auth.permission",
- "fields": {
- "codename": "add_comment",
- "name": "Can add comment",
- "content_type": 16
- }
- },
- {
- "pk": 47,
- "model": "auth.permission",
- "fields": {
- "codename": "change_comment",
- "name": "Can change comment",
- "content_type": 16
- }
- },
- {
- "pk": 48,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_comment",
- "name": "Can delete comment",
- "content_type": 16
- }
- },
- {
- "pk": 40,
- "model": "auth.permission",
- "fields": {
- "codename": "add_emailfeedsetting",
- "name": "Can add email feed setting",
- "content_type": 14
- }
- },
- {
- "pk": 41,
- "model": "auth.permission",
- "fields": {
- "codename": "change_emailfeedsetting",
- "name": "Can change email feed setting",
- "content_type": 14
- }
- },
- {
- "pk": 42,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_emailfeedsetting",
- "name": "Can delete email feed setting",
- "content_type": 14
- }
- },
- {
- "pk": 64,
- "model": "auth.permission",
- "fields": {
- "codename": "add_favoritequestion",
- "name": "Can add favorite question",
- "content_type": 22
- }
- },
- {
- "pk": 65,
- "model": "auth.permission",
- "fields": {
- "codename": "change_favoritequestion",
- "name": "Can change favorite question",
- "content_type": 22
- }
- },
- {
- "pk": 66,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_favoritequestion",
- "name": "Can delete favorite question",
- "content_type": 22
- }
- },
- {
- "pk": 52,
- "model": "auth.permission",
- "fields": {
- "codename": "add_markedtag",
- "name": "Can add marked tag",
- "content_type": 18
- }
- },
- {
- "pk": 53,
- "model": "auth.permission",
- "fields": {
- "codename": "change_markedtag",
- "name": "Can change marked tag",
- "content_type": 18
- }
- },
- {
- "pk": 54,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_markedtag",
- "name": "Can delete marked tag",
- "content_type": 18
- }
- },
- {
- "pk": 55,
- "model": "auth.permission",
- "fields": {
- "codename": "add_postrevision",
- "name": "Can add post revision",
- "content_type": 19
- }
- },
- {
- "pk": 56,
- "model": "auth.permission",
- "fields": {
- "codename": "change_postrevision",
- "name": "Can change post revision",
- "content_type": 19
- }
- },
- {
- "pk": 57,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_postrevision",
- "name": "Can delete post revision",
- "content_type": 19
- }
- },
- {
- "pk": 58,
- "model": "auth.permission",
- "fields": {
- "codename": "add_question",
- "name": "Can add question",
- "content_type": 20
- }
- },
- {
- "pk": 59,
- "model": "auth.permission",
- "fields": {
- "codename": "change_question",
- "name": "Can change question",
- "content_type": 20
- }
- },
- {
- "pk": 60,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_question",
- "name": "Can delete question",
- "content_type": 20
- }
- },
- {
- "pk": 61,
- "model": "auth.permission",
- "fields": {
- "codename": "add_questionview",
- "name": "Can add question view",
- "content_type": 21
- }
- },
- {
- "pk": 62,
- "model": "auth.permission",
- "fields": {
- "codename": "change_questionview",
- "name": "Can change question view",
- "content_type": 21
- }
- },
- {
- "pk": 63,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_questionview",
- "name": "Can delete question view",
- "content_type": 21
- }
- },
- {
- "pk": 31,
- "model": "auth.permission",
- "fields": {
- "codename": "add_repute",
- "name": "Can add repute",
- "content_type": 11
- }
- },
- {
- "pk": 32,
- "model": "auth.permission",
- "fields": {
- "codename": "change_repute",
- "name": "Can change repute",
- "content_type": 11
- }
- },
- {
- "pk": 33,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_repute",
- "name": "Can delete repute",
- "content_type": 11
- }
- },
- {
- "pk": 49,
- "model": "auth.permission",
- "fields": {
- "codename": "add_tag",
- "name": "Can add tag",
- "content_type": 17
- }
- },
- {
- "pk": 50,
- "model": "auth.permission",
- "fields": {
- "codename": "change_tag",
- "name": "Can change tag",
- "content_type": 17
- }
- },
- {
- "pk": 51,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_tag",
- "name": "Can delete tag",
- "content_type": 17
- }
- },
- {
- "pk": 43,
- "model": "auth.permission",
- "fields": {
- "codename": "add_vote",
- "name": "Can add vote",
- "content_type": 15
- }
- },
- {
- "pk": 44,
- "model": "auth.permission",
- "fields": {
- "codename": "change_vote",
- "name": "Can change vote",
- "content_type": 15
- }
- },
- {
- "pk": 45,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_vote",
- "name": "Can delete vote",
- "content_type": 15
- }
- },
- {
- "pk": 4,
- "model": "auth.permission",
- "fields": {
- "codename": "add_group",
- "name": "Can add group",
- "content_type": 2
- }
- },
- {
- "pk": 5,
- "model": "auth.permission",
- "fields": {
- "codename": "change_group",
- "name": "Can change group",
- "content_type": 2
- }
- },
- {
- "pk": 6,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_group",
- "name": "Can delete group",
- "content_type": 2
- }
- },
- {
- "pk": 10,
- "model": "auth.permission",
- "fields": {
- "codename": "add_message",
- "name": "Can add message",
- "content_type": 4
- }
- },
- {
- "pk": 11,
- "model": "auth.permission",
- "fields": {
- "codename": "change_message",
- "name": "Can change message",
- "content_type": 4
- }
- },
- {
- "pk": 12,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_message",
- "name": "Can delete message",
- "content_type": 4
- }
- },
- {
- "pk": 1,
- "model": "auth.permission",
- "fields": {
- "codename": "add_permission",
- "name": "Can add permission",
- "content_type": 1
- }
- },
- {
- "pk": 2,
- "model": "auth.permission",
- "fields": {
- "codename": "change_permission",
- "name": "Can change permission",
- "content_type": 1
- }
- },
- {
- "pk": 3,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_permission",
- "name": "Can delete permission",
- "content_type": 1
- }
- },
- {
- "pk": 7,
- "model": "auth.permission",
- "fields": {
- "codename": "add_user",
- "name": "Can add user",
- "content_type": 3
- }
- },
- {
- "pk": 8,
- "model": "auth.permission",
- "fields": {
- "codename": "change_user",
- "name": "Can change user",
- "content_type": 3
- }
- },
- {
- "pk": 9,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_user",
- "name": "Can delete user",
- "content_type": 3
- }
- },
- {
- "pk": 13,
- "model": "auth.permission",
- "fields": {
- "codename": "add_contenttype",
- "name": "Can add content type",
- "content_type": 5
- }
- },
- {
- "pk": 14,
- "model": "auth.permission",
- "fields": {
- "codename": "change_contenttype",
- "name": "Can change content type",
- "content_type": 5
- }
- },
- {
- "pk": 15,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_contenttype",
- "name": "Can delete content type",
- "content_type": 5
- }
- },
- {
- "pk": 79,
- "model": "auth.permission",
- "fields": {
- "codename": "add_association",
- "name": "Can add association",
- "content_type": 27
- }
- },
- {
- "pk": 80,
- "model": "auth.permission",
- "fields": {
- "codename": "change_association",
- "name": "Can change association",
- "content_type": 27
- }
- },
- {
- "pk": 81,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_association",
- "name": "Can delete association",
- "content_type": 27
- }
- },
- {
- "pk": 76,
- "model": "auth.permission",
- "fields": {
- "codename": "add_nonce",
- "name": "Can add nonce",
- "content_type": 26
- }
- },
- {
- "pk": 77,
- "model": "auth.permission",
- "fields": {
- "codename": "change_nonce",
- "name": "Can change nonce",
- "content_type": 26
- }
- },
- {
- "pk": 78,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_nonce",
- "name": "Can delete nonce",
- "content_type": 26
- }
- },
- {
- "pk": 82,
- "model": "auth.permission",
- "fields": {
- "codename": "add_userassociation",
- "name": "Can add user association",
- "content_type": 28
- }
- },
- {
- "pk": 83,
- "model": "auth.permission",
- "fields": {
- "codename": "change_userassociation",
- "name": "Can change user association",
- "content_type": 28
- }
- },
- {
- "pk": 84,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_userassociation",
- "name": "Can delete user association",
- "content_type": 28
- }
- },
- {
- "pk": 85,
- "model": "auth.permission",
- "fields": {
- "codename": "add_userpasswordqueue",
- "name": "Can add user password queue",
- "content_type": 29
- }
- },
- {
- "pk": 86,
- "model": "auth.permission",
- "fields": {
- "codename": "change_userpasswordqueue",
- "name": "Can change user password queue",
- "content_type": 29
- }
- },
- {
- "pk": 87,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_userpasswordqueue",
- "name": "Can delete user password queue",
- "content_type": 29
- }
- },
- {
- "pk": 112,
- "model": "auth.permission",
- "fields": {
- "codename": "add_crontabschedule",
- "name": "Can add crontab",
- "content_type": 38
- }
- },
- {
- "pk": 113,
- "model": "auth.permission",
- "fields": {
- "codename": "change_crontabschedule",
- "name": "Can change crontab",
- "content_type": 38
- }
- },
- {
- "pk": 114,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_crontabschedule",
- "name": "Can delete crontab",
- "content_type": 38
- }
- },
- {
- "pk": 109,
- "model": "auth.permission",
- "fields": {
- "codename": "add_intervalschedule",
- "name": "Can add interval",
- "content_type": 37
- }
- },
- {
- "pk": 110,
- "model": "auth.permission",
- "fields": {
- "codename": "change_intervalschedule",
- "name": "Can change interval",
- "content_type": 37
- }
- },
- {
- "pk": 111,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_intervalschedule",
- "name": "Can delete interval",
- "content_type": 37
- }
- },
- {
- "pk": 118,
- "model": "auth.permission",
- "fields": {
- "codename": "add_periodictask",
- "name": "Can add periodic task",
- "content_type": 40
- }
- },
- {
- "pk": 119,
- "model": "auth.permission",
- "fields": {
- "codename": "change_periodictask",
- "name": "Can change periodic task",
- "content_type": 40
- }
- },
- {
- "pk": 120,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_periodictask",
- "name": "Can delete periodic task",
- "content_type": 40
- }
- },
- {
- "pk": 115,
- "model": "auth.permission",
- "fields": {
- "codename": "add_periodictasks",
- "name": "Can add periodic tasks",
- "content_type": 39
- }
- },
- {
- "pk": 116,
- "model": "auth.permission",
- "fields": {
- "codename": "change_periodictasks",
- "name": "Can change periodic tasks",
- "content_type": 39
- }
- },
- {
- "pk": 117,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_periodictasks",
- "name": "Can delete periodic tasks",
- "content_type": 39
- }
- },
- {
- "pk": 103,
- "model": "auth.permission",
- "fields": {
- "codename": "add_taskmeta",
- "name": "Can add task meta",
- "content_type": 35
- }
- },
- {
- "pk": 104,
- "model": "auth.permission",
- "fields": {
- "codename": "change_taskmeta",
- "name": "Can change task meta",
- "content_type": 35
- }
- },
- {
- "pk": 105,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_taskmeta",
- "name": "Can delete task meta",
- "content_type": 35
- }
- },
- {
- "pk": 106,
- "model": "auth.permission",
- "fields": {
- "codename": "add_tasksetmeta",
- "name": "Can add taskset meta",
- "content_type": 36
- }
- },
- {
- "pk": 107,
- "model": "auth.permission",
- "fields": {
- "codename": "change_tasksetmeta",
- "name": "Can change taskset meta",
- "content_type": 36
- }
- },
- {
- "pk": 108,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_tasksetmeta",
- "name": "Can delete taskset meta",
- "content_type": 36
- }
- },
- {
- "pk": 124,
- "model": "auth.permission",
- "fields": {
- "codename": "add_taskstate",
- "name": "Can add task",
- "content_type": 42
- }
- },
- {
- "pk": 125,
- "model": "auth.permission",
- "fields": {
- "codename": "change_taskstate",
- "name": "Can change task",
- "content_type": 42
- }
- },
- {
- "pk": 126,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_taskstate",
- "name": "Can delete task",
- "content_type": 42
- }
- },
- {
- "pk": 121,
- "model": "auth.permission",
- "fields": {
- "codename": "add_workerstate",
- "name": "Can add worker",
- "content_type": 41
- }
- },
- {
- "pk": 122,
- "model": "auth.permission",
- "fields": {
- "codename": "change_workerstate",
- "name": "Can change worker",
- "content_type": 41
- }
- },
- {
- "pk": 123,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_workerstate",
- "name": "Can delete worker",
- "content_type": 41
- }
- },
- {
- "pk": 130,
- "model": "auth.permission",
- "fields": {
- "codename": "add_message",
- "name": "Can add message",
- "content_type": 44
- }
- },
- {
- "pk": 131,
- "model": "auth.permission",
- "fields": {
- "codename": "change_message",
- "name": "Can change message",
- "content_type": 44
- }
- },
- {
- "pk": 132,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_message",
- "name": "Can delete message",
- "content_type": 44
- }
- },
- {
- "pk": 127,
- "model": "auth.permission",
- "fields": {
- "codename": "add_queue",
- "name": "Can add queue",
- "content_type": 43
- }
- },
- {
- "pk": 128,
- "model": "auth.permission",
- "fields": {
- "codename": "change_queue",
- "name": "Can change queue",
- "content_type": 43
- }
- },
- {
- "pk": 129,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_queue",
- "name": "Can delete queue",
- "content_type": 43
- }
- },
- {
- "pk": 133,
- "model": "auth.permission",
- "fields": {
- "codename": "add_followuser",
- "name": "Can add followuser",
- "content_type": 45
- }
- },
- {
- "pk": 134,
- "model": "auth.permission",
- "fields": {
- "codename": "change_followuser",
- "name": "Can change followuser",
- "content_type": 45
- }
- },
- {
- "pk": 135,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_followuser",
- "name": "Can delete followuser",
- "content_type": 45
- }
- },
- {
- "pk": 94,
- "model": "auth.permission",
- "fields": {
- "codename": "add_longsetting",
- "name": "Can add long setting",
- "content_type": 32
- }
- },
- {
- "pk": 95,
- "model": "auth.permission",
- "fields": {
- "codename": "change_longsetting",
- "name": "Can change long setting",
- "content_type": 32
- }
- },
- {
- "pk": 96,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_longsetting",
- "name": "Can delete long setting",
- "content_type": 32
- }
- },
- {
- "pk": 91,
- "model": "auth.permission",
- "fields": {
- "codename": "add_setting",
- "name": "Can add setting",
- "content_type": 31
- }
- },
- {
- "pk": 92,
- "model": "auth.permission",
- "fields": {
- "codename": "change_setting",
- "name": "Can change setting",
- "content_type": 31
- }
- },
- {
- "pk": 93,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_setting",
- "name": "Can delete setting",
- "content_type": 31
- }
- },
- {
- "pk": 100,
- "model": "auth.permission",
- "fields": {
- "codename": "add_rule",
- "name": "Can add rule",
- "content_type": 34
- }
- },
- {
- "pk": 101,
- "model": "auth.permission",
- "fields": {
- "codename": "change_rule",
- "name": "Can change rule",
- "content_type": 34
- }
- },
- {
- "pk": 102,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_rule",
- "name": "Can delete rule",
- "content_type": 34
- }
- },
- {
- "pk": 97,
- "model": "auth.permission",
- "fields": {
- "codename": "add_url",
- "name": "Can add url",
- "content_type": 33
- }
- },
- {
- "pk": 98,
- "model": "auth.permission",
- "fields": {
- "codename": "change_url",
- "name": "Can change url",
- "content_type": 33
- }
- },
- {
- "pk": 99,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_url",
- "name": "Can delete url",
- "content_type": 33
- }
- },
- {
- "pk": 16,
- "model": "auth.permission",
- "fields": {
- "codename": "add_session",
- "name": "Can add session",
- "content_type": 6
- }
- },
- {
- "pk": 17,
- "model": "auth.permission",
- "fields": {
- "codename": "change_session",
- "name": "Can change session",
- "content_type": 6
- }
- },
- {
- "pk": 18,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_session",
- "name": "Can delete session",
- "content_type": 6
- }
- },
- {
- "pk": 19,
- "model": "auth.permission",
- "fields": {
- "codename": "add_site",
- "name": "Can add site",
- "content_type": 7
- }
- },
- {
- "pk": 20,
- "model": "auth.permission",
- "fields": {
- "codename": "change_site",
- "name": "Can change site",
- "content_type": 7
- }
- },
- {
- "pk": 21,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_site",
- "name": "Can delete site",
- "content_type": 7
- }
- },
- {
- "pk": 88,
- "model": "auth.permission",
- "fields": {
- "codename": "add_migrationhistory",
- "name": "Can add migration history",
- "content_type": 30
- }
- },
- {
- "pk": 89,
- "model": "auth.permission",
- "fields": {
- "codename": "change_migrationhistory",
- "name": "Can change migration history",
- "content_type": 30
- }
- },
- {
- "pk": 90,
- "model": "auth.permission",
- "fields": {
- "codename": "delete_migrationhistory",
- "name": "Can delete migration history",
- "content_type": 30
- }
- },
- {
- "pk": 1,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": true,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:20",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": true,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:20",
- "location": "",
- "new_response_count": 61,
- "email": "test_user_0@askbot.org",
- "username": "test_user_0",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$917a5$8d31e7e3f8b7b8bbc27d27efdd49fc681cbad56b",
- "silver": 0,
- "bronze": 3,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 520,
- "gravatar": "97b89e3082d2741855254393f078fe6c",
- "last_seen": "2011-12-20 12:51:20"
- }
- },
- {
- "pk": 2,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:20",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:20",
- "location": "",
- "new_response_count": 58,
- "email": "test_user_1@askbot.org",
- "username": "test_user_1",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$2fd95$07bdf8b37814d2a84b6f1673fffada9f84f63c0e",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 496,
- "gravatar": "6859f8f5f86ae184bab4c5e2297a6f85",
- "last_seen": "2011-12-20 12:51:20"
- }
- },
- {
- "pk": 3,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:20",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:20",
- "location": "",
- "new_response_count": 55,
- "email": "test_user_2@askbot.org",
- "username": "test_user_2",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$f1879$be089b0acfe1cfc8e4f4c1bba92a0bc8f0cb0fc9",
- "silver": 0,
- "bronze": 4,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 518,
- "gravatar": "564666778b07615b15a36ce51ac7f7d2",
- "last_seen": "2011-12-20 12:51:20"
- }
- },
- {
- "pk": 4,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:20",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:20",
- "location": "",
- "new_response_count": 52,
- "email": "test_user_3@askbot.org",
- "username": "test_user_3",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$2c013$304d5239a9b0f7f066b756c54fab18d2383fc3c7",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 496,
- "gravatar": "32f9b7a8113ca3b42b63435fe4859b31",
- "last_seen": "2011-12-20 12:51:20"
- }
- },
- {
- "pk": 5,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:20",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:20",
- "location": "",
- "new_response_count": 49,
- "email": "test_user_4@askbot.org",
- "username": "test_user_4",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$df5ca$648a261a796f846a5e8e64b83ef74a13cdf82ee8",
- "silver": 0,
- "bronze": 4,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 518,
- "gravatar": "23f7d972c0c664b156d0473c0999a697",
- "last_seen": "2011-12-20 12:51:20"
- }
- },
- {
- "pk": 6,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:20",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:20",
- "location": "",
- "new_response_count": 46,
- "email": "test_user_5@askbot.org",
- "username": "test_user_5",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$a994b$fc8d7f44c567e7d2fbf95b335b1749fd8cccd483",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 496,
- "gravatar": "9846d347d8a7d759c40cda0f3d13483f",
- "last_seen": "2011-12-20 12:51:20"
- }
- },
- {
- "pk": 7,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:20",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:20",
- "location": "",
- "new_response_count": 43,
- "email": "test_user_6@askbot.org",
- "username": "test_user_6",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$496b9$f8d26a187baffa8beadd90aed0dd0ae7868315cc",
- "silver": 0,
- "bronze": 4,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 518,
- "gravatar": "7ce778a81f19e1304bbcc21ee6331063",
- "last_seen": "2011-12-20 12:51:20"
- }
- },
- {
- "pk": 8,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:20",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:20",
- "location": "",
- "new_response_count": 40,
- "email": "test_user_7@askbot.org",
- "username": "test_user_7",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$5d4b5$0196b971f4a784e0af71ec0655a52a1590c1e478",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 496,
- "gravatar": "4556e9e446c727e6fdf37af356097ff2",
- "last_seen": "2011-12-20 12:51:20"
- }
- },
- {
- "pk": 9,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:20",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:20",
- "location": "",
- "new_response_count": 37,
- "email": "test_user_8@askbot.org",
- "username": "test_user_8",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$84ffb$1fba7b1ef5993e0d0cc045593221921efb4a0104",
- "silver": 0,
- "bronze": 4,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 518,
- "gravatar": "2efc123f13b1590ab7f54b229b6ce61c",
- "last_seen": "2011-12-20 12:51:20"
- }
- },
- {
- "pk": 10,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:20",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:20",
- "location": "",
- "new_response_count": 34,
- "email": "test_user_9@askbot.org",
- "username": "test_user_9",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$bf988$c56f74855686fa8fb9c5bd039d2774ee9c22b506",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 496,
- "gravatar": "2872546b9b5fa933413b58b18b0d56ca",
- "last_seen": "2011-12-20 12:51:20"
- }
- },
- {
- "pk": 11,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:20",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:20",
- "location": "",
- "new_response_count": 31,
- "email": "test_user_10@askbot.org",
- "username": "test_user_10",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$25de1$b946e2022e115fd1276922296fd6d9e8465f4d39",
- "silver": 0,
- "bronze": 4,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 518,
- "gravatar": "83458295fcf6dcdc6ee5815491cbee3f",
- "last_seen": "2011-12-20 12:51:20"
- }
- },
- {
- "pk": 12,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:20",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:20",
- "location": "",
- "new_response_count": 28,
- "email": "test_user_11@askbot.org",
- "username": "test_user_11",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$a5edf$d53052d9c1fc1e671b43c83a840c14c922b50215",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 496,
- "gravatar": "ccb4b8fe5a80781e5051435db97becaa",
- "last_seen": "2011-12-20 12:51:20"
- }
- },
- {
- "pk": 13,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 25,
- "email": "test_user_12@askbot.org",
- "username": "test_user_12",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$d67f9$03c49b636e84766be0af76f7d7a1fd2c5482f201",
- "silver": 0,
- "bronze": 4,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 518,
- "gravatar": "6a70087a63bbc7c6a4028365ed4e1950",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 14,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 22,
- "email": "test_user_13@askbot.org",
- "username": "test_user_13",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$8f8ab$b0a4ca8e7e2c2539e2101c325584b9d9679a85f7",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 496,
- "gravatar": "77dc2a59fecaa4eeb06fa9f563ebf669",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 15,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 19,
- "email": "test_user_14@askbot.org",
- "username": "test_user_14",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$69539$e48d801c8c567413cf7ab6d11a78996d89e65b4f",
- "silver": 0,
- "bronze": 4,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 518,
- "gravatar": "0a4b98e7ec7867d097ef4ee1c3d23104",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 16,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 16,
- "email": "test_user_15@askbot.org",
- "username": "test_user_15",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$58954$055ea2ca379369686a8767f0f0efec14d6067537",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 496,
- "gravatar": "6c5d8511aa4f85cd75a16dbb3e03c5c7",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 17,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 13,
- "email": "test_user_16@askbot.org",
- "username": "test_user_16",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$ae00f$8df4d6129e34242ef50158fd2edaf7bea7ca1928",
- "silver": 0,
- "bronze": 4,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 518,
- "gravatar": "f2174ffb3833816753de7f596f69468b",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 18,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 10,
- "email": "test_user_17@askbot.org",
- "username": "test_user_17",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$85dfc$68f8f1587a87befee8ac262eaee9b9269a089d64",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 496,
- "gravatar": "b6778982e44fe0fbd78e3496069f1352",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 19,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 7,
- "email": "test_user_18@askbot.org",
- "username": "test_user_18",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$3a85d$8070b80232d0e6ec351d9d9d66b09c6212a77a2d",
- "silver": 0,
- "bronze": 4,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 518,
- "gravatar": "ec0f9a859b26512fdcc994516be5e752",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 20,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 2,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_19@askbot.org",
- "username": "test_user_19",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$f7931$fd6d24ecd06ca9acbb15506c3f3ff4d105dc693a",
- "silver": 2,
- "bronze": 4,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 713,
- "gravatar": "b75bdbeb7354745fdf9fdf72200eb799",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 21,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_20@askbot.org",
- "username": "test_user_20",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$ce673$cbe2240ab8a6b25003ab85d4bb705e07d7d76f74",
- "silver": 0,
- "bronze": 2,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 509,
- "gravatar": "4f877025b0ab869a9e9400e28ed3eab5",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 22,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_21@askbot.org",
- "username": "test_user_21",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$27f03$44e4b1227e5cd18fdd2d9af34bf6b090e360390d",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 498,
- "gravatar": "76b52b8b8655a296120d87715dbdd3e6",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 23,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_22@askbot.org",
- "username": "test_user_22",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$f2a81$9799180e6ff6e310fa091ca69ac0010c51342f4b",
- "silver": 0,
- "bronze": 2,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 509,
- "gravatar": "a5ddb8c0343a8aa84250f50535368aaf",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 24,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_23@askbot.org",
- "username": "test_user_23",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$fc47b$9d1f96ef03f26ee6949815fc53c08704e30cd2b1",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 498,
- "gravatar": "0b7ee0d2855d536bfcd272fe59e51e85",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 25,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_24@askbot.org",
- "username": "test_user_24",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$45370$2514c920f4058028a57a0adb6ec5c4e472775e0f",
- "silver": 0,
- "bronze": 2,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 509,
- "gravatar": "9273b4ea8133885f6864afbc27b17a6b",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 26,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_25@askbot.org",
- "username": "test_user_25",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$87174$1e7f2ee79f0322329581577f392c345ab1407204",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 498,
- "gravatar": "3f02ce1295ff1104020fb76e0a713f19",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 27,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_26@askbot.org",
- "username": "test_user_26",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$b024a$4c21a57f1b5b48fa974b90f1d3802caa3ca58e8b",
- "silver": 0,
- "bronze": 2,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 509,
- "gravatar": "2089b5251d55cadb48417b9d2b78b4b2",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 28,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_27@askbot.org",
- "username": "test_user_27",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$58826$41c5e9f5dce2835b5175b023eb527fcade98d2d4",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 498,
- "gravatar": "489074a9a117be5320690bd6977ece9e",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 29,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_28@askbot.org",
- "username": "test_user_28",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$66e41$907b68d8b88a2ee9c8b3e30649f9117cbd07519c",
- "silver": 0,
- "bronze": 2,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 509,
- "gravatar": "7ea520152dac05fa69541ffe139bcca2",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 30,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_29@askbot.org",
- "username": "test_user_29",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$7abb4$302c303a96f5aadfc1a744f4288fa0b7f60ce58d",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 498,
- "gravatar": "98be33fd4cf91cd0d26e8bbdda1691f2",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 31,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_30@askbot.org",
- "username": "test_user_30",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$8f341$7effe1a8dd068de04bf1da8c44d87f9d8b7ef541",
- "silver": 0,
- "bronze": 2,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 509,
- "gravatar": "4db2d8490aa35168e331b5ee5a0fd63b",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 32,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_31@askbot.org",
- "username": "test_user_31",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$a609f$b43e70ce92cd80413937108704a2faf96c659589",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 498,
- "gravatar": "e1646ca0338becadfc188108ef11a963",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 33,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_32@askbot.org",
- "username": "test_user_32",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$c0ee2$ac5ff63a7e0a57041b640151f3aaa844db9b509a",
- "silver": 0,
- "bronze": 2,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 509,
- "gravatar": "1f4576d9b347126a61b9b6ca39aaf46d",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 34,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_33@askbot.org",
- "username": "test_user_33",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$fdc5b$5e1792dcf3371268956f3d4463b2240642db0979",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 498,
- "gravatar": "a3d70733b55cca2d4e94e42b246ce2af",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 35,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_34@askbot.org",
- "username": "test_user_34",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$6effa$92f04edd455daf51f7fa680630b86ff7b6a9d5c7",
- "silver": 0,
- "bronze": 2,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 509,
- "gravatar": "a0a078c93e5bae4f19920e9f0ab6bd1d",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 36,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_35@askbot.org",
- "username": "test_user_35",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$64ff0$24d4e4c0998862417646a9195fb846bc1a7c35aa",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 498,
- "gravatar": "7cb624e123b95ef9694b64823b0fb0f1",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 37,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_36@askbot.org",
- "username": "test_user_36",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$264cc$e72669914cc404990b135dc48816b8c4c4afa6ff",
- "silver": 0,
- "bronze": 2,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 509,
- "gravatar": "906f494d5d4015f2d7d13a781d5dd2e7",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 38,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_37@askbot.org",
- "username": "test_user_37",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$a924b$25d6b03ca36b78d3420464097dba8142ba90b20d",
- "silver": 0,
- "bronze": 1,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 498,
- "gravatar": "641aca2f46519377ccd0500b6ab96ef0",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 39,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_38@askbot.org",
- "username": "test_user_38",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$6a84f$002738f797df0f265e17f970ccc67fabfee526a7",
- "silver": 0,
- "bronze": 2,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 509,
- "gravatar": "fcc3f6722e53bafdacdfea9ced92bbff",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 40,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 1,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-12-20 12:51:21",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-12-20 12:51:21",
- "location": "",
- "new_response_count": 0,
- "email": "test_user_39@askbot.org",
- "username": "test_user_39",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$b2cca$fffcd0641241dff108a6015328497977a8452fb6",
- "silver": 1,
- "bronze": 5,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 702,
- "gravatar": "43d568bd3fb5f364a3e3a5aa2db795e4",
- "last_seen": "2011-12-20 12:51:21"
- }
- },
- {
- "pk": 1,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:22",
- "notified": false,
- "object_id": 1,
- "user": 1,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 2,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:22",
- "notified": false,
- "object_id": 1,
- "user": 2,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 3,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:24",
- "notified": false,
- "object_id": 2,
- "user": 3,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 4,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:24",
- "notified": false,
- "object_id": 3,
- "user": 3,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 5,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:24",
- "notified": false,
- "object_id": 3,
- "user": 4,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 6,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:24",
- "notified": false,
- "object_id": 4,
- "user": 5,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 7,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:24",
- "notified": false,
- "object_id": 5,
- "user": 5,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 8,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:24",
- "notified": false,
- "object_id": 5,
- "user": 6,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 9,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:24",
- "notified": false,
- "object_id": 6,
- "user": 7,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 10,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:24",
- "notified": false,
- "object_id": 7,
- "user": 7,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 11,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:24",
- "notified": false,
- "object_id": 7,
- "user": 8,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 12,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:25",
- "notified": false,
- "object_id": 8,
- "user": 9,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 13,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:25",
- "notified": false,
- "object_id": 9,
- "user": 9,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 14,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:25",
- "notified": false,
- "object_id": 9,
- "user": 10,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 15,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:25",
- "notified": false,
- "object_id": 10,
- "user": 11,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 16,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:25",
- "notified": false,
- "object_id": 11,
- "user": 11,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 17,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:25",
- "notified": false,
- "object_id": 11,
- "user": 12,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 18,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:25",
- "notified": false,
- "object_id": 12,
- "user": 13,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 19,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:25",
- "notified": false,
- "object_id": 13,
- "user": 13,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 20,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:25",
- "notified": false,
- "object_id": 13,
- "user": 14,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 21,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:25",
- "notified": false,
- "object_id": 14,
- "user": 15,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 22,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:25",
- "notified": false,
- "object_id": 15,
- "user": 15,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 23,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:25",
- "notified": false,
- "object_id": 15,
- "user": 16,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 24,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:26",
- "notified": false,
- "object_id": 16,
- "user": 17,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 25,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:26",
- "notified": false,
- "object_id": 17,
- "user": 17,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 26,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:26",
- "notified": false,
- "object_id": 17,
- "user": 18,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 27,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:26",
- "notified": false,
- "object_id": 18,
- "user": 19,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 28,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:26",
- "notified": false,
- "object_id": 19,
- "user": 19,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 29,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:26",
- "notified": false,
- "object_id": 19,
- "user": 20,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 30,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:26",
- "notified": false,
- "object_id": 20,
- "user": 21,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 31,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:26",
- "notified": false,
- "object_id": 21,
- "user": 21,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 32,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:26",
- "notified": false,
- "object_id": 21,
- "user": 22,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 33,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:26",
- "notified": false,
- "object_id": 22,
- "user": 23,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 34,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:27",
- "notified": false,
- "object_id": 23,
- "user": 23,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 35,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:27",
- "notified": false,
- "object_id": 23,
- "user": 24,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 36,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:27",
- "notified": false,
- "object_id": 24,
- "user": 25,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 37,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:27",
- "notified": false,
- "object_id": 25,
- "user": 25,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 38,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:27",
- "notified": false,
- "object_id": 25,
- "user": 26,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 39,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:27",
- "notified": false,
- "object_id": 26,
- "user": 27,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 40,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:27",
- "notified": false,
- "object_id": 27,
- "user": 27,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 41,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:27",
- "notified": false,
- "object_id": 27,
- "user": 28,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 42,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:27",
- "notified": false,
- "object_id": 28,
- "user": 29,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 43,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:28",
- "notified": false,
- "object_id": 29,
- "user": 29,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 44,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:28",
- "notified": false,
- "object_id": 29,
- "user": 30,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 45,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:28",
- "notified": false,
- "object_id": 30,
- "user": 31,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 46,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:28",
- "notified": false,
- "object_id": 31,
- "user": 31,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 47,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:28",
- "notified": false,
- "object_id": 31,
- "user": 32,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 48,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:28",
- "notified": false,
- "object_id": 32,
- "user": 33,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 49,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:28",
- "notified": false,
- "object_id": 33,
- "user": 33,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 50,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:28",
- "notified": false,
- "object_id": 33,
- "user": 34,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 51,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:28",
- "notified": false,
- "object_id": 34,
- "user": 35,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 52,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:28",
- "notified": false,
- "object_id": 35,
- "user": 35,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 53,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:28",
- "notified": false,
- "object_id": 35,
- "user": 36,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 54,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:29",
- "notified": false,
- "object_id": 36,
- "user": 37,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 55,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:29",
- "notified": false,
- "object_id": 37,
- "user": 37,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 56,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:29",
- "notified": false,
- "object_id": 37,
- "user": 38,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 57,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:29",
- "notified": false,
- "object_id": 38,
- "user": 39,
- "content_type": 20,
- "badge": 3
- }
- },
- {
- "pk": 58,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:29",
- "notified": false,
- "object_id": 39,
- "user": 39,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 59,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:29",
- "notified": false,
- "object_id": 39,
- "user": 40,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 60,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:29",
- "notified": false,
- "object_id": 40,
- "user": 40,
- "content_type": 20,
- "badge": 1
- }
- },
- {
- "pk": 61,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:29",
- "notified": false,
- "object_id": 40,
- "user": 1,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 62,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:29",
- "notified": false,
- "object_id": 1,
- "user": 1,
- "content_type": 24,
- "badge": 4
- }
- },
- {
- "pk": 63,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:30",
- "notified": false,
- "object_id": 40,
- "user": 40,
- "content_type": 20,
- "badge": 5
- }
- },
- {
- "pk": 64,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:30",
- "notified": false,
- "object_id": 40,
- "user": 40,
- "content_type": 20,
- "badge": 6
- }
- },
- {
- "pk": 65,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:30",
- "notified": false,
- "object_id": 40,
- "user": 3,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 66,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:30",
- "notified": false,
- "object_id": 3,
- "user": 3,
- "content_type": 24,
- "badge": 4
- }
- },
- {
- "pk": 67,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:30",
- "notified": false,
- "object_id": 40,
- "user": 40,
- "content_type": 20,
- "badge": 7
- }
- },
- {
- "pk": 68,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:30",
- "notified": false,
- "object_id": 40,
- "user": 5,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 69,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:31",
- "notified": false,
- "object_id": 5,
- "user": 5,
- "content_type": 24,
- "badge": 4
- }
- },
- {
- "pk": 70,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:31",
- "notified": false,
- "object_id": 40,
- "user": 7,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 71,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:31",
- "notified": false,
- "object_id": 7,
- "user": 7,
- "content_type": 24,
- "badge": 4
- }
- },
- {
- "pk": 72,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:32",
- "notified": false,
- "object_id": 40,
- "user": 9,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 73,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:32",
- "notified": false,
- "object_id": 9,
- "user": 9,
- "content_type": 24,
- "badge": 4
- }
- },
- {
- "pk": 74,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:33",
- "notified": false,
- "object_id": 40,
- "user": 11,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 75,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:33",
- "notified": false,
- "object_id": 11,
- "user": 11,
- "content_type": 24,
- "badge": 4
- }
- },
- {
- "pk": 76,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:34",
- "notified": false,
- "object_id": 40,
- "user": 13,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 77,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:34",
- "notified": false,
- "object_id": 13,
- "user": 13,
- "content_type": 24,
- "badge": 4
- }
- },
- {
- "pk": 78,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:35",
- "notified": false,
- "object_id": 40,
- "user": 15,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 79,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:35",
- "notified": false,
- "object_id": 15,
- "user": 15,
- "content_type": 24,
- "badge": 4
- }
- },
- {
- "pk": 80,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:36",
- "notified": false,
- "object_id": 40,
- "user": 17,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 81,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:36",
- "notified": false,
- "object_id": 17,
- "user": 17,
- "content_type": 24,
- "badge": 4
- }
- },
- {
- "pk": 82,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:38",
- "notified": false,
- "object_id": 40,
- "user": 19,
- "content_type": 20,
- "badge": 2
- }
- },
- {
- "pk": 83,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:38",
- "notified": false,
- "object_id": 19,
- "user": 19,
- "content_type": 24,
- "badge": 4
- }
- },
- {
- "pk": 84,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:39",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 24,
- "badge": 4
- }
- },
- {
- "pk": 85,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:39",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 24,
- "badge": 8
- }
- },
- {
- "pk": 86,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:39",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 24,
- "badge": 9
- }
- },
- {
- "pk": 87,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:40",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 24,
- "badge": 10
- }
- },
- {
- "pk": 88,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:50",
- "notified": false,
- "object_id": 40,
- "user": 40,
- "content_type": 20,
- "badge": 11
- }
- },
- {
- "pk": 89,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:50",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 24,
- "badge": 11
- }
- },
- {
- "pk": 90,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:52",
- "notified": false,
- "object_id": 20,
- "user": 40,
- "content_type": 24,
- "badge": 12
- }
- },
- {
- "pk": 91,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:52",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 24,
- "badge": 13
- }
- },
- {
- "pk": 92,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-12-20 12:51:52",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 24,
- "badge": 14
- }
- },
- {
- "pk": 1,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 1,
- "negative": 0,
- "reputation_type": 1,
- "user": 1,
- "reputed_at": "2011-12-20 12:51:22",
- "reputation": 510
- }
- },
- {
- "pk": 2,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 2,
- "negative": -2,
- "reputation_type": -3,
- "user": 2,
- "reputed_at": "2011-12-20 12:51:24",
- "reputation": 498
- }
- },
- {
- "pk": 3,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 2,
- "negative": -1,
- "reputation_type": -5,
- "user": 3,
- "reputed_at": "2011-12-20 12:51:24",
- "reputation": 499
- }
- },
- {
- "pk": 4,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 3,
- "negative": 0,
- "reputation_type": 1,
- "user": 3,
- "reputed_at": "2011-12-20 12:51:24",
- "reputation": 509
- }
- },
- {
- "pk": 5,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 4,
- "negative": -2,
- "reputation_type": -3,
- "user": 4,
- "reputed_at": "2011-12-20 12:51:24",
- "reputation": 498
- }
- },
- {
- "pk": 6,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 4,
- "negative": -1,
- "reputation_type": -5,
- "user": 5,
- "reputed_at": "2011-12-20 12:51:24",
- "reputation": 499
- }
- },
- {
- "pk": 7,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 5,
- "negative": 0,
- "reputation_type": 1,
- "user": 5,
- "reputed_at": "2011-12-20 12:51:24",
- "reputation": 509
- }
- },
- {
- "pk": 8,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 6,
- "negative": -2,
- "reputation_type": -3,
- "user": 6,
- "reputed_at": "2011-12-20 12:51:24",
- "reputation": 498
- }
- },
- {
- "pk": 9,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 6,
- "negative": -1,
- "reputation_type": -5,
- "user": 7,
- "reputed_at": "2011-12-20 12:51:24",
- "reputation": 499
- }
- },
- {
- "pk": 10,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 7,
- "negative": 0,
- "reputation_type": 1,
- "user": 7,
- "reputed_at": "2011-12-20 12:51:24",
- "reputation": 509
- }
- },
- {
- "pk": 11,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 8,
- "negative": -2,
- "reputation_type": -3,
- "user": 8,
- "reputed_at": "2011-12-20 12:51:25",
- "reputation": 498
- }
- },
- {
- "pk": 12,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 8,
- "negative": -1,
- "reputation_type": -5,
- "user": 9,
- "reputed_at": "2011-12-20 12:51:25",
- "reputation": 499
- }
- },
- {
- "pk": 13,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 9,
- "negative": 0,
- "reputation_type": 1,
- "user": 9,
- "reputed_at": "2011-12-20 12:51:25",
- "reputation": 509
- }
- },
- {
- "pk": 14,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 10,
- "negative": -2,
- "reputation_type": -3,
- "user": 10,
- "reputed_at": "2011-12-20 12:51:25",
- "reputation": 498
- }
- },
- {
- "pk": 15,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 10,
- "negative": -1,
- "reputation_type": -5,
- "user": 11,
- "reputed_at": "2011-12-20 12:51:25",
- "reputation": 499
- }
- },
- {
- "pk": 16,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 11,
- "negative": 0,
- "reputation_type": 1,
- "user": 11,
- "reputed_at": "2011-12-20 12:51:25",
- "reputation": 509
- }
- },
- {
- "pk": 17,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 12,
- "negative": -2,
- "reputation_type": -3,
- "user": 12,
- "reputed_at": "2011-12-20 12:51:25",
- "reputation": 498
- }
- },
- {
- "pk": 18,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 12,
- "negative": -1,
- "reputation_type": -5,
- "user": 13,
- "reputed_at": "2011-12-20 12:51:25",
- "reputation": 499
- }
- },
- {
- "pk": 19,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 13,
- "negative": 0,
- "reputation_type": 1,
- "user": 13,
- "reputed_at": "2011-12-20 12:51:25",
- "reputation": 509
- }
- },
- {
- "pk": 20,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 14,
- "negative": -2,
- "reputation_type": -3,
- "user": 14,
- "reputed_at": "2011-12-20 12:51:25",
- "reputation": 498
- }
- },
- {
- "pk": 21,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 14,
- "negative": -1,
- "reputation_type": -5,
- "user": 15,
- "reputed_at": "2011-12-20 12:51:25",
- "reputation": 499
- }
- },
- {
- "pk": 22,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 15,
- "negative": 0,
- "reputation_type": 1,
- "user": 15,
- "reputed_at": "2011-12-20 12:51:25",
- "reputation": 509
- }
- },
- {
- "pk": 23,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 16,
- "negative": -2,
- "reputation_type": -3,
- "user": 16,
- "reputed_at": "2011-12-20 12:51:26",
- "reputation": 498
- }
- },
- {
- "pk": 24,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 16,
- "negative": -1,
- "reputation_type": -5,
- "user": 17,
- "reputed_at": "2011-12-20 12:51:26",
- "reputation": 499
- }
- },
- {
- "pk": 25,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 17,
- "negative": 0,
- "reputation_type": 1,
- "user": 17,
- "reputed_at": "2011-12-20 12:51:26",
- "reputation": 509
- }
- },
- {
- "pk": 26,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 18,
- "negative": -2,
- "reputation_type": -3,
- "user": 18,
- "reputed_at": "2011-12-20 12:51:26",
- "reputation": 498
- }
- },
- {
- "pk": 27,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 18,
- "negative": -1,
- "reputation_type": -5,
- "user": 19,
- "reputed_at": "2011-12-20 12:51:26",
- "reputation": 499
- }
- },
- {
- "pk": 28,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 19,
- "negative": 0,
- "reputation_type": 1,
- "user": 19,
- "reputed_at": "2011-12-20 12:51:26",
- "reputation": 509
- }
- },
- {
- "pk": 29,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 20,
- "negative": -2,
- "reputation_type": -3,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:26",
- "reputation": 498
- }
- },
- {
- "pk": 30,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 20,
- "negative": -1,
- "reputation_type": -5,
- "user": 21,
- "reputed_at": "2011-12-20 12:51:26",
- "reputation": 499
- }
- },
- {
- "pk": 31,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 21,
- "negative": 0,
- "reputation_type": 1,
- "user": 21,
- "reputed_at": "2011-12-20 12:51:26",
- "reputation": 509
- }
- },
- {
- "pk": 32,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 22,
- "negative": -2,
- "reputation_type": -3,
- "user": 22,
- "reputed_at": "2011-12-20 12:51:26",
- "reputation": 498
- }
- },
- {
- "pk": 33,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 22,
- "negative": -1,
- "reputation_type": -5,
- "user": 23,
- "reputed_at": "2011-12-20 12:51:26",
- "reputation": 499
- }
- },
- {
- "pk": 34,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 23,
- "negative": 0,
- "reputation_type": 1,
- "user": 23,
- "reputed_at": "2011-12-20 12:51:27",
- "reputation": 509
- }
- },
- {
- "pk": 35,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 24,
- "negative": -2,
- "reputation_type": -3,
- "user": 24,
- "reputed_at": "2011-12-20 12:51:27",
- "reputation": 498
- }
- },
- {
- "pk": 36,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 24,
- "negative": -1,
- "reputation_type": -5,
- "user": 25,
- "reputed_at": "2011-12-20 12:51:27",
- "reputation": 499
- }
- },
- {
- "pk": 37,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 25,
- "negative": 0,
- "reputation_type": 1,
- "user": 25,
- "reputed_at": "2011-12-20 12:51:27",
- "reputation": 509
- }
- },
- {
- "pk": 38,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 26,
- "negative": -2,
- "reputation_type": -3,
- "user": 26,
- "reputed_at": "2011-12-20 12:51:27",
- "reputation": 498
- }
- },
- {
- "pk": 39,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 26,
- "negative": -1,
- "reputation_type": -5,
- "user": 27,
- "reputed_at": "2011-12-20 12:51:27",
- "reputation": 499
- }
- },
- {
- "pk": 40,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 27,
- "negative": 0,
- "reputation_type": 1,
- "user": 27,
- "reputed_at": "2011-12-20 12:51:27",
- "reputation": 509
- }
- },
- {
- "pk": 41,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 28,
- "negative": -2,
- "reputation_type": -3,
- "user": 28,
- "reputed_at": "2011-12-20 12:51:27",
- "reputation": 498
- }
- },
- {
- "pk": 42,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 28,
- "negative": -1,
- "reputation_type": -5,
- "user": 29,
- "reputed_at": "2011-12-20 12:51:27",
- "reputation": 499
- }
- },
- {
- "pk": 43,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 29,
- "negative": 0,
- "reputation_type": 1,
- "user": 29,
- "reputed_at": "2011-12-20 12:51:28",
- "reputation": 509
- }
- },
- {
- "pk": 44,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 30,
- "negative": -2,
- "reputation_type": -3,
- "user": 30,
- "reputed_at": "2011-12-20 12:51:28",
- "reputation": 498
- }
- },
- {
- "pk": 45,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 30,
- "negative": -1,
- "reputation_type": -5,
- "user": 31,
- "reputed_at": "2011-12-20 12:51:28",
- "reputation": 499
- }
- },
- {
- "pk": 46,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 31,
- "negative": 0,
- "reputation_type": 1,
- "user": 31,
- "reputed_at": "2011-12-20 12:51:28",
- "reputation": 509
- }
- },
- {
- "pk": 47,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 32,
- "negative": -2,
- "reputation_type": -3,
- "user": 32,
- "reputed_at": "2011-12-20 12:51:28",
- "reputation": 498
- }
- },
- {
- "pk": 48,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 32,
- "negative": -1,
- "reputation_type": -5,
- "user": 33,
- "reputed_at": "2011-12-20 12:51:28",
- "reputation": 499
- }
- },
- {
- "pk": 49,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 33,
- "negative": 0,
- "reputation_type": 1,
- "user": 33,
- "reputed_at": "2011-12-20 12:51:28",
- "reputation": 509
- }
- },
- {
- "pk": 50,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 34,
- "negative": -2,
- "reputation_type": -3,
- "user": 34,
- "reputed_at": "2011-12-20 12:51:28",
- "reputation": 498
- }
- },
- {
- "pk": 51,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 34,
- "negative": -1,
- "reputation_type": -5,
- "user": 35,
- "reputed_at": "2011-12-20 12:51:28",
- "reputation": 499
- }
- },
- {
- "pk": 52,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 35,
- "negative": 0,
- "reputation_type": 1,
- "user": 35,
- "reputed_at": "2011-12-20 12:51:28",
- "reputation": 509
- }
- },
- {
- "pk": 53,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 36,
- "negative": -2,
- "reputation_type": -3,
- "user": 36,
- "reputed_at": "2011-12-20 12:51:29",
- "reputation": 498
- }
- },
- {
- "pk": 54,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 36,
- "negative": -1,
- "reputation_type": -5,
- "user": 37,
- "reputed_at": "2011-12-20 12:51:29",
- "reputation": 499
- }
- },
- {
- "pk": 55,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 37,
- "negative": 0,
- "reputation_type": 1,
- "user": 37,
- "reputed_at": "2011-12-20 12:51:29",
- "reputation": 509
- }
- },
- {
- "pk": 56,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 38,
- "negative": -2,
- "reputation_type": -3,
- "user": 38,
- "reputed_at": "2011-12-20 12:51:29",
- "reputation": 498
- }
- },
- {
- "pk": 57,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 38,
- "negative": -1,
- "reputation_type": -5,
- "user": 39,
- "reputed_at": "2011-12-20 12:51:29",
- "reputation": 499
- }
- },
- {
- "pk": 58,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 39,
- "negative": 0,
- "reputation_type": 1,
- "user": 39,
- "reputed_at": "2011-12-20 12:51:29",
- "reputation": 509
- }
- },
- {
- "pk": 59,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:29",
- "reputation": 510
- }
- },
- {
- "pk": 60,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 1,
- "reputed_at": "2011-12-20 12:51:29",
- "reputation": 520
- }
- },
- {
- "pk": 61,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:30",
- "reputation": 520
- }
- },
- {
- "pk": 62,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 2,
- "reputed_at": "2011-12-20 12:51:30",
- "reputation": 496
- }
- },
- {
- "pk": 63,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 3,
- "reputed_at": "2011-12-20 12:51:30",
- "reputation": 508
- }
- },
- {
- "pk": 64,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:30",
- "reputation": 530
- }
- },
- {
- "pk": 65,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 3,
- "reputed_at": "2011-12-20 12:51:30",
- "reputation": 518
- }
- },
- {
- "pk": 66,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:30",
- "reputation": 540
- }
- },
- {
- "pk": 67,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 4,
- "reputed_at": "2011-12-20 12:51:30",
- "reputation": 496
- }
- },
- {
- "pk": 68,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 5,
- "reputed_at": "2011-12-20 12:51:30",
- "reputation": 508
- }
- },
- {
- "pk": 69,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:30",
- "reputation": 550
- }
- },
- {
- "pk": 70,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 5,
- "reputed_at": "2011-12-20 12:51:31",
- "reputation": 518
- }
- },
- {
- "pk": 71,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:31",
- "reputation": 560
- }
- },
- {
- "pk": 72,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 6,
- "reputed_at": "2011-12-20 12:51:31",
- "reputation": 496
- }
- },
- {
- "pk": 73,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 7,
- "reputed_at": "2011-12-20 12:51:31",
- "reputation": 508
- }
- },
- {
- "pk": 74,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:31",
- "reputation": 570
- }
- },
- {
- "pk": 75,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 7,
- "reputed_at": "2011-12-20 12:51:31",
- "reputation": 518
- }
- },
- {
- "pk": 76,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:32",
- "reputation": 580
- }
- },
- {
- "pk": 77,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 8,
- "reputed_at": "2011-12-20 12:51:32",
- "reputation": 496
- }
- },
- {
- "pk": 78,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 9,
- "reputed_at": "2011-12-20 12:51:32",
- "reputation": 508
- }
- },
- {
- "pk": 79,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:32",
- "reputation": 590
- }
- },
- {
- "pk": 80,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 9,
- "reputed_at": "2011-12-20 12:51:32",
- "reputation": 518
- }
- },
- {
- "pk": 81,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:32",
- "reputation": 600
- }
- },
- {
- "pk": 82,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 10,
- "reputed_at": "2011-12-20 12:51:33",
- "reputation": 496
- }
- },
- {
- "pk": 83,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 11,
- "reputed_at": "2011-12-20 12:51:33",
- "reputation": 508
- }
- },
- {
- "pk": 84,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:33",
- "reputation": 610
- }
- },
- {
- "pk": 85,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 11,
- "reputed_at": "2011-12-20 12:51:33",
- "reputation": 518
- }
- },
- {
- "pk": 86,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:33",
- "reputation": 620
- }
- },
- {
- "pk": 87,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 12,
- "reputed_at": "2011-12-20 12:51:33",
- "reputation": 496
- }
- },
- {
- "pk": 88,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 13,
- "reputed_at": "2011-12-20 12:51:33",
- "reputation": 508
- }
- },
- {
- "pk": 89,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:34",
- "reputation": 630
- }
- },
- {
- "pk": 90,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 13,
- "reputed_at": "2011-12-20 12:51:34",
- "reputation": 518
- }
- },
- {
- "pk": 91,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:34",
- "reputation": 640
- }
- },
- {
- "pk": 92,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 14,
- "reputed_at": "2011-12-20 12:51:34",
- "reputation": 496
- }
- },
- {
- "pk": 93,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 15,
- "reputed_at": "2011-12-20 12:51:34",
- "reputation": 508
- }
- },
- {
- "pk": 94,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:35",
- "reputation": 650
- }
- },
- {
- "pk": 95,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 15,
- "reputed_at": "2011-12-20 12:51:35",
- "reputation": 518
- }
- },
- {
- "pk": 96,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:36",
- "reputation": 660
- }
- },
- {
- "pk": 97,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 16,
- "reputed_at": "2011-12-20 12:51:36",
- "reputation": 496
- }
- },
- {
- "pk": 98,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 17,
- "reputed_at": "2011-12-20 12:51:36",
- "reputation": 508
- }
- },
- {
- "pk": 99,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:36",
- "reputation": 670
- }
- },
- {
- "pk": 100,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 17,
- "reputed_at": "2011-12-20 12:51:36",
- "reputation": 518
- }
- },
- {
- "pk": 101,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:37",
- "reputation": 680
- }
- },
- {
- "pk": 102,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 18,
- "reputed_at": "2011-12-20 12:51:37",
- "reputation": 496
- }
- },
- {
- "pk": 103,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 19,
- "reputed_at": "2011-12-20 12:51:37",
- "reputation": 508
- }
- },
- {
- "pk": 104,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:38",
- "reputation": 690
- }
- },
- {
- "pk": 105,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 19,
- "reputed_at": "2011-12-20 12:51:38",
- "reputation": 518
- }
- },
- {
- "pk": 106,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:38",
- "reputation": 700
- }
- },
- {
- "pk": 107,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:39",
- "reputation": 508
- }
- },
- {
- "pk": 108,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:39",
- "reputation": 518
- }
- },
- {
- "pk": 109,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:39",
- "reputation": 528
- }
- },
- {
- "pk": 110,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:40",
- "reputation": 538
- }
- },
- {
- "pk": 111,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:40",
- "reputation": 548
- }
- },
- {
- "pk": 112,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:40",
- "reputation": 558
- }
- },
- {
- "pk": 113,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:41",
- "reputation": 568
- }
- },
- {
- "pk": 114,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:41",
- "reputation": 578
- }
- },
- {
- "pk": 115,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:42",
- "reputation": 588
- }
- },
- {
- "pk": 116,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:42",
- "reputation": 598
- }
- },
- {
- "pk": 117,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:43",
- "reputation": 608
- }
- },
- {
- "pk": 118,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:44",
- "reputation": 618
- }
- },
- {
- "pk": 119,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:44",
- "reputation": 628
- }
- },
- {
- "pk": 120,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:45",
- "reputation": 638
- }
- },
- {
- "pk": 121,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:46",
- "reputation": 648
- }
- },
- {
- "pk": 122,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:46",
- "reputation": 658
- }
- },
- {
- "pk": 123,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:47",
- "reputation": 668
- }
- },
- {
- "pk": 124,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:48",
- "reputation": 678
- }
- },
- {
- "pk": 125,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:49",
- "reputation": 688
- }
- },
- {
- "pk": 126,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:49",
- "reputation": 698
- }
- },
- {
- "pk": 127,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 15,
- "question": 40,
- "negative": 0,
- "reputation_type": 2,
- "user": 20,
- "reputed_at": "2011-12-20 12:51:52",
- "reputation": 713
- }
- },
- {
- "pk": 128,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 2,
- "question": 40,
- "negative": 0,
- "reputation_type": 3,
- "user": 40,
- "reputed_at": "2011-12-20 12:51:52",
- "reputation": 702
- }
- },
- {
- "pk": 1,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:22",
- "user": 2,
- "content_type": 20,
- "object_id": 1
- }
- },
- {
- "pk": 2,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:24",
- "user": 3,
- "content_type": 20,
- "object_id": 2
- }
- },
- {
- "pk": 3,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:24",
- "user": 4,
- "content_type": 20,
- "object_id": 3
- }
- },
- {
- "pk": 4,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:24",
- "user": 5,
- "content_type": 20,
- "object_id": 4
- }
- },
- {
- "pk": 5,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:24",
- "user": 6,
- "content_type": 20,
- "object_id": 5
- }
- },
- {
- "pk": 6,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:24",
- "user": 7,
- "content_type": 20,
- "object_id": 6
- }
- },
- {
- "pk": 7,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:24",
- "user": 8,
- "content_type": 20,
- "object_id": 7
- }
- },
- {
- "pk": 8,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:25",
- "user": 9,
- "content_type": 20,
- "object_id": 8
- }
- },
- {
- "pk": 9,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:25",
- "user": 10,
- "content_type": 20,
- "object_id": 9
- }
- },
- {
- "pk": 10,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:25",
- "user": 11,
- "content_type": 20,
- "object_id": 10
- }
- },
- {
- "pk": 11,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:25",
- "user": 12,
- "content_type": 20,
- "object_id": 11
- }
- },
- {
- "pk": 12,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:25",
- "user": 13,
- "content_type": 20,
- "object_id": 12
- }
- },
- {
- "pk": 13,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:25",
- "user": 14,
- "content_type": 20,
- "object_id": 13
- }
- },
- {
- "pk": 14,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:25",
- "user": 15,
- "content_type": 20,
- "object_id": 14
- }
- },
- {
- "pk": 15,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:25",
- "user": 16,
- "content_type": 20,
- "object_id": 15
- }
- },
- {
- "pk": 16,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:26",
- "user": 17,
- "content_type": 20,
- "object_id": 16
- }
- },
- {
- "pk": 17,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:26",
- "user": 18,
- "content_type": 20,
- "object_id": 17
- }
- },
- {
- "pk": 18,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:26",
- "user": 19,
- "content_type": 20,
- "object_id": 18
- }
- },
- {
- "pk": 19,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:26",
- "user": 20,
- "content_type": 20,
- "object_id": 19
- }
- },
- {
- "pk": 20,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:26",
- "user": 21,
- "content_type": 20,
- "object_id": 20
- }
- },
- {
- "pk": 21,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:26",
- "user": 22,
- "content_type": 20,
- "object_id": 21
- }
- },
- {
- "pk": 22,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:26",
- "user": 23,
- "content_type": 20,
- "object_id": 22
- }
- },
- {
- "pk": 23,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:27",
- "user": 24,
- "content_type": 20,
- "object_id": 23
- }
- },
- {
- "pk": 24,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:27",
- "user": 25,
- "content_type": 20,
- "object_id": 24
- }
- },
- {
- "pk": 25,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:27",
- "user": 26,
- "content_type": 20,
- "object_id": 25
- }
- },
- {
- "pk": 26,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:27",
- "user": 27,
- "content_type": 20,
- "object_id": 26
- }
- },
- {
- "pk": 27,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:27",
- "user": 28,
- "content_type": 20,
- "object_id": 27
- }
- },
- {
- "pk": 28,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:27",
- "user": 29,
- "content_type": 20,
- "object_id": 28
- }
- },
- {
- "pk": 29,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:28",
- "user": 30,
- "content_type": 20,
- "object_id": 29
- }
- },
- {
- "pk": 30,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:28",
- "user": 31,
- "content_type": 20,
- "object_id": 30
- }
- },
- {
- "pk": 31,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:28",
- "user": 32,
- "content_type": 20,
- "object_id": 31
- }
- },
- {
- "pk": 32,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:28",
- "user": 33,
- "content_type": 20,
- "object_id": 32
- }
- },
- {
- "pk": 33,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:28",
- "user": 34,
- "content_type": 20,
- "object_id": 33
- }
- },
- {
- "pk": 34,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:28",
- "user": 35,
- "content_type": 20,
- "object_id": 34
- }
- },
- {
- "pk": 35,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:28",
- "user": 36,
- "content_type": 20,
- "object_id": 35
- }
- },
- {
- "pk": 36,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:29",
- "user": 37,
- "content_type": 20,
- "object_id": 36
- }
- },
- {
- "pk": 37,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:29",
- "user": 38,
- "content_type": 20,
- "object_id": 37
- }
- },
- {
- "pk": 38,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:29",
- "user": 39,
- "content_type": 20,
- "object_id": 38
- }
- },
- {
- "pk": 39,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:29",
- "user": 40,
- "content_type": 20,
- "object_id": 39
- }
- },
- {
- "pk": 40,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:29",
- "user": 1,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 41,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:29",
- "user": 2,
- "content_type": 24,
- "object_id": 1
- }
- },
- {
- "pk": 42,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:30",
- "user": 2,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 43,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:30",
- "user": 3,
- "content_type": 24,
- "object_id": 2
- }
- },
- {
- "pk": 44,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:30",
- "user": 3,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 45,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:30",
- "user": 4,
- "content_type": 24,
- "object_id": 3
- }
- },
- {
- "pk": 46,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:30",
- "user": 4,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 47,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:30",
- "user": 5,
- "content_type": 24,
- "object_id": 4
- }
- },
- {
- "pk": 48,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:30",
- "user": 5,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 49,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:31",
- "user": 6,
- "content_type": 24,
- "object_id": 5
- }
- },
- {
- "pk": 50,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:31",
- "user": 6,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 51,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:31",
- "user": 7,
- "content_type": 24,
- "object_id": 6
- }
- },
- {
- "pk": 52,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:31",
- "user": 7,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 53,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:31",
- "user": 8,
- "content_type": 24,
- "object_id": 7
- }
- },
- {
- "pk": 54,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:32",
- "user": 8,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 55,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:32",
- "user": 9,
- "content_type": 24,
- "object_id": 8
- }
- },
- {
- "pk": 56,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:32",
- "user": 9,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 57,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:32",
- "user": 10,
- "content_type": 24,
- "object_id": 9
- }
- },
- {
- "pk": 58,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:32",
- "user": 10,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 59,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:33",
- "user": 11,
- "content_type": 24,
- "object_id": 10
- }
- },
- {
- "pk": 60,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:33",
- "user": 11,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 61,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:33",
- "user": 12,
- "content_type": 24,
- "object_id": 11
- }
- },
- {
- "pk": 62,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:33",
- "user": 12,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 63,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:33",
- "user": 13,
- "content_type": 24,
- "object_id": 12
- }
- },
- {
- "pk": 64,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:34",
- "user": 13,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 65,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:34",
- "user": 14,
- "content_type": 24,
- "object_id": 13
- }
- },
- {
- "pk": 66,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:34",
- "user": 14,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 67,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:34",
- "user": 15,
- "content_type": 24,
- "object_id": 14
- }
- },
- {
- "pk": 68,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:35",
- "user": 15,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 69,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:35",
- "user": 16,
- "content_type": 24,
- "object_id": 15
- }
- },
- {
- "pk": 70,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:36",
- "user": 16,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 71,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:36",
- "user": 17,
- "content_type": 24,
- "object_id": 16
- }
- },
- {
- "pk": 72,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:36",
- "user": 17,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 73,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:36",
- "user": 18,
- "content_type": 24,
- "object_id": 17
- }
- },
- {
- "pk": 74,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:37",
- "user": 18,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 75,
- "model": "askbot.vote",
- "fields": {
- "vote": -1,
- "voted_at": "2011-12-20 12:51:37",
- "user": 19,
- "content_type": 24,
- "object_id": 18
- }
- },
- {
- "pk": 76,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:38",
- "user": 19,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 77,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:38",
- "user": 20,
- "content_type": 24,
- "object_id": 19
- }
- },
- {
- "pk": 78,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:38",
- "user": 20,
- "content_type": 20,
- "object_id": 40
- }
- },
- {
- "pk": 79,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:39",
- "user": 1,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 80,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:39",
- "user": 2,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 81,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:39",
- "user": 3,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 82,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:40",
- "user": 4,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 83,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:40",
- "user": 5,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 84,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:40",
- "user": 6,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 85,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:41",
- "user": 7,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 86,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:41",
- "user": 8,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 87,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:42",
- "user": 9,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 88,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:42",
- "user": 10,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 89,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:43",
- "user": 11,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 90,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:44",
- "user": 12,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 91,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:44",
- "user": 13,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 92,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:45",
- "user": 14,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 93,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:46",
- "user": 15,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 94,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:46",
- "user": 16,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 95,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:47",
- "user": 17,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 96,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:48",
- "user": 18,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 97,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:49",
- "user": 19,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 98,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:49",
- "user": 20,
- "content_type": 24,
- "object_id": 20
- }
- },
- {
- "pk": 99,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:49",
- "user": 1,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 100,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:49",
- "user": 1,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 101,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:49",
- "user": 2,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 102,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:49",
- "user": 2,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 103,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:49",
- "user": 3,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 104,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:49",
- "user": 3,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 105,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 4,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 106,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 4,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 107,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 5,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 108,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 5,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 109,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 6,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 110,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 6,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 111,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 7,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 112,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 7,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 113,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 8,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 114,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 8,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 115,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 9,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 116,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 9,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 117,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 10,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 118,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 10,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 119,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 11,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 120,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 11,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 121,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 12,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 122,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 12,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 123,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 13,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 124,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 13,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 125,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 14,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 126,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 14,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 127,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 15,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 128,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 15,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 129,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 16,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 130,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 16,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 131,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 17,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 132,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 17,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 133,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 18,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 134,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 18,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 135,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 19,
- "content_type": 16,
- "object_id": 39
- }
- },
- {
- "pk": 136,
- "model": "askbot.vote",
- "fields": {
- "vote": 1,
- "voted_at": "2011-12-20 12:51:50",
- "user": 19,
- "content_type": 16,
- "object_id": 40
- }
- },
- {
- "pk": 40,
- "model": "askbot.comment",
- "fields": {
- "comment": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "score": 19,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:49",
- "offensive_flag_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "user": 20,
- "content_type": 24
- }
- },
- {
- "pk": 39,
- "model": "askbot.comment",
- "fields": {
- "comment": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "score": 19,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:49",
- "offensive_flag_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "user": 20,
- "content_type": 20
- }
- },
- {
- "pk": 38,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:48",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 19,
- "content_type": 24
- }
- },
- {
- "pk": 37,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:48",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 19,
- "content_type": 20
- }
- },
- {
- "pk": 36,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:47",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 18,
- "content_type": 24
- }
- },
- {
- "pk": 35,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:47",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 18,
- "content_type": 20
- }
- },
- {
- "pk": 34,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:47",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 17,
- "content_type": 24
- }
- },
- {
- "pk": 33,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:46",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 17,
- "content_type": 20
- }
- },
- {
- "pk": 32,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:46",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 16,
- "content_type": 24
- }
- },
- {
- "pk": 31,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:46",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 16,
- "content_type": 20
- }
- },
- {
- "pk": 30,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:45",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 15,
- "content_type": 24
- }
- },
- {
- "pk": 29,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:45",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 15,
- "content_type": 20
- }
- },
- {
- "pk": 28,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:45",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 14,
- "content_type": 24
- }
- },
- {
- "pk": 27,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:44",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 14,
- "content_type": 20
- }
- },
- {
- "pk": 26,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:44",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 13,
- "content_type": 24
- }
- },
- {
- "pk": 25,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:44",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 13,
- "content_type": 20
- }
- },
- {
- "pk": 24,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:43",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 12,
- "content_type": 24
- }
- },
- {
- "pk": 23,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:43",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 12,
- "content_type": 20
- }
- },
- {
- "pk": 22,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:43",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 11,
- "content_type": 24
- }
- },
- {
- "pk": 21,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:42",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 11,
- "content_type": 20
- }
- },
- {
- "pk": 20,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:42",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 10,
- "content_type": 24
- }
- },
- {
- "pk": 19,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:42",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 10,
- "content_type": 20
- }
- },
- {
- "pk": 18,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:42",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 9,
- "content_type": 24
- }
- },
- {
- "pk": 17,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:41",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 9,
- "content_type": 20
- }
- },
- {
- "pk": 16,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:41",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 8,
- "content_type": 24
- }
- },
- {
- "pk": 15,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:41",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 8,
- "content_type": 20
- }
- },
- {
- "pk": 14,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:41",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 7,
- "content_type": 24
- }
- },
- {
- "pk": 13,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:40",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 7,
- "content_type": 20
- }
- },
- {
- "pk": 12,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:40",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 6,
- "content_type": 24
- }
- },
- {
- "pk": 11,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:40",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 6,
- "content_type": 20
- }
- },
- {
- "pk": 10,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:40",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 5,
- "content_type": 24
- }
- },
- {
- "pk": 9,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:40",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 5,
- "content_type": 20
- }
- },
- {
- "pk": 8,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:39",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 4,
- "content_type": 24
- }
- },
- {
- "pk": 7,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:39",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 4,
- "content_type": 20
- }
- },
- {
- "pk": 6,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:39",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 3,
- "content_type": 24
- }
- },
- {
- "pk": 5,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:39",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 3,
- "content_type": 20
- }
- },
- {
- "pk": 4,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:39",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 2,
- "content_type": 24
- }
- },
- {
- "pk": 3,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:39",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 2,
- "content_type": 20
- }
- },
- {
- "pk": 2,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 20,
- "added_at": "2011-12-20 12:51:38",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 1,
- "content_type": 24
- }
- },
- {
- "pk": 1,
- "model": "askbot.comment",
- "fields": {
- "comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "score": 0,
- "object_id": 40,
- "added_at": "2011-12-20 12:51:38",
- "offensive_flag_count": 0,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "user": 1,
- "content_type": 20
- }
- },
- {
- "pk": 1,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-1-0",
- "deleted": false,
- "created_by": 1,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 2,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-1-1",
- "deleted": false,
- "created_by": 1,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 20,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-10-0",
- "deleted": false,
- "created_by": 10,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 19,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-10-1",
- "deleted": false,
- "created_by": 10,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 21,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-11-0",
- "deleted": false,
- "created_by": 11,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 22,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-11-1",
- "deleted": false,
- "created_by": 11,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 24,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-12-0",
- "deleted": false,
- "created_by": 12,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 23,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-12-1",
- "deleted": false,
- "created_by": 12,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 25,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-13-0",
- "deleted": false,
- "created_by": 13,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 26,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-13-1",
- "deleted": false,
- "created_by": 13,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 28,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-14-0",
- "deleted": false,
- "created_by": 14,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 27,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-14-1",
- "deleted": false,
- "created_by": 14,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 29,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-15-0",
- "deleted": false,
- "created_by": 15,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 30,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-15-1",
- "deleted": false,
- "created_by": 15,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 32,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-16-0",
- "deleted": false,
- "created_by": 16,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 31,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-16-1",
- "deleted": false,
- "created_by": 16,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 33,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-17-0",
- "deleted": false,
- "created_by": 17,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 34,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-17-1",
- "deleted": false,
- "created_by": 17,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 36,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-18-0",
- "deleted": false,
- "created_by": 18,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 35,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-18-1",
- "deleted": false,
- "created_by": 18,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 37,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-19-0",
- "deleted": false,
- "created_by": 19,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 38,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-19-1",
- "deleted": false,
- "created_by": 19,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 4,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-2-0",
- "deleted": false,
- "created_by": 2,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 3,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-2-1",
- "deleted": false,
- "created_by": 2,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 39,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-20-0",
- "deleted": false,
- "created_by": 20,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 40,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-20-1",
- "deleted": false,
- "created_by": 20,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 42,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-21-0",
- "deleted": false,
- "created_by": 21,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 41,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-21-1",
- "deleted": false,
- "created_by": 21,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 43,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-22-0",
- "deleted": false,
- "created_by": 22,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 44,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-22-1",
- "deleted": false,
- "created_by": 22,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 46,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-23-0",
- "deleted": false,
- "created_by": 23,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 45,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-23-1",
- "deleted": false,
- "created_by": 23,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 47,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-24-0",
- "deleted": false,
- "created_by": 24,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 48,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-24-1",
- "deleted": false,
- "created_by": 24,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 50,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-25-0",
- "deleted": false,
- "created_by": 25,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 49,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-25-1",
- "deleted": false,
- "created_by": 25,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 51,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-26-0",
- "deleted": false,
- "created_by": 26,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 52,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-26-1",
- "deleted": false,
- "created_by": 26,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 54,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-27-0",
- "deleted": false,
- "created_by": 27,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 53,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-27-1",
- "deleted": false,
- "created_by": 27,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 55,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-28-0",
- "deleted": false,
- "created_by": 28,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 56,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-28-1",
- "deleted": false,
- "created_by": 28,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 58,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-29-0",
- "deleted": false,
- "created_by": 29,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 57,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-29-1",
- "deleted": false,
- "created_by": 29,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 5,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-3-0",
- "deleted": false,
- "created_by": 3,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 6,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-3-1",
- "deleted": false,
- "created_by": 3,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 60,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-30-0",
- "deleted": false,
- "created_by": 30,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 59,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-30-1",
- "deleted": false,
- "created_by": 30,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 61,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-31-0",
- "deleted": false,
- "created_by": 31,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 62,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-31-1",
- "deleted": false,
- "created_by": 31,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 64,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-32-0",
- "deleted": false,
- "created_by": 32,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 63,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-32-1",
- "deleted": false,
- "created_by": 32,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 65,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-33-0",
- "deleted": false,
- "created_by": 33,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 66,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-33-1",
- "deleted": false,
- "created_by": 33,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 68,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-34-0",
- "deleted": false,
- "created_by": 34,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 67,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-34-1",
- "deleted": false,
- "created_by": 34,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 69,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-35-0",
- "deleted": false,
- "created_by": 35,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 70,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-35-1",
- "deleted": false,
- "created_by": 35,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 72,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-36-0",
- "deleted": false,
- "created_by": 36,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 71,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-36-1",
- "deleted": false,
- "created_by": 36,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 73,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-37-0",
- "deleted": false,
- "created_by": 37,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 74,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-37-1",
- "deleted": false,
- "created_by": 37,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 76,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-38-0",
- "deleted": false,
- "created_by": 38,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 75,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-38-1",
- "deleted": false,
- "created_by": 38,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 77,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-39-0",
- "deleted": false,
- "created_by": 39,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 78,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-39-1",
- "deleted": false,
- "created_by": 39,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 8,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-4-0",
- "deleted": false,
- "created_by": 4,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 7,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-4-1",
- "deleted": false,
- "created_by": 4,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 79,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-40-0",
- "deleted": false,
- "created_by": 40,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 80,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-40-1",
- "deleted": false,
- "created_by": 40,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 9,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-5-0",
- "deleted": false,
- "created_by": 5,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 10,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-5-1",
- "deleted": false,
- "created_by": 5,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 12,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-6-0",
- "deleted": false,
- "created_by": 6,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 11,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-6-1",
- "deleted": false,
- "created_by": 6,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 13,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-7-0",
- "deleted": false,
- "created_by": 7,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 14,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-7-1",
- "deleted": false,
- "created_by": 7,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 16,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-8-0",
- "deleted": false,
- "created_by": 8,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 15,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-8-1",
- "deleted": false,
- "created_by": 8,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 17,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-9-0",
- "deleted": false,
- "created_by": 9,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 18,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-9-1",
- "deleted": false,
- "created_by": 9,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 61,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 40,
- "tagnames": "tag-40-0 tag-40-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.EDITED",
- "question": 40,
- "revised_at": "2011-12-20 12:51:50",
- "summary": "EDITED",
- "revision_type": 1,
- "answer": null,
- "revision": 2
- }
- },
- {
- "pk": 62,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 20,
- "tagnames": "",
- "text": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:50",
- "summary": "No.2 Revision",
- "revision_type": 2,
- "answer": 20,
- "revision": 2
- }
- },
- {
- "pk": 1,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 1,
- "tagnames": "tag-1-0 tag-1-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.1",
- "question": 1,
- "revised_at": "2011-12-20 12:51:22",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 2,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 2,
- "tagnames": "tag-2-0 tag-2-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.2",
- "question": 2,
- "revised_at": "2011-12-20 12:51:24",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 3,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 3,
- "tagnames": "tag-3-0 tag-3-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.3",
- "question": 3,
- "revised_at": "2011-12-20 12:51:24",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 4,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 4,
- "tagnames": "tag-4-0 tag-4-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.4",
- "question": 4,
- "revised_at": "2011-12-20 12:51:24",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 5,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 5,
- "tagnames": "tag-5-0 tag-5-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.5",
- "question": 5,
- "revised_at": "2011-12-20 12:51:24",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 6,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 6,
- "tagnames": "tag-6-0 tag-6-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.6",
- "question": 6,
- "revised_at": "2011-12-20 12:51:24",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 7,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 7,
- "tagnames": "tag-7-0 tag-7-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.7",
- "question": 7,
- "revised_at": "2011-12-20 12:51:24",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 8,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 8,
- "tagnames": "tag-8-0 tag-8-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.8",
- "question": 8,
- "revised_at": "2011-12-20 12:51:24",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 9,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 9,
- "tagnames": "tag-9-0 tag-9-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.9",
- "question": 9,
- "revised_at": "2011-12-20 12:51:25",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 10,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 10,
- "tagnames": "tag-10-0 tag-10-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.10",
- "question": 10,
- "revised_at": "2011-12-20 12:51:25",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 11,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 11,
- "tagnames": "tag-11-0 tag-11-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.11",
- "question": 11,
- "revised_at": "2011-12-20 12:51:25",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 12,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 12,
- "tagnames": "tag-12-0 tag-12-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.12",
- "question": 12,
- "revised_at": "2011-12-20 12:51:25",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 13,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 13,
- "tagnames": "tag-13-0 tag-13-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.13",
- "question": 13,
- "revised_at": "2011-12-20 12:51:25",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 14,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 14,
- "tagnames": "tag-14-0 tag-14-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.14",
- "question": 14,
- "revised_at": "2011-12-20 12:51:25",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 15,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 15,
- "tagnames": "tag-15-0 tag-15-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.15",
- "question": 15,
- "revised_at": "2011-12-20 12:51:25",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 16,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 16,
- "tagnames": "tag-16-0 tag-16-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.16",
- "question": 16,
- "revised_at": "2011-12-20 12:51:26",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 17,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 17,
- "tagnames": "tag-17-0 tag-17-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.17",
- "question": 17,
- "revised_at": "2011-12-20 12:51:26",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 18,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 18,
- "tagnames": "tag-18-0 tag-18-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.18",
- "question": 18,
- "revised_at": "2011-12-20 12:51:26",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 19,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 19,
- "tagnames": "tag-19-0 tag-19-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.19",
- "question": 19,
- "revised_at": "2011-12-20 12:51:26",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 20,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 20,
- "tagnames": "tag-20-0 tag-20-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.20",
- "question": 20,
- "revised_at": "2011-12-20 12:51:26",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 21,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 21,
- "tagnames": "tag-21-0 tag-21-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.21",
- "question": 21,
- "revised_at": "2011-12-20 12:51:26",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 22,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 22,
- "tagnames": "tag-22-0 tag-22-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.22",
- "question": 22,
- "revised_at": "2011-12-20 12:51:26",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 23,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 23,
- "tagnames": "tag-23-0 tag-23-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.23",
- "question": 23,
- "revised_at": "2011-12-20 12:51:27",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 24,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 24,
- "tagnames": "tag-24-0 tag-24-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.24",
- "question": 24,
- "revised_at": "2011-12-20 12:51:27",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 25,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 25,
- "tagnames": "tag-25-0 tag-25-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.25",
- "question": 25,
- "revised_at": "2011-12-20 12:51:27",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 26,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 26,
- "tagnames": "tag-26-0 tag-26-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.26",
- "question": 26,
- "revised_at": "2011-12-20 12:51:27",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 27,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 27,
- "tagnames": "tag-27-0 tag-27-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.27",
- "question": 27,
- "revised_at": "2011-12-20 12:51:27",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 28,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 28,
- "tagnames": "tag-28-0 tag-28-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.28",
- "question": 28,
- "revised_at": "2011-12-20 12:51:27",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 29,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 29,
- "tagnames": "tag-29-0 tag-29-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.29",
- "question": 29,
- "revised_at": "2011-12-20 12:51:27",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 30,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 30,
- "tagnames": "tag-30-0 tag-30-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.30",
- "question": 30,
- "revised_at": "2011-12-20 12:51:28",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 31,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 31,
- "tagnames": "tag-31-0 tag-31-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.31",
- "question": 31,
- "revised_at": "2011-12-20 12:51:28",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 32,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 32,
- "tagnames": "tag-32-0 tag-32-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.32",
- "question": 32,
- "revised_at": "2011-12-20 12:51:28",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 33,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 33,
- "tagnames": "tag-33-0 tag-33-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.33",
- "question": 33,
- "revised_at": "2011-12-20 12:51:28",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 34,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 34,
- "tagnames": "tag-34-0 tag-34-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.34",
- "question": 34,
- "revised_at": "2011-12-20 12:51:28",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 35,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 35,
- "tagnames": "tag-35-0 tag-35-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.35",
- "question": 35,
- "revised_at": "2011-12-20 12:51:28",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 36,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 36,
- "tagnames": "tag-36-0 tag-36-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.36",
- "question": 36,
- "revised_at": "2011-12-20 12:51:29",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 37,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 37,
- "tagnames": "tag-37-0 tag-37-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.37",
- "question": 37,
- "revised_at": "2011-12-20 12:51:29",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 38,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 38,
- "tagnames": "tag-38-0 tag-38-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.38",
- "question": 38,
- "revised_at": "2011-12-20 12:51:29",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 39,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 39,
- "tagnames": "tag-39-0 tag-39-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.39",
- "question": 39,
- "revised_at": "2011-12-20 12:51:29",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 40,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 40,
- "tagnames": "tag-40-0 tag-40-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.40",
- "question": 40,
- "revised_at": "2011-12-20 12:51:29",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 41,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 1,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:29",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 1,
- "revision": 1
- }
- },
- {
- "pk": 42,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 2,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:30",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 2,
- "revision": 1
- }
- },
- {
- "pk": 43,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 3,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:30",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 3,
- "revision": 1
- }
- },
- {
- "pk": 44,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 4,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:30",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 4,
- "revision": 1
- }
- },
- {
- "pk": 45,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 5,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:30",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 5,
- "revision": 1
- }
- },
- {
- "pk": 46,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 6,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:31",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 6,
- "revision": 1
- }
- },
- {
- "pk": 47,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 7,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:31",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 7,
- "revision": 1
- }
- },
- {
- "pk": 48,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 8,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:31",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 8,
- "revision": 1
- }
- },
- {
- "pk": 49,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 9,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:32",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 9,
- "revision": 1
- }
- },
- {
- "pk": 50,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 10,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:32",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 10,
- "revision": 1
- }
- },
- {
- "pk": 51,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 11,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:33",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 11,
- "revision": 1
- }
- },
- {
- "pk": 52,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 12,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:33",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 12,
- "revision": 1
- }
- },
- {
- "pk": 53,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 13,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:33",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 13,
- "revision": 1
- }
- },
- {
- "pk": 54,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 14,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:34",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 14,
- "revision": 1
- }
- },
- {
- "pk": 55,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 15,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:35",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 15,
- "revision": 1
- }
- },
- {
- "pk": 56,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 16,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:35",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 16,
- "revision": 1
- }
- },
- {
- "pk": 57,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 17,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:36",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 17,
- "revision": 1
- }
- },
- {
- "pk": 58,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 18,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:36",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 18,
- "revision": 1
- }
- },
- {
- "pk": 59,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 19,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:37",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 19,
- "revision": 1
- }
- },
- {
- "pk": 60,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 20,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-12-20 12:51:38",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 20,
- "revision": 1
- }
- },
- {
- "pk": 1,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 1,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 1,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 1,
- 2
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:22",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-1-0 tag-1-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:22",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.1",
- "last_edited_at": null
- }
- },
- {
- "pk": 2,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 2,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 2,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 4,
- 3
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:24",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-2-0 tag-2-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:24",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.2",
- "last_edited_at": null
- }
- },
- {
- "pk": 3,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 3,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 3,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 5,
- 6
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:24",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-3-0 tag-3-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:24",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.3",
- "last_edited_at": null
- }
- },
- {
- "pk": 4,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 4,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 4,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 8,
- 7
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:24",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-4-0 tag-4-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:24",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.4",
- "last_edited_at": null
- }
- },
- {
- "pk": 5,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 5,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 5,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 9,
- 10
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:24",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-5-0 tag-5-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:24",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.5",
- "last_edited_at": null
- }
- },
- {
- "pk": 6,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 6,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 6,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 12,
- 11
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:24",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-6-0 tag-6-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:24",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.6",
- "last_edited_at": null
- }
- },
- {
- "pk": 7,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 7,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 7,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 13,
- 14
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:24",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-7-0 tag-7-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:24",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.7",
- "last_edited_at": null
- }
- },
- {
- "pk": 8,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 8,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 8,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 16,
- 15
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:24",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-8-0 tag-8-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:24",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.8",
- "last_edited_at": null
- }
- },
- {
- "pk": 9,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 9,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 9,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 17,
- 18
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:25",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-9-0 tag-9-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:25",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.9",
- "last_edited_at": null
- }
- },
- {
- "pk": 10,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 10,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 10,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 20,
- 19
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:25",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-10-0 tag-10-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:25",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.10",
- "last_edited_at": null
- }
- },
- {
- "pk": 11,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 11,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 11,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 21,
- 22
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:25",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-11-0 tag-11-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:25",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.11",
- "last_edited_at": null
- }
- },
- {
- "pk": 12,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 12,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 12,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 24,
- 23
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:25",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-12-0 tag-12-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:25",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.12",
- "last_edited_at": null
- }
- },
- {
- "pk": 13,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 13,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 13,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 25,
- 26
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:25",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-13-0 tag-13-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:25",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.13",
- "last_edited_at": null
- }
- },
- {
- "pk": 14,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 14,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 14,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 28,
- 27
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:25",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-14-0 tag-14-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:25",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.14",
- "last_edited_at": null
- }
- },
- {
- "pk": 15,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 15,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 15,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 29,
- 30
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:25",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-15-0 tag-15-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:25",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.15",
- "last_edited_at": null
- }
- },
- {
- "pk": 16,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 16,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 16,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 32,
- 31
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:26",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-16-0 tag-16-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:26",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.16",
- "last_edited_at": null
- }
- },
- {
- "pk": 17,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 17,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 17,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 33,
- 34
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:26",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-17-0 tag-17-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:26",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.17",
- "last_edited_at": null
- }
- },
- {
- "pk": 18,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 18,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 18,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 36,
- 35
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:26",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-18-0 tag-18-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:26",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.18",
- "last_edited_at": null
- }
- },
- {
- "pk": 19,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 19,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 19,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 37,
- 38
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:26",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-19-0 tag-19-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:26",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.19",
- "last_edited_at": null
- }
- },
- {
- "pk": 20,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 20,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 20,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 39,
- 40
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:26",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-20-0 tag-20-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:26",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.20",
- "last_edited_at": null
- }
- },
- {
- "pk": 21,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 21,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 21,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 42,
- 41
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:26",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-21-0 tag-21-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:26",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.21",
- "last_edited_at": null
- }
- },
- {
- "pk": 22,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 22,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 22,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 43,
- 44
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:26",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-22-0 tag-22-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:26",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.22",
- "last_edited_at": null
- }
- },
- {
- "pk": 23,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 23,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 23,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 46,
- 45
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:27",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-23-0 tag-23-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:27",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.23",
- "last_edited_at": null
- }
- },
- {
- "pk": 24,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 24,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 24,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 47,
- 48
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:27",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-24-0 tag-24-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:27",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.24",
- "last_edited_at": null
- }
- },
- {
- "pk": 25,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 25,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 25,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 50,
- 49
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:27",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-25-0 tag-25-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:27",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.25",
- "last_edited_at": null
- }
- },
- {
- "pk": 26,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 26,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 26,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 51,
- 52
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:27",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-26-0 tag-26-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:27",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.26",
- "last_edited_at": null
- }
- },
- {
- "pk": 27,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 27,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 27,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 54,
- 53
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:27",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-27-0 tag-27-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:27",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.27",
- "last_edited_at": null
- }
- },
- {
- "pk": 28,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 28,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 28,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 55,
- 56
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:27",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-28-0 tag-28-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:27",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.28",
- "last_edited_at": null
- }
- },
- {
- "pk": 29,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 29,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 29,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 58,
- 57
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:27",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-29-0 tag-29-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:27",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.29",
- "last_edited_at": null
- }
- },
- {
- "pk": 30,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 30,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 30,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 60,
- 59
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:28",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-30-0 tag-30-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:28",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.30",
- "last_edited_at": null
- }
- },
- {
- "pk": 31,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 31,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 31,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 61,
- 62
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:28",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-31-0 tag-31-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:28",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.31",
- "last_edited_at": null
- }
- },
- {
- "pk": 32,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 32,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 32,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 64,
- 63
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:28",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-32-0 tag-32-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:28",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.32",
- "last_edited_at": null
- }
- },
- {
- "pk": 33,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 33,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 33,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 65,
- 66
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:28",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-33-0 tag-33-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:28",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.33",
- "last_edited_at": null
- }
- },
- {
- "pk": 34,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 34,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 34,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 68,
- 67
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:28",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-34-0 tag-34-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:28",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.34",
- "last_edited_at": null
- }
- },
- {
- "pk": 35,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 35,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 35,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 69,
- 70
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:28",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-35-0 tag-35-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:28",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.35",
- "last_edited_at": null
- }
- },
- {
- "pk": 36,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 36,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 36,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 72,
- 71
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:29",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-36-0 tag-36-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:29",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.36",
- "last_edited_at": null
- }
- },
- {
- "pk": 37,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 37,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 37,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 73,
- 74
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:29",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-37-0 tag-37-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:29",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.37",
- "last_edited_at": null
- }
- },
- {
- "pk": 38,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 38,
- "view_count": 0,
- "locked_at": null,
- "score": -1,
- "author": 38,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 76,
- 75
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:29",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-38-0 tag-38-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:29",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.38",
- "last_edited_at": null
- }
- },
- {
- "pk": 39,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 39,
- "view_count": 0,
- "locked_at": null,
- "score": 1,
- "author": 39,
- "comment_count": 0,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
- "last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 77,
- 78
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-12-20 12:51:29",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-39-0 tag-39-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:29",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.39",
- "last_edited_at": null
- }
- },
- {
- "pk": 40,
- "model": "askbot.question",
- "fields": {
- "wiki": false,
- "vote_up_count": 20,
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "offensive_flag_count": 0,
- "closed_at": null,
- "deleted_at": null,
- "last_activity_by": 20,
- "view_count": 0,
- "locked_at": null,
- "score": 20,
- "author": 40,
- "comment_count": 20,
- "html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
- "vote_down_count": 0,
- "closed": false,
- "answer_accepted": true,
- "last_edited_by": 40,
- "followed_by": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12,
- 13,
- 14,
- 15,
- 16,
- 17,
- 18,
- 19,
- 20
- ],
- "favourite_count": 0,
- "tags": [
- 79,
- 80
- ],
- "deleted": false,
- "summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 20,
- "last_activity_at": "2011-12-20 12:51:50",
- "closed_by": null,
- "close_reason": null,
- "locked": false,
- "is_anonymous": false,
- "tagnames": "tag-40-0 tag-40-1",
- "locked_by": null,
- "added_at": "2011-12-20 12:51:29",
- "deleted_by": null,
- "wikified_at": null,
- "title": "Test question title No.EDITED",
- "last_edited_at": "2011-12-20 12:51:50"
- }
- },
- {
- "pk": 1,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": 1,
- "author": 1,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 0,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:29",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 2,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": -1,
- "author": 2,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 1,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:30",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 3,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": 1,
- "author": 3,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 0,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:30",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 4,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": -1,
- "author": 4,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 1,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:30",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 5,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": 1,
- "author": 5,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 0,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:30",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 6,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": -1,
- "author": 6,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 1,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:31",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 7,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": 1,
- "author": 7,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 0,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:31",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 8,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": -1,
- "author": 8,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 1,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:31",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 9,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": 1,
- "author": 9,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 0,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:32",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 10,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": -1,
- "author": 10,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 1,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:32",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 11,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": 1,
- "author": 11,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 0,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:33",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 12,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": -1,
- "author": 12,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 1,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:33",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 13,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": 1,
- "author": 13,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 0,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:33",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 14,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": -1,
- "author": 14,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 1,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:34",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 15,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": 1,
- "author": 15,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 0,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:35",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 16,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": -1,
- "author": 16,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 1,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:35",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 17,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": 1,
- "author": 17,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 0,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:36",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 18,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 0,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": -1,
- "author": 18,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 1,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:36",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 19,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 1,
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": 1,
- "author": 19,
- "question": 40,
- "comment_count": 0,
- "html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
- "vote_down_count": 0,
- "last_edited_by": null,
- "accepted_at": null,
- "deleted": false,
- "accepted": false,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:37",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": null
- }
- },
- {
- "pk": 20,
- "model": "askbot.answer",
- "fields": {
- "wiki": false,
- "vote_up_count": 20,
- "text": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "offensive_flag_count": 0,
- "deleted_at": null,
- "locked_at": null,
- "score": 20,
- "author": 20,
- "question": 40,
- "comment_count": 20,
- "html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
- "vote_down_count": 0,
- "last_edited_by": 20,
- "accepted_at": "2011-12-20 12:51:52",
- "deleted": false,
- "accepted": true,
- "locked": false,
- "locked_by": null,
- "added_at": "2011-12-20 12:51:38",
- "deleted_by": null,
- "wikified_at": null,
- "last_edited_at": "2011-12-20 12:51:50"
- }
- },
- {
- "pk": 1,
- "model": "livesettings.setting",
- "fields": {
- "value": "2",
- "group": "GENERAL_SKIN_SETTINGS",
- "site": 1,
- "key": "MEDIA_RESOURCE_REVISION"
- }
- },
- {
- "pk": 2,
- "model": "livesettings.setting",
- "fields": {
- "value": "538027b7ec845c2d7b331a752af88e5f12f62e58",
- "group": "GENERAL_SKIN_SETTINGS",
- "site": 1,
- "key": "MEDIA_RESOURCE_REVISION_HASH"
- }
- }
-] \ No newline at end of file