From 27a1849b1df5cf4c669dc216a2ee139344e4a179 Mon Sep 17 00:00:00 2001 From: ibuler Date: Thu, 7 Dec 2017 16:25:50 +0800 Subject: [PATCH] =?UTF-8?q?[Change]=20=E4=BF=AE=E6=94=B9idc=20=3D>=20clust?= =?UTF-8?q?er?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/assets/api.py | 24 ++-- apps/assets/forms.py | 17 ++- apps/assets/models/__init__.py | 2 +- apps/assets/models/asset.py | 24 ++-- apps/assets/models/cluster.py | 63 +++++++++ apps/assets/models/idc.py | 71 ---------- apps/assets/models/user.py | 13 +- apps/assets/models/utils.py | 6 +- apps/assets/serializers.py | 12 +- .../assets/templates/assets/asset_create.html | 2 +- .../assets/templates/assets/asset_detail.html | 4 +- .../{idc_assets.html => cluster_assets.html} | 42 +++--- ...update.html => cluster_create_update.html} | 2 +- .../{idc_detail.html => cluster_detail.html} | 42 +++--- .../{idc_list.html => cluster_list.html} | 10 +- .../templates/assets/system_user_list.html | 2 +- apps/assets/urls/api_urls.py | 8 +- apps/assets/urls/views_urls.py | 14 +- apps/assets/views/__init__.py | 2 +- apps/assets/views/admin_user.py | 2 +- apps/assets/views/asset.py | 4 +- apps/assets/views/cluster.py | 101 ++++++++++++++ apps/assets/views/group.py | 2 +- apps/assets/views/idc.py | 101 -------------- apps/fixtures/fake.json | 2 +- apps/fixtures/init.json | 2 +- apps/locale/zh/LC_MESSAGES/django.po | 32 ++--- apps/ops/ansible/runner.py | 3 +- apps/ops/models.py | 26 +++- apps/ops/utils.py | 130 +++++++++--------- apps/ops/views.py | 4 +- apps/templates/_nav.html | 2 +- utils/export_fake_data.sh | 2 +- utils/export_init_data.sh | 5 +- 34 files changed, 395 insertions(+), 383 deletions(-) create mode 100644 apps/assets/models/cluster.py delete mode 100644 apps/assets/models/idc.py rename apps/assets/templates/assets/{idc_assets.html => cluster_assets.html} (90%) rename apps/assets/templates/assets/{idc_create_update.html => cluster_create_update.html} (96%) rename apps/assets/templates/assets/{idc_detail.html => cluster_detail.html} (79%) rename apps/assets/templates/assets/{idc_list.html => cluster_list.html} (93%) create mode 100644 apps/assets/views/cluster.py delete mode 100644 apps/assets/views/idc.py diff --git a/apps/assets/api.py b/apps/assets/api.py index 477150ec2..da363dee4 100644 --- a/apps/assets/api.py +++ b/apps/assets/api.py @@ -24,7 +24,7 @@ from common.mixins import IDInFilterMixin from common.utils import get_object_or_none from .hands import IsSuperUser, IsAppUser, IsValidUser, \ get_user_granted_assets, push_users -from .models import AssetGroup, Asset, IDC, SystemUser, AdminUser +from .models import AssetGroup, Asset, Cluster, SystemUser, AdminUser from . import serializers from .tasks import update_assets_hardware_info from .utils import test_admin_user_connective_manual @@ -41,12 +41,12 @@ class AssetViewSet(IDInFilterMixin, BulkModelViewSet): queryset = super(AssetViewSet, self).get_queryset() else: queryset = get_user_granted_assets(self.request.user) - idc_id = self.request.query_params.get('idc_id', '') + cluster_id = self.request.query_params.get('cluster_id', '') system_users_id = self.request.query_params.get('system_user_id', '') asset_group_id = self.request.query_params.get('asset_group_id', '') admin_user_id = self.request.query_params.get('admin_user_id', '') - if idc_id: - queryset = queryset.filter(idc__id=idc_id) + if cluster_id: + queryset = queryset.filter(cluster__id=cluster_id) if system_users_id: queryset = queryset.filter(system_users__id=system_users_id) if admin_user_id: @@ -84,17 +84,17 @@ class AssetGroupUpdateSystemUserApi(generics.RetrieveUpdateAPIView): permission_classes = (IsSuperUser,) -class IDCUpdateAssetsApi(generics.RetrieveUpdateAPIView): - """IDC update asset member""" - queryset = IDC.objects.all() - serializer_class = serializers.IDCUpdateAssetsSerializer +class ClusterUpdateAssetsApi(generics.RetrieveUpdateAPIView): + """Cluster update asset member""" + queryset = Cluster.objects.all() + serializer_class = serializers.ClusterUpdateAssetsSerializer permission_classes = (IsSuperUser,) -class IDCViewSet(IDInFilterMixin, BulkModelViewSet): - """IDC api set, for add,delete,update,list,retrieve resource""" - queryset = IDC.objects.all() - serializer_class = serializers.IDCSerializer +class ClusterViewSet(IDInFilterMixin, BulkModelViewSet): + """Cluster api set, for add,delete,update,list,retrieve resource""" + queryset = Cluster.objects.all() + serializer_class = serializers.ClusterSerializer permission_classes = (IsSuperUser,) diff --git a/apps/assets/forms.py b/apps/assets/forms.py index 902325310..d7d014a15 100644 --- a/apps/assets/forms.py +++ b/apps/assets/forms.py @@ -2,7 +2,7 @@ from django import forms from django.utils.translation import gettext_lazy as _ -from .models import IDC, Asset, AssetGroup, AdminUser, SystemUser +from .models import Cluster, Asset, AssetGroup, AdminUser, SystemUser from common.utils import validate_ssh_private_key, ssh_pubkey_gen, ssh_key_gen, get_logger @@ -14,7 +14,7 @@ class AssetCreateForm(forms.ModelForm): model = Asset fields = [ 'hostname', 'ip', 'public_ip', 'port', 'type', 'comment', - 'admin_user', 'idc', 'groups', 'status', 'env', 'is_active' + 'admin_user', "cluster", 'groups', 'status', 'env', 'is_active' ] widgets = { 'groups': forms.SelectMultiple( @@ -43,7 +43,7 @@ class AssetUpdateForm(forms.ModelForm): class Meta: model = Asset fields = [ - 'hostname', 'ip', 'port', 'groups', 'admin_user', 'idc', 'is_active', + 'hostname', 'ip', 'port', 'groups', 'admin_user', "cluster", 'is_active', 'type', 'env', 'status', 'public_ip', 'remote_card_ip', 'cabinet_no', 'cabinet_pos', 'number', 'comment' ] @@ -83,7 +83,7 @@ class AssetBulkUpdateForm(forms.ModelForm): class Meta: model = Asset fields = [ - 'assets', 'port', 'groups', 'admin_user', 'idc', + 'assets', 'port', 'groups', 'admin_user', "cluster", 'type', 'env', 'status', ] widgets = { @@ -139,7 +139,7 @@ class AssetGroupForm(forms.ModelForm): } -class IDCForm(forms.ModelForm): +class ClusterForm(forms.ModelForm): # See AdminUserForm comment same it assets = forms.ModelMultipleChoiceField( queryset=Asset.objects.all(), @@ -153,16 +153,16 @@ class IDCForm(forms.ModelForm): if kwargs.get('instance'): initial = kwargs.get('initial', {}) initial['assets'] = kwargs['instance'].assets.all() - super(IDCForm, self).__init__(*args, **kwargs) + super(ClusterForm, self).__init__(*args, **kwargs) def _save_m2m(self): - super(IDCForm, self)._save_m2m() + super(ClusterForm, self)._save_m2m() assets = self.cleaned_data['assets'] self.instance.assets.clear() self.instance.assets.add(*tuple(assets)) class Meta: - model = IDC + model = Cluster fields = ['name', "bandwidth", "operator", 'contact', 'phone', 'address', 'intranet', 'extranet', 'comment'] widgets = { @@ -356,6 +356,5 @@ class SystemUserUpdateForm(forms.ModelForm): } - class FileForm(forms.Form): file = forms.FileField() diff --git a/apps/assets/models/__init__.py b/apps/assets/models/__init__.py index 0414d03b3..52c68903e 100644 --- a/apps/assets/models/__init__.py +++ b/apps/assets/models/__init__.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # -from .idc import * +from .cluster import * from .user import * from .group import * from .asset import * diff --git a/apps/assets/models/asset.py b/apps/assets/models/asset.py index 9db42c938..cbb1bd59b 100644 --- a/apps/assets/models/asset.py +++ b/apps/assets/models/asset.py @@ -10,14 +10,14 @@ from django.db import models import logging from django.utils.translation import ugettext_lazy as _ -from . import IDC, AssetGroup, AdminUser, SystemUser +from . import Cluster, AssetGroup, AdminUser, SystemUser __all__ = ['Asset'] logger = logging.getLogger(__name__) -def get_default_idc(): - return IDC.initial() +def get_default_cluster(): + return Cluster.initial() class Asset(models.Model): @@ -47,7 +47,7 @@ class Asset(models.Model): groups = models.ManyToManyField(AssetGroup, blank=True, related_name='assets', verbose_name=_('Asset groups')) admin_user = models.ForeignKey(AdminUser, null=True, blank=True, related_name='assets', on_delete=models.SET_NULL, verbose_name=_("Admin user")) system_users = models.ManyToManyField(SystemUser, blank=True, related_name='assets', verbose_name=_("System User")) - idc = models.ForeignKey(IDC, blank=True, null=True, related_name='assets', on_delete=models.SET_NULL, verbose_name=_('IDC'),) + cluster = models.ForeignKey(Cluster, blank=True, null=True, related_name='assets', on_delete=models.SET_NULL, verbose_name=_('Cluster'),) is_active = models.BooleanField(default=True, verbose_name=_('Is active')) type = models.CharField(choices=TYPE_CHOICES, max_length=16, blank=True, null=True, default='Server', verbose_name=_('Asset type'),) env = models.CharField(choices=ENV_CHOICES, max_length=8, blank=True, null=True, default='Prod', verbose_name=_('Asset environment'),) @@ -100,18 +100,16 @@ class Asset(models.Model): 'hostname': self.hostname, 'ip': self.ip, 'port': self.port, + 'groups': [group.name for group in self.groups.all()], } def _to_secret_json(self): - """Ansible use it create inventory""" - data = { - 'id': self.id, - 'hostname': self.hostname, - 'ip': self.ip, - 'port': self.port, - 'groups': [group.name for group in self.groups.all()], - } + """ + Ansible use it create inventory + Todo: May be move to ops implements it + """ + data = self.to_json() if self.admin_user: data.update({ 'username': self.admin_user.username, @@ -139,7 +137,7 @@ class Asset(models.Model): asset = cls(ip='%s.%s.%s.%s' % (i, i, i, i), hostname=forgery_py.internet.user_name(True), admin_user=choice(AdminUser.objects.all()), - idc=choice(IDC.objects.all()), + cluster=choice(Cluster.objects.all()), port=22, created_by='Fake') try: diff --git a/apps/assets/models/cluster.py b/apps/assets/models/cluster.py new file mode 100644 index 000000000..54ce1be4e --- /dev/null +++ b/apps/assets/models/cluster.py @@ -0,0 +1,63 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# + +from __future__ import unicode_literals + +import logging +import uuid + +from django.db import models +from django.utils.translation import ugettext_lazy as _ + + +__all__ = ['Cluster'] +logger = logging.getLogger(__name__) + + +class Cluster(models.Model): + id = models.UUIDField(default=uuid.uuid4, primary_key=True) + name = models.CharField(max_length=32, verbose_name=_('Name')) + bandwidth = models.CharField(max_length=32, blank=True, verbose_name=_('Bandwidth')) + contact = models.CharField(max_length=128, blank=True, verbose_name=_('Contact')) + phone = models.CharField(max_length=32, blank=True, verbose_name=_('Phone')) + address = models.CharField(max_length=128, blank=True, verbose_name=_("Address")) + intranet = models.TextField(blank=True, verbose_name=_('Intranet')) + extranet = models.TextField(blank=True, verbose_name=_('Extranet')) + date_created = models.DateTimeField(auto_now_add=True, null=True, verbose_name=_('Date created')) + operator = models.CharField(max_length=32, blank=True, verbose_name=_('Operator')) + created_by = models.CharField(max_length=32, blank=True, verbose_name=_('Created by')) + comment = models.TextField(blank=True, verbose_name=_('Comment')) + + def __str__(self): + return self.name + + @classmethod + def initial(cls): + return cls.objects.get_or_create(name=_('Default'), created_by=_('System'), comment=_('Default Cluster'))[0] + + class Meta: + ordering = ['name'] + + @classmethod + def generate_fake(cls, count=5): + from random import seed, choice + import forgery_py + from django.db import IntegrityError + + seed() + for i in range(count): + cluster = cls(name=forgery_py.name.full_name(), + bandwidth='200M', + contact=forgery_py.name.full_name(), + phone=forgery_py.address.phone(), + address=forgery_py.address.city() + forgery_py.address.street_address(), + operator=choice(['北京联通', '北京电信', 'BGP全网通']), + comment=forgery_py.lorem_ipsum.sentence(), + created_by='Fake') + try: + cluster.save() + logger.debug('Generate fake asset group: %s' % cluster.name) + except IntegrityError: + print('Error continue') + continue diff --git a/apps/assets/models/idc.py b/apps/assets/models/idc.py deleted file mode 100644 index 97a39b25d..000000000 --- a/apps/assets/models/idc.py +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- -# - -from __future__ import unicode_literals - -import logging -import uuid - -from django.db import models -from django.utils.translation import ugettext_lazy as _ - - -__all__ = ['IDC'] -logger = logging.getLogger(__name__) - - -class IDC(models.Model): - id = models.UUIDField(default=uuid.uuid4, primary_key=True) - name = models.CharField(max_length=32, verbose_name=_('Name')) - bandwidth = models.CharField( - max_length=32, blank=True, verbose_name=_('Bandwidth')) - contact = models.CharField( - max_length=128, blank=True, verbose_name=_('Contact')) - phone = models.CharField(max_length=32, blank=True, - verbose_name=_('Phone')) - address = models.CharField( - max_length=128, blank=True, verbose_name=_("Address")) - intranet = models.TextField(blank=True, verbose_name=_('Intranet')) - extranet = models.TextField(blank=True, verbose_name=_('Extranet')) - date_created = models.DateTimeField( - auto_now_add=True, null=True, verbose_name=_('Date created')) - operator = models.CharField( - max_length=32, blank=True, verbose_name=_('Operator')) - created_by = models.CharField( - max_length=32, blank=True, verbose_name=_('Created by')) - comment = models.TextField(blank=True, verbose_name=_('Comment')) - - def __unicode__(self): - return self.name - __str__ = __unicode__ - - @classmethod - def initial(cls): - return cls.objects.get_or_create(name=_('Default'), created_by=_('System'), comment=_('Default IDC'))[0] - - class Meta: - ordering = ['name'] - - @classmethod - def generate_fake(cls, count=5): - from random import seed, choice - import forgery_py - from django.db import IntegrityError - - seed() - for i in range(count): - idc = cls(name=forgery_py.name.full_name(), - bandwidth='200M', - contact=forgery_py.name.full_name(), - phone=forgery_py.address.phone(), - address=forgery_py.address.city() + forgery_py.address.street_address(), - operator=choice(['北京联通', '北京电信', 'BGP全网通']), - comment=forgery_py.lorem_ipsum.sentence(), - created_by='Fake') - try: - idc.save() - logger.debug('Generate fake asset group: %s' % idc.name) - except IntegrityError: - print('Error continue') - continue diff --git a/apps/assets/models/user.py b/apps/assets/models/user.py index 7cb5f83ba..5b2388cf0 100644 --- a/apps/assets/models/user.py +++ b/apps/assets/models/user.py @@ -29,7 +29,7 @@ def private_key_validator(value): class AdminUser(models.Model): """ - Ansible use admin user as devops user to run adHoc and Playbook + A privileged user that ansible can use it to push system user and so on """ BECOME_METHOD_CHOICES = ( ('sudo', 'sudo'), @@ -43,7 +43,7 @@ class AdminUser(models.Model): become = models.BooleanField(default=True) become_method = models.CharField(choices=BECOME_METHOD_CHOICES, default='sudo', max_length=4) become_user = models.CharField(default='root', max_length=64) - become_pass = models.CharField(default='', max_length=128) + _become_pass = models.CharField(default='', max_length=128) _public_key = models.TextField(max_length=4096, blank=True, verbose_name=_('SSH public key')) comment = models.TextField(blank=True, verbose_name=_('Comment')) date_created = models.DateTimeField(auto_now_add=True, null=True) @@ -95,6 +95,15 @@ class AdminUser(models.Model): def public_key(self, public_key_raw): self._public_key = signer.sign(public_key_raw) + @property + def become_pass(self): + return signer.unsign(self._become_pass) + + @become_pass.setter + def become_pass(self, password): + self._become_pass = signer.sign(password) + + @property def assets_amount(self): return self.assets.count() diff --git a/apps/assets/models/utils.py b/apps/assets/models/utils.py index b6c2d2ae6..8b1c94502 100644 --- a/apps/assets/models/utils.py +++ b/apps/assets/models/utils.py @@ -2,19 +2,19 @@ # -*- coding: utf-8 -*- # -from . import IDC, SystemUser, AdminUser, AssetGroup, Asset +from . import Cluster, SystemUser, AdminUser, AssetGroup, Asset __all__ = ['init_model', 'generate_fake'] def init_model(): - for cls in [IDC, SystemUser, AdminUser, AssetGroup, Asset]: + for cls in [Cluster, SystemUser, AdminUser, AssetGroup, Asset]: if hasattr(cls, 'initial'): cls.initial() def generate_fake(): - for cls in [IDC, SystemUser, AdminUser, AssetGroup, Asset]: + for cls in [Cluster, SystemUser, AdminUser, AssetGroup, Asset]: if hasattr(cls, 'generate_fake'): cls.generate_fake() diff --git a/apps/assets/serializers.py b/apps/assets/serializers.py index def2577c8..5a41cc386 100644 --- a/apps/assets/serializers.py +++ b/apps/assets/serializers.py @@ -2,7 +2,7 @@ from django.utils.translation import ugettext_lazy as _ from django.core.cache import cache from rest_framework import viewsets, serializers, generics -from .models import AssetGroup, Asset, IDC, AdminUser, SystemUser +from .models import AssetGroup, Asset, Cluster, AdminUser, SystemUser from common.mixins import IDInFilterMixin from rest_framework_bulk import BulkListSerializer, BulkSerializerMixin @@ -54,11 +54,11 @@ class AssetGroupUpdateSystemUserSerializer(serializers.ModelSerializer): fields = ['id', 'system_users'] -class IDCUpdateAssetsSerializer(serializers.ModelSerializer): +class ClusterUpdateAssetsSerializer(serializers.ModelSerializer): assets = serializers.PrimaryKeyRelatedField(many=True, queryset=Asset.objects.all()) class Meta: - model = IDC + model = Cluster fields = ['id', 'assets'] @@ -180,12 +180,12 @@ class MyAssetGrantedSerializer(AssetGrantedSerializer): "is_active", "system_users_join", "comment") -class IDCSerializer(BulkSerializerMixin, serializers.ModelSerializer): +class ClusterSerializer(BulkSerializerMixin, serializers.ModelSerializer): assets_amount = serializers.SerializerMethodField() assets = serializers.PrimaryKeyRelatedField(many=True, queryset=Asset.objects.all()) class Meta: - model = IDC + model = Cluster fields = '__all__' @staticmethod @@ -193,7 +193,7 @@ class IDCSerializer(BulkSerializerMixin, serializers.ModelSerializer): return obj.assets.count() def get_field_names(self, declared_fields, info): - fields = super(IDCSerializer, self).get_field_names(declared_fields, info) + fields = super(ClusterSerializer, self).get_field_names(declared_fields, info) fields.append('assets_amount') return fields diff --git a/apps/assets/templates/assets/asset_create.html b/apps/assets/templates/assets/asset_create.html index 66ab350ee..fa6830a47 100644 --- a/apps/assets/templates/assets/asset_create.html +++ b/apps/assets/templates/assets/asset_create.html @@ -21,7 +21,7 @@

{% trans 'Group' %}

- {% bootstrap_field form.idc layout="horizontal" %} + {% bootstrap_field form.cluster layout="horizontal" %} {% bootstrap_field form.groups layout="horizontal" %}
diff --git a/apps/assets/templates/assets/asset_detail.html b/apps/assets/templates/assets/asset_detail.html index 62f30aa0f..9a76a7dc8 100644 --- a/apps/assets/templates/assets/asset_detail.html +++ b/apps/assets/templates/assets/asset_detail.html @@ -82,8 +82,8 @@ {{ asset.remote_card_ip }} - {% trans 'IDC' %}: - {{ asset.idc.name }} + {% trans 'Cluster' %}: + {{ asset.cluster.name }} {% trans 'Cabinet number' %}: diff --git a/apps/assets/templates/assets/idc_assets.html b/apps/assets/templates/assets/cluster_assets.html similarity index 90% rename from apps/assets/templates/assets/idc_assets.html rename to apps/assets/templates/assets/cluster_assets.html index ad6a6268a..1d76e97c0 100644 --- a/apps/assets/templates/assets/idc_assets.html +++ b/apps/assets/templates/assets/cluster_assets.html @@ -17,10 +17,10 @@
@@ -28,7 +28,7 @@
- {% trans 'IDC assets' %} {{ idc.name }} + {% trans 'Cluster assets' %} {{ cluster.name }}
- +
@@ -80,7 +80,7 @@
- {% trans 'Add assets to' %} {{ idc.name }} + {% trans 'Add assets to' %} {{ cluster.name }}
@@ -125,12 +125,12 @@ Array.prototype.remove = function(val) { } }; -function updateIDCAssets(assets) { - var the_url = "{% url 'api-assets:idc-update-assets' pk=idc.id %}"; +function updateClusterAssets(assets) { + var the_url = "{% url 'api-assets:cluster-update-assets' pk=cluster.id %}"; var body = { assets: Object.assign([], assets) }; - var $data_table = $("#idc_assets_table").DataTable(); + var $data_table = $("#cluster_assets_table").DataTable(); var success = function(data) { $('.select2-selection__rendered').empty(); $.map(jumpserver.assets_selected, function(asset_ip, index) { @@ -147,12 +147,12 @@ function updateIDCAssets(assets) { }); } -function deleteIDCAssets(assets) { - var the_url = "{% url 'api-assets:idc-update-assets' pk=idc.id %}"; +function deleteClusterAssets(assets) { + var the_url = "{% url 'api-assets:cluster-update-assets' pk=cluster.id %}"; var body = { assets: Object.assign([], assets) }; - var $data_table = $("#idc_assets_table").DataTable(); + var $data_table = $("#cluster_assets_table").DataTable(); var success = function(data) { $data_table.ajax.reload(); }; @@ -175,7 +175,7 @@ $(document).ready(function () { delete jumpserver.assets_selected[data.id]; }); var options = { - ele: $('#idc_assets_table'), + ele: $('#cluster_assets_table'), buttons: [], order: [], columnDefs: [ @@ -190,7 +190,7 @@ $(document).ready(function () { $(td).html('') } }}], - ajax_url: '{% url "api-assets:asset-list" %}?idc_id={{ idc.id }}', + ajax_url: '{% url "api-assets:asset-list" %}?cluster_id={{ cluster.id }}', columns: [{data: function(){return ""}}, {data: "hostname" }, {data: "ip" }, {data: "port" }, {data: "type" }, {data: "is_active" }], op_html: $('#actions').html() @@ -204,11 +204,11 @@ $(document).ready(function () { return false; } var assets=[]; - var $data_table = $("#idc_assets_table").DataTable(); + var $data_table = $("#cluster_assets_table").DataTable(); $.ajax({ url: '{% url "api-assets:asset-list" %}', method: 'GET', - data: {"idc_id": {{ idc.id }}}, + data: {"cluster_id": {{ cluster.id }}}, dataType: 'json', success: function (result) { for(var i in result){ @@ -219,7 +219,7 @@ $(document).ready(function () { $.map(jumpserver.assets_selected, function(value, index) { assets.push(parseInt(index)); }); - updateIDCAssets(assets); + updateClusterAssets(assets); } }); @@ -227,7 +227,7 @@ $(document).ready(function () { .on('click', '#btn_bulk_update', function () { var action = $("#slct_bulk_update").val(); - var $data_table = $("#idc_assets_table").DataTable(); + var $data_table = $("#cluster_assets_table").DataTable(); var id_list = []; var plain_id_list = []; var assets = []; @@ -240,7 +240,7 @@ $(document).ready(function () { } $.ajax({ url: '{% url "api-assets:asset-list" %}', - data: {"idc_id": {{ idc.id }}}, + data: {"cluster_id": {{ cluster.id }}}, dataType: 'json', method: 'GET', success: function (result) { @@ -265,13 +265,13 @@ $(document).ready(function () { var success = function() { var msg = "{% trans 'Asset Deleted.' %}"; swal("{% trans 'Asset Delete' %}", msg, "success"); - $('#idc_assets_table').DataTable().ajax.reload(); + $('#cluster_assets_table').DataTable().ajax.reload(); }; var fail = function() { var msg = "{% trans 'Asset Deleting failed.' %}"; swal("{% trans 'Asset Delete' %}", msg, "error"); }; - var url_delete = "{% url 'api-assets:idc-update-assets' pk=idc.id %}"; + var url_delete = "{% url 'api-assets:cluster-update-assets' pk=cluster.id %}"; var body = { assets: Object.assign([], assets) }; diff --git a/apps/assets/templates/assets/idc_create_update.html b/apps/assets/templates/assets/cluster_create_update.html similarity index 96% rename from apps/assets/templates/assets/idc_create_update.html rename to apps/assets/templates/assets/cluster_create_update.html index 883d71a95..3515d0390 100644 --- a/apps/assets/templates/assets/idc_create_update.html +++ b/apps/assets/templates/assets/cluster_create_update.html @@ -31,7 +31,7 @@
-
+ {% csrf_token %}

基本信息

{% bootstrap_field form.name layout="horizontal" %} diff --git a/apps/assets/templates/assets/idc_detail.html b/apps/assets/templates/assets/cluster_detail.html similarity index 79% rename from apps/assets/templates/assets/idc_detail.html rename to apps/assets/templates/assets/cluster_detail.html index 3b7f777b7..d21df5fad 100644 --- a/apps/assets/templates/assets/idc_detail.html +++ b/apps/assets/templates/assets/cluster_detail.html @@ -14,18 +14,18 @@
- + - + - + - + - + - + - + - + @@ -111,12 +111,12 @@ {% endblock %} {% block custom_foot_js %} {% endblock %} diff --git a/apps/assets/templates/assets/idc_list.html b/apps/assets/templates/assets/cluster_list.html similarity index 93% rename from apps/assets/templates/assets/idc_list.html rename to apps/assets/templates/assets/cluster_list.html index e9cdb34f3..0d492a703 100644 --- a/apps/assets/templates/assets/idc_list.html +++ b/apps/assets/templates/assets/cluster_list.html @@ -7,7 +7,7 @@ {% block table_search %}{% endblock %} {% block table_container %}
{% trans 'Name' %}:{{ idc.name }}{{ cluster.name }}
{% trans 'Bandwidth' %}:{{ idc.bandwidth }}{{ cluster.bandwidth }}
{% trans 'Contact' %}:{{ idc.contact }}{{ cluster.contact }}
{% trans 'Phone' %}:{{ idc.phone }}{{ cluster.phone }}
{% trans 'Address' %}:{{ idc.address }}{{ cluster.address }}
{% trans 'Intranet' %}:{{ idc.Intranet }}{{ cluster.Intranet }}
{% trans 'Extranet' %}:{{ idc.extranet }}{{ cluster.extranet }}
{% trans 'Operator' %}:{{ idc.operator }}{{ cluster.operator }}
{% trans 'Date created' %}:
@@ -100,13 +100,13 @@ $(document).ready(function(){ closeOnConfirm: false }, function() { var success = function() { - var msg = "{% trans 'IDC Deleted.' %}"; - swal("{% trans 'IDC Delete' %}", msg, "success"); + var msg = "{% trans 'Cluster Deleted.' %}"; + swal("{% trans 'Cluster Delete' %}", msg, "success"); $('#idc_list_table').DataTable().ajax.reload(); }; var fail = function() { - var msg = "{% trans 'IDC Deleting failed.' %}"; - swal("{% trans 'IDC Delete' %}", msg, "error"); + var msg = "{% trans 'Cluster Deleting failed.' %}"; + swal("{% trans 'Cluster Delete' %}", msg, "error"); }; var url_delete = the_url + '?id__in=' + JSON.stringify(plain_id_list); APIUpdateAttr({url: url_delete, method: 'DELETE', success: success, error: fail}); diff --git a/apps/assets/templates/assets/system_user_list.html b/apps/assets/templates/assets/system_user_list.html index e000779dd..5e8804a86 100644 --- a/apps/assets/templates/assets/system_user_list.html +++ b/apps/assets/templates/assets/system_user_list.html @@ -69,7 +69,7 @@ $(document).ready(function(){ .on('click', '.btn_admin_user_delete', function () { var $this = $(this); - var $data_table = $('#idc_list_table').DataTable(); + var $data_table = $('#cluster_list_table').DataTable(); var name = $(this).closest("tr").find(":nth-child(2)").children('a').html(); var uid = $this.data('uid'); var the_url = '{% url "api-assets:system-user-detail" pk=99991937 %}'.replace('99991937', uid); diff --git a/apps/assets/urls/api_urls.py b/apps/assets/urls/api_urls.py index bd205a2fd..171a1d0ef 100644 --- a/apps/assets/urls/api_urls.py +++ b/apps/assets/urls/api_urls.py @@ -10,7 +10,7 @@ app_name = 'assets' router = BulkRouter() router.register(r'v1/groups', api.AssetGroupViewSet, 'asset-group') router.register(r'v1/assets', api.AssetViewSet, 'asset') -router.register(r'v1/idc', api.IDCViewSet, 'idc') +router.register(r'v1/clusters', api.ClusterViewSet, 'cluster') router.register(r'v1/admin-user', api.AdminUserViewSet, 'admin-user') router.register(r'v1/system-user', api.SystemUserViewSet, 'system-user') @@ -47,9 +47,9 @@ urlpatterns = [ url(r'^v1/groups/(?P[0-9a-zA-Z\-]+)/system-users/$', api.AssetGroupUpdateSystemUserApi.as_view(), name='asset-groups-update-systemusers'), - # update the IDC, and add or delete the assets to the IDC - url(r'^v1/idc/(?P[0-9a-zA-Z\-]+)/assets/$', - api.IDCUpdateAssetsApi.as_view(), name='idc-update-assets'), + # update the Cluster, and add or delete the assets to the Cluster + url(r'^v1/cluster/(?P[0-9a-zA-Z\-]+)/assets/$', + api.ClusterUpdateAssetsApi.as_view(), name='cluster-update-assets'), ] diff --git a/apps/assets/urls/views_urls.py b/apps/assets/urls/views_urls.py index 0177b828f..0353b5b36 100644 --- a/apps/assets/urls/views_urls.py +++ b/apps/assets/urls/views_urls.py @@ -27,13 +27,13 @@ urlpatterns = [ url(r'^asset-group/(?P[0-9a-zA-Z\-]+)/update/$', views.AssetGroupUpdateView.as_view(), name='asset-group-update'), url(r'^asset-group/(?P[0-9a-zA-Z\-]+)/delete/$', views.AssetGroupDeleteView.as_view(), name='asset-group-delete'), - # Resource idc url - url(r'^idc/$', views.IDCListView.as_view(), name='idc-list'), - url(r'^idc/create/$', views.IDCCreateView.as_view(), name='idc-create'), - url(r'^idc/(?P[0-9a-zA-Z\-]+)/$', views.IDCDetailView.as_view(), name='idc-detail'), - url(r'^idc/(?P[0-9a-zA-Z\-]+)/update/', views.IDCUpdateView.as_view(), name='idc-update'), - url(r'^idc/(?P[0-9a-zA-Z\-]+)/delete/$', views.IDCDeleteView.as_view(), name='idc-delete'), - url(r'^idc/(?P[0-9a-zA-Z\-]+)/assets/$', views.IDCAssetsView.as_view(), name='idc-assets'), + # Resource cluster url + url(r'^cluster/$', views.ClusterListView.as_view(), name='cluster-list'), + url(r'^cluster/create/$', views.ClusterCreateView.as_view(), name='cluster-create'), + url(r'^cluster/(?P[0-9a-zA-Z\-]+)/$', views.ClusterDetailView.as_view(), name='cluster-detail'), + url(r'^cluster/(?P[0-9a-zA-Z\-]+)/update/', views.ClusterUpdateView.as_view(), name='cluster-update'), + url(r'^cluster/(?P[0-9a-zA-Z\-]+)/delete/$', views.ClusterDeleteView.as_view(), name='cluster-delete'), + url(r'^cluster/(?P[0-9a-zA-Z\-]+)/assets/$', views.ClusterAssetsView.as_view(), name='cluster-assets'), # Resource admin user url url(r'^admin-user/$', views.AdminUserListView.as_view(), name='admin-user-list'), diff --git a/apps/assets/views/__init__.py b/apps/assets/views/__init__.py index 7cf30acbe..883120b36 100644 --- a/apps/assets/views/__init__.py +++ b/apps/assets/views/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 from .asset import * from .group import * -from .idc import * +from .cluster import * from .system_user import * from .admin_user import * diff --git a/apps/assets/views/admin_user.py b/apps/assets/views/admin_user.py index 7c5021b64..b45437d3a 100644 --- a/apps/assets/views/admin_user.py +++ b/apps/assets/views/admin_user.py @@ -9,7 +9,7 @@ from django.contrib.messages.views import SuccessMessageMixin from django.views.generic.detail import DetailView, SingleObjectMixin from .. import forms -from ..models import Asset, AssetGroup, AdminUser, IDC, SystemUser +from ..models import Asset, AssetGroup, AdminUser, Cluster, SystemUser from ..hands import AdminUserRequiredMixin __all__ = ['AdminUserCreateView', 'AdminUserDetailView', diff --git a/apps/assets/views/asset.py b/apps/assets/views/asset.py index 600daf2a0..455583e35 100644 --- a/apps/assets/views/asset.py +++ b/apps/assets/views/asset.py @@ -25,7 +25,7 @@ from django.shortcuts import get_object_or_404, redirect, reverse from common.mixins import JSONResponseMixin from common.utils import get_object_or_none from .. import forms -from ..models import Asset, AssetGroup, AdminUser, IDC, SystemUser +from ..models import Asset, AssetGroup, AdminUser, Cluster, SystemUser from ..hands import AdminUserRequiredMixin from ..tasks import update_assets_hardware_info @@ -283,7 +283,7 @@ class BulkImportAssetView(AdminUserRequiredMixin, JSONResponseMixin, FormView): asset = get_object_or_none(Asset, id=id_) for k, v in asset_dict.items(): if k == 'idc': - v = get_object_or_none(IDC, name=v) + v = get_object_or_none(Cluster, name=v) elif k == 'is_active': v = bool(v) elif k == 'admin_user': diff --git a/apps/assets/views/cluster.py b/apps/assets/views/cluster.py new file mode 100644 index 000000000..1c4d0c333 --- /dev/null +++ b/apps/assets/views/cluster.py @@ -0,0 +1,101 @@ +# coding:utf-8 +from __future__ import absolute_import, unicode_literals +from django.utils.translation import ugettext as _ +from django.views.generic import TemplateView, ListView, View +from django.views.generic.edit import CreateView, DeleteView, FormView, UpdateView +from django.urls import reverse_lazy +from django.views.generic.detail import DetailView, SingleObjectMixin +from .. import forms +from ..models import Asset, AssetGroup, AdminUser, Cluster, SystemUser +from ..hands import AdminUserRequiredMixin + + +__all__ = ['ClusterListView', 'ClusterCreateView', 'ClusterUpdateView', + 'ClusterDetailView', 'ClusterDeleteView', 'ClusterAssetsView'] + + +class ClusterListView(AdminUserRequiredMixin, TemplateView): + template_name = 'assets/cluster_list.html' + + def get_context_data(self, **kwargs): + context = { + 'app': _('Assets'), + 'action': _('Cluster list'), + # 'keyword': self.request.GET.get('keyword', '') + } + kwargs.update(context) + return super(ClusterListView, self).get_context_data(**kwargs) + + +class ClusterCreateView(AdminUserRequiredMixin, CreateView): + model = Cluster + form_class = forms.ClusterForm + template_name = 'assets/cluster_create_update.html' + success_url = reverse_lazy('assets:cluster-list') + + def get_context_data(self, **kwargs): + context = { + 'app': _('assets'), + 'action': _('Create Cluster'), + } + kwargs.update(context) + return super(ClusterCreateView, self).get_context_data(**kwargs) + + def form_valid(self, form): + cluster = form.save(commit=False) + cluster.created_by = self.request.user.username or 'System' + cluster.save() + return super(ClusterCreateView, self).form_valid(form) + + +class ClusterUpdateView(AdminUserRequiredMixin, UpdateView): + model = Cluster + form_class = forms.ClusterForm + template_name = 'assets/cluster_create_update.html' + context_object_name = 'cluster' + success_url = reverse_lazy('assets:cluster-list') + + def form_valid(self, form): + cluster = form.save(commit=False) + cluster.save() + return super(ClusterUpdateView, self).form_valid(form) + + def get_context_data(self, **kwargs): + context = { + 'app': _('assets'), + 'action': _('Update Cluster'), + } + kwargs.update(context) + return super(ClusterUpdateView, self).get_context_data(**kwargs) + + +class ClusterDetailView(AdminUserRequiredMixin, DetailView): + model = Cluster + template_name = 'assets/cluster_detail.html' + context_object_name = 'cluster' + + +class ClusterAssetsView(AdminUserRequiredMixin, DetailView): + model = Cluster + template_name = 'assets/cluster_assets.html' + context_object_name = 'cluster' + + def get_context_data(self, **kwargs): + assets_remain = Asset.objects.exclude(id__in=self.object.assets.all()) + + context = { + 'app': _('Assets'), + 'action': _('Asset detail'), + 'groups': AssetGroup.objects.all(), + 'system_users': SystemUser.objects.all(), + 'assets_remain': assets_remain, + 'assets': [asset for asset in Asset.objects.all() if asset not in assets_remain], + } + kwargs.update(context) + return super(ClusterAssetsView, self).get_context_data(**kwargs) + + +class ClusterDeleteView(AdminUserRequiredMixin, DeleteView): + model = Cluster + template_name = 'assets/delete_confirm.html' + success_url = reverse_lazy('assets:cluster-list') diff --git a/apps/assets/views/group.py b/apps/assets/views/group.py index d9307753d..679e71283 100644 --- a/apps/assets/views/group.py +++ b/apps/assets/views/group.py @@ -9,7 +9,7 @@ from django.views.generic.detail import DetailView, SingleObjectMixin from django.shortcuts import get_object_or_404, reverse, redirect from .. import forms -from ..models import Asset, AssetGroup, AdminUser, IDC, SystemUser +from ..models import Asset, AssetGroup, AdminUser, Cluster, SystemUser from ..hands import AdminUserRequiredMixin diff --git a/apps/assets/views/idc.py b/apps/assets/views/idc.py deleted file mode 100644 index 28dd92edc..000000000 --- a/apps/assets/views/idc.py +++ /dev/null @@ -1,101 +0,0 @@ -# coding:utf-8 -from __future__ import absolute_import, unicode_literals -from django.utils.translation import ugettext as _ -from django.views.generic import TemplateView, ListView, View -from django.views.generic.edit import CreateView, DeleteView, FormView, UpdateView -from django.urls import reverse_lazy -from django.views.generic.detail import DetailView, SingleObjectMixin -from .. import forms -from ..models import Asset, AssetGroup, AdminUser, IDC, SystemUser -from ..hands import AdminUserRequiredMixin - - -__all__ = ['IDCListView', 'IDCCreateView', 'IDCUpdateView', - 'IDCDetailView', 'IDCDeleteView', 'IDCAssetsView'] - - -class IDCListView(AdminUserRequiredMixin, TemplateView): - template_name = 'assets/idc_list.html' - - def get_context_data(self, **kwargs): - context = { - 'app': _('Assets'), - 'action': _('IDC list'), - # 'keyword': self.request.GET.get('keyword', '') - } - kwargs.update(context) - return super(IDCListView, self).get_context_data(**kwargs) - - -class IDCCreateView(AdminUserRequiredMixin, CreateView): - model = IDC - form_class = forms.IDCForm - template_name = 'assets/idc_create_update.html' - success_url = reverse_lazy('assets:idc-list') - - def get_context_data(self, **kwargs): - context = { - 'app': _('assets'), - 'action': _('Create IDC'), - } - kwargs.update(context) - return super(IDCCreateView, self).get_context_data(**kwargs) - - def form_valid(self, form): - idc = form.save(commit=False) - idc.created_by = self.request.user.username or 'System' - idc.save() - return super(IDCCreateView, self).form_valid(form) - - -class IDCUpdateView(AdminUserRequiredMixin, UpdateView): - model = IDC - form_class = forms.IDCForm - template_name = 'assets/idc_create_update.html' - context_object_name = 'idc' - success_url = reverse_lazy('assets:idc-list') - - def form_valid(self, form): - idc = form.save(commit=False) - idc.save() - return super(IDCUpdateView, self).form_valid(form) - - def get_context_data(self, **kwargs): - context = { - 'app': _('assets'), - 'action': _('Update IDC'), - } - kwargs.update(context) - return super(IDCUpdateView, self).get_context_data(**kwargs) - - -class IDCDetailView(AdminUserRequiredMixin, DetailView): - model = IDC - template_name = 'assets/idc_detail.html' - context_object_name = 'idc' - - -class IDCAssetsView(AdminUserRequiredMixin, DetailView): - model = IDC - template_name = 'assets/idc_assets.html' - context_object_name = 'idc' - - def get_context_data(self, **kwargs): - assets_remain = Asset.objects.exclude(id__in=self.object.assets.all()) - - context = { - 'app': _('Assets'), - 'action': _('Asset detail'), - 'groups': AssetGroup.objects.all(), - 'system_users': SystemUser.objects.all(), - 'assets_remain': assets_remain, - 'assets': [asset for asset in Asset.objects.all() if asset not in assets_remain], - } - kwargs.update(context) - return super(IDCAssetsView, self).get_context_data(**kwargs) - - -class IDCDeleteView(AdminUserRequiredMixin, DeleteView): - model = IDC - template_name = 'assets/delete_confirm.html' - success_url = reverse_lazy('assets:idc-list') diff --git a/apps/fixtures/fake.json b/apps/fixtures/fake.json index 177765f78..421feccfa 100644 --- a/apps/fixtures/fake.json +++ b/apps/fixtures/fake.json @@ -1 +1 @@ -[{"model": "users.usergroup", "pk": "0124610e-2443-4172-9b67-2971fecdabd8", "fields": {"is_discard": false, "discard_time": null, "name": "Teresa Nichols", "comment": "In est risus, auctor sed, tristique in, tempus sit amet, sem.", "date_created": "2017-11-23T04:02:22.841Z", "created_by": "betty87"}}, {"model": "users.usergroup", "pk": "023c1cc7-c969-45b3-8724-bdd1c9e11e1c", "fields": {"is_discard": false, "discard_time": null, "name": "Rebecca Butler", "comment": "Vivamus vel nulla eget eros elementum pellentesque.", "date_created": "2017-11-23T04:02:22.904Z", "created_by": "barbara70"}}, {"model": "users.usergroup", "pk": "0460a32e-59c9-42cc-81a5-7e0a13fc0085", "fields": {"is_discard": false, "discard_time": null, "name": "Default", "comment": "Default user group", "date_created": "2017-11-23T03:59:09.875Z", "created_by": "System"}}, {"model": "users.usergroup", "pk": "0628e89f-74a4-400a-8f6a-5e876756affe", "fields": {"is_discard": false, "discard_time": null, "name": "Elizabeth Austin", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "date_created": "2017-11-23T04:02:22.523Z", "created_by": "susan65"}}, {"model": "users.usergroup", "pk": "0881f822-4845-47e1-ba26-9c5b613cfbc1", "fields": {"is_discard": false, "discard_time": null, "name": "Janice Nelson", "comment": "Donec ut dolor.", "date_created": "2017-11-23T04:02:23.016Z", "created_by": "margaret76"}}, {"model": "users.usergroup", "pk": "10526322-bde6-49b5-b006-d19ba13133d7", "fields": {"is_discard": false, "discard_time": null, "name": "Lois Garcia", "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2017-11-23T04:02:22.810Z", "created_by": "lois81"}}, {"model": "users.usergroup", "pk": "13589269-dfe1-46d8-b9ae-c117fb4c6001", "fields": {"is_discard": false, "discard_time": null, "name": "Cheryl Lawrence", "comment": "Duis aliquam convallis nunc.", "date_created": "2017-11-23T04:02:22.562Z", "created_by": "wanda85"}}, {"model": "users.usergroup", "pk": "14ac2db6-e4c7-4b74-b3d7-c703be8fa144", "fields": {"is_discard": false, "discard_time": null, "name": "Evelyn Riley", "comment": "Nunc nisl.", "date_created": "2017-11-23T04:02:23.155Z", "created_by": "jane81"}}, {"model": "users.usergroup", "pk": "14ea0b31-9ef5-41dd-803c-416e3c51a70e", "fields": {"is_discard": false, "discard_time": null, "name": "Pamela Gonzales", "comment": "Curabitur gravida nisi at nibh.", "date_created": "2017-11-23T04:02:23.187Z", "created_by": "kathy72"}}, {"model": "users.usergroup", "pk": "150997d9-d015-4a8a-a069-8b767ed69f0c", "fields": {"is_discard": false, "discard_time": null, "name": "Linda Moore", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "date_created": "2017-11-23T04:02:23.107Z", "created_by": "helen71"}}, {"model": "users.usergroup", "pk": "15c6a795-8b12-495d-bd5b-f60da0aa422e", "fields": {"is_discard": false, "discard_time": null, "name": "Rachel Cooper", "comment": "Fusce posuere felis sed lacus.", "date_created": "2017-11-23T04:02:23.064Z", "created_by": "mary87"}}, {"model": "users.usergroup", "pk": "15ec6ac7-3176-4539-bc88-e3266bea73df", "fields": {"is_discard": false, "discard_time": null, "name": "Theresa Moreno", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "date_created": "2017-11-23T04:02:22.882Z", "created_by": "betty84"}}, {"model": "users.usergroup", "pk": "18b12719-c07c-435c-9f00-9edbc2c0d37f", "fields": {"is_discard": false, "discard_time": null, "name": "Alice Fisher", "comment": "Praesent blandit lacinia erat.", "date_created": "2017-11-23T04:02:22.889Z", "created_by": "theresa89"}}, {"model": "users.usergroup", "pk": "207946e4-ce48-4a40-b4ec-51c98eaf6e22", "fields": {"is_discard": false, "discard_time": null, "name": "Ashley Vasquez", "comment": "Vestibulum sed magna at nunc commodo placerat.", "date_created": "2017-11-23T04:02:23.259Z", "created_by": "irene75"}}, {"model": "users.usergroup", "pk": "2205c0f8-4fd3-4992-86a1-f62613e19684", "fields": {"is_discard": false, "discard_time": null, "name": "Christine Martin", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "date_created": "2017-11-23T04:02:23.132Z", "created_by": "alice73"}}, {"model": "users.usergroup", "pk": "25d22b8c-ed95-4972-bc1e-309ff8316c2b", "fields": {"is_discard": false, "discard_time": null, "name": "Marilyn Jones", "comment": "Duis bibendum.", "date_created": "2017-11-23T04:02:22.754Z", "created_by": "arthur78"}}, {"model": "users.usergroup", "pk": "27da344f-e587-4a70-af88-5ab5792c7119", "fields": {"is_discard": false, "discard_time": null, "name": "Cheryl Wheeler", "comment": "Mauris ullamcorper purus sit amet nulla.", "date_created": "2017-11-23T04:02:23.057Z", "created_by": "cheryl91"}}, {"model": "users.usergroup", "pk": "29e8701a-f9cb-4e16-b9c1-7f0aad3c6852", "fields": {"is_discard": false, "discard_time": null, "name": "Julia Johnston", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "date_created": "2017-11-23T04:02:22.539Z", "created_by": "melissa89"}}, {"model": "users.usergroup", "pk": "2b6f7a52-926d-4d40-82dc-cdd1d89a507d", "fields": {"is_discard": false, "discard_time": null, "name": "Kathy Myers", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante.", "date_created": "2017-11-23T04:02:22.929Z", "created_by": "ruby64"}}, {"model": "users.usergroup", "pk": "2efeb1ba-b079-414e-97ad-6fc990fe20f4", "fields": {"is_discard": false, "discard_time": null, "name": "Kathy Fernandez", "comment": "Nam dui.", "date_created": "2017-11-23T04:02:22.746Z", "created_by": "anna66"}}, {"model": "users.usergroup", "pk": "31d3236c-68dc-4b0d-8bdd-2245e50aaab4", "fields": {"is_discard": false, "discard_time": null, "name": "Brenda George", "comment": "Pellentesque at nulla.", "date_created": "2017-11-23T04:02:22.992Z", "created_by": "nicole72"}}, {"model": "users.usergroup", "pk": "365cbc3f-f9e6-4dfe-b95d-8910a19b30eb", "fields": {"is_discard": false, "discard_time": null, "name": "Martha Hayes", "comment": "Etiam pretium iaculis justo.", "date_created": "2017-11-23T04:02:23.041Z", "created_by": "cheryl91"}}, {"model": "users.usergroup", "pk": "378f2164-d024-491c-a685-009ff39491c0", "fields": {"is_discard": false, "discard_time": null, "name": "Kimberly Lane", "comment": "Vivamus tortor.", "date_created": "2017-11-23T04:02:23.082Z", "created_by": "jane81"}}, {"model": "users.usergroup", "pk": "37b8ed00-fd43-430a-8561-759cead1f8f7", "fields": {"is_discard": false, "discard_time": null, "name": "Carol George", "comment": "Curabitur convallis.", "date_created": "2017-11-23T04:02:22.858Z", "created_by": "rachel89"}}, {"model": "users.usergroup", "pk": "388e0e24-49c2-4987-a69c-278aa737c525", "fields": {"is_discard": false, "discard_time": null, "name": "Rebecca Rivera", "comment": "Proin eu mi.", "date_created": "2017-11-23T04:02:23.114Z", "created_by": "jane81"}}, {"model": "users.usergroup", "pk": "3a8831ec-d65a-4e6d-9d97-afe73f9b192b", "fields": {"is_discard": false, "discard_time": null, "name": "Angela Gray", "comment": "Praesent lectus.", "date_created": "2017-11-23T04:02:22.874Z", "created_by": "rebecca64"}}, {"model": "users.usergroup", "pk": "41f76f70-8440-4ebd-969d-2ca772622b85", "fields": {"is_discard": false, "discard_time": null, "name": "Catherine Coleman", "comment": "Duis ac nibh.", "date_created": "2017-11-23T04:02:22.570Z", "created_by": "teresa91"}}, {"model": "users.usergroup", "pk": "472ca18a-63c0-4e6e-9a2c-b3b576c2cc63", "fields": {"is_discard": false, "discard_time": null, "name": "Christopher Reynolds", "comment": "Nunc rhoncus dui vel sem.", "date_created": "2017-11-23T04:02:22.762Z", "created_by": "sharon85"}}, {"model": "users.usergroup", "pk": "4800e390-7397-40f6-933a-30bbd0f9910c", "fields": {"is_discard": false, "discard_time": null, "name": "Marilyn Jacobs", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2017-11-23T04:02:22.897Z", "created_by": "debra93"}}, {"model": "users.usergroup", "pk": "501c9057-3813-4534-a184-39e821995ac5", "fields": {"is_discard": false, "discard_time": null, "name": "Diana Banks", "comment": "In hac habitasse platea dictumst.", "date_created": "2017-11-23T04:02:22.723Z", "created_by": "ann93"}}, {"model": "users.usergroup", "pk": "50ff2ce8-ca32-4e4e-b59a-b8eb14f93ba4", "fields": {"is_discard": false, "discard_time": null, "name": "Carol Chavez", "comment": "In hac habitasse platea dictumst.", "date_created": "2017-11-23T04:02:22.786Z", "created_by": "betty76"}}, {"model": "users.usergroup", "pk": "5232dff8-79ce-408d-a975-d2c2bc385a24", "fields": {"is_discard": false, "discard_time": null, "name": "Stephanie Smith", "comment": "Etiam justo.", "date_created": "2017-11-23T04:02:22.667Z", "created_by": "alice67"}}, {"model": "users.usergroup", "pk": "531cfd0e-74da-4340-991c-6218cd13077d", "fields": {"is_discard": false, "discard_time": null, "name": "Kathy Austin", "comment": "Integer tincidunt ante vel ipsum.", "date_created": "2017-11-23T04:02:22.507Z", "created_by": "pamela64"}}, {"model": "users.usergroup", "pk": "549fdbb0-55a7-427a-a256-8b7be9abfa6e", "fields": {"is_discard": false, "discard_time": null, "name": "Barbara Patterson", "comment": "Etiam justo.", "date_created": "2017-11-23T04:02:22.802Z", "created_by": "diane92"}}, {"model": "users.usergroup", "pk": "560653fd-8b06-4316-9e2f-95d1fea52eab", "fields": {"is_discard": false, "discard_time": null, "name": "Anna Lane", "comment": "Proin at turpis a pede posuere nonummy.", "date_created": "2017-11-23T04:02:23.091Z", "created_by": "margaret74"}}, {"model": "users.usergroup", "pk": "59927fa4-29cf-4d5d-a5e6-7f0c3e551539", "fields": {"is_discard": false, "discard_time": null, "name": "Tammy Marshall", "comment": "Aenean auctor gravida sem.", "date_created": "2017-11-23T04:02:22.650Z", "created_by": "pamela64"}}, {"model": "users.usergroup", "pk": "5a4e0dc1-c038-41b5-9d29-c33708573530", "fields": {"is_discard": false, "discard_time": null, "name": "Louise Morgan", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "date_created": "2017-11-23T04:02:22.739Z", "created_by": "melissa89"}}, {"model": "users.usergroup", "pk": "5b26845c-93cf-4b16-8d5b-69fab0589754", "fields": {"is_discard": false, "discard_time": null, "name": "Susan Powell", "comment": "Integer ac neque.", "date_created": "2017-11-23T04:02:22.683Z", "created_by": "martha65"}}, {"model": "users.usergroup", "pk": "5c4e2d29-e753-4c89-a018-e73ae765acb3", "fields": {"is_discard": false, "discard_time": null, "name": "Paula Grant", "comment": "Morbi non lectus.", "date_created": "2017-11-23T04:02:23.234Z", "created_by": "denise79"}}, {"model": "users.usergroup", "pk": "5f08ffd4-c1cd-4adc-ac8f-cedf75a15eba", "fields": {"is_discard": false, "discard_time": null, "name": "Judy Lee", "comment": "Etiam pretium iaculis justo.", "date_created": "2017-11-23T04:02:22.627Z", "created_by": "jane81"}}, {"model": "users.usergroup", "pk": "5fd38c41-7498-4f5a-a3fa-4fe0855d5f36", "fields": {"is_discard": false, "discard_time": null, "name": "Maria Hernandez", "comment": "Duis mattis egestas metus.", "date_created": "2017-11-23T04:02:23.218Z", "created_by": "wanda85"}}, {"model": "users.usergroup", "pk": "60773d2b-97ab-4781-8028-8159f39c46cd", "fields": {"is_discard": false, "discard_time": null, "name": "Catherine Wright", "comment": "Integer ac neque.", "date_created": "2017-11-23T04:02:22.692Z", "created_by": "nicole72"}}, {"model": "users.usergroup", "pk": "656137be-8101-4359-ad48-65d18cd87792", "fields": {"is_discard": false, "discard_time": null, "name": "Beverly Mitchell", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "date_created": "2017-11-23T04:02:23.203Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": "663f7eb1-318a-405f-a02b-531a8824c59d", "fields": {"is_discard": false, "discard_time": null, "name": "Wanda Payne", "comment": "Cras pellentesque volutpat dui.", "date_created": "2017-11-23T04:02:22.976Z", "created_by": "debra73"}}, {"model": "users.usergroup", "pk": "67040c45-473b-4926-86ae-b1a98db81829", "fields": {"is_discard": false, "discard_time": null, "name": "Annie Mason", "comment": "In congue.", "date_created": "2017-11-23T04:02:23.195Z", "created_by": "elizabeth73"}}, {"model": "users.usergroup", "pk": "6a5125c2-dc40-476e-b95f-26c78e92c890", "fields": {"is_discard": false, "discard_time": null, "name": "Jane Wallace", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "date_created": "2017-11-23T04:02:22.826Z", "created_by": "gloria94"}}, {"model": "users.usergroup", "pk": "6adf2f2d-828e-467a-8f8f-badfbce0230b", "fields": {"is_discard": false, "discard_time": null, "name": "Christina Rice", "comment": "In hac habitasse platea dictumst.", "date_created": "2017-11-23T04:02:23.009Z", "created_by": "karen69"}}, {"model": "users.usergroup", "pk": "6c1f4d5e-3fa6-49d6-bea1-94aa40752d26", "fields": {"is_discard": false, "discard_time": null, "name": "Christina Ferguson", "comment": "Sed sagittis.", "date_created": "2017-11-23T04:02:22.937Z", "created_by": "diana74"}}, {"model": "users.usergroup", "pk": "6c667845-4b87-4b4f-8201-c3ba0d47151d", "fields": {"is_discard": false, "discard_time": null, "name": "Michelle Dunn", "comment": "Vestibulum ac est lacinia nisi venenatis tristique.", "date_created": "2017-11-23T04:02:22.912Z", "created_by": "jane81"}}, {"model": "users.usergroup", "pk": "6e312d6a-f393-459b-be3e-2236a1416c8f", "fields": {"is_discard": false, "discard_time": null, "name": "Annie Griffin", "comment": "Aliquam sit amet diam in magna bibendum imperdiet.", "date_created": "2017-11-23T04:02:22.658Z", "created_by": "paula82"}}, {"model": "users.usergroup", "pk": "6fb231ae-9b36-4917-9d74-f9f0df991c70", "fields": {"is_discard": false, "discard_time": null, "name": "Kathryn Allen", "comment": "In eleifend quam a odio.", "date_created": "2017-11-23T04:02:23.172Z", "created_by": "marilyn75"}}, {"model": "users.usergroup", "pk": "76099180-6abd-4dfc-9a67-026ad6f4dd2c", "fields": {"is_discard": false, "discard_time": null, "name": "Norma Gardner", "comment": "Nunc rhoncus dui vel sem.", "date_created": "2017-11-23T04:02:22.715Z", "created_by": "christina63"}}, {"model": "users.usergroup", "pk": "775c48da-76c8-45b1-8f5c-52e90b753fd5", "fields": {"is_discard": false, "discard_time": null, "name": "Ruth Lawrence", "comment": "Proin eu mi.", "date_created": "2017-11-23T04:02:22.920Z", "created_by": "norma77"}}, {"model": "users.usergroup", "pk": "781b66b3-d602-43d5-ac9c-411537f20b69", "fields": {"is_discard": false, "discard_time": null, "name": "Angela Griffin", "comment": "Integer a nibh.", "date_created": "2017-11-23T04:02:23.124Z", "created_by": "judith72"}}, {"model": "users.usergroup", "pk": "7e61a15c-8e4a-46da-a7d7-ad0bc0eaae7f", "fields": {"is_discard": false, "discard_time": null, "name": "Lois Bailey", "comment": "Morbi non quam nec dui luctus rutrum.", "date_created": "2017-11-23T04:02:23.210Z", "created_by": "shirley66"}}, {"model": "users.usergroup", "pk": "812e86fa-d4a0-424f-b5eb-f39b6bbda09b", "fields": {"is_discard": false, "discard_time": null, "name": "Louise Ross", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "date_created": "2017-11-23T04:02:22.850Z", "created_by": "evelyn70"}}, {"model": "users.usergroup", "pk": "81c89d09-03fe-40a5-85f2-0b441e84e478", "fields": {"is_discard": false, "discard_time": null, "name": "Heather Duncan", "comment": "Nulla suscipit ligula in lacus.", "date_created": "2017-11-23T04:02:22.984Z", "created_by": "doris89"}}, {"model": "users.usergroup", "pk": "825a0f57-2778-4fe4-8022-6932f06c3642", "fields": {"is_discard": false, "discard_time": null, "name": "Jessica Bowman", "comment": "Curabitur convallis.", "date_created": "2017-11-23T04:02:22.578Z", "created_by": "diane92"}}, {"model": "users.usergroup", "pk": "846a311d-d182-4db3-bff5-b9566ca2a752", "fields": {"is_discard": false, "discard_time": null, "name": "Donna Day", "comment": "Aenean sit amet justo.", "date_created": "2017-11-23T04:02:23.242Z", "created_by": "christina91"}}, {"model": "users.usergroup", "pk": "8511fdd3-71e2-4019-b483-98d69ebc7a5f", "fields": {"is_discard": false, "discard_time": null, "name": "Cynthia Wright", "comment": "Nullam molestie nibh in lectus.", "date_created": "2017-11-23T04:02:22.491Z", "created_by": "betty84"}}, {"model": "users.usergroup", "pk": "853b7d83-b0d0-4b85-ba48-31c6b24fe48b", "fields": {"is_discard": false, "discard_time": null, "name": "Christine Sims", "comment": "Ut tellus.", "date_created": "2017-11-23T04:02:22.499Z", "created_by": "theresa89"}}, {"model": "users.usergroup", "pk": "8f76e705-cd96-4576-8f6c-74c9173adeb8", "fields": {"is_discard": false, "discard_time": null, "name": "Brenda Boyd", "comment": "Donec semper sapien a libero.", "date_created": "2017-11-23T04:02:22.778Z", "created_by": "andrea76"}}, {"model": "users.usergroup", "pk": "900e644f-9d17-41c1-9543-55cb2045e64f", "fields": {"is_discard": false, "discard_time": null, "name": "Nicole Garrett", "comment": "Integer ac leo.", "date_created": "2017-11-23T04:02:23.266Z", "created_by": "andrea76"}}, {"model": "users.usergroup", "pk": "939f0408-953a-4b1d-a559-0a6738c08fd4", "fields": {"is_discard": false, "discard_time": null, "name": "Joyce Carter", "comment": "Integer ac leo.", "date_created": "2017-11-23T04:02:22.968Z", "created_by": "ruby84"}}, {"model": "users.usergroup", "pk": "972de546-d266-4a63-bfc8-7e1ca602fcb7", "fields": {"is_discard": false, "discard_time": null, "name": "Rose Young", "comment": "Quisque porta volutpat erat.", "date_created": "2017-11-23T04:02:22.610Z", "created_by": "alice67"}}, {"model": "users.usergroup", "pk": "997a96fd-fa69-450c-9c92-50d2124cb2a8", "fields": {"is_discard": false, "discard_time": null, "name": "Dorothy Sullivan", "comment": "Suspendisse potenti.", "date_created": "2017-11-23T04:02:22.642Z", "created_by": "irene75"}}, {"model": "users.usergroup", "pk": "99ca5236-17c4-4c84-8c1e-9c8c08964d32", "fields": {"is_discard": false, "discard_time": null, "name": "Robin Gonzalez", "comment": "Vestibulum rutrum rutrum neque.", "date_created": "2017-11-23T04:02:22.555Z", "created_by": "lisa78"}}, {"model": "users.usergroup", "pk": "9a53e1a2-f957-4f09-aa88-ed476d16cf3a", "fields": {"is_discard": false, "discard_time": null, "name": "Theresa Alexander", "comment": "Maecenas tincidunt lacus at velit.", "date_created": "2017-11-23T04:02:22.635Z", "created_by": "helen70"}}, {"model": "users.usergroup", "pk": "9edbc263-0810-4008-a326-0deeae3d778b", "fields": {"is_discard": false, "discard_time": null, "name": "Christina Peters", "comment": "Etiam faucibus cursus urna.", "date_created": "2017-11-23T04:02:22.593Z", "created_by": "rose78"}}, {"model": "users.usergroup", "pk": "a01a5304-9e0e-4852-a19f-c4fb2d6388af", "fields": {"is_discard": false, "discard_time": null, "name": "Rose Gilbert", "comment": "Suspendisse potenti.", "date_created": "2017-11-23T04:02:23.049Z", "created_by": "christina63"}}, {"model": "users.usergroup", "pk": "a500de70-3ebc-45d5-8e74-5ad528b1205b", "fields": {"is_discard": false, "discard_time": null, "name": "Tina Hawkins", "comment": "Aenean fermentum.", "date_created": "2017-11-23T04:02:22.834Z", "created_by": "theresa89"}}, {"model": "users.usergroup", "pk": "a56604f3-d47a-4af1-9bfd-9ba4f7993ecd", "fields": {"is_discard": false, "discard_time": null, "name": "Carol Kennedy", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "date_created": "2017-11-23T04:02:23.099Z", "created_by": "donna76"}}, {"model": "users.usergroup", "pk": "a80c7aaf-c18b-4965-bbc0-e5af78cbb968", "fields": {"is_discard": false, "discard_time": null, "name": "Sara Mccoy", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.", "date_created": "2017-11-23T04:02:22.952Z", "created_by": "jacqueline80"}}, {"model": "users.usergroup", "pk": "aa800096-268a-48e6-818e-fd68262606b7", "fields": {"is_discard": false, "discard_time": null, "name": "Rebecca Ross", "comment": "Sed sagittis.", "date_created": "2017-11-23T04:02:22.531Z", "created_by": "helen70"}}, {"model": "users.usergroup", "pk": "ad0561eb-2c66-4632-9b36-d5d4aa720a0b", "fields": {"is_discard": false, "discard_time": null, "name": "Kathryn Stanley", "comment": "Nulla ac enim.", "date_created": "2017-11-23T04:02:23.283Z", "created_by": "betty76"}}, {"model": "users.usergroup", "pk": "ad84beb0-1ffb-42ae-8400-235a0c0356ef", "fields": {"is_discard": false, "discard_time": null, "name": "Diane Frazier", "comment": "Curabitur at ipsum ac tellus semper interdum.", "date_created": "2017-11-23T04:02:23.227Z", "created_by": "diana74"}}, {"model": "users.usergroup", "pk": "b13a6090-2427-4c39-a4f7-6a6fd7c4d431", "fields": {"is_discard": false, "discard_time": null, "name": "Lillian Mccoy", "comment": "Pellentesque eget nunc.", "date_created": "2017-11-23T04:02:22.707Z", "created_by": "debra93"}}, {"model": "users.usergroup", "pk": "b1bc64ce-4f2f-4769-a1e3-93a8fbb8a883", "fields": {"is_discard": false, "discard_time": null, "name": "Anna Reynolds", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "date_created": "2017-11-23T04:02:22.731Z", "created_by": "lillian64"}}, {"model": "users.usergroup", "pk": "b4fe23ee-25ed-49a1-8068-98d21f55b534", "fields": {"is_discard": false, "discard_time": null, "name": "Catherine Patterson", "comment": "Nullam molestie nibh in lectus.", "date_created": "2017-11-23T04:02:22.960Z", "created_by": "rebecca87"}}, {"model": "users.usergroup", "pk": "b8c01373-d0e4-4706-ae54-021a9aac780e", "fields": {"is_discard": false, "discard_time": null, "name": "Bonnie Sims", "comment": "Vestibulum sed magna at nunc commodo placerat.", "date_created": "2017-11-23T04:02:23.274Z", "created_by": "diane92"}}, {"model": "users.usergroup", "pk": "b8c20e4f-ff98-413c-a1c9-9affec139fb9", "fields": {"is_discard": false, "discard_time": null, "name": "Amanda Rice", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo.", "date_created": "2017-11-23T04:02:23.148Z", "created_by": "shirley66"}}, {"model": "users.usergroup", "pk": "bb01d224-3a98-4292-a80d-e8fc6bab8daa", "fields": {"is_discard": false, "discard_time": null, "name": "Gloria Long", "comment": "Vivamus vestibulum sagittis sapien.", "date_created": "2017-11-23T04:02:22.866Z", "created_by": "gloria94"}}, {"model": "users.usergroup", "pk": "bea679a5-4c1c-4f43-974b-daf923243fd2", "fields": {"is_discard": false, "discard_time": null, "name": "Donna Spencer", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "date_created": "2017-11-23T04:02:23.180Z", "created_by": "pamela64"}}, {"model": "users.usergroup", "pk": "c194d4a1-057b-43d7-b088-90f02329cede", "fields": {"is_discard": false, "discard_time": null, "name": "Katherine Harrison", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "date_created": "2017-11-23T04:02:22.618Z", "created_by": "kathy72"}}, {"model": "users.usergroup", "pk": "c3e0676d-5698-4d31-a878-1e82f945de2f", "fields": {"is_discard": false, "discard_time": null, "name": "Sarah Peterson", "comment": "In hac habitasse platea dictumst.", "date_created": "2017-11-23T04:02:22.945Z", "created_by": "diana74"}}, {"model": "users.usergroup", "pk": "c79fb95a-e98f-4a9c-9d0f-6a964b741874", "fields": {"is_discard": false, "discard_time": null, "name": "Barbara Dunn", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "date_created": "2017-11-23T04:02:23.000Z", "created_by": "jessica82"}}, {"model": "users.usergroup", "pk": "c9c17857-760b-4b8c-b707-9794c1be04ab", "fields": {"is_discard": false, "discard_time": null, "name": "Donna Rogers", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "date_created": "2017-11-23T04:02:22.770Z", "created_by": "kimberly73"}}, {"model": "users.usergroup", "pk": "cb03f894-608a-45c6-97a5-7cbfc00dcaab", "fields": {"is_discard": false, "discard_time": null, "name": "Joyce Kim", "comment": "In hac habitasse platea dictumst.", "date_created": "2017-11-23T04:02:22.817Z", "created_by": "karen82"}}, {"model": "users.usergroup", "pk": "ce5c55ce-3277-4238-954d-cf5ea86adea9", "fields": {"is_discard": false, "discard_time": null, "name": "Virginia Ramos", "comment": "Praesent blandit lacinia erat.", "date_created": "2017-11-23T04:02:22.586Z", "created_by": "jane81"}}, {"model": "users.usergroup", "pk": "cfa842e1-7331-41db-8768-2ce7f0533d4d", "fields": {"is_discard": false, "discard_time": null, "name": "Diana Murphy", "comment": "Etiam justo.", "date_created": "2017-11-23T04:02:23.251Z", "created_by": "shirley64"}}, {"model": "users.usergroup", "pk": "d31376d4-5b9f-46df-b710-d85a32049cd6", "fields": {"is_discard": false, "discard_time": null, "name": "Susan Garza", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "date_created": "2017-11-23T04:02:23.033Z", "created_by": "jacqueline80"}}, {"model": "users.usergroup", "pk": "d35f34b9-26f6-4cae-a18f-7f4b7e29b603", "fields": {"is_discard": false, "discard_time": null, "name": "Barbara Howell", "comment": "Nam dui.", "date_created": "2017-11-23T04:02:22.699Z", "created_by": "paula82"}}, {"model": "users.usergroup", "pk": "d48398c8-bae5-4fde-a69e-89a832feab70", "fields": {"is_discard": false, "discard_time": null, "name": "Nicole Burke", "comment": "Ut at dolor quis odio consequat varius.", "date_created": "2017-11-23T04:02:22.515Z", "created_by": "gloria89"}}, {"model": "users.usergroup", "pk": "e3a3a7f8-b52a-4ca7-b305-b119a4009393", "fields": {"is_discard": false, "discard_time": null, "name": "Sarah Fox", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "date_created": "2017-11-23T04:02:23.163Z", "created_by": "betty87"}}, {"model": "users.usergroup", "pk": "e761fefb-de86-456c-b924-6cb38476dbee", "fields": {"is_discard": false, "discard_time": null, "name": "Jennifer Lewis", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante.", "date_created": "2017-11-23T04:02:23.074Z", "created_by": "teresa91"}}, {"model": "users.usergroup", "pk": "e86a2b0a-d9ad-421d-8f57-96482e2b83d1", "fields": {"is_discard": false, "discard_time": null, "name": "Kathryn Shaw", "comment": "Cras pellentesque volutpat dui.", "date_created": "2017-11-23T04:02:23.140Z", "created_by": "beverly77"}}, {"model": "users.usergroup", "pk": "e9d534ff-8cf2-4c77-b7ec-1a28033752d4", "fields": {"is_discard": false, "discard_time": null, "name": "Michelle Watkins", "comment": "Donec posuere metus vitae ipsum.", "date_created": "2017-11-23T04:02:22.547Z", "created_by": "cheryl91"}}, {"model": "users.usergroup", "pk": "ee46ce04-b94e-4190-a48a-12dff1205918", "fields": {"is_discard": false, "discard_time": null, "name": "Tammy Martin", "comment": "Nulla facilisi.", "date_created": "2017-11-23T04:02:22.794Z", "created_by": "doris89"}}, {"model": "users.usergroup", "pk": "f24b7003-5495-492c-b754-85d064e69cb2", "fields": {"is_discard": false, "discard_time": null, "name": "Irene West", "comment": "Vivamus tortor.", "date_created": "2017-11-23T04:02:23.025Z", "created_by": "kelly78"}}, {"model": "users.usergroup", "pk": "f5ad9136-c035-4fa9-81ec-62c9947dffc1", "fields": {"is_discard": false, "discard_time": null, "name": "Kelly Hanson", "comment": "Etiam vel augue.", "date_created": "2017-11-23T04:02:22.675Z", "created_by": "joan75"}}, {"model": "users.usergroup", "pk": "ff81986e-b819-48bc-9e6d-a0e94803c7e3", "fields": {"is_discard": false, "discard_time": null, "name": "Lillian Burton", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "date_created": "2017-11-23T04:02:22.601Z", "created_by": "anna80"}}, {"model": "assets.idc", "pk": "13af0b18-b752-48fb-aff0-5d0ccdde9214", "fields": {"name": "Debra Kennedy", "bandwidth": "200M", "contact": "Margaret Schmidt", "phone": "6-(050)917-5402", "address": "Dos Palos451 Burning Wood Place", "intranet": "", "extranet": "", "date_created": "2017-11-23T04:02:23.292Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Aliquam quis turpis eget elit sodales scelerisque."}}, {"model": "assets.idc", "pk": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "fields": {"name": "Joyce Fuller", "bandwidth": "200M", "contact": "Lillian Hunter", "phone": "7-(325)181-8605", "address": "Lompoc4 David Junction", "intranet": "", "extranet": "", "date_created": "2017-11-23T04:02:23.288Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh."}}, {"model": "assets.idc", "pk": "84fe4835-7a50-4798-86b0-d0921b30aa87", "fields": {"name": "Lori Griffin", "bandwidth": "200M", "contact": "Marilyn Mccoy", "phone": "4-(641)307-0309", "address": "Brawley1 Elmside Park", "intranet": "", "extranet": "", "date_created": "2017-11-23T04:02:23.291Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.idc", "pk": "937922e3-e2b7-42aa-b460-6b276901f53a", "fields": {"name": "Default", "bandwidth": "", "contact": "", "phone": "", "address": "", "intranet": "", "extranet": "", "date_created": "2017-11-23T03:59:09.882Z", "operator": "", "created_by": "System", "comment": "Default IDC"}}, {"model": "assets.idc", "pk": "a157c2af-385b-49a1-92ab-8094a8d4538c", "fields": {"name": "Catherine Pierce", "bandwidth": "200M", "contact": "Doris Simpson", "phone": "7-(305)199-4660", "address": "Rancho Mirage76902 Summerview Parkway", "intranet": "", "extranet": "", "date_created": "2017-11-23T04:02:23.290Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.idc", "pk": "ce4205dc-2016-460d-86a2-9054e4268447", "fields": {"name": "Beverly Hudson", "bandwidth": "200M", "contact": "Virginia Montgomery", "phone": "0-(569)797-6439", "address": "Portola Valley34 Pawling Point", "intranet": "", "extranet": "", "date_created": "2017-11-23T04:02:23.286Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Cras in purus eu magna vulputate luctus."}}, {"model": "assets.adminuser", "pk": "06be187a-5bbd-4320-ac75-7419baac871c", "fields": {"name": "Ruth Moreno", "username": "paula", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1ldHVzIg.YtPHlU3XHnhjfj2rsVVxVzOZTx_u-Jd2wWJJMarQvls", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "become_pass": "", "_public_key": "", "comment": "Nulla mollis molestie lorem.", "date_created": "2017-11-23T04:02:23.328Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "1eb24903-c143-4852-8dce-22f42c1cc941", "fields": {"name": "Helen Hunt", "username": "lori", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1YmlsaWEi.68DQVCMmeZQyAGqE4SJAPFBiBwMaPVZ0J7zxj8a0WV8", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "become_pass": "", "_public_key": "", "comment": "Integer non velit.", "date_created": "2017-11-23T04:02:23.326Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "304e2935-3b3a-4d8c-923d-9e9acf23a2b9", "fields": {"name": "Ruth James", "username": "sara", "_password": "eyJhbGciOiJIUzI1NiJ9.InJ1dHJ1bSI.e9e4AJVlXCLyu2tkGWKY-NsMt-cO_6iX0iBXXzYWWNs", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "become_pass": "", "_public_key": "", "comment": "Morbi porttitor lorem id ligula.", "date_created": "2017-11-23T04:02:23.322Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "52024b00-a9a3-47fb-b905-ae6de200edc3", "fields": {"name": "Karen Diaz", "username": "debra", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvc3VlcmUi.HiqInzbNn9wLyMamRM3OfwBYJ9q4n297DvZzFFDwN7w", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "become_pass": "", "_public_key": "", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "date_created": "2017-11-23T04:02:23.319Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "53963eb1-dac1-4540-a029-e1f095fded8b", "fields": {"name": "Lisa Montgomery", "username": "sarah", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNyYXMi.XaZorOzP9Q-tQMUl0F1cFNwEuzAF-xGhi8EEc4rOpeA", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "become_pass": "", "_public_key": "", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "date_created": "2017-11-23T04:02:23.324Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "718fa9b9-0613-44c3-8da8-93e1d380cf09", "fields": {"name": "Teresa Reyes", "username": "ruth", "_password": "eyJhbGciOiJIUzI1NiJ9.ImludGVyZHVtIg.UHlxBZLjoTZbl5ZIhbnQ1sBwbWSntPA0eH2R4BQWoB0", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "become_pass": "", "_public_key": "", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla.", "date_created": "2017-11-23T04:02:23.314Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "75443846-7bb3-4514-9c1e-0e30633cab56", "fields": {"name": "Helen Perkins", "username": "jacqueline", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpY3R1bXN0Ig.owyqiwsx1v5W-7FCwPxXX8ieVl7N7sILLI3SaGMXdn8", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "become_pass": "", "_public_key": "", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo.", "date_created": "2017-11-23T04:02:23.315Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "bce3d322-c9e3-4550-9037-73dfb2afdb48", "fields": {"name": "Janice Morgan", "username": "linda", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbCI.ETImZ-BkJk0sqh2IFBILiQXV2aDn_mEZV3b-qIUDQBo", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "become_pass": "", "_public_key": "", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "date_created": "2017-11-23T04:02:23.321Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "c9110003-1706-47d7-add7-d0f5318958c2", "fields": {"name": "Lori Gordon", "username": "frances", "_password": "eyJhbGciOiJIUzI1NiJ9.InBoYXNlbGx1cyI.Zn-tLzwjTOOALDdNqorcCv8dpUlJWwDa8PhPqRVfR7s", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "become_pass": "", "_public_key": "", "comment": "Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci.", "date_created": "2017-11-23T04:02:23.317Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "f1e2692a-f4f4-4baa-b89a-5a8ac043c3b5", "fields": {"name": "Brenda Duncan", "username": "jennifer", "_password": "eyJhbGciOiJIUzI1NiJ9.InZpdmVycmEi._5sKpYEDAdzVOMt3SPvcUDflsUZsXSHomn0E3xswexY", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "become_pass": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "date_created": "2017-11-23T04:02:23.312Z", "created_by": "Fake"}}, {"model": "assets.systemuser", "pk": "4bcb47f5-e664-4c31-a041-f8433afaa2ea", "fields": {"name": "Janice Franklin", "username": "heather", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hdXJpcyI.jcR8xjLt9WrET56Nes7q2CdkHYJAWb7Y2d--saQSumY", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-11-23T04:02:23.296Z", "created_by": "Fake", "comment": "Nulla tempus."}}, {"model": "assets.systemuser", "pk": "50ee8963-28f7-4c47-bc5c-fe68227080f4", "fields": {"name": "Jessica Garza", "username": "martha", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-11-23T04:02:23.295Z", "created_by": "Fake", "comment": "Proin risus."}}, {"model": "assets.systemuser", "pk": "637d20bc-e2be-4261-8ab6-dd5a185dfad1", "fields": {"name": "Helen Fox", "username": "jane", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlY3R1cyI.7T1IUgQEmo1rg4yMJ17FiAP48rzB174UhQ0vFbK15QM", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-11-23T04:02:23.300Z", "created_by": "Fake", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam."}}, {"model": "assets.systemuser", "pk": "661726d4-77a2-46a4-8ad3-d42c0c08230b", "fields": {"name": "Rebecca Stevens", "username": "christina", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-11-23T04:02:23.303Z", "created_by": "Fake", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit."}}, {"model": "assets.systemuser", "pk": "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f", "fields": {"name": "Rebecca Graham", "username": "nicole", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVuaW0i.G3tfpkWpHaXsDj426yogQKH9WMk4-ONIo66sphs2Dgs", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-11-23T04:02:23.302Z", "created_by": "Fake", "comment": "Morbi porttitor lorem id ligula."}}, {"model": "assets.systemuser", "pk": "9bb30927-480c-4da3-8fe3-a480c4db0fd3", "fields": {"name": "Frances Thomas", "username": "diane", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-11-23T04:02:23.298Z", "created_by": "Fake", "comment": "Duis mattis egestas metus."}}, {"model": "assets.systemuser", "pk": "a098e4b9-16ab-4b49-8318-5bc21b5a2e47", "fields": {"name": "Kimberly Adams", "username": "michelle", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjIg.m7atEKEFx68VZmM2clat-RyHmCQmR0lrKJ2VrzecInw", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-11-23T04:02:23.307Z", "created_by": "Fake", "comment": "Praesent blandit lacinia erat."}}, {"model": "assets.systemuser", "pk": "aa0ed31c-305e-40ae-b56f-6ea2932b3278", "fields": {"name": "Mildred Frazier", "username": "emily", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-11-23T04:02:23.310Z", "created_by": "Fake", "comment": "Nulla suscipit ligula in lacus."}}, {"model": "assets.systemuser", "pk": "bb1c3cbc-530f-4702-8c8f-2761810510f0", "fields": {"name": "Janice Garza", "username": "debra", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhZ2l0dGlzIg.3Bi_u95FE3rtgZOoqk8FyFU9_pncEEajQ0EqTtOvPEc", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-11-23T04:02:23.308Z", "created_by": "Fake", "comment": "Nam tristique tortor eu pede."}}, {"model": "assets.systemuser", "pk": "bc267310-74f0-45db-a768-75378ec766b0", "fields": {"name": "Julie Schmidt", "username": "alice", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5vbiI.pwMNExwLCmk9BWKxw3hxw9K9h0YRh102FvLNRKTumRs", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-11-23T04:02:23.305Z", "created_by": "Fake", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis."}}, {"model": "assets.assetgroup", "pk": "0014d84f-3df9-4f46-8be4-74b1eecf18c1", "fields": {"name": "Pamela Freeman", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.402Z", "comment": "Donec posuere metus vitae ipsum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "0016fdbe-5e83-4205-990d-a00025d233ea", "fields": {"name": "Betty Dean", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.353Z", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "00b9c0d5-306b-4dbb-91c7-85911c84ec98", "fields": {"name": "Judy Moreno", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.339Z", "comment": "Curabitur convallis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "00e3af44-7ee9-4f1c-9e2e-a9465ae36184", "fields": {"name": "Paula Welch", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.345Z", "comment": "Etiam faucibus cursus urna.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "097cc32e-24b7-4d61-8f6a-f29cef699224", "fields": {"name": "Melissa Coleman", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.386Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "0a8d7a82-b559-43c3-a033-ed429d9fdc0f", "fields": {"name": "Kathy Peters", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.380Z", "comment": "Vivamus vestibulum sagittis sapien.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "0ab2208b-52d1-427c-85d4-c0157628cf93", "fields": {"name": "Louise Mills", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.431Z", "comment": "Vivamus tortor.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "0b24ebd3-eed4-425b-8733-c311a6644251", "fields": {"name": "Debra Price", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.397Z", "comment": "Etiam vel augue.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "1004fa6f-0f7d-4d59-a083-564a363b9422", "fields": {"name": "Nicole Hanson", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.368Z", "comment": "Proin at turpis a pede posuere nonummy.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "12657ac9-b021-487f-94a7-1b03e169703f", "fields": {"name": "Lillian Hill", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.393Z", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "199a942a-0ed9-4712-b93e-4e373e95cf64", "fields": {"name": "Michelle Sanchez", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.422Z", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "1afa9a44-adf5-4bed-b2ba-99a68f6ccc3f", "fields": {"name": "Lisa Chapman", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.429Z", "comment": "Proin interdum mauris non ligula pellentesque ultrices.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "1bade3bf-bd1b-4a20-8c6c-92d38273ed90", "fields": {"name": "Julie Sims", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.391Z", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "2583da78-f93a-47a0-a090-78c5c1af4f78", "fields": {"name": "Christina Russell", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.415Z", "comment": "Maecenas rhoncus aliquam lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "2b622945-ee9b-490b-906c-349c69127b1f", "fields": {"name": "Michelle Day", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.369Z", "comment": "Morbi a ipsum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "2e656a5c-b57b-4eef-9d49-4e54a286bc89", "fields": {"name": "Angela Greene", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.435Z", "comment": "Vivamus tortor.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "2fbd03e2-c2db-4be5-af5d-495696be1217", "fields": {"name": "Lois Miller", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.444Z", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "36111baf-02bc-4773-862d-dbb980fffd2f", "fields": {"name": "Katherine Brown", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.330Z", "comment": "Curabitur in libero ut massa volutpat convallis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "367af5f2-a2da-4ec1-8ae2-e846c1d6781d", "fields": {"name": "Janice Bailey", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.395Z", "comment": "Duis bibendum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "37684a23-3468-4f6f-96a7-ee5de9ec10d6", "fields": {"name": "Carol Parker", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.354Z", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "3b9acd00-4e27-45be-be06-8322b1bb5ddc", "fields": {"name": "Anna Harvey", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.338Z", "comment": "Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "3cb5917f-97b2-421f-a738-8491f2a09876", "fields": {"name": "Julie Reyes", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.450Z", "comment": "Vivamus tortor.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "40302be4-05eb-4570-bf3c-181947051bbb", "fields": {"name": "Nancy Rose", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.389Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "40936ad8-91cf-488e-94bd-7428f9c7ca46", "fields": {"name": "Marie Romero", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.408Z", "comment": "Donec dapibus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "41cd7504-af4d-4f37-8642-3babd2d0ee55", "fields": {"name": "Andrea Mason", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.350Z", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "439aba56-ee32-48bc-9a0a-2d4e213c1b2c", "fields": {"name": "Ruth Lee", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.460Z", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "4504a4b1-3d31-425b-a10f-291d570d78f7", "fields": {"name": "Annie Ford", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.378Z", "comment": "Fusce consequat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "48988400-14f1-41b7-a73f-67d7f0802741", "fields": {"name": "Jean Pierce", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.379Z", "comment": "Vivamus vel nulla eget eros elementum pellentesque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "4bb147cb-c91a-401c-95fc-5586460ef544", "fields": {"name": "Melissa Lewis", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.437Z", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "4c020417-6275-4c6f-9f68-b3a2744b205f", "fields": {"name": "Gloria Wood", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.405Z", "comment": "Duis ac nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "4e57534b-e30a-41e0-b76f-55950363b8e3", "fields": {"name": "Angela Morrison", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.398Z", "comment": "Pellentesque at nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "4e6a08d0-bf9b-4c63-a1bb-456776fcf50b", "fields": {"name": "Lori Stanley", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.464Z", "comment": "Curabitur convallis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "5194b310-0fe5-45ee-9f18-b7e0b00c064a", "fields": {"name": "Robin West", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.387Z", "comment": "Nam tristique tortor eu pede.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "53688a90-42f6-462e-a636-08b254fd6c80", "fields": {"name": "Rebecca Gonzalez", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.337Z", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "54a81cae-c97a-456d-aff3-bb69b7cbd30b", "fields": {"name": "Andrea Hughes", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.362Z", "comment": "Sed accumsan felis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "5570ee58-d20d-4259-9be2-4548fbe08f4f", "fields": {"name": "Sandra Edwards", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.439Z", "comment": "Nulla justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "597502d4-24f4-4ce9-8ed9-4300dad35c8e", "fields": {"name": "Mildred Franklin", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.360Z", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "5aa5e356-5208-4354-bdf6-f0fd6878c2ee", "fields": {"name": "Linda Clark", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.441Z", "comment": "Duis aliquam convallis nunc.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "5ecd2dbd-35bc-467b-b0a6-924f09d97606", "fields": {"name": "Ruth Carter", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.399Z", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "5ff2a9b8-4925-4aa7-ac07-97924b991f6c", "fields": {"name": "Debra Fuller", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.382Z", "comment": "Donec ut mauris eget massa tempor convallis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "6263b53e-ed9a-4ffc-9c17-9f5f1fd7050c", "fields": {"name": "Ashley Snyder", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.426Z", "comment": "Maecenas tincidunt lacus at velit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "62dd71f6-08a7-4d46-b7c3-b051360c3c24", "fields": {"name": "Katherine Wright", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.357Z", "comment": "Praesent id massa id nisl venenatis lacinia.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "63b2e794-db5d-4e76-8358-b698f5c5973c", "fields": {"name": "Amy Ferguson", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.454Z", "comment": "Donec vitae nisi.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "6631ee82-647c-47f6-865f-e6782ee1d39c", "fields": {"name": "Christine Sanders", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.366Z", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "6889a99e-1beb-4f81-9691-0098d17175af", "fields": {"name": "Bonnie Bennett", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.433Z", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "6d482f09-d26a-4055-bc00-1bc22a96da0f", "fields": {"name": "Betty Wright", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.465Z", "comment": "Phasellus sit amet erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "6f1c2b7d-7ef5-4857-ac14-05949a28310e", "fields": {"name": "Beverly Washington", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.411Z", "comment": "Nullam porttitor lacus at turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "703f27db-d63f-446c-b264-2541490c5d44", "fields": {"name": "Irene Coleman", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.342Z", "comment": "Duis ac nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "720bac71-3000-451f-88e0-4bac5a3ceaaa", "fields": {"name": "Jean Jones", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.423Z", "comment": "Nullam varius.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "7708ce26-93a1-4473-bb94-ffaecddd278e", "fields": {"name": "Tammy Fields", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.341Z", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "7969a211-d0a3-4ce3-99bb-9282b9c865a4", "fields": {"name": "Nancy Roberts", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.335Z", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "7a9afc90-58e3-4a1a-a6a4-2653b456580b", "fields": {"name": "Margaret Brown", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.371Z", "comment": "Duis ac nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "7e52f6fb-8d57-4cde-b050-acdccccec7ee", "fields": {"name": "Marilyn Austin", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.451Z", "comment": "Vivamus tortor.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "858afd68-f400-4a3a-a522-dd48a950edd5", "fields": {"name": "Theresa Boyd", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.375Z", "comment": "Etiam faucibus cursus urna.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "86d794af-8953-47e6-a47a-f1889f639755", "fields": {"name": "Kelly Hayes", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.410Z", "comment": "Donec quis orci eget orci vehicula condimentum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "870ad23f-7ca1-48ec-a018-05ef6e2c59b9", "fields": {"name": "Virginia Montgomery", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.425Z", "comment": "Nullam porttitor lacus at turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "877352ba-df98-41e1-a22b-e8ff1011c687", "fields": {"name": "Pamela Knight", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.443Z", "comment": "Pellentesque eget nunc.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "8be9b61a-b219-477a-9168-3747e3af2b0b", "fields": {"name": "Donna Franklin", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.432Z", "comment": "Phasellus sit amet erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "8ee060e1-2560-4c46-aa4b-63e8ffa8bf60", "fields": {"name": "Stephanie Moore", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.383Z", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "90988898-42d3-4c75-b049-129f95c49609", "fields": {"name": "Sandra Cruz", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.419Z", "comment": "Etiam justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "91df1b5e-7a1b-44a3-b882-59291d97d7b1", "fields": {"name": "Stephanie Payne", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.356Z", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "92c43bc9-9c09-43ad-a792-245f8d4d0dfb", "fields": {"name": "Christina Sims", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.467Z", "comment": "Integer ac leo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "946181ef-00fa-491d-ad36-09e77c196ec7", "fields": {"name": "Martha Gomez", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.457Z", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "98d04023-c0cd-48fe-83de-9563be3be195", "fields": {"name": "Teresa Ellis", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.333Z", "comment": "Praesent lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "9912a37b-c579-4556-aa91-1c24b31ca6c0", "fields": {"name": "Jean Cole", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.343Z", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "9ba1afc2-1def-4d78-8d8b-8efd5b010baf", "fields": {"name": "Christine Berry", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.456Z", "comment": "Vestibulum ac est lacinia nisi venenatis tristique.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "9d68027d-9146-40bc-bf26-864e3c873577", "fields": {"name": "Betty Kelly", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.453Z", "comment": "Suspendisse potenti.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "9def420e-08c4-40f8-b98e-3d7ec588c9fb", "fields": {"name": "Shirley Fields", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.372Z", "comment": "Aenean fermentum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "9ecab108-5f53-407e-96ae-5686551c20fb", "fields": {"name": "Jennifer Stevens", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.436Z", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "9f1d86b3-edaf-439f-b318-47f700a6bcbb", "fields": {"name": "Marie Richards", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.364Z", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "9f9f9278-b580-40b2-87bd-0154e2d85249", "fields": {"name": "Kathryn Kim", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.376Z", "comment": "Nulla ut erat id mauris vulputate elementum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "a06d4b13-90bf-47d1-9ce4-f76ef71cba74", "fields": {"name": "Mary Gonzalez", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.440Z", "comment": "Ut at dolor quis odio consequat varius.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "a1279ef3-4ead-484a-8cd3-eb099b5fd41f", "fields": {"name": "Robin Welch", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.365Z", "comment": "Integer ac leo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "a4de7f28-33c9-4b3b-b2b0-33463585008d", "fields": {"name": "Christine Murray", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.420Z", "comment": "Nunc nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "a65c8a87-c47c-4ad1-86cd-55b39c9e1c8c", "fields": {"name": "Kathleen Burke", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.449Z", "comment": "Nulla justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "a923e7a1-d31d-4da9-bb20-e454f0e7839b", "fields": {"name": "Jessica Day", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.373Z", "comment": "Sed sagittis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "ac7798f1-81cd-4999-b33a-e5b483312d45", "fields": {"name": "Virginia Knight", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.417Z", "comment": "Duis bibendum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "ad6b2f25-8dd9-46b6-858b-24d7620ff308", "fields": {"name": "Julia Cunningham", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.416Z", "comment": "Morbi ut odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "aff7c878-739f-4648-baa1-298ffdb09f7f", "fields": {"name": "Mary Mccoy", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.390Z", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "b4de96d1-5873-4441-bb78-43fda9545def", "fields": {"name": "Margaret Rodriguez", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.346Z", "comment": "In sagittis dui vel nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "b6322918-5965-41dc-ba85-398505020213", "fields": {"name": "Mary Armstrong", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.407Z", "comment": "Phasellus in felis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "b687e066-ca26-4cd7-a295-642aa80b551b", "fields": {"name": "Nancy Ruiz", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.331Z", "comment": "Phasellus sit amet erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "c378b1e7-da29-41c7-ada8-8c7bde0fe21f", "fields": {"name": "Jean Gonzalez", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.428Z", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "c5ffc9fa-b3e8-47e2-ab5d-0bf3abef9349", "fields": {"name": "Mildred Watkins", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.446Z", "comment": "Aliquam erat volutpat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "c7ba56f1-3e86-4f0d-a877-e366b2a762a0", "fields": {"name": "Amy Gibson", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.462Z", "comment": "Nulla tempus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "ce342ff2-8a15-4a4b-a875-ae26100e9cd6", "fields": {"name": "Christine Washington", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.412Z", "comment": "Duis mattis egestas metus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "cf491fc8-4837-412a-9d94-6787e699465e", "fields": {"name": "Helen Phillips", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.361Z", "comment": "Suspendisse accumsan tortor quis turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "d7c3a3b1-fb1f-4f12-a7fc-5760b64d0b26", "fields": {"name": "Michelle Diaz", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.400Z", "comment": "Nulla tempus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "d9af6c91-de14-469b-be51-80857d4f3205", "fields": {"name": "Kathleen Boyd", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.351Z", "comment": "Proin eu mi.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "dcd9db0a-e9b5-4b0e-a7bc-235aeb0e3a59", "fields": {"name": "Tina Garcia", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.403Z", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "ddc3159e-81f2-4287-bd39-390d93d9d1df", "fields": {"name": "Lisa Harris", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.447Z", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "e20aca85-bf0e-4751-81f8-3bc5ab8ec481", "fields": {"name": "Theresa Palmer", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.461Z", "comment": "Nam dui.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "e4218bee-2df6-4b78-b20b-6730c83d0738", "fields": {"name": "Doris Moore", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.458Z", "comment": "Vestibulum sed magna at nunc commodo placerat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "e668ba32-e695-48bb-a4f8-36e24d0e43a5", "fields": {"name": "Robin Dixon", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.358Z", "comment": "Nunc purus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "e6b96cae-ac85-4618-8a39-6094ecb6b332", "fields": {"name": "Stephanie Owens", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.334Z", "comment": "Nulla ut erat id mauris vulputate elementum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "ed294c1e-87c7-4e08-96f3-21d76524dc15", "fields": {"name": "Kathryn Romero", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.349Z", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "f0e39049-8271-4c61-b10c-2e04c307388e", "fields": {"name": "Jacqueline Bailey", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.385Z", "comment": "Morbi non quam nec dui luctus rutrum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "f226a229-bfe7-4769-869f-24873eb20336", "fields": {"name": "Karen Patterson", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.394Z", "comment": "Proin eu mi.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "f2e5f834-6d91-4ecc-a1b2-1cae08fe3f6f", "fields": {"name": "Carolyn Hall", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.347Z", "comment": "Mauris sit amet eros.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "f42e2f6b-73b5-4ea6-bf5f-698c99995a06", "fields": {"name": "Melissa Boyd", "created_by": "Fake", "date_created": "2017-11-23T04:02:23.413Z", "comment": "Duis at velit eu est congue elementum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "f758dc94-b979-4edf-9afc-f9171f9d2d6a", "fields": {"name": "Default", "created_by": "", "date_created": "2017-11-23T03:59:09.883Z", "comment": "Default asset group", "system_users": []}}, {"model": "assets.asset", "pk": "0003c618-979d-417d-a17d-b3a95b6ffb13", "fields": {"ip": "0.0.0.0", "hostname": "angela65", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.471Z", "comment": "", "groups": ["2e656a5c-b57b-4eef-9d49-4e54a286bc89", "367af5f2-a2da-4ec1-8ae2-e846c1d6781d", "1004fa6f-0f7d-4d59-a083-564a363b9422"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "4bcb47f5-e664-4c31-a041-f8433afaa2ea", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "0092e800-91ce-466d-8903-58b0da9b625d", "fields": {"ip": "80.80.80.80", "hostname": "deborah69", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "13af0b18-b752-48fb-aff0-5d0ccdde9214", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.086Z", "comment": "", "groups": ["4504a4b1-3d31-425b-a10f-291d570d78f7", "9912a37b-c579-4556-aa91-1c24b31ca6c0", "5570ee58-d20d-4259-9be2-4548fbe08f4f"], "system_users": ["bc267310-74f0-45db-a768-75378ec766b0", "aa0ed31c-305e-40ae-b56f-6ea2932b3278", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "03dbc759-d930-4c8f-8ea3-1252695567af", "fields": {"ip": "77.77.77.77", "hostname": "susan70", "port": 22, "admin_user": "52024b00-a9a3-47fb-b905-ae6de200edc3", "idc": "13af0b18-b752-48fb-aff0-5d0ccdde9214", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.024Z", "comment": "", "groups": ["4e57534b-e30a-41e0-b76f-55950363b8e3", "6889a99e-1beb-4f81-9691-0098d17175af", "2b622945-ee9b-490b-906c-349c69127b1f"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "bc267310-74f0-45db-a768-75378ec766b0", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "056e325e-88fe-4413-b11a-7343f450140f", "fields": {"ip": "62.62.62.62", "hostname": "mildred64", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.722Z", "comment": "", "groups": ["3cb5917f-97b2-421f-a738-8491f2a09876", "36111baf-02bc-4773-862d-dbb980fffd2f", "9def420e-08c4-40f8-b98e-3d7ec588c9fb"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "637d20bc-e2be-4261-8ab6-dd5a185dfad1", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "06693005-0eb2-475a-8f19-1924f0236da3", "fields": {"ip": "4.4.4.4", "hostname": "evelyn74", "port": 22, "admin_user": "f1e2692a-f4f4-4baa-b89a-5a8ac043c3b5", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.553Z", "comment": "", "groups": ["9ba1afc2-1def-4d78-8d8b-8efd5b010baf", "ed294c1e-87c7-4e08-96f3-21d76524dc15", "9def420e-08c4-40f8-b98e-3d7ec588c9fb"], "system_users": ["bc267310-74f0-45db-a768-75378ec766b0", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "070efde5-f6df-4957-af20-ccf7e9a001c9", "fields": {"ip": "20.20.20.20", "hostname": "rachel65", "port": 22, "admin_user": "52024b00-a9a3-47fb-b905-ae6de200edc3", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.873Z", "comment": "", "groups": ["9ecab108-5f53-407e-96ae-5686551c20fb", "62dd71f6-08a7-4d46-b7c3-b051360c3c24", "dcd9db0a-e9b5-4b0e-a7bc-235aeb0e3a59"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bc267310-74f0-45db-a768-75378ec766b0"]}}, {"model": "assets.asset", "pk": "091c393e-99dd-48df-9860-0a7c65822e6b", "fields": {"ip": "89.89.89.89", "hostname": "tammy93", "port": 22, "admin_user": "bce3d322-c9e3-4550-9037-73dfb2afdb48", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.251Z", "comment": "", "groups": ["c378b1e7-da29-41c7-ada8-8c7bde0fe21f", "36111baf-02bc-4773-862d-dbb980fffd2f", "40302be4-05eb-4570-bf3c-181947051bbb"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "aa0ed31c-305e-40ae-b56f-6ea2932b3278", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "0b22fc18-05fd-4b34-bb0e-6446947ba4a2", "fields": {"ip": "45.45.45.45", "hostname": "pamela69", "port": 22, "admin_user": "52024b00-a9a3-47fb-b905-ae6de200edc3", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.376Z", "comment": "", "groups": ["36111baf-02bc-4773-862d-dbb980fffd2f", "2fbd03e2-c2db-4be5-af5d-495696be1217", "5ecd2dbd-35bc-467b-b0a6-924f09d97606"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "50ee8963-28f7-4c47-bc5c-fe68227080f4", "aa0ed31c-305e-40ae-b56f-6ea2932b3278"]}}, {"model": "assets.asset", "pk": "0bfcf154-2fe4-474e-bed9-d3d3af282518", "fields": {"ip": "46.46.46.46", "hostname": "paula81", "port": 22, "admin_user": "bce3d322-c9e3-4550-9037-73dfb2afdb48", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.396Z", "comment": "", "groups": ["6263b53e-ed9a-4ffc-9c17-9f5f1fd7050c", "6d482f09-d26a-4055-bc00-1bc22a96da0f", "5aa5e356-5208-4354-bdf6-f0fd6878c2ee"], "system_users": ["50ee8963-28f7-4c47-bc5c-fe68227080f4", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "0e398da4-4810-4936-9555-d23bf8e6406e", "fields": {"ip": "58.58.58.58", "hostname": "amanda68", "port": 22, "admin_user": "c9110003-1706-47d7-add7-d0f5318958c2", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.642Z", "comment": "", "groups": ["6f1c2b7d-7ef5-4857-ac14-05949a28310e", "48988400-14f1-41b7-a73f-67d7f0802741", "0a8d7a82-b559-43c3-a033-ed429d9fdc0f"], "system_users": ["50ee8963-28f7-4c47-bc5c-fe68227080f4", "aa0ed31c-305e-40ae-b56f-6ea2932b3278", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "0ec705d0-8c6c-4f0e-a39f-4a953c100b60", "fields": {"ip": "82.82.82.82", "hostname": "donna71", "port": 22, "admin_user": "52024b00-a9a3-47fb-b905-ae6de200edc3", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.126Z", "comment": "", "groups": ["9ba1afc2-1def-4d78-8d8b-8efd5b010baf", "4bb147cb-c91a-401c-95fc-5586460ef544"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "0edc22a8-de3a-4479-b3c7-3a736f38412e", "fields": {"ip": "72.72.72.72", "hostname": "norma90", "port": 22, "admin_user": "bce3d322-c9e3-4550-9037-73dfb2afdb48", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.922Z", "comment": "", "groups": ["6d482f09-d26a-4055-bc00-1bc22a96da0f", "b4de96d1-5873-4441-bb78-43fda9545def", "1004fa6f-0f7d-4d59-a083-564a363b9422"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "50ee8963-28f7-4c47-bc5c-fe68227080f4", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "0f9ed307-99f7-4335-ba60-846207c0f55d", "fields": {"ip": "60.60.60.60", "hostname": "marie93", "port": 22, "admin_user": "bce3d322-c9e3-4550-9037-73dfb2afdb48", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.682Z", "comment": "", "groups": ["3b9acd00-4e27-45be-be06-8322b1bb5ddc", "dcd9db0a-e9b5-4b0e-a7bc-235aeb0e3a59", "ac7798f1-81cd-4999-b33a-e5b483312d45"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bb1c3cbc-530f-4702-8c8f-2761810510f0"]}}, {"model": "assets.asset", "pk": "12af73b1-4706-489f-9b17-e4bc2d51bcef", "fields": {"ip": "38.38.38.38", "hostname": "angela83", "port": 22, "admin_user": "06be187a-5bbd-4320-ac75-7419baac871c", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.236Z", "comment": "", "groups": ["2e656a5c-b57b-4eef-9d49-4e54a286bc89", "9d68027d-9146-40bc-bf26-864e3c873577", "c5ffc9fa-b3e8-47e2-ab5d-0bf3abef9349"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "1c536e54-5dce-4c53-91f1-b056b0bdc430", "fields": {"ip": "30.30.30.30", "hostname": "sara76", "port": 22, "admin_user": "304e2935-3b3a-4d8c-923d-9e9acf23a2b9", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.075Z", "comment": "", "groups": ["d9af6c91-de14-469b-be51-80857d4f3205", "dcd9db0a-e9b5-4b0e-a7bc-235aeb0e3a59", "ac7798f1-81cd-4999-b33a-e5b483312d45"], "system_users": ["50ee8963-28f7-4c47-bc5c-fe68227080f4", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "1e15637c-c66c-44cf-a8b0-45ca2fc65293", "fields": {"ip": "83.83.83.83", "hostname": "kimberly69", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.147Z", "comment": "", "groups": ["7e52f6fb-8d57-4cde-b050-acdccccec7ee", "5ecd2dbd-35bc-467b-b0a6-924f09d97606", "91df1b5e-7a1b-44a3-b882-59291d97d7b1"], "system_users": ["7ccdce56-bab0-485c-8890-5e7bdf7e1d2f", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "1f9b9c99-1f23-4896-95d9-2e18a3cb79a1", "fields": {"ip": "50.50.50.50", "hostname": "elizabeth91", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.477Z", "comment": "", "groups": ["92c43bc9-9c09-43ad-a792-245f8d4d0dfb", "aff7c878-739f-4648-baa1-298ffdb09f7f", "4bb147cb-c91a-401c-95fc-5586460ef544"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "aa0ed31c-305e-40ae-b56f-6ea2932b3278", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "20753958-391c-4b6f-b0a6-e29596a519ae", "fields": {"ip": "14.14.14.14", "hostname": "nancy84", "port": 22, "admin_user": "bce3d322-c9e3-4550-9037-73dfb2afdb48", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.754Z", "comment": "", "groups": ["4c020417-6275-4c6f-9f68-b3a2744b205f", "9f9f9278-b580-40b2-87bd-0154e2d85249", "4e6a08d0-bf9b-4c63-a1bb-456776fcf50b"], "system_users": ["50ee8963-28f7-4c47-bc5c-fe68227080f4", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "21e805bf-f3df-4071-9220-b2f4ff8d5d7c", "fields": {"ip": "61.61.61.61", "hostname": "lisa73", "port": 22, "admin_user": "304e2935-3b3a-4d8c-923d-9e9acf23a2b9", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.702Z", "comment": "", "groups": ["9d68027d-9146-40bc-bf26-864e3c873577", "9f1d86b3-edaf-439f-b318-47f700a6bcbb", "a06d4b13-90bf-47d1-9ce4-f76ef71cba74"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bb1c3cbc-530f-4702-8c8f-2761810510f0", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "2262e164-b413-43c1-bbca-f7e7a0f2ad37", "fields": {"ip": "16.16.16.16", "hostname": "jane71", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.793Z", "comment": "", "groups": ["a65c8a87-c47c-4ad1-86cd-55b39c9e1c8c", "f42e2f6b-73b5-4ea6-bf5f-698c99995a06", "5194b310-0fe5-45ee-9f18-b7e0b00c064a"], "system_users": ["aa0ed31c-305e-40ae-b56f-6ea2932b3278", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "23581cf1-7431-43ec-a6db-6592400e7f66", "fields": {"ip": "23.23.23.23", "hostname": "anne63", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.933Z", "comment": "", "groups": ["9d68027d-9146-40bc-bf26-864e3c873577", "8be9b61a-b219-477a-9168-3747e3af2b0b", "f42e2f6b-73b5-4ea6-bf5f-698c99995a06"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "28f014e0-53b7-461f-b4e0-7f572650380a", "fields": {"ip": "76.76.76.76", "hostname": "doris76", "port": 22, "admin_user": "304e2935-3b3a-4d8c-923d-9e9acf23a2b9", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.004Z", "comment": "", "groups": ["41cd7504-af4d-4f37-8642-3babd2d0ee55", "ad6b2f25-8dd9-46b6-858b-24d7620ff308", "946181ef-00fa-491d-ad36-09e77c196ec7"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "4bcb47f5-e664-4c31-a041-f8433afaa2ea", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "2949ffb3-950c-4b08-8236-c04cc81ad4d5", "fields": {"ip": "41.41.41.41", "hostname": "jean89", "port": 22, "admin_user": "f1e2692a-f4f4-4baa-b89a-5a8ac043c3b5", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.296Z", "comment": "", "groups": ["2e656a5c-b57b-4eef-9d49-4e54a286bc89", "5ff2a9b8-4925-4aa7-ac07-97924b991f6c", "e20aca85-bf0e-4751-81f8-3bc5ab8ec481"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "50ee8963-28f7-4c47-bc5c-fe68227080f4", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "2b49001b-92bc-4e63-a238-c93b3781a253", "fields": {"ip": "17.17.17.17", "hostname": "alice64", "port": 22, "admin_user": "06be187a-5bbd-4320-ac75-7419baac871c", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.813Z", "comment": "", "groups": ["ed294c1e-87c7-4e08-96f3-21d76524dc15", "a1279ef3-4ead-484a-8cd3-eb099b5fd41f", "7708ce26-93a1-4473-bb94-ffaecddd278e"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "bb1c3cbc-530f-4702-8c8f-2761810510f0", "50ee8963-28f7-4c47-bc5c-fe68227080f4"]}}, {"model": "assets.asset", "pk": "2c093fd3-10d4-4f16-b49b-0e74f5aedd14", "fields": {"ip": "29.29.29.29", "hostname": "margaret88", "port": 22, "admin_user": "718fa9b9-0613-44c3-8da8-93e1d380cf09", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.055Z", "comment": "", "groups": ["9912a37b-c579-4556-aa91-1c24b31ca6c0", "ad6b2f25-8dd9-46b6-858b-24d7620ff308", "2b622945-ee9b-490b-906c-349c69127b1f"], "system_users": ["aa0ed31c-305e-40ae-b56f-6ea2932b3278", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "2df68ed5-487b-4c2a-b4b7-28ee0e52321d", "fields": {"ip": "28.28.28.28", "hostname": "ann65", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.034Z", "comment": "", "groups": ["c7ba56f1-3e86-4f0d-a877-e366b2a762a0", "3b9acd00-4e27-45be-be06-8322b1bb5ddc", "703f27db-d63f-446c-b264-2541490c5d44"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47", "aa0ed31c-305e-40ae-b56f-6ea2932b3278"]}}, {"model": "assets.asset", "pk": "2ef919d0-76dd-4503-86d9-470c0318a07b", "fields": {"ip": "26.26.26.26", "hostname": "marilyn83", "port": 22, "admin_user": "06be187a-5bbd-4320-ac75-7419baac871c", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.994Z", "comment": "", "groups": ["4c020417-6275-4c6f-9f68-b3a2744b205f", "3cb5917f-97b2-421f-a738-8491f2a09876", "5aa5e356-5208-4354-bdf6-f0fd6878c2ee"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bc267310-74f0-45db-a768-75378ec766b0"]}}, {"model": "assets.asset", "pk": "2fefae14-d230-430b-bf50-a832706a75e7", "fields": {"ip": "87.87.87.87", "hostname": "ashley92", "port": 22, "admin_user": "f1e2692a-f4f4-4baa-b89a-5a8ac043c3b5", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.228Z", "comment": "", "groups": ["5ff2a9b8-4925-4aa7-ac07-97924b991f6c", "36111baf-02bc-4773-862d-dbb980fffd2f", "0ab2208b-52d1-427c-85d4-c0157628cf93"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "aa0ed31c-305e-40ae-b56f-6ea2932b3278"]}}, {"model": "assets.asset", "pk": "320792c2-cc57-4275-8a74-013085961dad", "fields": {"ip": "91.91.91.91", "hostname": "paula72", "port": 22, "admin_user": "304e2935-3b3a-4d8c-923d-9e9acf23a2b9", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.294Z", "comment": "", "groups": ["0b24ebd3-eed4-425b-8733-c311a6644251", "f0e39049-8271-4c61-b10c-2e04c307388e", "870ad23f-7ca1-48ec-a018-05ef6e2c59b9"], "system_users": ["50ee8963-28f7-4c47-bc5c-fe68227080f4", "bc267310-74f0-45db-a768-75378ec766b0", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "325ea83e-679f-4dd7-870e-4d2f6f708f59", "fields": {"ip": "69.69.69.69", "hostname": "denise75", "port": 22, "admin_user": "304e2935-3b3a-4d8c-923d-9e9acf23a2b9", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.863Z", "comment": "", "groups": ["6889a99e-1beb-4f81-9691-0098d17175af", "0b24ebd3-eed4-425b-8733-c311a6644251", "d7c3a3b1-fb1f-4f12-a7fc-5760b64d0b26"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bc267310-74f0-45db-a768-75378ec766b0", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "3f0520ee-6434-44f9-a782-4b7273644df4", "fields": {"ip": "70.70.70.70", "hostname": "sarah70", "port": 22, "admin_user": "f1e2692a-f4f4-4baa-b89a-5a8ac043c3b5", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.883Z", "comment": "", "groups": ["9ba1afc2-1def-4d78-8d8b-8efd5b010baf", "00b9c0d5-306b-4dbb-91c7-85911c84ec98", "a06d4b13-90bf-47d1-9ce4-f76ef71cba74"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bb1c3cbc-530f-4702-8c8f-2761810510f0", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "4a1754c9-c651-4a75-bac4-7b7d2b559ce5", "fields": {"ip": "67.67.67.67", "hostname": "sarah88", "port": 22, "admin_user": "06be187a-5bbd-4320-ac75-7419baac871c", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.822Z", "comment": "", "groups": ["6f1c2b7d-7ef5-4857-ac14-05949a28310e", "6631ee82-647c-47f6-865f-e6782ee1d39c", "a1279ef3-4ead-484a-8cd3-eb099b5fd41f"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "4b436ac6-d4a7-4004-aa5b-d52596fc72f2", "fields": {"ip": "44.44.44.44", "hostname": "katherine90", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "13af0b18-b752-48fb-aff0-5d0ccdde9214", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.356Z", "comment": "", "groups": ["92c43bc9-9c09-43ad-a792-245f8d4d0dfb", "36111baf-02bc-4773-862d-dbb980fffd2f", "9f1d86b3-edaf-439f-b318-47f700a6bcbb"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bb1c3cbc-530f-4702-8c8f-2761810510f0"]}}, {"model": "assets.asset", "pk": "4c5d76ca-3ca9-4461-82ad-b6968b8ded6f", "fields": {"ip": "2.2.2.2", "hostname": "frances88", "port": 22, "admin_user": "bce3d322-c9e3-4550-9037-73dfb2afdb48", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.513Z", "comment": "", "groups": ["ed294c1e-87c7-4e08-96f3-21d76524dc15", "e6b96cae-ac85-4618-8a39-6094ecb6b332", "91df1b5e-7a1b-44a3-b882-59291d97d7b1"], "system_users": ["50ee8963-28f7-4c47-bc5c-fe68227080f4", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "4e2d412a-bd7c-4f67-9b7d-6bcccc8b22b5", "fields": {"ip": "57.57.57.57", "hostname": "kathy87", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.621Z", "comment": "", "groups": ["c7ba56f1-3e86-4f0d-a877-e366b2a762a0", "9d68027d-9146-40bc-bf26-864e3c873577", "5194b310-0fe5-45ee-9f18-b7e0b00c064a"], "system_users": ["a098e4b9-16ab-4b49-8318-5bc21b5a2e47", "aa0ed31c-305e-40ae-b56f-6ea2932b3278", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "54b5354c-b444-47fc-a726-bab0bd3c2412", "fields": {"ip": "63.63.63.63", "hostname": "margaret94", "port": 22, "admin_user": "f1e2692a-f4f4-4baa-b89a-5a8ac043c3b5", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.742Z", "comment": "", "groups": ["720bac71-3000-451f-88e0-4bac5a3ceaaa", "0ab2208b-52d1-427c-85d4-c0157628cf93", "b687e066-ca26-4cd7-a295-642aa80b551b"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bb1c3cbc-530f-4702-8c8f-2761810510f0", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "57ff0546-5356-4d69-af26-a9a3203e9b5f", "fields": {"ip": "3.3.3.3", "hostname": "teresa67", "port": 22, "admin_user": "c9110003-1706-47d7-add7-d0f5318958c2", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.534Z", "comment": "", "groups": ["a923e7a1-d31d-4da9-bb20-e454f0e7839b", "946181ef-00fa-491d-ad36-09e77c196ec7", "40302be4-05eb-4570-bf3c-181947051bbb"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "bc267310-74f0-45db-a768-75378ec766b0", "aa0ed31c-305e-40ae-b56f-6ea2932b3278"]}}, {"model": "assets.asset", "pk": "5b431f4b-5af6-421a-b528-ed3ea9d5f5c5", "fields": {"ip": "75.75.75.75", "hostname": "maria71", "port": 22, "admin_user": "304e2935-3b3a-4d8c-923d-9e9acf23a2b9", "idc": "13af0b18-b752-48fb-aff0-5d0ccdde9214", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.985Z", "comment": "", "groups": ["9f1d86b3-edaf-439f-b318-47f700a6bcbb", "aff7c878-739f-4648-baa1-298ffdb09f7f", "40302be4-05eb-4570-bf3c-181947051bbb"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "50ee8963-28f7-4c47-bc5c-fe68227080f4", "bc267310-74f0-45db-a768-75378ec766b0"]}}, {"model": "assets.asset", "pk": "5bfd1afb-c366-401e-a433-a26f4342e76e", "fields": {"ip": "78.78.78.78", "hostname": "angela75", "port": 22, "admin_user": "c9110003-1706-47d7-add7-d0f5318958c2", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.046Z", "comment": "", "groups": ["4e6a08d0-bf9b-4c63-a1bb-456776fcf50b", "aff7c878-739f-4648-baa1-298ffdb09f7f", "877352ba-df98-41e1-a22b-e8ff1011c687"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47", "aa0ed31c-305e-40ae-b56f-6ea2932b3278"]}}, {"model": "assets.asset", "pk": "5c10e8ff-6c30-466b-957e-16006de7cfa0", "fields": {"ip": "15.15.15.15", "hostname": "melissa75", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.774Z", "comment": "", "groups": ["63b2e794-db5d-4e76-8358-b698f5c5973c", "6d482f09-d26a-4055-bc00-1bc22a96da0f", "12657ac9-b021-487f-94a7-1b03e169703f"], "system_users": ["50ee8963-28f7-4c47-bc5c-fe68227080f4", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47", "aa0ed31c-305e-40ae-b56f-6ea2932b3278"]}}, {"model": "assets.asset", "pk": "5db14e49-1296-468b-b830-116880e85bff", "fields": {"ip": "25.25.25.25", "hostname": "donna88", "port": 22, "admin_user": "06be187a-5bbd-4320-ac75-7419baac871c", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.974Z", "comment": "", "groups": ["b6322918-5965-41dc-ba85-398505020213", "2b622945-ee9b-490b-906c-349c69127b1f", "c5ffc9fa-b3e8-47e2-ab5d-0bf3abef9349"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "bc267310-74f0-45db-a768-75378ec766b0", "aa0ed31c-305e-40ae-b56f-6ea2932b3278"]}}, {"model": "assets.asset", "pk": "65e4593b-a027-4a37-9766-fcd8ff154c6f", "fields": {"ip": "49.49.49.49", "hostname": "judith79", "port": 22, "admin_user": "c9110003-1706-47d7-add7-d0f5318958c2", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.457Z", "comment": "", "groups": ["54a81cae-c97a-456d-aff3-bb69b7cbd30b", "ce342ff2-8a15-4a4b-a875-ae26100e9cd6", "00e3af44-7ee9-4f1c-9e2e-a9465ae36184"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bc267310-74f0-45db-a768-75378ec766b0"]}}, {"model": "assets.asset", "pk": "695fbaa2-7712-44d8-80f6-6ceadb3c8c86", "fields": {"ip": "9.9.9.9", "hostname": "diana79", "port": 22, "admin_user": "52024b00-a9a3-47fb-b905-ae6de200edc3", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.653Z", "comment": "", "groups": ["4e6a08d0-bf9b-4c63-a1bb-456776fcf50b", "40936ad8-91cf-488e-94bd-7428f9c7ca46", "ac7798f1-81cd-4999-b33a-e5b483312d45"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "4bcb47f5-e664-4c31-a041-f8433afaa2ea", "50ee8963-28f7-4c47-bc5c-fe68227080f4"]}}, {"model": "assets.asset", "pk": "74885fcd-6634-48b9-9a1b-ca06d5238a1a", "fields": {"ip": "36.36.36.36", "hostname": "bonnie80", "port": 22, "admin_user": "06be187a-5bbd-4320-ac75-7419baac871c", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.195Z", "comment": "", "groups": ["a65c8a87-c47c-4ad1-86cd-55b39c9e1c8c", "2b622945-ee9b-490b-906c-349c69127b1f", "439aba56-ee32-48bc-9a0a-2d4e213c1b2c"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "50ee8963-28f7-4c47-bc5c-fe68227080f4", "bc267310-74f0-45db-a768-75378ec766b0"]}}, {"model": "assets.asset", "pk": "756e7646-c6b1-4c3e-ace8-0520d5a4ff14", "fields": {"ip": "71.71.71.71", "hostname": "carol78", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.903Z", "comment": "", "groups": ["4504a4b1-3d31-425b-a10f-291d570d78f7", "7e52f6fb-8d57-4cde-b050-acdccccec7ee", "ac7798f1-81cd-4999-b33a-e5b483312d45"], "system_users": ["a098e4b9-16ab-4b49-8318-5bc21b5a2e47", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "75a3c957-e7da-4416-a3d0-cdebb398bbfb", "fields": {"ip": "32.32.32.32", "hostname": "sandra78", "port": 22, "admin_user": "c9110003-1706-47d7-add7-d0f5318958c2", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.115Z", "comment": "", "groups": ["41cd7504-af4d-4f37-8642-3babd2d0ee55", "cf491fc8-4837-412a-9d94-6787e699465e", "2fbd03e2-c2db-4be5-af5d-495696be1217"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bc267310-74f0-45db-a768-75378ec766b0", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "75bb6475-f7e0-4811-a585-98aff669aadf", "fields": {"ip": "35.35.35.35", "hostname": "brenda89", "port": 22, "admin_user": "bce3d322-c9e3-4550-9037-73dfb2afdb48", "idc": "13af0b18-b752-48fb-aff0-5d0ccdde9214", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.175Z", "comment": "", "groups": ["41cd7504-af4d-4f37-8642-3babd2d0ee55", "d7c3a3b1-fb1f-4f12-a7fc-5760b64d0b26", "91df1b5e-7a1b-44a3-b882-59291d97d7b1"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "bb1c3cbc-530f-4702-8c8f-2761810510f0", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "76bfb4b2-c4d3-4271-8086-83495bba053e", "fields": {"ip": "11.11.11.11", "hostname": "louise75", "port": 22, "admin_user": "304e2935-3b3a-4d8c-923d-9e9acf23a2b9", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.692Z", "comment": "", "groups": ["f758dc94-b979-4edf-9afc-f9171f9d2d6a", "d9af6c91-de14-469b-be51-80857d4f3205", "91df1b5e-7a1b-44a3-b882-59291d97d7b1"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "50ee8963-28f7-4c47-bc5c-fe68227080f4", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "77708c89-5300-48c3-95c4-6fde628317e2", "fields": {"ip": "39.39.39.39", "hostname": "mildred92", "port": 22, "admin_user": "718fa9b9-0613-44c3-8da8-93e1d380cf09", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.255Z", "comment": "", "groups": ["3b9acd00-4e27-45be-be06-8322b1bb5ddc", "37684a23-3468-4f6f-96a7-ee5de9ec10d6", "90988898-42d3-4c75-b049-129f95c49609"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "bc267310-74f0-45db-a768-75378ec766b0", "aa0ed31c-305e-40ae-b56f-6ea2932b3278"]}}, {"model": "assets.asset", "pk": "7955f930-6af6-43fe-adbe-704e51173366", "fields": {"ip": "65.65.65.65", "hostname": "kelly73", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "13af0b18-b752-48fb-aff0-5d0ccdde9214", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.782Z", "comment": "", "groups": ["3b9acd00-4e27-45be-be06-8322b1bb5ddc", "6263b53e-ed9a-4ffc-9c17-9f5f1fd7050c", "9d68027d-9146-40bc-bf26-864e3c873577"], "system_users": ["7ccdce56-bab0-485c-8890-5e7bdf7e1d2f", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "79633d4e-d29a-4b43-9fc4-c9a4d57035f4", "fields": {"ip": "47.47.47.47", "hostname": "robin76", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.415Z", "comment": "", "groups": ["3b9acd00-4e27-45be-be06-8322b1bb5ddc", "7e52f6fb-8d57-4cde-b050-acdccccec7ee", "40302be4-05eb-4570-bf3c-181947051bbb"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "bc267310-74f0-45db-a768-75378ec766b0", "aa0ed31c-305e-40ae-b56f-6ea2932b3278"]}}, {"model": "assets.asset", "pk": "7c19dc93-9dd5-4614-8c8f-1cd73c8e2569", "fields": {"ip": "98.98.98.98", "hostname": "norma84", "port": 22, "admin_user": "bce3d322-c9e3-4550-9037-73dfb2afdb48", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.437Z", "comment": "", "groups": ["a4de7f28-33c9-4b3b-b2b0-33463585008d", "48988400-14f1-41b7-a73f-67d7f0802741", "d9af6c91-de14-469b-be51-80857d4f3205"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "bc267310-74f0-45db-a768-75378ec766b0", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "7e87b09a-1481-4950-a62a-c2a05fc58f47", "fields": {"ip": "7.7.7.7", "hostname": "rose76", "port": 22, "admin_user": "304e2935-3b3a-4d8c-923d-9e9acf23a2b9", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.613Z", "comment": "", "groups": ["86d794af-8953-47e6-a47a-f1889f639755", "b4de96d1-5873-4441-bb78-43fda9545def", "5570ee58-d20d-4259-9be2-4548fbe08f4f"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "4bcb47f5-e664-4c31-a041-f8433afaa2ea", "50ee8963-28f7-4c47-bc5c-fe68227080f4"]}}, {"model": "assets.asset", "pk": "801e1825-d1ee-4518-9540-c1b646434b4e", "fields": {"ip": "12.12.12.12", "hostname": "sharon86", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "13af0b18-b752-48fb-aff0-5d0ccdde9214", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.712Z", "comment": "", "groups": ["9d68027d-9146-40bc-bf26-864e3c873577", "5aa5e356-5208-4354-bdf6-f0fd6878c2ee", "f42e2f6b-73b5-4ea6-bf5f-698c99995a06"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "4bcb47f5-e664-4c31-a041-f8433afaa2ea", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "80f0ef65-b96f-47ab-9796-4f3f4ec4512e", "fields": {"ip": "86.86.86.86", "hostname": "irene83", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.208Z", "comment": "", "groups": ["0b24ebd3-eed4-425b-8733-c311a6644251", "36111baf-02bc-4773-862d-dbb980fffd2f", "40936ad8-91cf-488e-94bd-7428f9c7ca46"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "637d20bc-e2be-4261-8ab6-dd5a185dfad1", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "81db6503-aa27-4ff1-83ad-1861c8163b5e", "fields": {"ip": "37.37.37.37", "hostname": "phyllis80", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.216Z", "comment": "", "groups": ["36111baf-02bc-4773-862d-dbb980fffd2f", "1afa9a44-adf5-4bed-b2ba-99a68f6ccc3f", "2b622945-ee9b-490b-906c-349c69127b1f"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "50ee8963-28f7-4c47-bc5c-fe68227080f4", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "86e61fc2-bbca-4fb4-907d-a466057c9189", "fields": {"ip": "68.68.68.68", "hostname": "amy69", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.842Z", "comment": "", "groups": ["37684a23-3468-4f6f-96a7-ee5de9ec10d6", "92c43bc9-9c09-43ad-a792-245f8d4d0dfb", "00b9c0d5-306b-4dbb-91c7-85911c84ec98"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "86fbd084-0ec1-4058-9257-927b7f2a5cbf", "fields": {"ip": "27.27.27.27", "hostname": "lois66", "port": 22, "admin_user": "06be187a-5bbd-4320-ac75-7419baac871c", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.014Z", "comment": "", "groups": ["e4218bee-2df6-4b78-b20b-6730c83d0738", "0ab2208b-52d1-427c-85d4-c0157628cf93", "d7c3a3b1-fb1f-4f12-a7fc-5760b64d0b26"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "8ac8f6a6-7b80-49c1-a921-d7815d96e526", "fields": {"ip": "73.73.73.73", "hostname": "sandra73", "port": 22, "admin_user": "718fa9b9-0613-44c3-8da8-93e1d380cf09", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.943Z", "comment": "", "groups": ["0016fdbe-5e83-4205-990d-a00025d233ea", "9912a37b-c579-4556-aa91-1c24b31ca6c0", "c378b1e7-da29-41c7-ada8-8c7bde0fe21f"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "bb1c3cbc-530f-4702-8c8f-2761810510f0", "bc267310-74f0-45db-a768-75378ec766b0"]}}, {"model": "assets.asset", "pk": "8ba7b85e-294a-40ae-a72c-9a25f5895052", "fields": {"ip": "13.13.13.13", "hostname": "melissa70", "port": 22, "admin_user": "c9110003-1706-47d7-add7-d0f5318958c2", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.734Z", "comment": "", "groups": ["8be9b61a-b219-477a-9168-3747e3af2b0b", "4e6a08d0-bf9b-4c63-a1bb-456776fcf50b", "a06d4b13-90bf-47d1-9ce4-f76ef71cba74"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "637d20bc-e2be-4261-8ab6-dd5a185dfad1", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "8bd53b56-a8f1-42c0-932b-f045870e3e1b", "fields": {"ip": "40.40.40.40", "hostname": "beverly69", "port": 22, "admin_user": "52024b00-a9a3-47fb-b905-ae6de200edc3", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.275Z", "comment": "", "groups": ["f226a229-bfe7-4769-869f-24873eb20336", "7a9afc90-58e3-4a1a-a6a4-2653b456580b", "b6322918-5965-41dc-ba85-398505020213"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "637d20bc-e2be-4261-8ab6-dd5a185dfad1", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "8f89444b-9cd7-4ac5-a04f-f807e75136fb", "fields": {"ip": "54.54.54.54", "hostname": "helen76", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.559Z", "comment": "", "groups": ["54a81cae-c97a-456d-aff3-bb69b7cbd30b", "37684a23-3468-4f6f-96a7-ee5de9ec10d6", "1afa9a44-adf5-4bed-b2ba-99a68f6ccc3f"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bb1c3cbc-530f-4702-8c8f-2761810510f0", "50ee8963-28f7-4c47-bc5c-fe68227080f4"]}}, {"model": "assets.asset", "pk": "91fec8c9-a04a-4b3b-bf5a-df080404800e", "fields": {"ip": "18.18.18.18", "hostname": "jacqueline78", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.833Z", "comment": "", "groups": ["ed294c1e-87c7-4e08-96f3-21d76524dc15", "b6322918-5965-41dc-ba85-398505020213", "f42e2f6b-73b5-4ea6-bf5f-698c99995a06"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "aa0ed31c-305e-40ae-b56f-6ea2932b3278", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "93db4bbf-5758-48fb-89f1-a801c8cbd895", "fields": {"ip": "8.8.8.8", "hostname": "melissa83", "port": 22, "admin_user": "52024b00-a9a3-47fb-b905-ae6de200edc3", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.633Z", "comment": "", "groups": ["ed294c1e-87c7-4e08-96f3-21d76524dc15", "12657ac9-b021-487f-94a7-1b03e169703f", "7708ce26-93a1-4473-bb94-ffaecddd278e"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "637d20bc-e2be-4261-8ab6-dd5a185dfad1", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "9bd0b64b-72af-45c9-a61a-5f7365dae4b8", "fields": {"ip": "79.79.79.79", "hostname": "linda80", "port": 22, "admin_user": "c9110003-1706-47d7-add7-d0f5318958c2", "idc": "13af0b18-b752-48fb-aff0-5d0ccdde9214", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.066Z", "comment": "", "groups": ["5aa5e356-5208-4354-bdf6-f0fd6878c2ee", "597502d4-24f4-4ce9-8ed9-4300dad35c8e", "8ee060e1-2560-4c46-aa4b-63e8ffa8bf60"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "637d20bc-e2be-4261-8ab6-dd5a185dfad1", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "9c5f2fea-6647-45f6-8a12-6fec62706bea", "fields": {"ip": "94.94.94.94", "hostname": "janet70", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.354Z", "comment": "", "groups": ["4c020417-6275-4c6f-9f68-b3a2744b205f", "0a8d7a82-b559-43c3-a033-ed429d9fdc0f", "a1279ef3-4ead-484a-8cd3-eb099b5fd41f"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "bb1c3cbc-530f-4702-8c8f-2761810510f0", "bc267310-74f0-45db-a768-75378ec766b0"]}}, {"model": "assets.asset", "pk": "9dff0571-f386-47d0-8f6a-232dde7b5f5f", "fields": {"ip": "92.92.92.92", "hostname": "paula86", "port": 22, "admin_user": "1eb24903-c143-4852-8dce-22f42c1cc941", "idc": "13af0b18-b752-48fb-aff0-5d0ccdde9214", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.314Z", "comment": "", "groups": ["3b9acd00-4e27-45be-be06-8322b1bb5ddc", "8be9b61a-b219-477a-9168-3747e3af2b0b", "40302be4-05eb-4570-bf3c-181947051bbb"], "system_users": ["50ee8963-28f7-4c47-bc5c-fe68227080f4", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "9ff6796b-93a3-443f-aecc-c5227e783981", "fields": {"ip": "6.6.6.6", "hostname": "laura93", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.594Z", "comment": "", "groups": ["37684a23-3468-4f6f-96a7-ee5de9ec10d6", "ed294c1e-87c7-4e08-96f3-21d76524dc15", "097cc32e-24b7-4d61-8f6a-f29cef699224"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bc267310-74f0-45db-a768-75378ec766b0", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "a43498c3-5ac5-45e9-8b9a-a8ff765217c1", "fields": {"ip": "51.51.51.51", "hostname": "deborah68", "port": 22, "admin_user": "c9110003-1706-47d7-add7-d0f5318958c2", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.497Z", "comment": "", "groups": ["4c020417-6275-4c6f-9f68-b3a2744b205f", "367af5f2-a2da-4ec1-8ae2-e846c1d6781d", "dcd9db0a-e9b5-4b0e-a7bc-235aeb0e3a59"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "637d20bc-e2be-4261-8ab6-dd5a185dfad1", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "a60f7622-653a-418c-9e45-fe696ab0862f", "fields": {"ip": "97.97.97.97", "hostname": "judith66", "port": 22, "admin_user": "c9110003-1706-47d7-add7-d0f5318958c2", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.416Z", "comment": "", "groups": ["9d68027d-9146-40bc-bf26-864e3c873577", "37684a23-3468-4f6f-96a7-ee5de9ec10d6", "a06d4b13-90bf-47d1-9ce4-f76ef71cba74"], "system_users": ["bc267310-74f0-45db-a768-75378ec766b0", "aa0ed31c-305e-40ae-b56f-6ea2932b3278", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "a96c4dc3-a226-495f-bddd-51fea6a53c78", "fields": {"ip": "95.95.95.95", "hostname": "julia83", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.376Z", "comment": "", "groups": ["4e6a08d0-bf9b-4c63-a1bb-456776fcf50b", "7e52f6fb-8d57-4cde-b050-acdccccec7ee", "e668ba32-e695-48bb-a4f8-36e24d0e43a5"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "50ee8963-28f7-4c47-bc5c-fe68227080f4", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "aab77a0e-2048-456e-811e-d19def07b018", "fields": {"ip": "85.85.85.85", "hostname": "norma78", "port": 22, "admin_user": "06be187a-5bbd-4320-ac75-7419baac871c", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.188Z", "comment": "", "groups": ["6263b53e-ed9a-4ffc-9c17-9f5f1fd7050c", "2583da78-f93a-47a0-a090-78c5c1af4f78", "5ff2a9b8-4925-4aa7-ac07-97924b991f6c"], "system_users": ["50ee8963-28f7-4c47-bc5c-fe68227080f4", "bc267310-74f0-45db-a768-75378ec766b0", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "ae422562-332a-4e41-a5c6-b2e9c010ec66", "fields": {"ip": "34.34.34.34", "hostname": "elizabeth66", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.156Z", "comment": "", "groups": ["703f27db-d63f-446c-b264-2541490c5d44", "7e52f6fb-8d57-4cde-b050-acdccccec7ee", "e20aca85-bf0e-4751-81f8-3bc5ab8ec481"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "4bcb47f5-e664-4c31-a041-f8433afaa2ea", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "afab0842-1d73-4ec3-92e4-c29552b6bde1", "fields": {"ip": "59.59.59.59", "hostname": "melissa89", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.662Z", "comment": "", "groups": ["1bade3bf-bd1b-4a20-8c6c-92d38273ed90", "f226a229-bfe7-4769-869f-24873eb20336", "b4de96d1-5873-4441-bb78-43fda9545def"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "b0d48841-df67-4d2d-80a0-0adb887f35a6", "fields": {"ip": "56.56.56.56", "hostname": "theresa75", "port": 22, "admin_user": "06be187a-5bbd-4320-ac75-7419baac871c", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.599Z", "comment": "", "groups": ["6d482f09-d26a-4055-bc00-1bc22a96da0f", "6889a99e-1beb-4f81-9691-0098d17175af", "53688a90-42f6-462e-a636-08b254fd6c80"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "bc267310-74f0-45db-a768-75378ec766b0", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "b90e5c83-a139-47bb-a9fd-c88075966665", "fields": {"ip": "48.48.48.48", "hostname": "rebecca79", "port": 22, "admin_user": "f1e2692a-f4f4-4baa-b89a-5a8ac043c3b5", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.435Z", "comment": "", "groups": ["6631ee82-647c-47f6-865f-e6782ee1d39c", "5ff2a9b8-4925-4aa7-ac07-97924b991f6c", "2fbd03e2-c2db-4be5-af5d-495696be1217"], "system_users": ["50ee8963-28f7-4c47-bc5c-fe68227080f4", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "c30991fe-c106-4ea5-b133-a2fe859de816", "fields": {"ip": "64.64.64.64", "hostname": "anne74", "port": 22, "admin_user": "718fa9b9-0613-44c3-8da8-93e1d380cf09", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.762Z", "comment": "", "groups": ["097cc32e-24b7-4d61-8f6a-f29cef699224", "98d04023-c0cd-48fe-83de-9563be3be195", "858afd68-f400-4a3a-a522-dd48a950edd5"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "50ee8963-28f7-4c47-bc5c-fe68227080f4", "aa0ed31c-305e-40ae-b56f-6ea2932b3278"]}}, {"model": "assets.asset", "pk": "c98f34de-cf15-4af0-ba00-a9bd466463a5", "fields": {"ip": "21.21.21.21", "hostname": "sharon84", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.893Z", "comment": "", "groups": ["6d482f09-d26a-4055-bc00-1bc22a96da0f", "9f9f9278-b580-40b2-87bd-0154e2d85249", "7969a211-d0a3-4ce3-99bb-9282b9c865a4"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "aa0ed31c-305e-40ae-b56f-6ea2932b3278", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "cab59740-ce5c-4f5d-964b-b86951e74e68", "fields": {"ip": "96.96.96.96", "hostname": "melissa92", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.396Z", "comment": "", "groups": ["9d68027d-9146-40bc-bf26-864e3c873577", "37684a23-3468-4f6f-96a7-ee5de9ec10d6", "2b622945-ee9b-490b-906c-349c69127b1f"], "system_users": ["bc267310-74f0-45db-a768-75378ec766b0", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "d03879df-8cda-4d0b-8e27-b121f02e669b", "fields": {"ip": "52.52.52.52", "hostname": "diane79", "port": 22, "admin_user": "718fa9b9-0613-44c3-8da8-93e1d380cf09", "idc": "13af0b18-b752-48fb-aff0-5d0ccdde9214", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.517Z", "comment": "", "groups": ["2583da78-f93a-47a0-a090-78c5c1af4f78", "f758dc94-b979-4edf-9afc-f9171f9d2d6a", "c5ffc9fa-b3e8-47e2-ab5d-0bf3abef9349"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "50ee8963-28f7-4c47-bc5c-fe68227080f4", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "d09e4034-3868-4e17-8931-df8b2400bb97", "fields": {"ip": "33.33.33.33", "hostname": "shirley76", "port": 22, "admin_user": "52024b00-a9a3-47fb-b905-ae6de200edc3", "idc": "13af0b18-b752-48fb-aff0-5d0ccdde9214", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.136Z", "comment": "", "groups": ["cf491fc8-4837-412a-9d94-6787e699465e", "c5ffc9fa-b3e8-47e2-ab5d-0bf3abef9349", "5194b310-0fe5-45ee-9f18-b7e0b00c064a"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "bc267310-74f0-45db-a768-75378ec766b0", "aa0ed31c-305e-40ae-b56f-6ea2932b3278"]}}, {"model": "assets.asset", "pk": "d0ac71e3-5722-42dc-92ed-35d586cb53c0", "fields": {"ip": "66.66.66.66", "hostname": "christina83", "port": 22, "admin_user": "1eb24903-c143-4852-8dce-22f42c1cc941", "idc": "13af0b18-b752-48fb-aff0-5d0ccdde9214", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.802Z", "comment": "", "groups": ["2583da78-f93a-47a0-a090-78c5c1af4f78", "cf491fc8-4837-412a-9d94-6787e699465e", "53688a90-42f6-462e-a636-08b254fd6c80"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "637d20bc-e2be-4261-8ab6-dd5a185dfad1"]}}, {"model": "assets.asset", "pk": "d4104bf2-c4f3-4706-bbbc-77c1e846dbdb", "fields": {"ip": "10.10.10.10", "hostname": "jennifer88", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.673Z", "comment": "", "groups": ["48988400-14f1-41b7-a73f-67d7f0802741", "00b9c0d5-306b-4dbb-91c7-85911c84ec98", "86d794af-8953-47e6-a47a-f1889f639755"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "50ee8963-28f7-4c47-bc5c-fe68227080f4", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "d7176d66-0c3b-42f4-9158-ef9d39788bc1", "fields": {"ip": "93.93.93.93", "hostname": "diana71", "port": 22, "admin_user": "52024b00-a9a3-47fb-b905-ae6de200edc3", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.334Z", "comment": "", "groups": ["0016fdbe-5e83-4205-990d-a00025d233ea", "4c020417-6275-4c6f-9f68-b3a2744b205f", "f42e2f6b-73b5-4ea6-bf5f-698c99995a06"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "50ee8963-28f7-4c47-bc5c-fe68227080f4", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "da1718e9-07b5-4c53-9e3d-a911beb2c61d", "fields": {"ip": "31.31.31.31", "hostname": "anna92", "port": 22, "admin_user": "f1e2692a-f4f4-4baa-b89a-5a8ac043c3b5", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.094Z", "comment": "", "groups": ["e4218bee-2df6-4b78-b20b-6730c83d0738", "e668ba32-e695-48bb-a4f8-36e24d0e43a5", "5570ee58-d20d-4259-9be2-4548fbe08f4f"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "637d20bc-e2be-4261-8ab6-dd5a185dfad1", "bb1c3cbc-530f-4702-8c8f-2761810510f0"]}}, {"model": "assets.asset", "pk": "db340dac-47df-4573-b38e-d373828a13ec", "fields": {"ip": "81.81.81.81", "hostname": "lois77", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.106Z", "comment": "", "groups": ["6f1c2b7d-7ef5-4857-ac14-05949a28310e", "b6322918-5965-41dc-ba85-398505020213", "40302be4-05eb-4570-bf3c-181947051bbb"], "system_users": ["50ee8963-28f7-4c47-bc5c-fe68227080f4", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "e3f1b4b2-d657-4e11-ad23-9df3c91151d6", "fields": {"ip": "24.24.24.24", "hostname": "karen72", "port": 22, "admin_user": "53963eb1-dac1-4540-a029-e1f095fded8b", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.953Z", "comment": "", "groups": ["3b9acd00-4e27-45be-be06-8322b1bb5ddc", "3cb5917f-97b2-421f-a738-8491f2a09876", "9f1d86b3-edaf-439f-b318-47f700a6bcbb"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "50ee8963-28f7-4c47-bc5c-fe68227080f4"]}}, {"model": "assets.asset", "pk": "e584942e-ab45-4334-8cf5-4ae7011c4d01", "fields": {"ip": "43.43.43.43", "hostname": "kathy81", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.336Z", "comment": "", "groups": ["9f9f9278-b580-40b2-87bd-0154e2d85249", "9f1d86b3-edaf-439f-b318-47f700a6bcbb", "e668ba32-e695-48bb-a4f8-36e24d0e43a5"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "50ee8963-28f7-4c47-bc5c-fe68227080f4"]}}, {"model": "assets.asset", "pk": "e6ab193b-aa11-4c5d-990a-b422f49aa40e", "fields": {"ip": "84.84.84.84", "hostname": "beverly93", "port": 22, "admin_user": "06be187a-5bbd-4320-ac75-7419baac871c", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.168Z", "comment": "", "groups": ["f758dc94-b979-4edf-9afc-f9171f9d2d6a", "1bade3bf-bd1b-4a20-8c6c-92d38273ed90", "e668ba32-e695-48bb-a4f8-36e24d0e43a5"], "system_users": ["bb1c3cbc-530f-4702-8c8f-2761810510f0", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "e719015e-439e-42a4-9bb6-488a56a80acd", "fields": {"ip": "53.53.53.53", "hostname": "julie78", "port": 22, "admin_user": "06be187a-5bbd-4320-ac75-7419baac871c", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.539Z", "comment": "", "groups": ["ad6b2f25-8dd9-46b6-858b-24d7620ff308", "36111baf-02bc-4773-862d-dbb980fffd2f", "439aba56-ee32-48bc-9a0a-2d4e213c1b2c"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "e8328128-83c7-4110-aba2-afdd2fd5625f", "fields": {"ip": "74.74.74.74", "hostname": "melissa69", "port": 22, "admin_user": "304e2935-3b3a-4d8c-923d-9e9acf23a2b9", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.965Z", "comment": "", "groups": ["5ff2a9b8-4925-4aa7-ac07-97924b991f6c", "8be9b61a-b219-477a-9168-3747e3af2b0b", "62dd71f6-08a7-4d46-b7c3-b051360c3c24"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bb1c3cbc-530f-4702-8c8f-2761810510f0", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "ec35ad77-20bf-4dd3-9303-6b098db39c05", "fields": {"ip": "90.90.90.90", "hostname": "norma64", "port": 22, "admin_user": "f1e2692a-f4f4-4baa-b89a-5a8ac043c3b5", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.272Z", "comment": "", "groups": ["0016fdbe-5e83-4205-990d-a00025d233ea", "0014d84f-3df9-4f46-8be4-74b1eecf18c1", "9def420e-08c4-40f8-b98e-3d7ec588c9fb"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "4bcb47f5-e664-4c31-a041-f8433afaa2ea", "aa0ed31c-305e-40ae-b56f-6ea2932b3278"]}}, {"model": "assets.asset", "pk": "ee9deeb6-0986-4802-a350-fa8225d6dea8", "fields": {"ip": "1.1.1.1", "hostname": "bonnie87", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "a157c2af-385b-49a1-92ab-8094a8d4538c", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.493Z", "comment": "", "groups": ["6889a99e-1beb-4f81-9691-0098d17175af", "6631ee82-647c-47f6-865f-e6782ee1d39c", "ddc3159e-81f2-4287-bd39-390d93d9d1df"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "4bcb47f5-e664-4c31-a041-f8433afaa2ea", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "f010d056-439d-4ce4-a385-33b77e8b3bd1", "fields": {"ip": "99.99.99.99", "hostname": "martha75", "port": 22, "admin_user": "718fa9b9-0613-44c3-8da8-93e1d380cf09", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:25.457Z", "comment": "", "groups": ["2583da78-f93a-47a0-a090-78c5c1af4f78", "a65c8a87-c47c-4ad1-86cd-55b39c9e1c8c", "7708ce26-93a1-4473-bb94-ffaecddd278e"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "bb1c3cbc-530f-4702-8c8f-2761810510f0", "bc267310-74f0-45db-a768-75378ec766b0"]}}, {"model": "assets.asset", "pk": "f7145e6d-dd6a-4d37-9cbf-8e3db3bba421", "fields": {"ip": "42.42.42.42", "hostname": "frances81", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.316Z", "comment": "", "groups": ["0014d84f-3df9-4f46-8be4-74b1eecf18c1", "00e3af44-7ee9-4f1c-9e2e-a9465ae36184", "858afd68-f400-4a3a-a522-dd48a950edd5"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "bb1c3cbc-530f-4702-8c8f-2761810510f0", "a098e4b9-16ab-4b49-8318-5bc21b5a2e47"]}}, {"model": "assets.asset", "pk": "f8bc347b-e846-423e-b804-40d1f210ea71", "fields": {"ip": "19.19.19.19", "hostname": "deborah67", "port": 22, "admin_user": "f1e2692a-f4f4-4baa-b89a-5a8ac043c3b5", "idc": "409623d2-64d9-4e7f-aab2-10049f44fc5e", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.853Z", "comment": "", "groups": ["0b24ebd3-eed4-425b-8733-c311a6644251", "ddc3159e-81f2-4287-bd39-390d93d9d1df", "b6322918-5965-41dc-ba85-398505020213"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "4bcb47f5-e664-4c31-a041-f8433afaa2ea", "661726d4-77a2-46a4-8ad3-d42c0c08230b"]}}, {"model": "assets.asset", "pk": "f93b8a22-efc8-4e98-a43e-68d538310e16", "fields": {"ip": "55.55.55.55", "hostname": "cheryl93", "port": 22, "admin_user": "75443846-7bb3-4514-9c1e-0e30633cab56", "idc": "937922e3-e2b7-42aa-b460-6b276901f53a", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:24.580Z", "comment": "", "groups": ["9ba1afc2-1def-4d78-8d8b-8efd5b010baf", "00b9c0d5-306b-4dbb-91c7-85911c84ec98", "5aa5e356-5208-4354-bdf6-f0fd6878c2ee"], "system_users": ["637d20bc-e2be-4261-8ab6-dd5a185dfad1", "bc267310-74f0-45db-a768-75378ec766b0", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "fa5b2fc7-84a6-49b3-a367-3f3990c57889", "fields": {"ip": "5.5.5.5", "hostname": "phyllis89", "port": 22, "admin_user": "bce3d322-c9e3-4550-9037-73dfb2afdb48", "idc": "84fe4835-7a50-4798-86b0-d0921b30aa87", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.574Z", "comment": "", "groups": ["2583da78-f93a-47a0-a090-78c5c1af4f78", "1afa9a44-adf5-4bed-b2ba-99a68f6ccc3f", "2fbd03e2-c2db-4be5-af5d-495696be1217"], "system_users": ["4bcb47f5-e664-4c31-a041-f8433afaa2ea", "bb1c3cbc-530f-4702-8c8f-2761810510f0", "7ccdce56-bab0-485c-8890-5e7bdf7e1d2f"]}}, {"model": "assets.asset", "pk": "fb6e183a-ee65-4c05-b989-9744db9cc577", "fields": {"ip": "22.22.22.22", "hostname": "elizabeth88", "port": 22, "admin_user": "304e2935-3b3a-4d8c-923d-9e9acf23a2b9", "idc": "ce4205dc-2016-460d-86a2-9054e4268447", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-11-23T04:02:23.913Z", "comment": "", "groups": ["0a8d7a82-b559-43c3-a033-ed429d9fdc0f", "2fbd03e2-c2db-4be5-af5d-495696be1217", "870ad23f-7ca1-48ec-a018-05ef6e2c59b9"], "system_users": ["9bb30927-480c-4da3-8fe3-a480c4db0fd3", "637d20bc-e2be-4261-8ab6-dd5a185dfad1", "bc267310-74f0-45db-a768-75378ec766b0"]}}, {"model": "users.user", "pk": "05ff2d8a-330d-44dd-9335-d3e96d693ae0", "fields": {"password": "pbkdf2_sha256$36000$0SDp6njmgbJu$ylCbcpdLDlS9FKNGVMjgQtHFCZWpOK5Y47BoHsrw1xc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.728Z", "username": "diana74", "name": "Phyllis Jackson", "email": "kimberly@jumpxs.mil", "role": "Admin", "avatar": "", "wechat": "barbara77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec dapibus.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.728Z", "created_by": "paula82", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "0cc4be95-8aea-4f73-bc32-7304ea43c6af", "fields": {"password": "pbkdf2_sha256$36000$qqil1wIR5ShR$s/ypvBFJDjyZPpB2kEfdRQNXXcY1sWDmBQsf1KI+Rxo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.822Z", "username": "margaret74", "name": "Ruby Kelly", "email": "donna@fivespan.name", "role": "Admin", "avatar": "", "wechat": "tammy87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean sit amet justo.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.822Z", "created_by": "ruby84", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "128942ca-c91c-4a16-a438-58e98aa7892c", "fields": {"password": "pbkdf2_sha256$36000$9PktiMTlLFKr$/saz2V8o3NLvM15c3BZToioJN2RaCcGxUEJxF4Sprn4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.721Z", "username": "jessica82", "name": "Cynthia Riley", "email": "annie@wikivu.edu", "role": "App", "avatar": "", "wechat": "jane69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.721Z", "created_by": "paula82", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "13714b15-cefe-4300-8a90-a3a61b429b8f", "fields": {"password": "pbkdf2_sha256$36000$x0siR968xtts$c3CPreV2BcTtcAZdLKh9aXHPP+YAFv9SMJr6uO7GRYs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:17.414Z", "username": "matthew85", "name": "Sandra Smith", "email": "cynthia@blogspan.org", "role": "App", "avatar": "", "wechat": "christina89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.", "is_first_login": false, "date_expired": "2087-11-06T04:02:17.414Z", "created_by": "admin", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "1a0eaadf-082e-4da3-960b-7820ae272775", "fields": {"password": "pbkdf2_sha256$36000$TbBDGsjcJxoS$cQ/BsqalFRayjQnVZSpYxmSlSm+1E3MPkTSsxd14vyM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:22.258Z", "username": "theresa89", "name": "Janet Pierce", "email": "virginia@bluejam.com", "role": "Admin", "avatar": "", "wechat": "stephanie75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi ut odio.", "is_first_login": false, "date_expired": "2087-11-06T04:02:22.258Z", "created_by": "matthew85", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "1a31640b-a11d-49b5-bf1f-6a43d072845e", "fields": {"password": "pbkdf2_sha256$36000$GgWo4kAkP7Iv$1tra+1Mjg8+imtioBA2PFF6gAq4QnqOYdGCkWhUSskU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.622Z", "username": "irene75", "name": "Cynthia Wright", "email": "kelly@flipstorm.info", "role": "User", "avatar": "", "wechat": "ruby66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Etiam vel augue.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.622Z", "created_by": "cheryl91", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "1f6f19de-0eb1-4e36-a573-f4c7d6513194", "fields": {"password": "pbkdf2_sha256$36000$82BX7tQ15iQm$lLkrybbUI5MaMf6yjf89MzZkaZAhdwlnOX6UaKEGJJ0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.577Z", "username": "betty87", "name": "Carolyn Owens", "email": "evelyn@snaptags.mil", "role": "App", "avatar": "", "wechat": "margaret89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse ornare consequat lectus.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.577Z", "created_by": "sharon90", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "21b6e768-c243-4f48-afa5-70e3fecb4077", "fields": {"password": "pbkdf2_sha256$36000$k5dmP9VpC4Q8$Gp7U69u90d6kOTfOpWCHWvBZJzZGrupYCvYm2U4WFKk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.572Z", "username": "elizabeth66", "name": "Doris Wilson", "email": "frances@reallinks.biz", "role": "App", "avatar": "", "wechat": "judith80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.572Z", "created_by": "maria81", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "22475dc8-8183-4e00-8fda-f263dad601e1", "fields": {"password": "pbkdf2_sha256$36000$Nb7f8jYifvEb$fGn7DBi1EqMZVRh2tyUaBbAv1DfyjgYwbwBXuLPNcHQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.318Z", "username": "anna66", "name": "Margaret Hughes", "email": "deborah@skinix.com", "role": "User", "avatar": "", "wechat": "ashley82", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.318Z", "created_by": "judy92", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "23c215b5-6996-4725-9aa0-831d45014f9e", "fields": {"password": "pbkdf2_sha256$36000$lSnw2ItSz6A8$YoP21/gue6KOGR3n5Rfy9ubnRPreRXOs389AzenaU9c=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:17.612Z", "username": "judy92", "name": "Dorothy Nelson", "email": "cheryl@linkbridge.name", "role": "User", "avatar": "", "wechat": "doris75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "is_first_login": false, "date_expired": "2087-11-06T04:02:17.612Z", "created_by": "maria81", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "26545fae-01a2-4f68-9a21-f1ec392aafb7", "fields": {"password": "pbkdf2_sha256$36000$GKoIixtdYsH4$oaSPZEWXvy8z9ioJGKd/rj1zpKcJ99HOkQwWd6BZa+s=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:17.662Z", "username": "debra67", "name": "Dorothy Grant", "email": "doris@demizz.mil", "role": "Admin", "avatar": "", "wechat": "evelyn73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam erat volutpat.", "is_first_login": false, "date_expired": "2087-11-06T04:02:17.662Z", "created_by": "janet92", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "27ec8c80-5137-4406-bbd4-463387b3a2c7", "fields": {"password": "pbkdf2_sha256$36000$HhxriOdy9Vy7$Z7EnpYXiaCiW2aqmcZi71jgfBBeOvxaN4zv1k7nnYSY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:22.096Z", "username": "denise79", "name": "Deborah Hudson", "email": "mildred@innoz.mil", "role": "App", "avatar": "", "wechat": "sharon76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur gravida nisi at nibh.", "is_first_login": false, "date_expired": "2087-11-06T04:02:22.096Z", "created_by": "sharon90", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "2bc7cff1-67f0-465e-8e08-c4b988b88672", "fields": {"password": "pbkdf2_sha256$36000$SRBRzjmyKI4Q$2BHupocilFnPlRhs/1Sr1FuTitMxOk983I3CpMC3jxk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.420Z", "username": "debra73", "name": "Nancy Clark", "email": "ruby@devcast.mil", "role": "App", "avatar": "", "wechat": "annie79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis consequat dui nec nisi volutpat eleifend.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.420Z", "created_by": "shirley64", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "334118b3-2111-4ddd-ad02-bbc92566876a", "fields": {"password": "pbkdf2_sha256$36000$JF2k8mCPjA82$IJ+KkE/pSw6rYC6GWtSfdcKwkt3DxOpIdwyw6a6ebwY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.509Z", "username": "jennifer74", "name": "Phyllis West", "email": "tammy@avaveo.mil", "role": "App", "avatar": "", "wechat": "judith71", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.510Z", "created_by": "doris89", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "3346cdf7-16a5-42e7-bc5f-a0f91944a52c", "fields": {"password": "pbkdf2_sha256$36000$9tmnvAZrWrK0$RmoulSRo2IeZMcvBImnYzswRcl7MsdOasVkH2+0vigQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.671Z", "username": "norma77", "name": "Julia Murray", "email": "janet@oba.edu", "role": "Admin", "avatar": "", "wechat": "paula82", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.671Z", "created_by": "anna66", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "3625f936-e570-4f5f-9a70-f16519817b40", "fields": {"password": "pbkdf2_sha256$36000$NAzl77XXdUa4$+pXzDYwxQ1XKB0yMdIfpiOgFuv/7P7h8ULoMIIXkc1o=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.133Z", "username": "elizabeth92", "name": "Kelly Fields", "email": "cheryl@rhybox.edu", "role": "App", "avatar": "", "wechat": "stephen78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.133Z", "created_by": "debra93", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "36c0c0f2-be4c-4447-978d-fa898ab730d9", "fields": {"password": "pbkdf2_sha256$36000$IU6vUnsKf3Ar$lAAWPJBwF9FcBqN+cCnaGKAYQeuXKslR0m2hsw7yPec=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.550Z", "username": "rachel89", "name": "Carol Hawkins", "email": "gloria@plambee.com", "role": "App", "avatar": "", "wechat": "phyllis79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Phasellus sit amet erat.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.550Z", "created_by": "marilyn75", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "36e6d43c-8e09-4374-9167-2ca49aa51fe8", "fields": {"password": "pbkdf2_sha256$36000$NDQXwQUXiUPH$qbGBEM+812BV8s7w3+inf4TU7xhIECgw91nGpt66AWo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.936Z", "username": "kathy72", "name": "Marie Henderson", "email": "jean@youspan.gov", "role": "Admin", "avatar": "", "wechat": "jacqueline87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse potenti.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.936Z", "created_by": "andrea76", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "38b8823b-57cf-407b-826b-7398e213eba7", "fields": {"password": "pbkdf2_sha256$36000$HxrY2oDQ9dPG$6RFxDavAZJVkk6RkH39D7OXnYv0puTayt8HlqrX4RLE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.872Z", "username": "karen82", "name": "Maria Woods", "email": "alice@fivechat.org", "role": "App", "avatar": "", "wechat": "jane77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.872Z", "created_by": "jessica82", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "3b55c481-af8e-43b0-a8cf-f8b67aa67a1a", "fields": {"password": "pbkdf2_sha256$36000$Jr3kkdhOpuRW$H7hGmYtscLbXnnfAkmxqSgQWismijMTy8jurbUuDKTw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:17.362Z", "username": "arthur78", "name": "Paula Day", "email": "janet@ainyx.gov", "role": "App", "avatar": "", "wechat": "mark72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean sit amet justo.", "is_first_login": false, "date_expired": "2087-11-06T04:02:17.362Z", "created_by": "admin", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "3b7b807c-2513-454d-980d-4e3fca87a9a0", "fields": {"password": "pbkdf2_sha256$36000$TdYkDIMPYk9Q$ncvi/fx1UB+0tPuHXtjFQyJR9yNYc/bLTPkSuIn7Kzg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:17.962Z", "username": "cheryl91", "name": "Sara Hamilton", "email": "angela@flipopia.net", "role": "Admin", "avatar": "", "wechat": "cynthia68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "is_first_login": false, "date_expired": "2087-11-06T04:02:17.962Z", "created_by": "margaret76", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "3bddadec-3a16-459c-bb12-e437ad07eced", "fields": {"password": "pbkdf2_sha256$36000$1zD7PYgWCpog$/a39khqCGcus3UD1cUvBvXlCHX4wpdRikPg5uVJn3JQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.023Z", "username": "ruby64", "name": "Anna Flores", "email": "kathleen@livez.name", "role": "App", "avatar": "", "wechat": "janet85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus tortor.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.023Z", "created_by": "paula82", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "3cb2f4b6-d14e-4994-89d4-cbaed5d518a3", "fields": {"password": "pbkdf2_sha256$36000$GPOQq23Hjft8$dN1SRxV9w3Etd//Zp55RCr5By/kNMYbMrv2zOCZhW50=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.927Z", "username": "marilyn75", "name": "Shirley Moore", "email": "mildred@feedbug.com", "role": "User", "avatar": "", "wechat": "andrea79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque viverra pede ac diam.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.927Z", "created_by": "beverly89", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "452a39ed-05b4-4b0e-b9d2-bf1265a34736", "fields": {"password": "pbkdf2_sha256$36000$cClUQFoTMzJP$2ss+x/E9T/Q4ZaMgiaA3DzE/A2COddasUKAMkyeQC/A=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.831Z", "username": "teresa91", "name": "Joyce Ellis", "email": "tina@skaboo.mil", "role": "User", "avatar": "", "wechat": "doris63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Praesent lectus.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.831Z", "created_by": "matthew85", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "47ae5f10-dfb6-403b-a45a-e3a1d88b9e9c", "fields": {"password": "pbkdf2_sha256$36000$T2JFRnc56tH3$i+4V5mFP1sEREpcZngxvCqj7miHuP8/O34np5H19nEA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.978Z", "username": "beverly77", "name": "Tammy Kelly", "email": "marie@avaveo.mil", "role": "User", "avatar": "", "wechat": "judith77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque viverra pede ac diam.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.978Z", "created_by": "alice67", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "494be004-cfe4-4f28-91d0-3e8b9269ad8a", "fields": {"password": "pbkdf2_sha256$36000$EFBu9UIQwZg2$yAS6RYomSESXPQMaycUuZyHyID47k0xxV17udSqMwV4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:22.366Z", "username": "elizabeth73", "name": "Lois Morales", "email": "laura@brightbean.edu", "role": "User", "avatar": "", "wechat": "kathryn72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer tincidunt ante vel ipsum.", "is_first_login": false, "date_expired": "2087-11-06T04:02:22.366Z", "created_by": "gloria89", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "495fb5c8-f197-4d19-bd56-c307e4f2f477", "fields": {"password": "pbkdf2_sha256$36000$I4X0QcTAMzPy$qQYM5oIuBC6Mu06l7cNp5cfgfIDdb2eiA9/bFikcy8s=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:22.312Z", "username": "annie77", "name": "Helen Rice", "email": "anna@zazio.net", "role": "Admin", "avatar": "", "wechat": "rachel86", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Ut at dolor quis odio consequat varius.", "is_first_login": false, "date_expired": "2087-11-06T04:02:22.312Z", "created_by": "helen71", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "49cae446-3424-4ba4-871d-327fe3aece80", "fields": {"password": "pbkdf2_sha256$36000$j86jx3O9VKwH$FeqjUt92sRL+57U7F37cyqzr2b4x+xXwXpA3TmRQnMY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.134Z", "username": "wanda85", "name": "Alice Murray", "email": "anna@agimba.net", "role": "User", "avatar": "", "wechat": "catherine80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed vel enim sit amet nunc viverra dapibus.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.134Z", "created_by": "mary87", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "50402c4b-ad4e-49ac-9e2a-c27201bed184", "fields": {"password": "pbkdf2_sha256$36000$nruswiollY3L$RF3jMb9BciMWR6ctju38JaSN7E++N2WIwSsupNVsHJo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.973Z", "username": "alice82", "name": "Lori Hayes", "email": "tammy@viva.name", "role": "App", "avatar": "", "wechat": "amanda87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Praesent blandit.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.973Z", "created_by": "shirley64", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "55e7fc17-d379-4130-b4ca-f3903a3a7476", "fields": {"password": "pbkdf2_sha256$36000$vD165LYWFytp$bzGzgk9wMGa4fNHKqrEM3KLPgCR/THQPhVcn/EQMkhY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.447Z", "username": "donna76", "name": "Rebecca Simmons", "email": "jane@kwimbee.com", "role": "Admin", "avatar": "", "wechat": "nicole84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis bibendum.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.447Z", "created_by": "margaret76", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "5a8fb036-6e4c-4dc5-884c-0331aa8217aa", "fields": {"password": "pbkdf2_sha256$36000$t7LEUsp6G5rC$pXyH0dLVgaaW/z49xhUdDZcjvI/jtpTzPvj/b21UVoA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:22.419Z", "username": "ann93", "name": "Anna Lynch", "email": "patricia@voonder.info", "role": "User", "avatar": "", "wechat": "elizabeth64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec ut mauris eget massa tempor convallis.", "is_first_login": false, "date_expired": "2087-11-06T04:02:22.419Z", "created_by": "elizabeth66", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "5c6d1e21-2e10-4c2d-9315-2c5df64171db", "fields": {"password": "pbkdf2_sha256$36000$1MRKK0Ji2eZk$QvEOstU9IptZoi1TLHjwsOjPBwutgKRG/q2Ghh4bv8w=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.990Z", "username": "shirley66", "name": "Judith Clark", "email": "jennifer@innojam.edu", "role": "App", "avatar": "", "wechat": "kathryn63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Ut at dolor quis odio consequat varius.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.990Z", "created_by": "diana74", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "5e8261d2-cedc-4eda-bb01-2a876d40ec26", "fields": {"password": "pbkdf2_sha256$36000$TENs7xuwGnLb$4fJpm92gYbMbMwFcIsMnxDIT80+eDDBNao0S5P2KBM8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.239Z", "username": "betty76", "name": "Rebecca Fowler", "email": "laura@brightdog.org", "role": "User", "avatar": "", "wechat": "jean69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In congue.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.240Z", "created_by": "christina63", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "5ffcb549-7796-4c6e-ac81-c8dbc368e4cf", "fields": {"password": "pbkdf2_sha256$36000$iT34iNeQ6Pbd$EG0MzZQCSkU6Uo5g4t8UYcKK8zcOfBpybboI3SOcU4M=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.760Z", "username": "diane92", "name": "Irene Rivera", "email": "alice@tavu.edu", "role": "App", "avatar": "", "wechat": "cheryl87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.760Z", "created_by": "debra73", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "629b1c84-c96d-481b-a0bf-8739f63623c1", "fields": {"password": "pbkdf2_sha256$36000$jlUyMdg4snws$HgjoTEm0Z8x+E8v42nVQJ38yMi7BsaEJEqk91ub8czc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:22.150Z", "username": "martha65", "name": "Beverly Alexander", "email": "amy@voonyx.biz", "role": "App", "avatar": "", "wechat": "sharon73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer tincidunt ante vel ipsum.", "is_first_login": false, "date_expired": "2087-11-06T04:02:22.150Z", "created_by": "joan76", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "6498831c-46cf-4801-bb19-1e8d2dc828f6", "fields": {"password": "pbkdf2_sha256$36000$GKm1HC9HlvYP$k0wT9VKZzDoMa0FmA6zhog+xw2Z/5Wt+YditqTnArHY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.187Z", "username": "kelly78", "name": "Sarah Morgan", "email": "kathleen@roombo.gov", "role": "Admin", "avatar": "", "wechat": "wanda78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In est risus, auctor sed, tristique in, tempus sit amet, sem.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.187Z", "created_by": "beverly77", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "6a283a3d-a1e1-4406-b772-c55c51e1851c", "fields": {"password": "pbkdf2_sha256$36000$CVXVSn9spZuM$mQ4IcsaMpT+TWUgo58l8OQFUAGU3ppBgCezE5pVk67I=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.771Z", "username": "anne66", "name": "Marie Arnold", "email": "frances@yotz.biz", "role": "App", "avatar": "", "wechat": "elizabeth76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.771Z", "created_by": "kathryn64", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "6caeec3a-c74a-462b-a33b-096d60028d06", "fields": {"password": "pbkdf2_sha256$36000$p7RzJba7k8Rp$tcuwmCCSWRQ5G51I8NUajLv/pEy8KMgOp8LnYLSJ4Cg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.239Z", "username": "sharon85", "name": "Janet Cole", "email": "christina@flipopia.info", "role": "App", "avatar": "", "wechat": "katherine63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam dui.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.239Z", "created_by": "sharon90", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "6f0a8570-2b75-4514-aa4f-b0b7284ac512", "fields": {"password": "pbkdf2_sha256$36000$eZ3u0jfsyciZ$nlh9V+fF/ziUd2cB6cyzNubDh8kEDqg3AORdxWgcjCg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.831Z", "username": "rebecca87", "name": "Debra Montgomery", "email": "heather@zoonoodle.biz", "role": "App", "avatar": "", "wechat": "kathryn91", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam tristique tortor eu pede.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.831Z", "created_by": "sharon85", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "6fa6b948-123a-4006-902a-898c50c9d4a3", "fields": {"password": "pbkdf2_sha256$36000$ueLQlqqSln2H$8oW3RyiiawRgso0AflNZ03NNn/RF/S5pOutyjNIP/wc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.866Z", "username": "diane87", "name": "Christina Russell", "email": "marie@rhyloo.org", "role": "User", "avatar": "", "wechat": "sharon86", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.866Z", "created_by": "kathy66", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "70ea2b31-bcbd-4f1a-961a-c211118da5e1", "fields": {"password": "pbkdf2_sha256$36000$Aam6m14anlnq$9pgBAj0wK9VQzeoWNUb26xy0+oepzyNZZrXnngaHVww=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.347Z", "username": "sharon73", "name": "Lori Grant", "email": "teresa@eamia.org", "role": "Admin", "avatar": "", "wechat": "sandra67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi ut odio.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.347Z", "created_by": "marilyn75", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "7285b505-5f00-4bce-abed-b011640ca39c", "fields": {"password": "pbkdf2_sha256$36000$8HbuMi9uCX0D$V4kYvISljltE8Ki/uB97IwKoAy0GESO28UAwHn91xKk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.290Z", "username": "christina63", "name": "Norma Allen", "email": "judy@ntag.mil", "role": "Admin", "avatar": "", "wechat": "ann75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean fermentum.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.290Z", "created_by": "ruby64", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "743d81a2-38a2-4b78-b494-b04234e76826", "fields": {"password": "pbkdf2_sha256$36000$Av97OfW9Qosu$x5fPznBtMB+qOrINmMQnz4si2R8HyYgeaLkgxkC5w2s=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.815Z", "username": "rebecca64", "name": "Helen Cook", "email": "sandra@realfire.name", "role": "App", "avatar": "", "wechat": "norma74", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam dui.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.815Z", "created_by": "martha85", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "74ff29b8-ab93-4741-96aa-6a7493096243", "fields": {"password": "pbkdf2_sha256$36000$9GpUbU2spZgm$c8YZcuzw11dZ+AY/yGL6/VPHzOfqB5dSJnlsF/jQA+Y=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.294Z", "username": "joan76", "name": "Jennifer Cook", "email": "jennifer@tanoodle.edu", "role": "User", "avatar": "", "wechat": "theresa84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.294Z", "created_by": "ruby84", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "7f6e7012-54a1-46de-9124-c6644afaa003", "fields": {"password": "pbkdf2_sha256$36000$TN9hM8PbEVxy$bPyCXE6tKBf5hhv0/27PMHecz3Nf3Z3M99xrdfvrkes=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:17.712Z", "username": "alice73", "name": "Marilyn Cox", "email": "donna@voomm.edu", "role": "App", "avatar": "", "wechat": "amanda94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "is_first_login": false, "date_expired": "2087-11-06T04:02:17.713Z", "created_by": "admin", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "83ecae08-e49b-45aa-b129-f8ad68a83c74", "fields": {"password": "pbkdf2_sha256$36000$XFiTvyEp9kgA$V0+aGfJpII5TQ8xVMKL6s1iuADE47fDmf88lfMGyjF0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.162Z", "username": "shirley64", "name": "Rachel Ferguson", "email": "virginia@skiptube.name", "role": "App", "avatar": "", "wechat": "elizabeth88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla facilisi.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.162Z", "created_by": "ashley72", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "8515947e-7919-4ef0-a366-8adbfe451db4", "fields": {"password": "pbkdf2_sha256$36000$XQ2DmTmP6svz$yWm+ZKAYGlqslrEQThZH3er8+VXGhH7VrsRb6qwPngQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.616Z", "username": "karen69", "name": "Teresa Ellis", "email": "ruth@topicblab.edu", "role": "User", "avatar": "", "wechat": "rose76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.616Z", "created_by": "jacqueline80", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "87c9e4c4-ff29-4338-96d3-dbb210b40b60", "fields": {"password": "pbkdf2_sha256$36000$ysTmAazHQWLG$TKQNltAz7xjKsBS4epuob8qeyATat1ohZ9/WLIDHlvM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.223Z", "username": "gloria94", "name": "Andrea Pierce", "email": "kathy@innotype.com", "role": "Admin", "avatar": "", "wechat": "cynthia81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec ut dolor.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.223Z", "created_by": "jessica82", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "89eaf89d-4a66-4756-80bb-324768a2710d", "fields": {"password": "pbkdf2_sha256$36000$kq0wgLod1Skz$6xF/1fW+DGPOfzY0dIo19ZpWgcHMCEX3gvYOBhUNDwM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.456Z", "username": "helen70", "name": "Diana Romero", "email": "paula@tagpad.com", "role": "Admin", "avatar": "", "wechat": "margaret69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed accumsan felis.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.456Z", "created_by": "teresa91", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "8a64f9a2-5fde-4ce6-95b4-cfb137807c41", "fields": {"password": "pbkdf2_sha256$36000$AMv7hEtZHf7Y$Zmv5jVO++8H09lwkb/1erl1GA9yUKFDH6pFKdEzMIWU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.973Z", "username": "rose78", "name": "Lois Lawson", "email": "martha@dablist.gov", "role": "App", "avatar": "", "wechat": "teresa94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In sagittis dui vel nisl.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.974Z", "created_by": "beverly77", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "8ae9cc43-6cdd-4880-a0f2-054094552160", "fields": {"password": "pbkdf2_sha256$36000$3JJKbejZJktd$lEBs5hcOyWEzTZgJL/Gl22ETRG9wX9GRuLFUBHtsjEc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:22.202Z", "username": "gloria89", "name": "Theresa Jackson", "email": "doris@dablist.info", "role": "App", "avatar": "", "wechat": "norma71", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus tortor.", "is_first_login": false, "date_expired": "2087-11-06T04:02:22.202Z", "created_by": "anna80", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "8d97fc4c-416d-4ed4-954e-6eadf761c28e", "fields": {"password": "pbkdf2_sha256$36000$KnTec5mKOEQQ$NIl5TJsW9fsEP/90X9SwlhvoJidRDJsJ9yzxSrRhMY4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:17.513Z", "username": "margaret76", "name": "Katherine Thomas", "email": "rebecca@wikivu.gov", "role": "User", "avatar": "", "wechat": "brenda73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque porta volutpat erat.", "is_first_login": false, "date_expired": "2087-11-06T04:02:17.513Z", "created_by": "matthew85", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "9039649f-f84c-4e61-9161-c21e7a98b4ec", "fields": {"password": "pbkdf2_sha256$36000$EYDD32illILK$kJVQVUH7QYGouKad9uUIEiXoPuw8tefc8Ow2RCGr8ro=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:17.464Z", "username": "janet92", "name": "Aaron Stanley", "email": "mildred@aimbu.mil", "role": "Admin", "avatar": "", "wechat": "anne88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "is_first_login": false, "date_expired": "2087-11-06T04:02:17.464Z", "created_by": "admin", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "980e447f-01cd-4332-95eb-d5512418809c", "fields": {"password": "pbkdf2_sha256$36000$yKuxJmkdLysZ$nUS1qBWQvrYiXyeh7+FtUzRRD/31pw2AIBhVwR3dRSs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.266Z", "username": "kathryn64", "name": "Christina Ford", "email": "sara@browsedrive.com", "role": "User", "avatar": "", "wechat": "virginia66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur in libero ut massa volutpat convallis.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.266Z", "created_by": "ashley72", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "9ae2f1c5-6051-4fed-bb1e-7f56aaad89e8", "fields": {"password": "pbkdf2_sha256$36000$9FbYVnzo6NNh$XB/dcvSSBGQiDl7UKOncMpD45QdPDXGjiZXlPW7U4MQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.029Z", "username": "nicole72", "name": "Jacqueline Roberts", "email": "diane@skibox.com", "role": "User", "avatar": "", "wechat": "jessica93", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.030Z", "created_by": "martha85", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "9c45bec0-d52a-4ad0-bbfa-2a1e6560b21b", "fields": {"password": "pbkdf2_sha256$36000$YojHNeikmDC9$ZPAx1rrQ18s6eo2ivXKXYzO3h/U9yKhpzVpDQ/CL2sE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.526Z", "username": "nancy83", "name": "Annie Cole", "email": "kimberly@yakidoo.org", "role": "App", "avatar": "", "wechat": "diane64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In sagittis dui vel nisl.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.526Z", "created_by": "elizabeth66", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "9cfea7c0-9967-445a-85be-8d0a4e1534e6", "fields": {"password": "pbkdf2_sha256$36000$8SVxys25mK7I$NHKuALSu3jwlJZebalS2PZd2507B5mFf+ND9iwyNwAM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.709Z", "username": "kathy66", "name": "Debra Marshall", "email": "angela@blogtags.mil", "role": "User", "avatar": "", "wechat": "diane90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur at ipsum ac tellus semper interdum.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.709Z", "created_by": "martha85", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "9e88c6c9-8bca-4bd9-b875-619f0de811e6", "fields": {"password": "pbkdf2_sha256$36000$B1NhPBxE8hcF$kdVO/Ob8CUTt6S/TDELwatByXScthywlBDNogwjKU6A=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:17.563Z", "username": "maria81", "name": "Kelly Reynolds", "email": "kimberly@yodo.net", "role": "Admin", "avatar": "", "wechat": "heather90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "is_first_login": false, "date_expired": "2087-11-06T04:02:17.563Z", "created_by": "arthur78", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "9f2fe4c4-9e80-4b06-a0ae-9f57d68e35d0", "fields": {"password": "pbkdf2_sha256$36000$qtrZ9KNLfO3S$5j+sZHSBU3w2NF+tpzdmdAW6cBZcvmxntUXgygbyLVo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.425Z", "username": "martha85", "name": "Lori Alvarez", "email": "helen@voonder.edu", "role": "Admin", "avatar": "", "wechat": "carolyn81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin interdum mauris non ligula pellentesque ultrices.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.425Z", "created_by": "debra73", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "a6c153fb-9b33-4d32-b1e2-d05b2c9f6721", "fields": {"password": "pbkdf2_sha256$36000$mgrCWUGHzMtZ$zLzsoD5ysBJDjwLMV1UhTy+6Ns96XomKAUo5vCwRX84=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:22.042Z", "username": "barbara70", "name": "Jacqueline Boyd", "email": "angela@eire.com", "role": "Admin", "avatar": "", "wechat": "julie67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "is_first_login": false, "date_expired": "2087-11-06T04:02:22.042Z", "created_by": "melissa89", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "a744c03f-10ac-4e18-b301-390dd727b13d", "fields": {"password": "pbkdf2_sha256$36000$YtnsYdxO2r2T$pdimYmdPLgqDVwP0S7zjeq1lti48rpHxNZOBW2GjrKg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.676Z", "username": "catherine69", "name": "Catherine Dunn", "email": "debra@rooxo.info", "role": "Admin", "avatar": "", "wechat": "kathryn88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.676Z", "created_by": "matthew85", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "a823d5c1-e327-429f-91f7-d98014069c95", "fields": {"password": "pbkdf2_sha256$36000$aJz66p2nu7Rf$132yaGgze1ufW78FFeNryCDLadQo82QACjmiEBes0dM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.402Z", "username": "jacqueline80", "name": "Michelle Peters", "email": "theresa@jetwire.net", "role": "User", "avatar": "", "wechat": "carolyn94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.402Z", "created_by": "margaret74", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "a9b1d3a9-9599-4c97-8cda-32183fb62c92", "fields": {"password": "pbkdf2_sha256$36000$Z9XZRkL1puJn$2+WZEP9/GLdnnEvOIS/wbpy6XKnEVdqyEF3BWU7G5oI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.656Z", "username": "mary87", "name": "Beverly Myers", "email": "katherine@topicblab.net", "role": "Admin", "avatar": "", "wechat": "clarence93", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Phasellus id sapien in sapien iaculis congue.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.656Z", "created_by": "catherine69", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "ab810eee-f1d0-48c3-824a-65a772c8c9ba", "fields": {"password": "pbkdf2_sha256$36000$vUb5uE5ySJam$aB77DhOhTfgORXMsBH6XSzGbMc7lEh81ULmhv9qB2X0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:22.473Z", "username": "judith72", "name": "Kelly Lane", "email": "jean@thoughtbridge.org", "role": "Admin", "avatar": "", "wechat": "evelyn77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse accumsan tortor quis turpis.", "is_first_login": false, "date_expired": "2087-11-06T04:02:22.473Z", "created_by": "martha85", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "ad6cc51f-b304-4029-8f3c-b15455a91baf", "fields": {"password": "pbkdf2_sha256$36000$0IpdaOx1fLhB$DKHBryI56n96KZqNsOgoa/h7trSgQidw25ELCc4TGwQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.081Z", "username": "joan75", "name": "Rachel Jacobs", "email": "dorothy@zooveo.gov", "role": "App", "avatar": "", "wechat": "laura70", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In congue.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.081Z", "created_by": "jessica82", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "b0cc9279-bf38-4f6d-814c-33c7bc367c17", "fields": {"password": "pbkdf2_sha256$36000$5zazMxfRSMfk$40bT29cunhnKiMz+jtenMYVZb5cypaPx4jC+pbLxOUA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:17.813Z", "username": "melissa89", "name": "Andrea Lawrence", "email": "christina@pixope.mil", "role": "Admin", "avatar": "", "wechat": "betty78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In blandit ultrices enim.", "is_first_login": false, "date_expired": "2087-11-06T04:02:17.813Z", "created_by": "janet92", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "b2eb698a-f5dd-4b25-9ee7-5a594e7f23aa", "fields": {"password": "pbkdf2_sha256$36000$ISFqJkjr8Zon$YHEjK+QLA+mIjYnYiCZDMK4QUKaoiY750wgyF1+Yq8M=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.778Z", "username": "betty84", "name": "Pamela Ruiz", "email": "kathy@trudeo.net", "role": "User", "avatar": "", "wechat": "marie73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi non lectus.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.779Z", "created_by": "jessica82", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "b7fc4571-ee3b-44e2-8062-e96c52700a44", "fields": {"password": "pbkdf2_sha256$36000$ICJkxnxqGrp3$XsTy8Iabrtii/4PThB9Wj8rFReztklMDsmpxU7Vz3nc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.922Z", "username": "elizabeth76", "name": "Helen Peters", "email": "mary@riffwire.gov", "role": "User", "avatar": "", "wechat": "marilyn83", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.922Z", "created_by": "ann75", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "bb318c48-4f50-483e-a165-89d7f18e9e95", "fields": {"password": "pbkdf2_sha256$36000$kHqN5uCVaAk9$SXWzKLwBg68/2W8NLSNJIaVBJc60F26p8RO9E3oSskI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T03:59:09.828Z", "username": "admin", "name": "Administrator", "email": "admin@jumpserver.org", "role": "Admin", "avatar": "", "wechat": "", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Administrator is the super user of system", "is_first_login": false, "date_expired": "2087-11-06T03:59:09.829Z", "created_by": "System", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "bc99aa7f-3001-47ee-b1e9-2178b9d066ba", "fields": {"password": "pbkdf2_sha256$36000$eOqWbMjSwNhe$NVV1saOEWzhqCabXDyoNZ/6LerolXGGpx6WBv3nEQnA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.602Z", "username": "jane81", "name": "Sarah Baker", "email": "janice@eimbee.mil", "role": "User", "avatar": "", "wechat": "denise79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.602Z", "created_by": "alice73", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "c1d65836-0449-47fb-abc3-fa2ea3c7c6e6", "fields": {"password": "pbkdf2_sha256$36000$ng6OH7rRreqH$QHbzii+O/om9nd0hTuZineitgVvbrDQAbz+oL9VNMCQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.341Z", "username": "julia66", "name": "Linda Moreno", "email": "wanda@voonte.org", "role": "Admin", "avatar": "", "wechat": "stephanie66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Etiam faucibus cursus urna.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.342Z", "created_by": "cheryl91", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "c4ad64a2-fffd-48d2-86bc-c9aa6b1dccc3", "fields": {"password": "pbkdf2_sha256$36000$dm2XbL0M6iCi$ANPbJYjHhufGx7DldyQIY9JgzRVGOjDxBaBARR27/34=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.725Z", "username": "helen71", "name": "Louise Reyes", "email": "julie@realblab.biz", "role": "User", "avatar": "", "wechat": "ruby64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.725Z", "created_by": "teresa91", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "c9bc020a-8600-4cf5-a4d2-f2453d0dba53", "fields": {"password": "pbkdf2_sha256$36000$1OcPx8XwdRYp$+7Haeu25HTNRpGB30uqpreR1Cflj6jeFBt4Z87KU21g=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.111Z", "username": "maria87", "name": "Rebecca Garcia", "email": "anna@feedbug.mil", "role": "Admin", "avatar": "", "wechat": "beverly68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.112Z", "created_by": "heather91", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "d1706ac1-1639-4841-aa2c-d1fb72984d66", "fields": {"password": "pbkdf2_sha256$36000$7ULcMDEhlIMQ$SKis4Nvm2S50VV5X6WaWQqjmsHkpZ5lVpwZIaWtRmYA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.374Z", "username": "janice85", "name": "Katherine Jackson", "email": "evelyn@rhybox.com", "role": "Admin", "avatar": "", "wechat": "andrea77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean sit amet justo.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.374Z", "created_by": "ruby84", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "d1a45739-f2a0-4b8f-a82d-a372e1148cb2", "fields": {"password": "pbkdf2_sha256$36000$1YH3gFppDiAk$1pER7FdOsXqPQQdbWFfliz64wZIQJvYiFnX+Xh5snrc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.472Z", "username": "andrea76", "name": "Doris Lewis", "email": "stephanie@abatz.com", "role": "Admin", "avatar": "", "wechat": "jean88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.472Z", "created_by": "maria87", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "d1e3fa79-71db-45a0-a6bb-3c97661513dc", "fields": {"password": "pbkdf2_sha256$36000$ZW624Tz3u4cX$8soh7do/iemFSHoS9fAMLqHP6iHsOPTIFPcb0YBDAPs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.082Z", "username": "kimberly73", "name": "Sharon Kim", "email": "denise@realblab.edu", "role": "Admin", "avatar": "", "wechat": "sandra77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.082Z", "created_by": "maria81", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "d2430b57-4a37-4824-8f7b-6163ab91e8e2", "fields": {"password": "pbkdf2_sha256$36000$vIV6SMlgto20$z95OkhfMlQXec4Yd84MHFYi0wwm2VZJuzD3k6NLjcoE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.778Z", "username": "susan65", "name": "Irene Spencer", "email": "judith@mymm.gov", "role": "Admin", "avatar": "", "wechat": "gloria78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec ut dolor.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.778Z", "created_by": "diane92", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "d501f745-81a7-479b-9d8c-e04d1ca3ef3e", "fields": {"password": "pbkdf2_sha256$36000$NVYsO1MeRjQI$zwZ7JL6NOg1mWj4tjvfCrlaAD9Nnz6n2/D/ksIbEmtc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.027Z", "username": "evelyn70", "name": "Christine Brooks", "email": "brenda@zava.info", "role": "App", "avatar": "", "wechat": "christine73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Ut at dolor quis odio consequat varius.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.028Z", "created_by": "betty87", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "d9a53d10-931d-4604-b1d4-5ff9c6fb2e1d", "fields": {"password": "pbkdf2_sha256$36000$NP0MwdFVE7lL$Svao2n8GFo5oV0AOjBxPKdMJy6kw/W4HHnL5YYicrO0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.498Z", "username": "kathy79", "name": "Ashley Medina", "email": "nicole@voomm.info", "role": "User", "avatar": "", "wechat": "tammy79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin eu mi.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.498Z", "created_by": "donna76", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "d9a7768c-76a7-440c-8a2f-013373f59ed3", "fields": {"password": "pbkdf2_sha256$36000$pO3K0ai3QduQ$lUgUD7+5bQmDM50CR7zvbjNMgfVTetM2LACRo+7zkKo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.123Z", "username": "alice67", "name": "Brenda Simpson", "email": "irene@dazzlesphere.biz", "role": "App", "avatar": "", "wechat": "marilyn91", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.123Z", "created_by": "lillian64", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "da72ae1d-c50e-4e39-b47a-c1007a82f9d1", "fields": {"password": "pbkdf2_sha256$36000$YMH3ao8tSJXF$wjRO8qLUeM+EbZZyC2m5vdsSA4fPKER8m+mXUuTpOmo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.475Z", "username": "sharon90", "name": "Kathy Jackson", "email": "rose@voolia.mil", "role": "Admin", "avatar": "", "wechat": "margaret81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse ornare consequat lectus.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.475Z", "created_by": "alice67", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "dacf6f60-9384-4ee3-a3ac-60026d363f1a", "fields": {"password": "pbkdf2_sha256$36000$XcnV5VhgE1JA$fNcFtBpG9tSnI9fi2scafNSQXvmQT0dp/UmnYWyzEIU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.369Z", "username": "paula82", "name": "Janet Cruz", "email": "sharon@jaxworks.mil", "role": "App", "avatar": "", "wechat": "brenda83", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.369Z", "created_by": "maria81", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "db17237f-de24-4e61-9147-83f40eb4e505", "fields": {"password": "pbkdf2_sha256$36000$yG6WkiF2PjEK$JTKFgwybiBkZdN/qFg0TnxaBAGpQptDK1OHzNsQ1bOM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.395Z", "username": "paula79", "name": "Martha Simmons", "email": "janet@layo.org", "role": "App", "avatar": "", "wechat": "ann76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer non velit.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.395Z", "created_by": "melissa89", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "de6780fa-fc10-4724-bf17-c6fc42833fe8", "fields": {"password": "pbkdf2_sha256$36000$AZQtM9X1C8WB$L8VDFWo/CT2jQET6A8OwO/WmkVmQ9KjvBJyTUIyIZh0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.173Z", "username": "lois81", "name": "Carolyn Gonzalez", "email": "theresa@mydo.com", "role": "User", "avatar": "", "wechat": "carol78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nunc nisl.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.173Z", "created_by": "lillian64", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "e638e1ee-34e2-4cd6-94aa-486852a8ab6f", "fields": {"password": "pbkdf2_sha256$36000$MVY9CniK2yRZ$om8h3zV9Ak1FSxtDf4Ty+YeugCFKPbMYq4lTYjyQ2rk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.672Z", "username": "pamela64", "name": "Patricia Arnold", "email": "cynthia@twitternation.net", "role": "App", "avatar": "", "wechat": "katherine88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce consequat.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.672Z", "created_by": "jane81", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "e9355950-9c59-4a2f-b0e1-2e6cd958a03a", "fields": {"password": "pbkdf2_sha256$36000$vQHK4SWzTXXY$Ngw9AfUz400CUjzv0NBl5RENO5XQV3nwte7TEZjctwE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.073Z", "username": "gloria91", "name": "Judith Peterson", "email": "maria@skipstorm.info", "role": "User", "avatar": "", "wechat": "donna64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Praesent blandit.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.073Z", "created_by": "judy92", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "ea074f9d-fc2d-426f-9b55-0771d890ff06", "fields": {"password": "pbkdf2_sha256$36000$Q47kyMoSlR5p$TiXtx2ncqwfDpwJkBFx1NGW60zJINaTsVbowbTgkh1M=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.563Z", "username": "debra63", "name": "Martha Snyder", "email": "tammy@muxo.com", "role": "Admin", "avatar": "", "wechat": "evelyn73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.563Z", "created_by": "jessica82", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "ea10bf37-d337-4bfa-bb79-6ec1285864c3", "fields": {"password": "pbkdf2_sha256$36000$w77mLABKdK7N$Q9YdFYVm8cJO5jBdAPZiO/uiFEyebLPxBZOjx3qmIpc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.628Z", "username": "anna80", "name": "Betty Garza", "email": "julie@katz.mil", "role": "Admin", "avatar": "", "wechat": "helen77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.628Z", "created_by": "ashley72", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "eaa1f141-caff-4b06-9111-d12190aa4d5a", "fields": {"password": "pbkdf2_sha256$36000$6Aek7JGAHtDs$ckWBvxvgG0QxNCvCuDsHNB2KOCJjWYbQAyEmpT+Ufoo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:21.883Z", "username": "christina91", "name": "Deborah Shaw", "email": "phyllis@youspan.com", "role": "User", "avatar": "", "wechat": "beverly83", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla ac enim.", "is_first_login": false, "date_expired": "2087-11-06T04:02:21.883Z", "created_by": "kimberly73", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "f246cb41-a191-4ac7-92d1-09e4a0d9b576", "fields": {"password": "pbkdf2_sha256$36000$cenuaH9iokkQ$OedyycA0BUnRcsGvt1r913VsQs18bVxx7sTp4/q9lxY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.214Z", "username": "ann75", "name": "Jane Morris", "email": "katherine@buzzster.com", "role": "Admin", "avatar": "", "wechat": "louise67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.214Z", "created_by": "debra67", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "f34f0d7b-7ab6-4480-a527-e1a941b8ef3c", "fields": {"password": "pbkdf2_sha256$36000$byqAZIel5uFr$hw6bycRBhB+ZpRS5+bRci6VMqEy28NGA4iu4PE4pRlk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.012Z", "username": "heather91", "name": "Mary Campbell", "email": "jane@jamia.edu", "role": "App", "avatar": "", "wechat": "rose75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla ac enim.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.012Z", "created_by": "judy92", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "f46bfb26-d32e-450e-96d5-70dd1f365408", "fields": {"password": "pbkdf2_sha256$36000$PYHpqGh3EYVE$Kn6huQ1xeAJmbtaa5BW0/7CEC9ubb11rO2SZO/QiV3E=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.061Z", "username": "lisa78", "name": "Walter Palmer", "email": "helen@brainsphere.net", "role": "User", "avatar": "", "wechat": "phyllis94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec ut dolor.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.061Z", "created_by": "ashley72", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "f4bf5a95-a873-47cd-82ac-0dde3113aa2d", "fields": {"password": "pbkdf2_sha256$36000$nqMo1nIvzgl9$CusoqzF+VRHXgoTCNBVzZzzte4hu+bP/fxbL2NuxcyU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.920Z", "username": "doris89", "name": "Teresa Long", "email": "ashley@twimbo.edu", "role": "Admin", "avatar": "", "wechat": "anna77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.920Z", "created_by": "jessica82", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "f4f8236f-cc9c-407e-b869-bb233e6e3621", "fields": {"password": "pbkdf2_sha256$36000$Not0h7TsTQ7S$4F4pdMuZPDd9V8Pw+Z0L++lAT7fdar+hFhrJ/PybuOA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:20.184Z", "username": "lisa69", "name": "Kelly Graham", "email": "martha@omba.name", "role": "User", "avatar": "", "wechat": "louise90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi a ipsum.", "is_first_login": false, "date_expired": "2087-11-06T04:02:20.184Z", "created_by": "elizabeth92", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "f64ae857-f9c3-48a6-ad98-d67765dd48ae", "fields": {"password": "pbkdf2_sha256$36000$de3c1I3aWE0L$pbhw59coBI5XvUESlBvGyY1kqUGdia9IpTXbHbUkxu0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:17.862Z", "username": "ashley72", "name": "Mary Johnston", "email": "patricia@zoomzone.net", "role": "App", "avatar": "", "wechat": "bonnie69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer non velit.", "is_first_login": false, "date_expired": "2087-11-06T04:02:17.862Z", "created_by": "janet92", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "f6dec98f-918f-4ad6-8420-1e0360ca001a", "fields": {"password": "pbkdf2_sha256$36000$1szplbYPMRQg$gxtH6N8COglPkPqkI4YKoQVm6qmUCi3oZyNx3zzbzZo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:17.911Z", "username": "ruby84", "name": "Amy Carpenter", "email": "rebecca@fliptune.org", "role": "User", "avatar": "", "wechat": "kathleen87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed ante.", "is_first_login": false, "date_expired": "2087-11-06T04:02:17.911Z", "created_by": "maria81", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "f96e94e8-983d-4b3f-b6dd-6023c77e3b83", "fields": {"password": "pbkdf2_sha256$36000$FKSItoDw2630$bRgUbViOdRRNXibP7+2oOZmkUyVAEAjYq85n3EjO6PE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.274Z", "username": "catherine86", "name": "Pamela Anderson", "email": "heather@demivee.name", "role": "Admin", "avatar": "", "wechat": "frances65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam sit amet diam in magna bibendum imperdiet.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.274Z", "created_by": "ashley72", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "fbd34b45-c997-4efc-b431-0639dec2fa19", "fields": {"password": "pbkdf2_sha256$36000$6Ju51ftzefhW$GDqJGfrnyDbR3cwsBEG54RUKeFFNvHf1ECuUqGDHxgQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:19.324Z", "username": "debra93", "name": "Sandra Jenkins", "email": "rose@meeveo.org", "role": "User", "avatar": "", "wechat": "bonnie78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam nulla.", "is_first_login": false, "date_expired": "2087-11-06T04:02:19.324Z", "created_by": "maria87", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "fe32605e-e201-43eb-b67d-95d833460d7e", "fields": {"password": "pbkdf2_sha256$36000$jIgTf1Ybp1ut$R+OeAzk75vb3Ij33OHXGyI9qVjlBBSKGtRQ74/R/C5o=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:17.762Z", "username": "beverly89", "name": "Kelly Holmes", "email": "christina@livetube.com", "role": "User", "avatar": "", "wechat": "julie63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur in libero ut massa volutpat convallis.", "is_first_login": false, "date_expired": "2087-11-06T04:02:17.762Z", "created_by": "margaret76", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}, {"model": "users.user", "pk": "fe75a2ae-6425-43cf-824e-df3e94959b89", "fields": {"password": "pbkdf2_sha256$36000$UxJgiVmQqNBM$TFP6K8tIBEh/gaxrey6/DzwWFyCPbAB5W+ssKVw1QwM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T04:02:18.522Z", "username": "lillian64", "name": "Teresa Nelson", "email": "jennifer@skibox.edu", "role": "User", "avatar": "", "wechat": "nancy82", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus in felis eu sapien cursus vestibulum.", "is_first_login": false, "date_expired": "2087-11-06T04:02:18.522Z", "created_by": "admin", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}] \ No newline at end of file +[{"model": "users.usergroup", "pk": "01633e9e-aaf9-434a-bc3d-33f75efb045d", "fields": {"is_discard": false, "discard_time": null, "name": "Barbara Shaw", "comment": "Sed ante.", "date_created": "2017-12-07T08:20:51.486Z", "created_by": "deborah79"}}, {"model": "users.usergroup", "pk": "05480995-a607-43f4-9aae-6373e5144196", "fields": {"is_discard": false, "discard_time": null, "name": "Irene Dunn", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "date_created": "2017-12-07T08:20:51.823Z", "created_by": "maria71"}}, {"model": "users.usergroup", "pk": "0aaefcf4-a3be-4b0c-8347-e537c939b1d6", "fields": {"is_discard": false, "discard_time": null, "name": "Jean Gilbert", "comment": "Maecenas tincidunt lacus at velit.", "date_created": "2017-12-07T08:20:52.464Z", "created_by": "amanda67"}}, {"model": "users.usergroup", "pk": "0c9f3bb1-6b99-4fb0-931a-6a973d043039", "fields": {"is_discard": false, "discard_time": null, "name": "Mildred Bishop", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "date_created": "2017-12-07T08:20:52.443Z", "created_by": "catherine91"}}, {"model": "users.usergroup", "pk": "0cfa92a2-b265-4117-a90f-d6e36cc742df", "fields": {"is_discard": false, "discard_time": null, "name": "Sarah Hill", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo.", "date_created": "2017-12-07T08:20:51.520Z", "created_by": "cynthia75"}}, {"model": "users.usergroup", "pk": "0ff9b33d-6db3-411b-bc8a-201cee0492d5", "fields": {"is_discard": false, "discard_time": null, "name": "Patricia Cook", "comment": "Pellentesque eget nunc.", "date_created": "2017-12-07T08:20:51.693Z", "created_by": "sharon84"}}, {"model": "users.usergroup", "pk": "10a4c70a-8202-4cc6-b1ed-81c93961325d", "fields": {"is_discard": false, "discard_time": null, "name": "Joyce Wagner", "comment": "Vivamus tortor.", "date_created": "2017-12-07T08:20:52.242Z", "created_by": "mary85"}}, {"model": "users.usergroup", "pk": "10e9791a-7af7-4a80-a392-4261c2f19a59", "fields": {"is_discard": false, "discard_time": null, "name": "Kathryn Sims", "comment": "Praesent id massa id nisl venenatis lacinia.", "date_created": "2017-12-07T08:20:52.422Z", "created_by": "jennifer76"}}, {"model": "users.usergroup", "pk": "18a646d6-b82d-4f0b-80a3-d61fe702ef7b", "fields": {"is_discard": false, "discard_time": null, "name": "Heather Hernandez", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.", "date_created": "2017-12-07T08:20:51.464Z", "created_by": "doris73"}}, {"model": "users.usergroup", "pk": "1a51e2a6-cfd1-44fe-b774-3ef3de1c81dc", "fields": {"is_discard": false, "discard_time": null, "name": "Jessica Pierce", "comment": "Etiam justo.", "date_created": "2017-12-07T08:20:51.748Z", "created_by": "bonnie74"}}, {"model": "users.usergroup", "pk": "1af7873a-8614-484b-8a40-c2cab92a0125", "fields": {"is_discard": false, "discard_time": null, "name": "Nancy Griffin", "comment": "Etiam justo.", "date_created": "2017-12-07T08:20:51.617Z", "created_by": "stephanie64"}}, {"model": "users.usergroup", "pk": "1bbfbb77-2f3e-4ed9-abbb-948556a7b250", "fields": {"is_discard": false, "discard_time": null, "name": "Ruby Frazier", "comment": "Sed accumsan felis.", "date_created": "2017-12-07T08:20:52.221Z", "created_by": "diane63"}}, {"model": "users.usergroup", "pk": "1cdf25f1-24f3-4438-ad07-0b01fff85d6a", "fields": {"is_discard": false, "discard_time": null, "name": "Lisa Robertson", "comment": "Vestibulum sed magna at nunc commodo placerat.", "date_created": "2017-12-07T08:20:52.370Z", "created_by": "wanda76"}}, {"model": "users.usergroup", "pk": "1ebb17e6-9224-469e-960c-e79ea05e1843", "fields": {"is_discard": false, "discard_time": null, "name": "Jessica Olson", "comment": "Sed accumsan felis.", "date_created": "2017-12-07T08:20:52.028Z", "created_by": "kathryn81"}}, {"model": "users.usergroup", "pk": "1f69d022-44cd-4d05-8280-1f867f843812", "fields": {"is_discard": false, "discard_time": null, "name": "Ruby Hanson", "comment": "Donec quis orci eget orci vehicula condimentum.", "date_created": "2017-12-07T08:20:51.585Z", "created_by": "anna68"}}, {"model": "users.usergroup", "pk": "20854f59-6e0f-4c32-a9e5-6027fa0a4286", "fields": {"is_discard": false, "discard_time": null, "name": "Andrea Fuller", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "date_created": "2017-12-07T08:20:52.285Z", "created_by": "angela93"}}, {"model": "users.usergroup", "pk": "20f701d5-44cf-4fc2-97cc-ed58a6879f46", "fields": {"is_discard": false, "discard_time": null, "name": "Julie Sullivan", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "date_created": "2017-12-07T08:20:52.050Z", "created_by": "margaret68"}}, {"model": "users.usergroup", "pk": "22aabd20-ef34-4449-9b7d-ff98e09908d2", "fields": {"is_discard": false, "discard_time": null, "name": "Amy Reyes", "comment": "Aenean lectus.", "date_created": "2017-12-07T08:20:51.553Z", "created_by": "brenda80"}}, {"model": "users.usergroup", "pk": "256b4fb1-b364-42b0-986a-c36ce05c9910", "fields": {"is_discard": false, "discard_time": null, "name": "Ashley Watson", "comment": "Etiam justo.", "date_created": "2017-12-07T08:20:52.072Z", "created_by": "robin65"}}, {"model": "users.usergroup", "pk": "2ab45c5e-8b7c-4b15-a23b-f0674dea4811", "fields": {"is_discard": false, "discard_time": null, "name": "Sara Reid", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "date_created": "2017-12-07T08:20:51.931Z", "created_by": "jean73"}}, {"model": "users.usergroup", "pk": "2ac447b3-fe58-4070-ac04-2229ee3f67d1", "fields": {"is_discard": false, "discard_time": null, "name": "Joyce Hill", "comment": "Vivamus vestibulum sagittis sapien.", "date_created": "2017-12-07T08:20:52.485Z", "created_by": "kathleen72"}}, {"model": "users.usergroup", "pk": "2acdcb21-17da-4848-91d2-43d0f3c7a675", "fields": {"is_discard": false, "discard_time": null, "name": "Mary Nelson", "comment": "Donec semper sapien a libero.", "date_created": "2017-12-07T08:20:51.844Z", "created_by": "wanda76"}}, {"model": "users.usergroup", "pk": "2b6d1ada-eeff-4708-a5a2-c0cf700c7903", "fields": {"is_discard": false, "discard_time": null, "name": "Beverly Watson", "comment": "In hac habitasse platea dictumst.", "date_created": "2017-12-07T08:20:52.339Z", "created_by": "mildred72"}}, {"model": "users.usergroup", "pk": "2e0b2a25-b32f-44a0-b087-f0f17de66e26", "fields": {"is_discard": false, "discard_time": null, "name": "Default", "comment": "Default user group", "date_created": "2017-12-07T08:20:09.593Z", "created_by": "System"}}, {"model": "users.usergroup", "pk": "30425714-f98a-4c72-aee4-cd2ec6386a83", "fields": {"is_discard": false, "discard_time": null, "name": "Carol Nguyen", "comment": "Sed sagittis.", "date_created": "2017-12-07T08:20:51.865Z", "created_by": "stephanie64"}}, {"model": "users.usergroup", "pk": "3130014e-a92c-4942-9c5f-4f0d7d456bea", "fields": {"is_discard": false, "discard_time": null, "name": "Nicole Henry", "comment": "Vestibulum ac est lacinia nisi venenatis tristique.", "date_created": "2017-12-07T08:20:51.790Z", "created_by": "kathleen72"}}, {"model": "users.usergroup", "pk": "324a10dd-2f10-4c04-b616-80f669b213ef", "fields": {"is_discard": false, "discard_time": null, "name": "Rachel Watson", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "date_created": "2017-12-07T08:20:52.006Z", "created_by": "kelly79"}}, {"model": "users.usergroup", "pk": "32c811fe-c525-4ee0-ab06-4f1caffc0df4", "fields": {"is_discard": false, "discard_time": null, "name": "Joyce Rodriguez", "comment": "Mauris ullamcorper purus sit amet nulla.", "date_created": "2017-12-07T08:20:52.412Z", "created_by": "lisa84"}}, {"model": "users.usergroup", "pk": "348bc076-34b7-4b48-8b13-6920b4536e0b", "fields": {"is_discard": false, "discard_time": null, "name": "Jessica Sanders", "comment": "Aenean lectus.", "date_created": "2017-12-07T08:20:52.211Z", "created_by": "phyllis92"}}, {"model": "users.usergroup", "pk": "35fbe872-3fa9-4d2a-aeae-92e2b919408d", "fields": {"is_discard": false, "discard_time": null, "name": "Sandra Cruz", "comment": "Phasellus sit amet erat.", "date_created": "2017-12-07T08:20:52.104Z", "created_by": "frances91"}}, {"model": "users.usergroup", "pk": "36e8af59-a0e4-43ac-b75b-a553316db215", "fields": {"is_discard": false, "discard_time": null, "name": "Kathryn Cook", "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2017-12-07T08:20:51.780Z", "created_by": "lisa75"}}, {"model": "users.usergroup", "pk": "39b4c13c-7b1c-46ec-b5f0-eddc5c9dc0d1", "fields": {"is_discard": false, "discard_time": null, "name": "Kathy Watkins", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "date_created": "2017-12-07T08:20:51.596Z", "created_by": "katherine74"}}, {"model": "users.usergroup", "pk": "42e81e2b-5e41-492d-ba1c-2c776f6825b9", "fields": {"is_discard": false, "discard_time": null, "name": "Angela Franklin", "comment": "Duis aliquam convallis nunc.", "date_created": "2017-12-07T08:20:52.349Z", "created_by": "amanda67"}}, {"model": "users.usergroup", "pk": "439508f0-ef68-47b7-8b1f-0fa8519d55d2", "fields": {"is_discard": false, "discard_time": null, "name": "Marilyn Crawford", "comment": "Phasellus sit amet erat.", "date_created": "2017-12-07T08:20:51.736Z", "created_by": "phyllis92"}}, {"model": "users.usergroup", "pk": "44dcd0b3-13c5-4ffc-81c2-226feb264f4f", "fields": {"is_discard": false, "discard_time": null, "name": "Betty Torres", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "date_created": "2017-12-07T08:20:52.296Z", "created_by": "margaret94"}}, {"model": "users.usergroup", "pk": "47e25432-402f-423d-b089-dc1a4c69f0f1", "fields": {"is_discard": false, "discard_time": null, "name": "Angela Brooks", "comment": "Etiam vel augue.", "date_created": "2017-12-07T08:20:51.498Z", "created_by": "lisa90"}}, {"model": "users.usergroup", "pk": "50b6d093-3208-45d1-aaae-ed1d3c23a7b6", "fields": {"is_discard": false, "discard_time": null, "name": "Elizabeth Wagner", "comment": "Donec ut dolor.", "date_created": "2017-12-07T08:20:51.996Z", "created_by": "joan86"}}, {"model": "users.usergroup", "pk": "562e85d0-cfba-43b2-ad51-1e11e78a2e67", "fields": {"is_discard": false, "discard_time": null, "name": "Andrea Cox", "comment": "Donec ut mauris eget massa tempor convallis.", "date_created": "2017-12-07T08:20:52.381Z", "created_by": "wanda88"}}, {"model": "users.usergroup", "pk": "575c7e54-02d4-4196-8566-6f1ea8f36f8b", "fields": {"is_discard": false, "discard_time": null, "name": "Tina Olson", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "date_created": "2017-12-07T08:20:52.264Z", "created_by": "kelly79"}}, {"model": "users.usergroup", "pk": "5931fc80-cb0c-4b8a-8fb1-c8ddfd3d5fd0", "fields": {"is_discard": false, "discard_time": null, "name": "Ashley Rivera", "comment": "Suspendisse ornare consequat lectus.", "date_created": "2017-12-07T08:20:52.518Z", "created_by": "brenda85"}}, {"model": "users.usergroup", "pk": "5b7d215d-6cd3-4eb6-9ba0-2056758c457e", "fields": {"is_discard": false, "discard_time": null, "name": "Christine George", "comment": "Fusce consequat.", "date_created": "2017-12-07T08:20:52.402Z", "created_by": "wanda88"}}, {"model": "users.usergroup", "pk": "5c97733d-13ef-4336-ad29-29ae8e3af1f7", "fields": {"is_discard": false, "discard_time": null, "name": "Beverly Howell", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "date_created": "2017-12-07T08:20:52.178Z", "created_by": "anna85"}}, {"model": "users.usergroup", "pk": "5ccbede6-9538-40f4-a2af-b255ea441291", "fields": {"is_discard": false, "discard_time": null, "name": "Nancy Moore", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "date_created": "2017-12-07T08:20:51.704Z", "created_by": "diane63"}}, {"model": "users.usergroup", "pk": "61b1878f-970d-4540-a606-a1e606c07f32", "fields": {"is_discard": false, "discard_time": null, "name": "Janice Harvey", "comment": "Sed sagittis.", "date_created": "2017-12-07T08:20:52.232Z", "created_by": "doris86"}}, {"model": "users.usergroup", "pk": "62ec8b72-aa17-4a86-89b5-cf904ad16f4b", "fields": {"is_discard": false, "discard_time": null, "name": "Alice Mccoy", "comment": "Integer ac neque.", "date_created": "2017-12-07T08:20:52.507Z", "created_by": "wanda76"}}, {"model": "users.usergroup", "pk": "6699de3c-c1f6-4c60-bf21-26e4eebdabad", "fields": {"is_discard": false, "discard_time": null, "name": "Kathleen Thompson", "comment": "Aenean fermentum.", "date_created": "2017-12-07T08:20:51.954Z", "created_by": "robin65"}}, {"model": "users.usergroup", "pk": "6bd04a04-f94d-4723-a187-3d9eb5e87b25", "fields": {"is_discard": false, "discard_time": null, "name": "Frances Graham", "comment": "Duis ac nibh.", "date_created": "2017-12-07T08:20:51.475Z", "created_by": "catherine91"}}, {"model": "users.usergroup", "pk": "6c5566e7-f9ed-4722-8e5c-ae9c71eeeefd", "fields": {"is_discard": false, "discard_time": null, "name": "Pamela Reyes", "comment": "Praesent id massa id nisl venenatis lacinia.", "date_created": "2017-12-07T08:20:52.125Z", "created_by": "diane63"}}, {"model": "users.usergroup", "pk": "73daab8c-d57e-4cf8-8625-3191f179c5f2", "fields": {"is_discard": false, "discard_time": null, "name": "Janice Chavez", "comment": "Donec dapibus.", "date_created": "2017-12-07T08:20:52.083Z", "created_by": "rachel76"}}, {"model": "users.usergroup", "pk": "7acf822f-682a-4242-af4c-1dab52961bef", "fields": {"is_discard": false, "discard_time": null, "name": "Phyllis Carr", "comment": "Nulla justo.", "date_created": "2017-12-07T08:20:51.574Z", "created_by": "deborah79"}}, {"model": "users.usergroup", "pk": "82a41770-d7e3-43dd-8722-3fe712d96b8c", "fields": {"is_discard": false, "discard_time": null, "name": "Paula Gutierrez", "comment": "Nulla tellus.", "date_created": "2017-12-07T08:20:51.833Z", "created_by": "jennifer76"}}, {"model": "users.usergroup", "pk": "8328f6c7-80b5-466c-bf37-b347ec2483ad", "fields": {"is_discard": false, "discard_time": null, "name": "Kelly Dean", "comment": "Etiam justo.", "date_created": "2017-12-07T08:20:52.147Z", "created_by": "margaret68"}}, {"model": "users.usergroup", "pk": "84840e74-dccc-4663-829a-82496687b29b", "fields": {"is_discard": false, "discard_time": null, "name": "Kathryn Bell", "comment": "Curabitur in libero ut massa volutpat convallis.", "date_created": "2017-12-07T08:20:51.606Z", "created_by": "maria72"}}, {"model": "users.usergroup", "pk": "8997d40e-46aa-4c27-b4db-5e1bb4460d45", "fields": {"is_discard": false, "discard_time": null, "name": "Pamela Cunningham", "comment": "Cras non velit nec nisi vulputate nonummy.", "date_created": "2017-12-07T08:20:52.475Z", "created_by": "joan88"}}, {"model": "users.usergroup", "pk": "91cf56b4-1e16-4bd6-9f04-435d7799ced7", "fields": {"is_discard": false, "discard_time": null, "name": "Maria Fisher", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "date_created": "2017-12-07T08:20:52.189Z", "created_by": "diane63"}}, {"model": "users.usergroup", "pk": "93bbe048-b49d-4ff2-bae5-88bd759b37c4", "fields": {"is_discard": false, "discard_time": null, "name": "Catherine Morris", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "date_created": "2017-12-07T08:20:51.975Z", "created_by": "sarah87"}}, {"model": "users.usergroup", "pk": "94459801-cf94-4acd-8536-4853afc7f506", "fields": {"is_discard": false, "discard_time": null, "name": "Helen Mason", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "date_created": "2017-12-07T08:20:52.039Z", "created_by": "christine83"}}, {"model": "users.usergroup", "pk": "9509a7e1-71fc-48a9-b16a-84bb1559cd22", "fields": {"is_discard": false, "discard_time": null, "name": "Bonnie Arnold", "comment": "Duis bibendum.", "date_created": "2017-12-07T08:20:51.650Z", "created_by": "rachel76"}}, {"model": "users.usergroup", "pk": "974627ea-562c-421e-965c-7629b7ae32b4", "fields": {"is_discard": false, "discard_time": null, "name": "Wanda Parker", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "date_created": "2017-12-07T08:20:51.875Z", "created_by": "diane88"}}, {"model": "users.usergroup", "pk": "9c1c4a2f-e1e1-436d-b175-a4dbaff84f2c", "fields": {"is_discard": false, "discard_time": null, "name": "Phyllis Garcia", "comment": "Praesent id massa id nisl venenatis lacinia.", "date_created": "2017-12-07T08:20:51.639Z", "created_by": "jane91"}}, {"model": "users.usergroup", "pk": "a0d4b642-4250-40e9-af49-5d6b96aebf0b", "fields": {"is_discard": false, "discard_time": null, "name": "Amanda Armstrong", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo.", "date_created": "2017-12-07T08:20:51.985Z", "created_by": "alice65"}}, {"model": "users.usergroup", "pk": "a1211050-9d15-4c83-9039-623b8e73cd7e", "fields": {"is_discard": false, "discard_time": null, "name": "Sharon Carter", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.", "date_created": "2017-12-07T08:20:51.564Z", "created_by": "deborah92"}}, {"model": "users.usergroup", "pk": "a4ba911f-1a48-406a-b073-18325675d410", "fields": {"is_discard": false, "discard_time": null, "name": "Jessica Palmer", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "date_created": "2017-12-07T08:20:51.672Z", "created_by": "sandra90"}}, {"model": "users.usergroup", "pk": "a9c18eb2-487f-430b-8a21-9fda58f8e010", "fields": {"is_discard": false, "discard_time": null, "name": "Cynthia Phillips", "comment": "Curabitur convallis.", "date_created": "2017-12-07T08:20:51.531Z", "created_by": "doris76"}}, {"model": "users.usergroup", "pk": "aa396508-4225-46db-8987-01e797703b8c", "fields": {"is_discard": false, "discard_time": null, "name": "Gloria Elliott", "comment": "Pellentesque ultrices mattis odio.", "date_created": "2017-12-07T08:20:51.812Z", "created_by": "doris86"}}, {"model": "users.usergroup", "pk": "aba21946-88f9-4118-9618-102e4cc80c79", "fields": {"is_discard": false, "discard_time": null, "name": "Kimberly Fox", "comment": "Integer non velit.", "date_created": "2017-12-07T08:20:52.136Z", "created_by": "brenda80"}}, {"model": "users.usergroup", "pk": "b29c503b-8880-49a0-a411-7fffe18d66f7", "fields": {"is_discard": false, "discard_time": null, "name": "Julia Dixon", "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2017-12-07T08:20:51.682Z", "created_by": "brenda80"}}, {"model": "users.usergroup", "pk": "b2c06c2d-e84c-40fe-bcb5-de5c472bd7ae", "fields": {"is_discard": false, "discard_time": null, "name": "Shirley Johnson", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "date_created": "2017-12-07T08:20:52.061Z", "created_by": "linda78"}}, {"model": "users.usergroup", "pk": "b3dae698-cbfd-447e-b464-969e9cb7cc98", "fields": {"is_discard": false, "discard_time": null, "name": "Lori Cooper", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "date_created": "2017-12-07T08:20:51.886Z", "created_by": "christine83"}}, {"model": "users.usergroup", "pk": "b45b237e-ce9c-4fa3-8cd3-a86ab0269c79", "fields": {"is_discard": false, "discard_time": null, "name": "Jean Harris", "comment": "Vestibulum sed magna at nunc commodo placerat.", "date_created": "2017-12-07T08:20:51.759Z", "created_by": "frances91"}}, {"model": "users.usergroup", "pk": "b7316da9-aed5-4329-bd3c-bc2ff34a1ec4", "fields": {"is_discard": false, "discard_time": null, "name": "Debra Cooper", "comment": "Vivamus vel nulla eget eros elementum pellentesque.", "date_created": "2017-12-07T08:20:51.661Z", "created_by": "ruth84"}}, {"model": "users.usergroup", "pk": "bbbc2f67-193c-4e4a-8355-f4f3d585ff26", "fields": {"is_discard": false, "discard_time": null, "name": "Christina Jackson", "comment": "Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci.", "date_created": "2017-12-07T08:20:51.896Z", "created_by": "maria72"}}, {"model": "users.usergroup", "pk": "bc85d48a-5e80-471c-b348-a1123421d96d", "fields": {"is_discard": false, "discard_time": null, "name": "Irene Gilbert", "comment": "In hac habitasse platea dictumst.", "date_created": "2017-12-07T08:20:51.724Z", "created_by": "cheryl72"}}, {"model": "users.usergroup", "pk": "be9b966c-81a2-4ca1-baa8-31c798ad36f1", "fields": {"is_discard": false, "discard_time": null, "name": "Ruby Rodriguez", "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2017-12-07T08:20:52.391Z", "created_by": "anna68"}}, {"model": "users.usergroup", "pk": "c724a40b-5aae-4fec-84bd-4cb533e08347", "fields": {"is_discard": false, "discard_time": null, "name": "Andrea Morris", "comment": "Maecenas pulvinar lobortis est.", "date_created": "2017-12-07T08:20:51.920Z", "created_by": "nancy94"}}, {"model": "users.usergroup", "pk": "c770b1ef-455a-4351-918f-ebb30488c967", "fields": {"is_discard": false, "discard_time": null, "name": "Mary Hunt", "comment": "Integer tincidunt ante vel ipsum.", "date_created": "2017-12-07T08:20:51.801Z", "created_by": "deborah92"}}, {"model": "users.usergroup", "pk": "c8cfd3c6-fc6f-4191-9a06-a756a79ad7c2", "fields": {"is_discard": false, "discard_time": null, "name": "Linda Ortiz", "comment": "In sagittis dui vel nisl.", "date_created": "2017-12-07T08:20:51.855Z", "created_by": "tammy68"}}, {"model": "users.usergroup", "pk": "cb64989f-138c-40f8-b55a-958e3faf982b", "fields": {"is_discard": false, "discard_time": null, "name": "Emily Arnold", "comment": "Vivamus vestibulum sagittis sapien.", "date_created": "2017-12-07T08:20:52.168Z", "created_by": "catherine89"}}, {"model": "users.usergroup", "pk": "cc857995-38c6-409b-813c-c3ffc753f38b", "fields": {"is_discard": false, "discard_time": null, "name": "Louise Collins", "comment": "Nam dui.", "date_created": "2017-12-07T08:20:52.327Z", "created_by": "margaret94"}}, {"model": "users.usergroup", "pk": "d0f501b7-59df-447a-9677-e312b1e307d7", "fields": {"is_discard": false, "discard_time": null, "name": "Judy Wallace", "comment": "Vivamus tortor.", "date_created": "2017-12-07T08:20:51.910Z", "created_by": "sarah87"}}, {"model": "users.usergroup", "pk": "d6dcd1e8-3de8-4a9f-ae77-99c2db8fb740", "fields": {"is_discard": false, "discard_time": null, "name": "Jennifer Lane", "comment": "Pellentesque viverra pede ac diam.", "date_created": "2017-12-07T08:20:52.253Z", "created_by": "sharon84"}}, {"model": "users.usergroup", "pk": "d9441645-2adc-4a2c-8ac9-88c4acd27f1c", "fields": {"is_discard": false, "discard_time": null, "name": "Tina Moore", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2017-12-07T08:20:52.316Z", "created_by": "catherine91"}}, {"model": "users.usergroup", "pk": "d9fb5700-8b80-4977-880b-01aa12ce9d0a", "fields": {"is_discard": false, "discard_time": null, "name": "Julia Hudson", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "date_created": "2017-12-07T08:20:52.093Z", "created_by": "margaret68"}}, {"model": "users.usergroup", "pk": "da7d3fc2-c0a8-4063-b6ea-5cdff12cfa21", "fields": {"is_discard": false, "discard_time": null, "name": "Deborah Mason", "comment": "Maecenas rhoncus aliquam lacus.", "date_created": "2017-12-07T08:20:52.275Z", "created_by": "angela93"}}, {"model": "users.usergroup", "pk": "e01c4f7b-99b4-4acc-a17f-bcfa65aa6713", "fields": {"is_discard": false, "discard_time": null, "name": "Carolyn Morgan", "comment": "Praesent lectus.", "date_created": "2017-12-07T08:20:52.433Z", "created_by": "kimberly82"}}, {"model": "users.usergroup", "pk": "e52a38be-1b6e-4aa0-af94-81df5bbbf128", "fields": {"is_discard": false, "discard_time": null, "name": "Tammy Martinez", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo.", "date_created": "2017-12-07T08:20:52.453Z", "created_by": "bobby67"}}, {"model": "users.usergroup", "pk": "e8b48349-c0fb-46dd-a381-060da38b7d03", "fields": {"is_discard": false, "discard_time": null, "name": "Martha Garcia", "comment": "Duis mattis egestas metus.", "date_created": "2017-12-07T08:20:51.509Z", "created_by": "anna85"}}, {"model": "users.usergroup", "pk": "e8c27151-8bbd-4860-b63b-c1268734004e", "fields": {"is_discard": false, "discard_time": null, "name": "Phyllis Ramos", "comment": "Maecenas pulvinar lobortis est.", "date_created": "2017-12-07T08:20:52.157Z", "created_by": "brenda85"}}, {"model": "users.usergroup", "pk": "e8d74351-5019-409d-aa0f-be2eed38eb50", "fields": {"is_discard": false, "discard_time": null, "name": "Amanda Snyder", "comment": "Suspendisse ornare consequat lectus.", "date_created": "2017-12-07T08:20:51.628Z", "created_by": "maria71"}}, {"model": "users.usergroup", "pk": "edf7e651-2192-4d81-83d1-3ba18c114524", "fields": {"is_discard": false, "discard_time": null, "name": "Donna Riley", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla.", "date_created": "2017-12-07T08:20:52.017Z", "created_by": "emily88"}}, {"model": "users.usergroup", "pk": "f02bde64-1585-407d-b2b4-03b1e3646181", "fields": {"is_discard": false, "discard_time": null, "name": "Wanda Williamson", "comment": "Aliquam sit amet diam in magna bibendum imperdiet.", "date_created": "2017-12-07T08:20:52.114Z", "created_by": "jane91"}}, {"model": "users.usergroup", "pk": "f2e7b16f-c9df-44d7-bafc-2264d4c56ea2", "fields": {"is_discard": false, "discard_time": null, "name": "Jane Bishop", "comment": "Morbi a ipsum.", "date_created": "2017-12-07T08:20:52.360Z", "created_by": "angela93"}}, {"model": "users.usergroup", "pk": "f471eacf-29bf-48f2-a8f7-190180592024", "fields": {"is_discard": false, "discard_time": null, "name": "Gloria Oliver", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2017-12-07T08:20:51.964Z", "created_by": "kathleen72"}}, {"model": "users.usergroup", "pk": "f4e73db5-0f56-443a-bc04-75c97606a32d", "fields": {"is_discard": false, "discard_time": null, "name": "Judy Stewart", "comment": "Duis at velit eu est congue elementum.", "date_created": "2017-12-07T08:20:51.942Z", "created_by": "katherine74"}}, {"model": "users.usergroup", "pk": "f61bf503-4071-4105-8865-03c298b8493b", "fields": {"is_discard": false, "discard_time": null, "name": "Maria Owens", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "date_created": "2017-12-07T08:20:52.497Z", "created_by": "jane91"}}, {"model": "users.usergroup", "pk": "f70a94bd-ccfc-47a8-9ffc-c82354c1eab3", "fields": {"is_discard": false, "discard_time": null, "name": "Mary Hawkins", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "date_created": "2017-12-07T08:20:52.529Z", "created_by": "amy74"}}, {"model": "users.usergroup", "pk": "f97785ce-0128-40e8-9d1a-59a6da0f26c6", "fields": {"is_discard": false, "discard_time": null, "name": "Lillian Rose", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "date_created": "2017-12-07T08:20:51.714Z", "created_by": "nancy94"}}, {"model": "users.usergroup", "pk": "fb79c29a-7082-4a61-b7f9-664936689962", "fields": {"is_discard": false, "discard_time": null, "name": "Lori Moreno", "comment": "Suspendisse potenti.", "date_created": "2017-12-07T08:20:51.769Z", "created_by": "jane91"}}, {"model": "users.usergroup", "pk": "fb996880-5d5b-45f0-a350-48c909540bbe", "fields": {"is_discard": false, "discard_time": null, "name": "Elizabeth Nelson", "comment": "Maecenas rhoncus aliquam lacus.", "date_created": "2017-12-07T08:20:52.200Z", "created_by": "amanda67"}}, {"model": "users.usergroup", "pk": "fdc3f016-e595-4167-ba89-dfcdfd47729c", "fields": {"is_discard": false, "discard_time": null, "name": "Frances Cook", "comment": "Suspendisse potenti.", "date_created": "2017-12-07T08:20:51.542Z", "created_by": "ruth71"}}, {"model": "users.usergroup", "pk": "ffe5fe09-16d1-40ea-b27a-c5c69e85ae4f", "fields": {"is_discard": false, "discard_time": null, "name": "Marilyn Hall", "comment": "Fusce consequat.", "date_created": "2017-12-07T08:20:52.306Z", "created_by": "jane91"}}, {"model": "assets.cluster", "pk": "39db8373-d161-4832-83e3-6139d10e827b", "fields": {"name": "Debra Kim", "bandwidth": "200M", "contact": "Carol Ryan", "phone": "3-(970)673-3761", "address": "Gustine4937 Duke Way", "intranet": "", "extranet": "", "date_created": "2017-12-07T08:20:52.544Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Aenean sit amet justo."}}, {"model": "assets.cluster", "pk": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "fields": {"name": "Ashley Henry", "bandwidth": "200M", "contact": "Susan Coleman", "phone": "2-(441)661-3806", "address": "Riverbank916 Old Shore Road", "intranet": "", "extranet": "", "date_created": "2017-12-07T08:20:52.541Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Aenean auctor gravida sem."}}, {"model": "assets.cluster", "pk": "6a75b014-2fb3-494c-910d-fd6f39a5e409", "fields": {"name": "Tammy Pierce", "bandwidth": "200M", "contact": "Ruth Fernandez", "phone": "9-(356)562-2635", "address": "Oakley36 Talisman Center", "intranet": "", "extranet": "", "date_created": "2017-12-07T08:20:52.547Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Praesent blandit."}}, {"model": "assets.cluster", "pk": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "fields": {"name": "Theresa Jones", "bandwidth": "200M", "contact": "Lillian Jackson", "phone": "4-(213)114-4147", "address": "Red Bluff6 Amoth Way", "intranet": "", "extranet": "", "date_created": "2017-12-07T08:20:52.538Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Donec vitae nisi."}}, {"model": "assets.cluster", "pk": "c0df1aa0-bde7-4226-a69a-d02976888456", "fields": {"name": "Default", "bandwidth": "", "contact": "", "phone": "", "address": "", "intranet": "", "extranet": "", "date_created": "2017-12-07T08:20:09.606Z", "operator": "", "created_by": "System", "comment": "Default Cluster"}}, {"model": "assets.cluster", "pk": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "fields": {"name": "Karen Watkins", "bandwidth": "200M", "contact": "Sharon Flores", "phone": "6-(843)981-7826", "address": "Coachella02341 Hoffman Crossing", "intranet": "", "extranet": "", "date_created": "2017-12-07T08:20:52.550Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla."}}, {"model": "assets.adminuser", "pk": "26267cd3-4b22-41a6-ae76-327195767ee7", "fields": {"name": "Judith Gordon", "username": "mary", "_password": "eyJhbGciOiJIUzI1NiJ9.InNpdCI.qhSlAh3rB-ai6rdQ-gxKBSFGhk-AbwiFe_CqQxSS3hM", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "_become_pass": "", "_public_key": "", "comment": "Donec semper sapien a libero.", "date_created": "2017-12-07T08:20:52.614Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "5c986676-bfd7-4ade-8b9d-3631a7b9b50e", "fields": {"name": "Robin Ferguson", "username": "rebecca", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFsaXF1YW0i.ROd2JUuL9lh3hBqwH2HJ7tf8zsYXtJR776EsV1Jpvnw", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "_become_pass": "", "_public_key": "", "comment": "Etiam justo.", "date_created": "2017-12-07T08:20:52.598Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "5e9a3c79-4b3b-4ddc-9f12-7c99b1edf976", "fields": {"name": "Jacqueline Garza", "username": "karen", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlhY3VsaXMi._s5XG4x4ntDRnnbi38JeFne1fvF3h3f9nQJRUGL_vq0", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "_become_pass": "", "_public_key": "", "comment": "Nulla tellus.", "date_created": "2017-12-07T08:20:52.618Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "61423c66-048f-4125-9844-6a15557cd345", "fields": {"name": "Ashley West", "username": "andrea", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlZGUi.VNfxhauAGiZelQ34CO0YMVbRtgnIiH5Z-vY1jjYXhWA", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "_become_pass": "", "_public_key": "", "comment": "Suspendisse potenti.", "date_created": "2017-12-07T08:20:52.589Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "6617bb42-6281-4095-ad30-4cefa0e2231e", "fields": {"name": "Nancy Henry", "username": "barbara", "_password": "eyJhbGciOiJIUzI1NiJ9.Imx1Y3R1cyI.HgJMJ_hzKIXE6FmvnIJpfQbY4kKS5qd1c2IJ_GxPdqQ", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "_become_pass": "", "_public_key": "", "comment": "Duis consequat dui nec nisi volutpat eleifend.", "date_created": "2017-12-07T08:20:52.602Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "68d875b0-162f-4360-abcf-b10bfae3f451", "fields": {"name": "Marilyn Anderson", "username": "carolyn", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "_become_pass": "", "_public_key": "", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo.", "date_created": "2017-12-07T08:20:52.592Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "7de29b0c-15ba-4471-9c51-96c3cf6a44e7", "fields": {"name": "Kelly Day", "username": "ashley", "_password": "eyJhbGciOiJIUzI1NiJ9.Imxhb3JlZXQi.cxHpzVDWQCDMNkadZ2bP2BKaKWpahOkM4O2_-QxO4Kg", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "_become_pass": "", "_public_key": "", "comment": "Ut tellus.", "date_created": "2017-12-07T08:20:52.611Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "7f4d01fb-e8b7-471c-8cf8-ef1ea75e5bb5", "fields": {"name": "Elizabeth Lawson", "username": "nicole", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFudGUi.MEBUyQoLV79tCcbpomj9Q6JdrivWra1ZLsj5UvGmRNg", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "_become_pass": "", "_public_key": "", "comment": "Nulla nisl.", "date_created": "2017-12-07T08:20:52.605Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "992c01fa-241d-4fc5-9c2f-92ebf130fc41", "fields": {"name": "Doris Diaz", "username": "kathy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxvcmVtIg.oO5aOD2S0EIsqSl9OTTabrNpCWrG3T8nDgA_4OqrsHE", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "_become_pass": "", "_public_key": "", "comment": "Nulla nisl.", "date_created": "2017-12-07T08:20:52.609Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": "f247e2af-7e72-40ea-9ec7-15a1dd2cbbc3", "fields": {"name": "Kimberly Owens", "username": "denise", "_password": "eyJhbGciOiJIUzI1NiJ9.ImJsYW5kaXQi.ib6BRTHTJx8JP6SbdGdZc1_HRSsZHp9wj-FC4vN41ic", "_private_key": null, "become": true, "become_method": "sudo", "become_user": "root", "_become_pass": "", "_public_key": "", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "date_created": "2017-12-07T08:20:52.595Z", "created_by": "Fake"}}, {"model": "assets.systemuser", "pk": "2e83e252-b84c-4fab-b055-389d07c3acd8", "fields": {"name": "Maria Morris", "username": "phyllis", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-12-07T08:20:52.571Z", "created_by": "Fake", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla."}}, {"model": "assets.systemuser", "pk": "383481b8-6fbf-4e94-b648-0d2de1f07f77", "fields": {"name": "Michelle Nelson", "username": "diane", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVzdCI.kqn80ndZDQ0Gc7AnT112KsF2joNDpppfPsuPxS6cOwk", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-12-07T08:20:52.574Z", "created_by": "Fake", "comment": "Aenean sit amet justo."}}, {"model": "assets.systemuser", "pk": "587dbf83-2f91-4c8b-8d75-59807dfbcefd", "fields": {"name": "Shirley Grant", "username": "carol", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFlbmVhbiI.bmZGuIfjr5BAmIBuL3RLAL9zT2H1bTiHdZ9350HzSeg", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-12-07T08:20:52.568Z", "created_by": "Fake", "comment": "Sed accumsan felis."}}, {"model": "assets.systemuser", "pk": "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "fields": {"name": "Patricia Grant", "username": "phyllis", "_password": "eyJhbGciOiJIUzI1NiJ9.ImR1aSI.AYqnix4dp06WLJ645L4MAveLycKVrZSyNjJnIq0fU2g", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-12-07T08:20:52.583Z", "created_by": "Fake", "comment": "Vivamus vel nulla eget eros elementum pellentesque."}}, {"model": "assets.systemuser", "pk": "7540c5c1-6380-4928-ba1b-0eab77de20e9", "fields": {"name": "Tina Carter", "username": "martha", "_password": "eyJhbGciOiJIUzI1NiJ9.InByaW1pcyI.OAlhMPsCXTLC41MGIrALVio6iqoIwHbHFj-r4Kg4lso", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-12-07T08:20:52.577Z", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio."}}, {"model": "assets.systemuser", "pk": "9fcfed52-7476-4345-ba2f-c246e8e27522", "fields": {"name": "Ruth Armstrong", "username": "virginia", "_password": "eyJhbGciOiJIUzI1NiJ9.InV0Ig.lmRSuoHi4jv9YOiKOSfPjnCwSvHOnUh0UQcZXnEWZzo", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-12-07T08:20:52.561Z", "created_by": "Fake", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc."}}, {"model": "assets.systemuser", "pk": "a08c8830-7838-4660-9072-fd038ecb02f4", "fields": {"name": "Nicole Gardner", "username": "helen", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFtZXQi.k9EjNQL559Kyrp0ygulJ1FYqzM9PWKz9BZ7NqyeyH2o", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-12-07T08:20:52.558Z", "created_by": "Fake", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla."}}, {"model": "assets.systemuser", "pk": "a7786710-df8c-4abd-9946-f7ceceaed688", "fields": {"name": "Annie Hart", "username": "betty", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbmRpbWVudHVtIg.n0KeFDo_o3Hr1cl0P1X3CAza029GFd1GFLthcxjSCgI", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-12-07T08:20:52.564Z", "created_by": "Fake", "comment": "Mauris lacinia sapien quis libero."}}, {"model": "assets.systemuser", "pk": "c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "fields": {"name": "Linda Mendoza", "username": "judith", "_password": "eyJhbGciOiJIUzI1NiJ9.InByb2luIg.j4I43DiE0E2dweGu63szcIkK6MrpiW1Iyr8uolb1eoI", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-12-07T08:20:52.555Z", "created_by": "Fake", "comment": "Morbi vel lectus in quam fringilla rhoncus."}}, {"model": "assets.systemuser", "pk": "f056becf-3b4b-400e-898d-211d9b5a1d99", "fields": {"name": "Donna Jackson", "username": "anne", "_password": "eyJhbGciOiJIUzI1NiJ9.InJ1dHJ1bSI.e9e4AJVlXCLyu2tkGWKY-NsMt-cO_6iX0iBXXzYWWNs", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "sudo": "/sbin/ifconfig", "shell": "/bin/bash", "date_created": "2017-12-07T08:20:52.580Z", "created_by": "Fake", "comment": "Mauris ullamcorper purus sit amet nulla."}}, {"model": "assets.assetgroup", "pk": "09168b5c-4d5f-484b-8166-d9026063ab0b", "fields": {"name": "Robin Parker", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.633Z", "comment": "Vivamus vestibulum sagittis sapien.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "0e8bcd4b-2163-4c15-90c0-9789f4232ba1", "fields": {"name": "Christine Peters", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.895Z", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "1154dbfa-b520-462f-a169-a560b1598f44", "fields": {"name": "Janice Fisher", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.892Z", "comment": "Phasellus id sapien in sapien iaculis congue.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "1336c3b8-4c15-493d-a180-e0fc6ad060b2", "fields": {"name": "Janice Matthews", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.898Z", "comment": "Fusce posuere felis sed lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "13e7438c-a4ec-4c75-b09f-422c157bd76c", "fields": {"name": "Janet Roberts", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.713Z", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "18fede16-2309-40eb-a9b7-e159d1fefa41", "fields": {"name": "Laura Dean", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.679Z", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "19c435b1-bf74-4870-a16c-8ebf462fa6da", "fields": {"name": "Betty Gray", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.889Z", "comment": "Morbi ut odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "1b66354b-2a36-423e-a59c-88ac6f73c928", "fields": {"name": "Teresa Fernandez", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.673Z", "comment": "Donec vitae nisi.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "1dd09ace-5b53-4a6e-90a7-fbb9c718d0f5", "fields": {"name": "Wanda Gomez", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.691Z", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "1e5c7012-46e5-4c71-b95b-911b24f63a13", "fields": {"name": "Stephanie Ruiz", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.743Z", "comment": "Proin risus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "1ed242df-3e7b-459a-876b-3e9be645ef70", "fields": {"name": "Wanda Parker", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.657Z", "comment": "Mauris sit amet eros.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "1f128730-d0eb-4e96-b144-f8425bc226dc", "fields": {"name": "Anna Perkins", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.855Z", "comment": "Praesent id massa id nisl venenatis lacinia.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "1f5f2fac-3463-4215-8290-ce84ae8809ac", "fields": {"name": "Carol Vasquez", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.811Z", "comment": "Sed vel enim sit amet nunc viverra dapibus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "23714c28-4186-413a-b1c4-6f688c2ec85c", "fields": {"name": "Laura Olson", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.760Z", "comment": "Integer tincidunt ante vel ipsum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "262f8fd6-a9e5-4687-b1bd-e6983fffe60f", "fields": {"name": "Shirley Watkins", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.876Z", "comment": "Donec dapibus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "29ad2563-c5eb-4963-9314-d1fc6a49f51a", "fields": {"name": "Michelle Perry", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.864Z", "comment": "Quisque ut erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "2da084a8-bdd6-42ee-a39e-9d78c7cf0535", "fields": {"name": "Rebecca Vasquez", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.825Z", "comment": "Sed ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "33449baf-3516-4ba0-a9f5-b878ac1da501", "fields": {"name": "Dorothy Gonzales", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.747Z", "comment": "Integer ac neque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "37f2a85d-be6f-498e-9847-3a071fb22544", "fields": {"name": "Shirley Stephens", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.651Z", "comment": "Curabitur gravida nisi at nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "3f6382dc-ae61-4a93-9e5e-1e41dff4b6e2", "fields": {"name": "Christine Kennedy", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.841Z", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "4511fc92-9c49-4806-94b7-ea21ce11217d", "fields": {"name": "Phyllis Butler", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.638Z", "comment": "Aenean auctor gravida sem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "4a24f49f-2d90-4474-bb4a-93295db257ce", "fields": {"name": "Betty Murray", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.844Z", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "4a437dbf-ae1a-47e8-8e21-0687891a479b", "fields": {"name": "Catherine Hawkins", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.755Z", "comment": "Sed ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "4c145ce1-c3e3-441a-a86d-69df17b7101f", "fields": {"name": "Sharon Mcdonald", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.771Z", "comment": "Pellentesque eget nunc.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "4dd7deb8-18df-4c9a-9085-0abb84af419c", "fields": {"name": "Anna Elliott", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.881Z", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "4ff4976f-2364-454b-907e-6e1be1e09bd9", "fields": {"name": "Lois Stevens", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.716Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "50048717-231c-47d0-94c1-801f098f6814", "fields": {"name": "Julia Hart", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.878Z", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "51d39285-f6c6-467b-8d6a-089c05c9670e", "fields": {"name": "Angela Diaz", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.702Z", "comment": "Pellentesque viverra pede ac diam.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "544592b9-052b-4169-afd6-bc1cb722d8a3", "fields": {"name": "Mary Montgomery", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.853Z", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "5503bc69-fc4d-4e34-9ef9-b780a654576c", "fields": {"name": "Irene Lawrence", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.688Z", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "556852cc-b5b6-41df-b24b-4d443de4dfdf", "fields": {"name": "Emily Green", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.665Z", "comment": "Duis bibendum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "55c19958-5101-4dbc-94c7-9e1512e4c4a2", "fields": {"name": "Annie Wood", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.774Z", "comment": "Etiam pretium iaculis justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "5b117b17-c720-4c86-bd8f-ddcdf770515f", "fields": {"name": "Helen Hicks", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.794Z", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "5e3cc371-a2d1-49cb-af5b-56cf54e9912f", "fields": {"name": "Teresa Fowler", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.705Z", "comment": "Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "628f77e6-4410-4779-88a6-2f622a92a784", "fields": {"name": "Frances Foster", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.737Z", "comment": "Nullam porttitor lacus at turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "62a70279-caef-49bb-8af9-14d9c15ea855", "fields": {"name": "Anna Richardson", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.836Z", "comment": "Phasellus sit amet erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "67be35c1-440a-41ef-aa33-20c17ba1ecb6", "fields": {"name": "Debra Mcdonald", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.819Z", "comment": "Curabitur in libero ut massa volutpat convallis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "68aea94a-2a82-4a6a-87f4-1e280e1bbbe4", "fields": {"name": "Donna Hicks", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.676Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "6a158957-3ab2-4af6-8ba0-2b30e22428ad", "fields": {"name": "Joan Brown", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.684Z", "comment": "Sed ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "6c64d761-87e4-4277-8210-f63bdf6641c7", "fields": {"name": "Louise Jenkins", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.631Z", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "6e4f95c0-3aba-4301-bfe2-e6dc9a370048", "fields": {"name": "Tammy Mccoy", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.696Z", "comment": "Maecenas ut massa quis augue luctus tincidunt.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "6ef8cd9a-1995-4ff8-a83a-907d97b67762", "fields": {"name": "Jennifer Lynch", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.721Z", "comment": "Integer a nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "6fb8cec4-ed7a-40ae-9c13-36e514d05ce7", "fields": {"name": "Janice Schmidt", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.708Z", "comment": "Praesent id massa id nisl venenatis lacinia.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "71a93e4a-7e0a-49b5-9d91-99c0d45ac2a9", "fields": {"name": "Rose Gardner", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.791Z", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "7a313985-9460-41df-bd86-7f3c19ed85fa", "fields": {"name": "Sharon Young", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.662Z", "comment": "Vivamus vel nulla eget eros elementum pellentesque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "7a9da454-b9bb-46e1-bcf7-05232f263138", "fields": {"name": "Jessica Griffin", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.867Z", "comment": "Donec semper sapien a libero.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "7f472514-ded2-4a09-8ff0-b9b91f85ca8e", "fields": {"name": "Cheryl Rodriguez", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.636Z", "comment": "Cras non velit nec nisi vulputate nonummy.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "7f99a303-baf6-4a3a-b2d5-38b42083c6ed", "fields": {"name": "Cheryl Lane", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.777Z", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "7fa66d80-3134-483b-add5-3082d5fc2829", "fields": {"name": "Marilyn Castillo", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.681Z", "comment": "Praesent blandit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "8182f741-e273-49e3-b0cc-c531391da513", "fields": {"name": "Donna Rogers", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.769Z", "comment": "Ut at dolor quis odio consequat varius.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "81f2bad8-24ab-4f14-81c9-1c0b11e2e158", "fields": {"name": "Anne Montgomery", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.625Z", "comment": "Maecenas pulvinar lobortis est.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "822af801-f8ab-4980-9c50-9fbe3ef66e02", "fields": {"name": "Helen Nguyen", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.847Z", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "83810313-256d-4a42-9be7-b8254d37111f", "fields": {"name": "Sharon Gutierrez", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.858Z", "comment": "Pellentesque viverra pede ac diam.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "85145b4d-07b2-47e6-bb0c-bd723e117724", "fields": {"name": "Joyce Ellis", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.693Z", "comment": "Mauris ullamcorper purus sit amet nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "8738ff4e-64a3-419d-8fa0-b093640dee59", "fields": {"name": "Anna Perez", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.622Z", "comment": "Pellentesque at nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "87a4a0fb-7f42-49f2-add9-dac68c528586", "fields": {"name": "Kelly Jacobs", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.814Z", "comment": "Praesent id massa id nisl venenatis lacinia.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "881a0460-7989-42af-a588-957efe57fb8e", "fields": {"name": "Default", "created_by": "", "date_created": "2017-12-07T08:20:09.610Z", "comment": "Default asset group", "system_users": []}}, {"model": "assets.assetgroup", "pk": "8c045cf6-befa-40f9-8f86-84f8c4b0aa30", "fields": {"name": "Judith Boyd", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.884Z", "comment": "Nulla tellus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "8c963f9a-52b0-47ce-8d56-41d8810513f2", "fields": {"name": "Nancy Watkins", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.850Z", "comment": "Donec dapibus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "8fb62b59-6cae-499c-853d-d7d4c0e91a57", "fields": {"name": "Beverly Collins", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.649Z", "comment": "Fusce posuere felis sed lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "902ecbb6-740e-4784-98e4-6f44bbb67cc9", "fields": {"name": "Joan Meyer", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.718Z", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "90f583be-21d6-43b0-af42-6a6d22b4e15f", "fields": {"name": "Jane Phillips", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.758Z", "comment": "Fusce posuere felis sed lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "913f9232-bd66-40f8-80cf-21593dddb59b", "fields": {"name": "Helen Lewis", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.822Z", "comment": "Curabitur gravida nisi at nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "9164d22e-d5a4-4584-a073-5e8208d79d28", "fields": {"name": "Ruth Montgomery", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.763Z", "comment": "Fusce posuere felis sed lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "92cbd38e-f65b-4a3b-8956-5d53d00cc1ab", "fields": {"name": "Sarah Thompson", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.830Z", "comment": "Praesent lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "92d63bd2-4797-4789-a2dc-83aa9f9c9276", "fields": {"name": "Elizabeth Baker", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.861Z", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "94707978-527b-4782-8451-519620c3ce38", "fields": {"name": "Carolyn Murray", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.668Z", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "a0cc880c-2d10-47d9-8a9b-b7297346c582", "fields": {"name": "Diane Larson", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.780Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "a12acc55-4021-4df9-b591-5a03245a5208", "fields": {"name": "Kathryn Smith", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.732Z", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "a274e6ce-b2d0-4ffe-a22e-6cdc4d3743be", "fields": {"name": "Beverly Carter", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.646Z", "comment": "Maecenas pulvinar lobortis est.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "a3d348d7-2723-4fd2-bb63-18215b492053", "fields": {"name": "Rachel George", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.788Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "a5a13b13-8df3-4141-a7a7-89e04a95a690", "fields": {"name": "Evelyn Ruiz", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.752Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "a630b6ff-a7bb-4fb2-8073-75322865320b", "fields": {"name": "Louise Powell", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.671Z", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "a851f4f0-532b-4d1a-a610-5b02eb0027af", "fields": {"name": "Diana Cooper", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.839Z", "comment": "Sed ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "aff61d74-9aa1-4f90-af38-fd0f4985c9d4", "fields": {"name": "Diana Campbell", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.873Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "ba8ebaa3-499d-4afe-9e29-a3069b5470df", "fields": {"name": "Margaret Harper", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.735Z", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "bd317a7f-4ba8-4c6c-9ce2-5e39a24817fe", "fields": {"name": "Rachel Carr", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.729Z", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "c778d607-59ba-4a12-a464-fc9519316ed5", "fields": {"name": "Kelly Hughes", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.710Z", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "c9a5c3b3-caf2-40c6-9282-83800a4a72c9", "fields": {"name": "Jane Peters", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.699Z", "comment": "Duis bibendum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "cc5331db-4a80-45d9-88b9-62b7c164bcfd", "fields": {"name": "Gloria Richards", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.799Z", "comment": "Sed sagittis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "cc5e77a5-ae3f-4410-b6af-956980dab38f", "fields": {"name": "Sharon Greene", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.802Z", "comment": "In sagittis dui vel nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "ce263cf4-3210-42fa-8869-06783f1e8973", "fields": {"name": "Dorothy Hunt", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.641Z", "comment": "Cras in purus eu magna vulputate luctus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "d2adba2e-73ac-4036-871e-db4b4c2a1a70", "fields": {"name": "Judy Wilson", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.828Z", "comment": "Duis aliquam convallis nunc.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "d5d99362-f06d-408f-aaba-4f657c63ceee", "fields": {"name": "Diane Roberts", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.808Z", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "d7ba405e-5cc8-40e2-98c5-d2cdbfb2c1bb", "fields": {"name": "Elizabeth Lopez", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.796Z", "comment": "Maecenas rhoncus aliquam lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "d97cbcde-d878-4787-be9f-737e6950f9b0", "fields": {"name": "Mildred Armstrong", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.805Z", "comment": "Donec dapibus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "dec1d0de-875a-4930-b4c8-f17f60f9af2f", "fields": {"name": "Marilyn Payne", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.782Z", "comment": "Nulla ut erat id mauris vulputate elementum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "e11fcf30-c50b-4df6-8457-736208b1a3a1", "fields": {"name": "Susan Foster", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.785Z", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "e3063d5f-25a8-402a-9b46-51cfb8235db6", "fields": {"name": "Doris Griffin", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.628Z", "comment": "Cras pellentesque volutpat dui.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "e46c7191-8f2a-4c01-be61-90445d409c47", "fields": {"name": "Alice Thomas", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.659Z", "comment": "Mauris ullamcorper purus sit amet nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "e919d5b9-f718-4205-b16c-55a5b45f2e50", "fields": {"name": "Jennifer Gordon", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.750Z", "comment": "Phasellus in felis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "e9c034d2-9be0-49b2-a0cf-730f7270819e", "fields": {"name": "Dorothy Boyd", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.766Z", "comment": "Pellentesque at nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "ef8818e7-1e9c-4868-9d9a-7985618ae897", "fields": {"name": "Joyce Fields", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.816Z", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "f5e7a82d-95a1-494d-91e0-8a56608b8c8e", "fields": {"name": "Ruth Woods", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.726Z", "comment": "Mauris ullamcorper purus sit amet nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "f5f374b4-5784-412f-b83c-60f42b3ed2b1", "fields": {"name": "Jane Lawson", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.833Z", "comment": "Suspendisse ornare consequat lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "fa887c60-4c10-426c-ad53-f1724c012af5", "fields": {"name": "Rebecca Long", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.643Z", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "fc7fc3d1-903e-4109-a712-26e0c8936dfa", "fields": {"name": "Lisa Welch", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.724Z", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "fd6b95d7-57ae-4351-b37b-067772887179", "fields": {"name": "Bonnie Brooks", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.870Z", "comment": "In quis justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "ff36e4da-5156-48a1-9bec-f54b107cfa02", "fields": {"name": "Annie Dunn", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.654Z", "comment": "Donec vitae nisi.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "ff83212a-498d-49ce-abbc-22d13119871c", "fields": {"name": "Patricia Mitchell", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.740Z", "comment": "Aliquam erat volutpat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": "fffe1e01-b3d8-43e6-a92c-a651eda567ec", "fields": {"name": "Andrea Chavez", "created_by": "Fake", "date_created": "2017-12-07T08:20:52.887Z", "comment": "Phasellus in felis.", "system_users": []}}, {"model": "assets.asset", "pk": "028cf88c-a5af-42f5-921f-ff7dee540ba1", "fields": {"ip": "60.60.60.60", "hostname": "virginia68", "port": 22, "admin_user": "6617bb42-6281-4095-ad30-4cefa0e2231e", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.881Z", "comment": "", "groups": ["94707978-527b-4782-8451-519620c3ce38", "881a0460-7989-42af-a588-957efe57fb8e", "902ecbb6-740e-4784-98e4-6f44bbb67cc9"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "9fcfed52-7476-4345-ba2f-c246e8e27522", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "02ebd0a1-6177-43ab-9c6c-e0cb649d722d", "fields": {"ip": "1.1.1.1", "hostname": "mildred89", "port": 22, "admin_user": "f247e2af-7e72-40ea-9ec7-15a1dd2cbbc3", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:52.942Z", "comment": "", "groups": ["67be35c1-440a-41ef-aa33-20c17ba1ecb6", "544592b9-052b-4169-afd6-bc1cb722d8a3", "262f8fd6-a9e5-4687-b1bd-e6983fffe60f"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "03beb4e6-4632-4284-b1f0-b6f61c1a12c4", "fields": {"ip": "56.56.56.56", "hostname": "louise94", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.763Z", "comment": "", "groups": ["a5a13b13-8df3-4141-a7a7-89e04a95a690", "f5f374b4-5784-412f-b83c-60f42b3ed2b1", "50048717-231c-47d0-94c1-801f098f6814"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "06d1d681-b84d-4018-9db9-3b38a78a18f8", "fields": {"ip": "72.72.72.72", "hostname": "marie87", "port": 22, "admin_user": "7f4d01fb-e8b7-471c-8cf8-ef1ea75e5bb5", "cluster": "6a75b014-2fb3-494c-910d-fd6f39a5e409", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.314Z", "comment": "", "groups": ["881a0460-7989-42af-a588-957efe57fb8e", "a0cc880c-2d10-47d9-8a9b-b7297346c582", "f5e7a82d-95a1-494d-91e0-8a56608b8c8e"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "0a5a0a24-e2a9-4618-9abc-98273fd99d03", "fields": {"ip": "6.6.6.6", "hostname": "carolyn66", "port": 22, "admin_user": "6617bb42-6281-4095-ad30-4cefa0e2231e", "cluster": "6a75b014-2fb3-494c-910d-fd6f39a5e409", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.108Z", "comment": "", "groups": ["6a158957-3ab2-4af6-8ba0-2b30e22428ad", "c778d607-59ba-4a12-a464-fc9519316ed5", "e11fcf30-c50b-4df6-8457-736208b1a3a1"], "system_users": ["383481b8-6fbf-4e94-b648-0d2de1f07f77", "9fcfed52-7476-4345-ba2f-c246e8e27522", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "0ba05a7d-9530-4b49-ab19-9a8676e401df", "fields": {"ip": "31.31.31.31", "hostname": "maria65", "port": 22, "admin_user": "992c01fa-241d-4fc5-9c2f-92ebf130fc41", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.908Z", "comment": "", "groups": ["c9a5c3b3-caf2-40c6-9282-83800a4a72c9", "1154dbfa-b520-462f-a169-a560b1598f44", "4ff4976f-2364-454b-907e-6e1be1e09bd9"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "10eb8298-be8c-4127-a121-3e008f38dfc7", "fields": {"ip": "76.76.76.76", "hostname": "deborah88", "port": 22, "admin_user": "61423c66-048f-4125-9844-6a15557cd345", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.460Z", "comment": "", "groups": ["c9a5c3b3-caf2-40c6-9282-83800a4a72c9", "7a9da454-b9bb-46e1-bcf7-05232f263138"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "a08c8830-7838-4660-9072-fd038ecb02f4", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a"]}}, {"model": "assets.asset", "pk": "1247e3b4-ba60-4182-888a-52a671285a7c", "fields": {"ip": "94.94.94.94", "hostname": "joyce79", "port": 22, "admin_user": "f247e2af-7e72-40ea-9ec7-15a1dd2cbbc3", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:56.152Z", "comment": "", "groups": ["ff36e4da-5156-48a1-9bec-f54b107cfa02", "5b117b17-c720-4c86-bd8f-ddcdf770515f", "1ed242df-3e7b-459a-876b-3e9be645ef70"], "system_users": ["383481b8-6fbf-4e94-b648-0d2de1f07f77", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "130abdb5-6ad0-44ae-a3d3-e0f6046d829a", "fields": {"ip": "83.83.83.83", "hostname": "anna85", "port": 22, "admin_user": "7f4d01fb-e8b7-471c-8cf8-ef1ea75e5bb5", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.731Z", "comment": "", "groups": ["68aea94a-2a82-4a6a-87f4-1e280e1bbbe4", "13e7438c-a4ec-4c75-b09f-422c157bd76c", "29ad2563-c5eb-4963-9314-d1fc6a49f51a"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "15ad4725-8850-422f-94d0-019358091a72", "fields": {"ip": "88.88.88.88", "hostname": "norma92", "port": 22, "admin_user": "7de29b0c-15ba-4471-9c51-96c3cf6a44e7", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.921Z", "comment": "", "groups": ["62a70279-caef-49bb-8af9-14d9c15ea855", "6ef8cd9a-1995-4ff8-a83a-907d97b67762", "4ff4976f-2364-454b-907e-6e1be1e09bd9"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "a08c8830-7838-4660-9072-fd038ecb02f4", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a"]}}, {"model": "assets.asset", "pk": "168ce0e9-1e32-4b6e-9583-5db54f730edf", "fields": {"ip": "44.44.44.44", "hostname": "amy93", "port": 22, "admin_user": "5c986676-bfd7-4ade-8b9d-3631a7b9b50e", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.328Z", "comment": "", "groups": ["19c435b1-bf74-4870-a16c-8ebf462fa6da", "fa887c60-4c10-426c-ad53-f1724c012af5", "4c145ce1-c3e3-441a-a86d-69df17b7101f"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "2e83e252-b84c-4fab-b055-389d07c3acd8", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "17788047-7e40-4669-9d8a-9b049be9589a", "fields": {"ip": "47.47.47.47", "hostname": "jessica65", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.438Z", "comment": "", "groups": ["881a0460-7989-42af-a588-957efe57fb8e", "556852cc-b5b6-41df-b24b-4d443de4dfdf", "71a93e4a-7e0a-49b5-9d91-99c0d45ac2a9"], "system_users": ["9fcfed52-7476-4345-ba2f-c246e8e27522", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "18cd2ed4-05c9-4745-8dc8-953ef6ffb40f", "fields": {"ip": "58.58.58.58", "hostname": "michelle78", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.809Z", "comment": "", "groups": ["81f2bad8-24ab-4f14-81c9-1c0b11e2e158", "aff61d74-9aa1-4f90-af38-fd0f4985c9d4", "bd317a7f-4ba8-4c6c-9ce2-5e39a24817fe"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "193ffb60-7691-4f39-a276-52ce2b2402ad", "fields": {"ip": "3.3.3.3", "hostname": "jennifer74", "port": 22, "admin_user": "6617bb42-6281-4095-ad30-4cefa0e2231e", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.007Z", "comment": "", "groups": ["aff61d74-9aa1-4f90-af38-fd0f4985c9d4", "e3063d5f-25a8-402a-9b46-51cfb8235db6", "262f8fd6-a9e5-4687-b1bd-e6983fffe60f"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a"]}}, {"model": "assets.asset", "pk": "19906beb-c3b6-4f6f-b845-0b181aacc9a6", "fields": {"ip": "50.50.50.50", "hostname": "janet75", "port": 22, "admin_user": "992c01fa-241d-4fc5-9c2f-92ebf130fc41", "cluster": "6a75b014-2fb3-494c-910d-fd6f39a5e409", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.542Z", "comment": "", "groups": ["33449baf-3516-4ba0-a9f5-b878ac1da501", "92d63bd2-4797-4789-a2dc-83aa9f9c9276", "87a4a0fb-7f42-49f2-add9-dac68c528586"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "1b9d02ed-0f13-4b5a-84de-d0ea448442e4", "fields": {"ip": "96.96.96.96", "hostname": "donna78", "port": 22, "admin_user": "f247e2af-7e72-40ea-9ec7-15a1dd2cbbc3", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:56.228Z", "comment": "", "groups": ["4a24f49f-2d90-4474-bb4a-93295db257ce", "d7ba405e-5cc8-40e2-98c5-d2cdbfb2c1bb", "bd317a7f-4ba8-4c6c-9ce2-5e39a24817fe"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "20718d09-98ab-4ed4-8d85-207bd46c852c", "fields": {"ip": "16.16.16.16", "hostname": "janet89", "port": 22, "admin_user": "5c986676-bfd7-4ade-8b9d-3631a7b9b50e", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.424Z", "comment": "", "groups": ["8738ff4e-64a3-419d-8fa0-b093640dee59", "e3063d5f-25a8-402a-9b46-51cfb8235db6", "4c145ce1-c3e3-441a-a86d-69df17b7101f"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "a08c8830-7838-4660-9072-fd038ecb02f4", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "22d80fa1-1d92-45a7-b415-d8b389ac2888", "fields": {"ip": "0.0.0.0", "hostname": "michelle69", "port": 22, "admin_user": "6617bb42-6281-4095-ad30-4cefa0e2231e", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:52.906Z", "comment": "", "groups": ["e9c034d2-9be0-49b2-a0cf-730f7270819e", "2da084a8-bdd6-42ee-a39e-9d78c7cf0535", "5e3cc371-a2d1-49cb-af5b-56cf54e9912f"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "2387841b-9306-4d56-807f-849671e0e1c4", "fields": {"ip": "89.89.89.89", "hostname": "anne71", "port": 22, "admin_user": "992c01fa-241d-4fc5-9c2f-92ebf130fc41", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.960Z", "comment": "", "groups": ["7f99a303-baf6-4a3a-b2d5-38b42083c6ed", "6a158957-3ab2-4af6-8ba0-2b30e22428ad", "ef8818e7-1e9c-4868-9d9a-7985618ae897"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "a08c8830-7838-4660-9072-fd038ecb02f4"]}}, {"model": "assets.asset", "pk": "23e98146-dab9-47bf-80f2-88ea15cb6224", "fields": {"ip": "2.2.2.2", "hostname": "jennifer83", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:52.975Z", "comment": "", "groups": ["1f128730-d0eb-4e96-b144-f8425bc226dc", "ce263cf4-3210-42fa-8869-06783f1e8973", "a12acc55-4021-4df9-b591-5a03245a5208"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a"]}}, {"model": "assets.asset", "pk": "258f301a-207b-459e-9f3e-277417ff428a", "fields": {"ip": "61.61.61.61", "hostname": "catherine65", "port": 22, "admin_user": "5c986676-bfd7-4ade-8b9d-3631a7b9b50e", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.915Z", "comment": "", "groups": ["19c435b1-bf74-4870-a16c-8ebf462fa6da", "1336c3b8-4c15-493d-a180-e0fc6ad060b2"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "2ef30092-fb45-49e7-bae1-e105928c46ed", "fields": {"ip": "48.48.48.48", "hostname": "patricia69", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.473Z", "comment": "", "groups": ["8fb62b59-6cae-499c-853d-d7d4c0e91a57", "6a158957-3ab2-4af6-8ba0-2b30e22428ad", "4c145ce1-c3e3-441a-a86d-69df17b7101f"], "system_users": ["a08c8830-7838-4660-9072-fd038ecb02f4", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a"]}}, {"model": "assets.asset", "pk": "2f9ab896-4cf1-41ee-9601-d13d2d6cf254", "fields": {"ip": "93.93.93.93", "hostname": "theresa77", "port": 22, "admin_user": "6617bb42-6281-4095-ad30-4cefa0e2231e", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:56.115Z", "comment": "", "groups": ["92d63bd2-4797-4789-a2dc-83aa9f9c9276", "87a4a0fb-7f42-49f2-add9-dac68c528586", "262f8fd6-a9e5-4687-b1bd-e6983fffe60f"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "32c17a26-2cd7-481f-b1e6-b4f6483b900c", "fields": {"ip": "28.28.28.28", "hostname": "bonnie81", "port": 22, "admin_user": "26267cd3-4b22-41a6-ae76-327195767ee7", "cluster": "6a75b014-2fb3-494c-910d-fd6f39a5e409", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.813Z", "comment": "", "groups": ["8182f741-e273-49e3-b0cc-c531391da513", "37f2a85d-be6f-498e-9847-3a071fb22544", "6e4f95c0-3aba-4301-bfe2-e6dc9a370048"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "9fcfed52-7476-4345-ba2f-c246e8e27522", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "3976c985-e291-4c1c-8a9c-d162195eafc9", "fields": {"ip": "66.66.66.66", "hostname": "annie92", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.101Z", "comment": "", "groups": ["ff36e4da-5156-48a1-9bec-f54b107cfa02", "a12acc55-4021-4df9-b591-5a03245a5208", "c778d607-59ba-4a12-a464-fc9519316ed5"], "system_users": ["383481b8-6fbf-4e94-b648-0d2de1f07f77", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "397ef248-cdc4-4db4-93c7-7f049cf68182", "fields": {"ip": "85.85.85.85", "hostname": "annie69", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.805Z", "comment": "", "groups": ["92d63bd2-4797-4789-a2dc-83aa9f9c9276", "dec1d0de-875a-4930-b4c8-f17f60f9af2f", "9164d22e-d5a4-4584-a073-5e8208d79d28"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "f056becf-3b4b-400e-898d-211d9b5a1d99", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "3a5f05ad-be10-4ecd-bf79-ad4b9f5adddd", "fields": {"ip": "87.87.87.87", "hostname": "michelle68", "port": 22, "admin_user": "5e9a3c79-4b3b-4ddc-9f12-7c99b1edf976", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.880Z", "comment": "", "groups": ["7f472514-ded2-4a09-8ff0-b9b91f85ca8e", "f5e7a82d-95a1-494d-91e0-8a56608b8c8e", "4c145ce1-c3e3-441a-a86d-69df17b7101f"], "system_users": ["6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "587dbf83-2f91-4c8b-8d75-59807dfbcefd", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "3a6561c6-2b3a-4ad8-b17d-b95668af9b61", "fields": {"ip": "54.54.54.54", "hostname": "patricia71", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.686Z", "comment": "", "groups": ["556852cc-b5b6-41df-b24b-4d443de4dfdf", "2da084a8-bdd6-42ee-a39e-9d78c7cf0535", "f5e7a82d-95a1-494d-91e0-8a56608b8c8e"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "587dbf83-2f91-4c8b-8d75-59807dfbcefd", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "3eccfe2a-f18b-4f67-95e4-cbc5bb12f124", "fields": {"ip": "82.82.82.82", "hostname": "ann84", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.695Z", "comment": "", "groups": ["913f9232-bd66-40f8-80cf-21593dddb59b", "c9a5c3b3-caf2-40c6-9282-83800a4a72c9", "90f583be-21d6-43b0-af42-6a6d22b4e15f"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "3f65b084-1c8d-45ba-a9b3-3c825a3833f5", "fields": {"ip": "15.15.15.15", "hostname": "wanda80", "port": 22, "admin_user": "992c01fa-241d-4fc5-9c2f-92ebf130fc41", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.392Z", "comment": "", "groups": ["1f128730-d0eb-4e96-b144-f8425bc226dc", "19c435b1-bf74-4870-a16c-8ebf462fa6da", "4511fc92-9c49-4806-94b7-ea21ce11217d"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "2e83e252-b84c-4fab-b055-389d07c3acd8"]}}, {"model": "assets.asset", "pk": "3ff86a95-7afd-4ff1-ad1d-5ceee9d34153", "fields": {"ip": "8.8.8.8", "hostname": "phyllis79", "port": 22, "admin_user": "6617bb42-6281-4095-ad30-4cefa0e2231e", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.175Z", "comment": "", "groups": ["628f77e6-4410-4779-88a6-2f622a92a784", "6ef8cd9a-1995-4ff8-a83a-907d97b67762", "1b66354b-2a36-423e-a59c-88ac6f73c928"], "system_users": ["383481b8-6fbf-4e94-b648-0d2de1f07f77", "9fcfed52-7476-4345-ba2f-c246e8e27522", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "428238fb-e317-4bde-b88b-f1d4f80beba7", "fields": {"ip": "51.51.51.51", "hostname": "janice75", "port": 22, "admin_user": "26267cd3-4b22-41a6-ae76-327195767ee7", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.577Z", "comment": "", "groups": ["1f5f2fac-3463-4215-8290-ce84ae8809ac", "5b117b17-c720-4c86-bd8f-ddcdf770515f", "bd317a7f-4ba8-4c6c-9ce2-5e39a24817fe"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "2e83e252-b84c-4fab-b055-389d07c3acd8", "a08c8830-7838-4660-9072-fd038ecb02f4"]}}, {"model": "assets.asset", "pk": "4793dd99-42c8-42a0-87d9-614641e3f334", "fields": {"ip": "18.18.18.18", "hostname": "bonnie93", "port": 22, "admin_user": "26267cd3-4b22-41a6-ae76-327195767ee7", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.488Z", "comment": "", "groups": ["8182f741-e273-49e3-b0cc-c531391da513", "4ff4976f-2364-454b-907e-6e1be1e09bd9", "4511fc92-9c49-4806-94b7-ea21ce11217d"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "a08c8830-7838-4660-9072-fd038ecb02f4"]}}, {"model": "assets.asset", "pk": "49738cda-9467-48dd-84f4-7866c28b051c", "fields": {"ip": "11.11.11.11", "hostname": "donna73", "port": 22, "admin_user": "f247e2af-7e72-40ea-9ec7-15a1dd2cbbc3", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.268Z", "comment": "", "groups": ["4a24f49f-2d90-4474-bb4a-93295db257ce", "e919d5b9-f718-4205-b16c-55a5b45f2e50", "d97cbcde-d878-4787-be9f-737e6950f9b0"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "a08c8830-7838-4660-9072-fd038ecb02f4", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "4d7a9aeb-6614-4d9f-afba-f331aa54185a", "fields": {"ip": "17.17.17.17", "hostname": "judy83", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.456Z", "comment": "", "groups": ["8738ff4e-64a3-419d-8fa0-b093640dee59", "33449baf-3516-4ba0-a9f5-b878ac1da501", "c9a5c3b3-caf2-40c6-9282-83800a4a72c9"], "system_users": ["a08c8830-7838-4660-9072-fd038ecb02f4", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a"]}}, {"model": "assets.asset", "pk": "5613ee31-0542-41f7-b117-92bc049b7a4d", "fields": {"ip": "73.73.73.73", "hostname": "joan77", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.347Z", "comment": "", "groups": ["51d39285-f6c6-467b-8d6a-089c05c9670e", "4dd7deb8-18df-4c9a-9085-0abb84af419c", "55c19958-5101-4dbc-94c7-9e1512e4c4a2"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "587ca351-2a78-489d-bc18-2b287d7ceff6", "fields": {"ip": "27.27.27.27", "hostname": "anna69", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.780Z", "comment": "", "groups": ["8c045cf6-befa-40f9-8f86-84f8c4b0aa30", "6c64d761-87e4-4277-8210-f63bdf6641c7", "9164d22e-d5a4-4584-a073-5e8208d79d28"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "59749e11-2375-4adb-8728-fe96637623d3", "fields": {"ip": "38.38.38.38", "hostname": "denise93", "port": 22, "admin_user": "61423c66-048f-4125-9844-6a15557cd345", "cluster": "6a75b014-2fb3-494c-910d-fd6f39a5e409", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.131Z", "comment": "", "groups": ["cc5331db-4a80-45d9-88b9-62b7c164bcfd", "23714c28-4186-413a-b1c4-6f688c2ec85c", "544592b9-052b-4169-afd6-bc1cb722d8a3"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "5d06eb4a-c175-4dd3-a18a-c7098ed39de1", "fields": {"ip": "7.7.7.7", "hostname": "kimberly73", "port": 22, "admin_user": "61423c66-048f-4125-9844-6a15557cd345", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.140Z", "comment": "", "groups": ["a274e6ce-b2d0-4ffe-a22e-6cdc4d3743be", "8fb62b59-6cae-499c-853d-d7d4c0e91a57", "1e5c7012-46e5-4c71-b95b-911b24f63a13"], "system_users": ["587dbf83-2f91-4c8b-8d75-59807dfbcefd", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "5fd6a42a-8226-4e0d-8dd8-585052b28a4b", "fields": {"ip": "81.81.81.81", "hostname": "lori85", "port": 22, "admin_user": "6617bb42-6281-4095-ad30-4cefa0e2231e", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.657Z", "comment": "", "groups": ["ff36e4da-5156-48a1-9bec-f54b107cfa02", "4511fc92-9c49-4806-94b7-ea21ce11217d", "262f8fd6-a9e5-4687-b1bd-e6983fffe60f"], "system_users": ["6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "9fcfed52-7476-4345-ba2f-c246e8e27522", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "603e0f06-4453-42bb-ae58-a2e1193eeb98", "fields": {"ip": "24.24.24.24", "hostname": "marilyn79", "port": 22, "admin_user": "f247e2af-7e72-40ea-9ec7-15a1dd2cbbc3", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.681Z", "comment": "", "groups": ["0e8bcd4b-2163-4c15-90c0-9789f4232ba1", "9164d22e-d5a4-4584-a073-5e8208d79d28", "f5e7a82d-95a1-494d-91e0-8a56608b8c8e"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "617cf548-a72e-459c-bc83-7acc4da1f32d", "fields": {"ip": "21.21.21.21", "hostname": "frances77", "port": 22, "admin_user": "992c01fa-241d-4fc5-9c2f-92ebf130fc41", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.586Z", "comment": "", "groups": ["8fb62b59-6cae-499c-853d-d7d4c0e91a57", "1f5f2fac-3463-4215-8290-ce84ae8809ac", "544592b9-052b-4169-afd6-bc1cb722d8a3"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "694215ef-23b3-4b90-899f-3af1aaed82fd", "fields": {"ip": "79.79.79.79", "hostname": "gloria72", "port": 22, "admin_user": "26267cd3-4b22-41a6-ae76-327195767ee7", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.581Z", "comment": "", "groups": ["8fb62b59-6cae-499c-853d-d7d4c0e91a57", "92d63bd2-4797-4789-a2dc-83aa9f9c9276", "a630b6ff-a7bb-4fb2-8073-75322865320b"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "f056becf-3b4b-400e-898d-211d9b5a1d99", "a08c8830-7838-4660-9072-fd038ecb02f4"]}}, {"model": "assets.asset", "pk": "6f6e3ba3-db28-4f9f-b403-95075b0aff40", "fields": {"ip": "97.97.97.97", "hostname": "andrew81", "port": 22, "admin_user": "26267cd3-4b22-41a6-ae76-327195767ee7", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:56.270Z", "comment": "", "groups": ["aff61d74-9aa1-4f90-af38-fd0f4985c9d4", "6fb8cec4-ed7a-40ae-9c13-36e514d05ce7", "5e3cc371-a2d1-49cb-af5b-56cf54e9912f"], "system_users": ["a08c8830-7838-4660-9072-fd038ecb02f4", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "76f0d5a6-c66c-4436-9dee-c82c0f3f91f6", "fields": {"ip": "29.29.29.29", "hostname": "ruby76", "port": 22, "admin_user": "992c01fa-241d-4fc5-9c2f-92ebf130fc41", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.845Z", "comment": "", "groups": ["8fb62b59-6cae-499c-853d-d7d4c0e91a57", "71a93e4a-7e0a-49b5-9d91-99c0d45ac2a9", "5e3cc371-a2d1-49cb-af5b-56cf54e9912f"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a"]}}, {"model": "assets.asset", "pk": "7b6f3a7f-13e6-4aa0-94e0-de9d2128bd4f", "fields": {"ip": "65.65.65.65", "hostname": "kathleen73", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "6a75b014-2fb3-494c-910d-fd6f39a5e409", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.063Z", "comment": "", "groups": ["a851f4f0-532b-4d1a-a610-5b02eb0027af", "4c145ce1-c3e3-441a-a86d-69df17b7101f", "6e4f95c0-3aba-4301-bfe2-e6dc9a370048"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "f056becf-3b4b-400e-898d-211d9b5a1d99", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "7ccb267c-5943-40fa-a9df-2593fa34c2e4", "fields": {"ip": "37.37.37.37", "hostname": "lois67", "port": 22, "admin_user": "7de29b0c-15ba-4471-9c51-96c3cf6a44e7", "cluster": "6a75b014-2fb3-494c-910d-fd6f39a5e409", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.100Z", "comment": "", "groups": ["ff36e4da-5156-48a1-9bec-f54b107cfa02", "7f472514-ded2-4a09-8ff0-b9b91f85ca8e", "92cbd38e-f65b-4a3b-8956-5d53d00cc1ab"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "f056becf-3b4b-400e-898d-211d9b5a1d99", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "7da0b957-0e51-466d-896d-f96104aefebf", "fields": {"ip": "23.23.23.23", "hostname": "catherine80", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.648Z", "comment": "", "groups": ["e919d5b9-f718-4205-b16c-55a5b45f2e50", "23714c28-4186-413a-b1c4-6f688c2ec85c"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "2e83e252-b84c-4fab-b055-389d07c3acd8", "a08c8830-7838-4660-9072-fd038ecb02f4"]}}, {"model": "assets.asset", "pk": "7e4d3f2e-93ab-4dc2-95b1-551b96716805", "fields": {"ip": "41.41.41.41", "hostname": "linda77", "port": 22, "admin_user": "26267cd3-4b22-41a6-ae76-327195767ee7", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.227Z", "comment": "", "groups": ["94707978-527b-4782-8451-519620c3ce38", "a630b6ff-a7bb-4fb2-8073-75322865320b"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "7e610acd-d3ad-4c96-9b61-a0504bc3423d", "fields": {"ip": "64.64.64.64", "hostname": "laura94", "port": 22, "admin_user": "5e9a3c79-4b3b-4ddc-9f12-7c99b1edf976", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.025Z", "comment": "", "groups": ["8fb62b59-6cae-499c-853d-d7d4c0e91a57", "33449baf-3516-4ba0-a9f5-b878ac1da501", "1b66354b-2a36-423e-a59c-88ac6f73c928"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "a08c8830-7838-4660-9072-fd038ecb02f4", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "7fade84a-c1f2-4bf2-8670-0aba91a4fec9", "fields": {"ip": "22.22.22.22", "hostname": "judy94", "port": 22, "admin_user": "5e9a3c79-4b3b-4ddc-9f12-7c99b1edf976", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.617Z", "comment": "", "groups": ["e3063d5f-25a8-402a-9b46-51cfb8235db6", "ff83212a-498d-49ce-abbc-22d13119871c", "5e3cc371-a2d1-49cb-af5b-56cf54e9912f"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "81f090e4-c564-47c7-8637-a5982ce26d0f", "fields": {"ip": "42.42.42.42", "hostname": "pamela79", "port": 22, "admin_user": "26267cd3-4b22-41a6-ae76-327195767ee7", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.258Z", "comment": "", "groups": ["d7ba405e-5cc8-40e2-98c5-d2cdbfb2c1bb", "90f583be-21d6-43b0-af42-6a6d22b4e15f", "6e4f95c0-3aba-4301-bfe2-e6dc9a370048"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "2e83e252-b84c-4fab-b055-389d07c3acd8"]}}, {"model": "assets.asset", "pk": "823cf499-388e-4626-8d47-c4872d7ce140", "fields": {"ip": "20.20.20.20", "hostname": "betty78", "port": 22, "admin_user": "26267cd3-4b22-41a6-ae76-327195767ee7", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.554Z", "comment": "", "groups": ["81f2bad8-24ab-4f14-81c9-1c0b11e2e158", "8c963f9a-52b0-47ce-8d56-41d8810513f2", "4511fc92-9c49-4806-94b7-ea21ce11217d"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "83164ebf-dab8-47c3-90fa-bce35be99e98", "fields": {"ip": "40.40.40.40", "hostname": "judith75", "port": 22, "admin_user": "f247e2af-7e72-40ea-9ec7-15a1dd2cbbc3", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.196Z", "comment": "", "groups": ["55c19958-5101-4dbc-94c7-9e1512e4c4a2", "1336c3b8-4c15-493d-a180-e0fc6ad060b2", "a12acc55-4021-4df9-b591-5a03245a5208"], "system_users": ["a08c8830-7838-4660-9072-fd038ecb02f4", "9fcfed52-7476-4345-ba2f-c246e8e27522", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "89c24676-008b-4ef3-b487-f18630a1b8bb", "fields": {"ip": "95.95.95.95", "hostname": "jean88", "port": 22, "admin_user": "7f4d01fb-e8b7-471c-8cf8-ef1ea75e5bb5", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:56.190Z", "comment": "", "groups": ["1154dbfa-b520-462f-a169-a560b1598f44", "92cbd38e-f65b-4a3b-8956-5d53d00cc1ab", "6e4f95c0-3aba-4301-bfe2-e6dc9a370048"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "2e83e252-b84c-4fab-b055-389d07c3acd8", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "8a56b198-b7a5-464e-aef8-71e54ba87956", "fields": {"ip": "39.39.39.39", "hostname": "kathryn84", "port": 22, "admin_user": "7de29b0c-15ba-4471-9c51-96c3cf6a44e7", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.163Z", "comment": "", "groups": ["09168b5c-4d5f-484b-8166-d9026063ab0b", "71a93e4a-7e0a-49b5-9d91-99c0d45ac2a9", "9164d22e-d5a4-4584-a073-5e8208d79d28"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "8d5c67c1-3aab-4a98-a4a0-acf24b16b18a", "fields": {"ip": "10.10.10.10", "hostname": "virginia94", "port": 22, "admin_user": "7f4d01fb-e8b7-471c-8cf8-ef1ea75e5bb5", "cluster": "6a75b014-2fb3-494c-910d-fd6f39a5e409", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.237Z", "comment": "", "groups": ["e46c7191-8f2a-4c01-be61-90445d409c47", "51d39285-f6c6-467b-8d6a-089c05c9670e", "dec1d0de-875a-4930-b4c8-f17f60f9af2f"], "system_users": ["383481b8-6fbf-4e94-b648-0d2de1f07f77", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "8db73974-5081-4d16-a398-8dde704cc4eb", "fields": {"ip": "67.67.67.67", "hostname": "diane83", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.137Z", "comment": "", "groups": ["fffe1e01-b3d8-43e6-a92c-a651eda567ec", "1f128730-d0eb-4e96-b144-f8425bc226dc", "1ed242df-3e7b-459a-876b-3e9be645ef70"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "913b0950-9d03-4d20-aa0a-3075fd67e450", "fields": {"ip": "78.78.78.78", "hostname": "jessica83", "port": 22, "admin_user": "61423c66-048f-4125-9844-6a15557cd345", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.535Z", "comment": "", "groups": ["19c435b1-bf74-4870-a16c-8ebf462fa6da", "4a24f49f-2d90-4474-bb4a-93295db257ce", "87a4a0fb-7f42-49f2-add9-dac68c528586"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "f056becf-3b4b-400e-898d-211d9b5a1d99", "a08c8830-7838-4660-9072-fd038ecb02f4"]}}, {"model": "assets.asset", "pk": "96a7b054-fa30-4274-809c-f6ae7e6b13fd", "fields": {"ip": "35.35.35.35", "hostname": "nancy85", "port": 22, "admin_user": "26267cd3-4b22-41a6-ae76-327195767ee7", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.035Z", "comment": "", "groups": ["68aea94a-2a82-4a6a-87f4-1e280e1bbbe4", "8c963f9a-52b0-47ce-8d56-41d8810513f2", "fa887c60-4c10-426c-ad53-f1724c012af5"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "a08c8830-7838-4660-9072-fd038ecb02f4"]}}, {"model": "assets.asset", "pk": "97e8f7d4-1f55-4242-9eb8-df6ba3e74c1e", "fields": {"ip": "13.13.13.13", "hostname": "deborah67", "port": 22, "admin_user": "7de29b0c-15ba-4471-9c51-96c3cf6a44e7", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.329Z", "comment": "", "groups": ["51d39285-f6c6-467b-8d6a-089c05c9670e", "68aea94a-2a82-4a6a-87f4-1e280e1bbbe4", "4511fc92-9c49-4806-94b7-ea21ce11217d"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "f056becf-3b4b-400e-898d-211d9b5a1d99"]}}, {"model": "assets.asset", "pk": "986aa470-91cf-4d6b-a33d-b4af5bf36358", "fields": {"ip": "49.49.49.49", "hostname": "diane94", "port": 22, "admin_user": "7f4d01fb-e8b7-471c-8cf8-ef1ea75e5bb5", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.508Z", "comment": "", "groups": ["628f77e6-4410-4779-88a6-2f622a92a784", "f5f374b4-5784-412f-b83c-60f42b3ed2b1", "29ad2563-c5eb-4963-9314-d1fc6a49f51a"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "99949c8f-cf5a-41a7-8c81-42da6d457a52", "fields": {"ip": "63.63.63.63", "hostname": "teresa81", "port": 22, "admin_user": "f247e2af-7e72-40ea-9ec7-15a1dd2cbbc3", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.988Z", "comment": "", "groups": ["4a437dbf-ae1a-47e8-8e21-0687891a479b", "0e8bcd4b-2163-4c15-90c0-9789f4232ba1", "ef8818e7-1e9c-4868-9d9a-7985618ae897"], "system_users": ["a08c8830-7838-4660-9072-fd038ecb02f4", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "9c2b3703-0df0-46d0-a0c8-19b96ec519e8", "fields": {"ip": "84.84.84.84", "hostname": "susan86", "port": 22, "admin_user": "61423c66-048f-4125-9844-6a15557cd345", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.768Z", "comment": "", "groups": ["19c435b1-bf74-4870-a16c-8ebf462fa6da", "7f99a303-baf6-4a3a-b2d5-38b42083c6ed", "1336c3b8-4c15-493d-a180-e0fc6ad060b2"], "system_users": ["a08c8830-7838-4660-9072-fd038ecb02f4", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "9f3f9503-7a27-4c11-b1a1-b36cd2288c5b", "fields": {"ip": "33.33.33.33", "hostname": "diana73", "port": 22, "admin_user": "61423c66-048f-4125-9844-6a15557cd345", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.972Z", "comment": "", "groups": ["e3063d5f-25a8-402a-9b46-51cfb8235db6", "544592b9-052b-4169-afd6-bc1cb722d8a3", "1ed242df-3e7b-459a-876b-3e9be645ef70"], "system_users": ["383481b8-6fbf-4e94-b648-0d2de1f07f77", "9fcfed52-7476-4345-ba2f-c246e8e27522", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "a266ea31-4c68-4038-a06f-1b294b14692a", "fields": {"ip": "70.70.70.70", "hostname": "janice76", "port": 22, "admin_user": "f247e2af-7e72-40ea-9ec7-15a1dd2cbbc3", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.241Z", "comment": "", "groups": ["4a437dbf-ae1a-47e8-8e21-0687891a479b", "6ef8cd9a-1995-4ff8-a83a-907d97b67762", "50048717-231c-47d0-94c1-801f098f6814"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3"]}}, {"model": "assets.asset", "pk": "a3f4e0ec-cb1b-4905-ac6a-92eb937eebe5", "fields": {"ip": "5.5.5.5", "hostname": "katherine66", "port": 22, "admin_user": "26267cd3-4b22-41a6-ae76-327195767ee7", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.075Z", "comment": "", "groups": ["7f472514-ded2-4a09-8ff0-b9b91f85ca8e", "50048717-231c-47d0-94c1-801f098f6814", "ba8ebaa3-499d-4afe-9e29-a3069b5470df"], "system_users": ["a08c8830-7838-4660-9072-fd038ecb02f4", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "a490a8b4-4e0c-4a23-82d0-ddfd8a868ea6", "fields": {"ip": "92.92.92.92", "hostname": "joan88", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:56.073Z", "comment": "", "groups": ["d7ba405e-5cc8-40e2-98c5-d2cdbfb2c1bb", "a630b6ff-a7bb-4fb2-8073-75322865320b", "ff83212a-498d-49ce-abbc-22d13119871c"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "a9c60e1a-345f-43fd-af43-6ca2d1376c13", "fields": {"ip": "77.77.77.77", "hostname": "emily68", "port": 22, "admin_user": "5e9a3c79-4b3b-4ddc-9f12-7c99b1edf976", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.498Z", "comment": "", "groups": ["a851f4f0-532b-4d1a-a610-5b02eb0027af", "7fa66d80-3134-483b-add5-3082d5fc2829", "f5e7a82d-95a1-494d-91e0-8a56608b8c8e"], "system_users": ["383481b8-6fbf-4e94-b648-0d2de1f07f77", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "a9dbbd26-33ab-419a-b5a5-9e461c81d3b6", "fields": {"ip": "34.34.34.34", "hostname": "mary65", "port": 22, "admin_user": "5c986676-bfd7-4ade-8b9d-3631a7b9b50e", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.004Z", "comment": "", "groups": ["ff36e4da-5156-48a1-9bec-f54b107cfa02", "4c145ce1-c3e3-441a-a86d-69df17b7101f", "7a313985-9460-41df-bd86-7f3c19ed85fa"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "aefe5248-7ff4-4c44-886e-56d71face029", "fields": {"ip": "46.46.46.46", "hostname": "carolyn87", "port": 22, "admin_user": "5c986676-bfd7-4ade-8b9d-3631a7b9b50e", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.402Z", "comment": "", "groups": ["7f99a303-baf6-4a3a-b2d5-38b42083c6ed", "a630b6ff-a7bb-4fb2-8073-75322865320b", "dec1d0de-875a-4930-b4c8-f17f60f9af2f"], "system_users": ["9fcfed52-7476-4345-ba2f-c246e8e27522", "587dbf83-2f91-4c8b-8d75-59807dfbcefd", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "afbecdda-b4bc-4aa7-a8dc-ea5ecca2b322", "fields": {"ip": "80.80.80.80", "hostname": "karen93", "port": 22, "admin_user": "6617bb42-6281-4095-ad30-4cefa0e2231e", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.617Z", "comment": "", "groups": ["19c435b1-bf74-4870-a16c-8ebf462fa6da", "881a0460-7989-42af-a588-957efe57fb8e", "83810313-256d-4a42-9be7-b8254d37111f"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "b519b4d8-0c09-4bde-a9e7-f83a54526289", "fields": {"ip": "99.99.99.99", "hostname": "judy72", "port": 22, "admin_user": "6617bb42-6281-4095-ad30-4cefa0e2231e", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:56.338Z", "comment": "", "groups": ["fd6b95d7-57ae-4351-b37b-067772887179", "94707978-527b-4782-8451-519620c3ce38", "822af801-f8ab-4980-9c50-9fbe3ef66e02"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "b738b7aa-81fa-4789-bf86-ab6b42e609da", "fields": {"ip": "30.30.30.30", "hostname": "virginia74", "port": 22, "admin_user": "7f4d01fb-e8b7-471c-8cf8-ef1ea75e5bb5", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.877Z", "comment": "", "groups": ["13e7438c-a4ec-4c75-b09f-422c157bd76c", "fc7fc3d1-903e-4109-a712-26e0c8936dfa", "37f2a85d-be6f-498e-9847-3a071fb22544"], "system_users": ["383481b8-6fbf-4e94-b648-0d2de1f07f77", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "b902cf41-a9fb-4c0c-9ad1-9141676c1a33", "fields": {"ip": "62.62.62.62", "hostname": "phyllis74", "port": 22, "admin_user": "5c986676-bfd7-4ade-8b9d-3631a7b9b50e", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.950Z", "comment": "", "groups": ["8c045cf6-befa-40f9-8f86-84f8c4b0aa30", "2da084a8-bdd6-42ee-a39e-9d78c7cf0535", "9164d22e-d5a4-4584-a073-5e8208d79d28"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "bfa5238f-ba6a-40dd-92bb-71a475eaaa23", "fields": {"ip": "71.71.71.71", "hostname": "gloria71", "port": 22, "admin_user": "7f4d01fb-e8b7-471c-8cf8-ef1ea75e5bb5", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.277Z", "comment": "", "groups": ["8738ff4e-64a3-419d-8fa0-b093640dee59", "a274e6ce-b2d0-4ffe-a22e-6cdc4d3743be", "f5f374b4-5784-412f-b83c-60f42b3ed2b1"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "c1611e85-00a2-45e8-a94e-410dfc8ce8b3"]}}, {"model": "assets.asset", "pk": "c620b7e1-0466-42a0-93a0-c475ee8f7fff", "fields": {"ip": "12.12.12.12", "hostname": "mary70", "port": 22, "admin_user": "992c01fa-241d-4fc5-9c2f-92ebf130fc41", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.298Z", "comment": "", "groups": ["62a70279-caef-49bb-8af9-14d9c15ea855", "90f583be-21d6-43b0-af42-6a6d22b4e15f", "1336c3b8-4c15-493d-a180-e0fc6ad060b2"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "c69e28c5-5762-45cb-8529-982ef7c4aec5", "fields": {"ip": "59.59.59.59", "hostname": "doris66", "port": 22, "admin_user": "992c01fa-241d-4fc5-9c2f-92ebf130fc41", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.844Z", "comment": "", "groups": ["1f128730-d0eb-4e96-b144-f8425bc226dc", "37f2a85d-be6f-498e-9847-3a071fb22544", "e11fcf30-c50b-4df6-8457-736208b1a3a1"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8", "a08c8830-7838-4660-9072-fd038ecb02f4", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a"]}}, {"model": "assets.asset", "pk": "ca39d0c2-4557-45dc-8be8-84d124ac7659", "fields": {"ip": "68.68.68.68", "hostname": "cynthia68", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.171Z", "comment": "", "groups": ["4a24f49f-2d90-4474-bb4a-93295db257ce", "5b117b17-c720-4c86-bd8f-ddcdf770515f", "4c145ce1-c3e3-441a-a86d-69df17b7101f"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "cd1e8581-93be-4884-a810-1098011ca39a", "fields": {"ip": "32.32.32.32", "hostname": "mary80", "port": 22, "admin_user": "6617bb42-6281-4095-ad30-4cefa0e2231e", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.940Z", "comment": "", "groups": ["68aea94a-2a82-4a6a-87f4-1e280e1bbbe4", "913f9232-bd66-40f8-80cf-21593dddb59b", "7a9da454-b9bb-46e1-bcf7-05232f263138"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "cdd42e4c-df6c-4ebc-ab46-052fea50eb6b", "fields": {"ip": "52.52.52.52", "hostname": "ashley69", "port": 22, "admin_user": "7f4d01fb-e8b7-471c-8cf8-ef1ea75e5bb5", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.612Z", "comment": "", "groups": ["51d39285-f6c6-467b-8d6a-089c05c9670e", "8fb62b59-6cae-499c-853d-d7d4c0e91a57", "e919d5b9-f718-4205-b16c-55a5b45f2e50"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "2e83e252-b84c-4fab-b055-389d07c3acd8", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "ced65bbb-2016-47e8-87ef-73fca713fff1", "fields": {"ip": "45.45.45.45", "hostname": "catherine90", "port": 22, "admin_user": "5e9a3c79-4b3b-4ddc-9f12-7c99b1edf976", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.364Z", "comment": "", "groups": ["fffe1e01-b3d8-43e6-a92c-a651eda567ec", "4a437dbf-ae1a-47e8-8e21-0687891a479b", "23714c28-4186-413a-b1c4-6f688c2ec85c"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "2e83e252-b84c-4fab-b055-389d07c3acd8"]}}, {"model": "assets.asset", "pk": "cfcfb53b-5ffe-4e27-ab8b-75b95644191e", "fields": {"ip": "86.86.86.86", "hostname": "catherine93", "port": 22, "admin_user": "5c986676-bfd7-4ade-8b9d-3631a7b9b50e", "cluster": "6a75b014-2fb3-494c-910d-fd6f39a5e409", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.842Z", "comment": "", "groups": ["1f5f2fac-3463-4215-8290-ce84ae8809ac", "7f99a303-baf6-4a3a-b2d5-38b42083c6ed", "83810313-256d-4a42-9be7-b8254d37111f"], "system_users": ["a08c8830-7838-4660-9072-fd038ecb02f4", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "d3f3cde0-b4b8-4dc1-89ad-5473e6d85c93", "fields": {"ip": "53.53.53.53", "hostname": "kathleen75", "port": 22, "admin_user": "7de29b0c-15ba-4471-9c51-96c3cf6a44e7", "cluster": "6a75b014-2fb3-494c-910d-fd6f39a5e409", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.649Z", "comment": "", "groups": ["a274e6ce-b2d0-4ffe-a22e-6cdc4d3743be", "67be35c1-440a-41ef-aa33-20c17ba1ecb6", "50048717-231c-47d0-94c1-801f098f6814"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8", "a08c8830-7838-4660-9072-fd038ecb02f4", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a"]}}, {"model": "assets.asset", "pk": "daeaee6e-ec14-48f4-86e7-bfb0845e8aa5", "fields": {"ip": "90.90.90.90", "hostname": "alice92", "port": 22, "admin_user": "61423c66-048f-4125-9844-6a15557cd345", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.997Z", "comment": "", "groups": ["81f2bad8-24ab-4f14-81c9-1c0b11e2e158", "ff36e4da-5156-48a1-9bec-f54b107cfa02", "37f2a85d-be6f-498e-9847-3a071fb22544"], "system_users": ["a08c8830-7838-4660-9072-fd038ecb02f4", "9fcfed52-7476-4345-ba2f-c246e8e27522"]}}, {"model": "assets.asset", "pk": "de19760b-87de-43a5-bb61-3298ee528c7b", "fields": {"ip": "14.14.14.14", "hostname": "helen65", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.360Z", "comment": "", "groups": ["68aea94a-2a82-4a6a-87f4-1e280e1bbbe4", "1154dbfa-b520-462f-a169-a560b1598f44", "f5e7a82d-95a1-494d-91e0-8a56608b8c8e"], "system_users": ["587dbf83-2f91-4c8b-8d75-59807dfbcefd", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "df93cb9c-9c1a-40d5-943a-d788b182a0ee", "fields": {"ip": "25.25.25.25", "hostname": "alice73", "port": 22, "admin_user": "5e9a3c79-4b3b-4ddc-9f12-7c99b1edf976", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.715Z", "comment": "", "groups": ["cc5331db-4a80-45d9-88b9-62b7c164bcfd", "822af801-f8ab-4980-9c50-9fbe3ef66e02", "37f2a85d-be6f-498e-9847-3a071fb22544"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "a08c8830-7838-4660-9072-fd038ecb02f4"]}}, {"model": "assets.asset", "pk": "e4177209-0df9-4a29-92bf-080a7a80e5b1", "fields": {"ip": "98.98.98.98", "hostname": "maria77", "port": 22, "admin_user": "61423c66-048f-4125-9844-6a15557cd345", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:56.306Z", "comment": "", "groups": ["881a0460-7989-42af-a588-957efe57fb8e", "6fb8cec4-ed7a-40ae-9c13-36e514d05ce7", "7a9da454-b9bb-46e1-bcf7-05232f263138"], "system_users": ["c1611e85-00a2-45e8-a94e-410dfc8ce8b3", "383481b8-6fbf-4e94-b648-0d2de1f07f77", "a08c8830-7838-4660-9072-fd038ecb02f4"]}}, {"model": "assets.asset", "pk": "e62badbb-d053-4ae6-83ca-1b7bbb3724c3", "fields": {"ip": "75.75.75.75", "hostname": "kathy84", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "df56ab04-6a2c-43b3-a5a2-9730e28e4e73", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.424Z", "comment": "", "groups": ["ce263cf4-3210-42fa-8869-06783f1e8973", "913f9232-bd66-40f8-80cf-21593dddb59b", "6c64d761-87e4-4277-8210-f63bdf6641c7"], "system_users": ["383481b8-6fbf-4e94-b648-0d2de1f07f77", "a08c8830-7838-4660-9072-fd038ecb02f4", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a"]}}, {"model": "assets.asset", "pk": "e6a84edb-2bb4-4e48-8932-ce497c2aa8f5", "fields": {"ip": "43.43.43.43", "hostname": "nancy74", "port": 22, "admin_user": "61423c66-048f-4125-9844-6a15557cd345", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.296Z", "comment": "", "groups": ["fffe1e01-b3d8-43e6-a92c-a651eda567ec", "556852cc-b5b6-41df-b24b-4d443de4dfdf", "dec1d0de-875a-4930-b4c8-f17f60f9af2f"], "system_users": ["587dbf83-2f91-4c8b-8d75-59807dfbcefd", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "e9370b0d-324b-4c59-bc0d-2c5e00beef0b", "fields": {"ip": "26.26.26.26", "hostname": "ruth75", "port": 22, "admin_user": "7de29b0c-15ba-4471-9c51-96c3cf6a44e7", "cluster": "c0df1aa0-bde7-4226-a69a-d02976888456", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.747Z", "comment": "", "groups": ["c9a5c3b3-caf2-40c6-9282-83800a4a72c9", "8c963f9a-52b0-47ce-8d56-41d8810513f2", "ff83212a-498d-49ce-abbc-22d13119871c"], "system_users": ["f056becf-3b4b-400e-898d-211d9b5a1d99", "2e83e252-b84c-4fab-b055-389d07c3acd8", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a"]}}, {"model": "assets.asset", "pk": "eaec3237-d344-4099-83a1-73c2f3c4c01d", "fields": {"ip": "91.91.91.91", "hostname": "anna88", "port": 22, "admin_user": "5e9a3c79-4b3b-4ddc-9f12-7c99b1edf976", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:56.035Z", "comment": "", "groups": ["5503bc69-fc4d-4e34-9ef9-b780a654576c", "6a158957-3ab2-4af6-8ba0-2b30e22428ad", "18fede16-2309-40eb-a9b7-e159d1fefa41"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8"]}}, {"model": "assets.asset", "pk": "eb0187b1-d448-421a-8aa0-36b3d7ae0954", "fields": {"ip": "9.9.9.9", "hostname": "sharon86", "port": 22, "admin_user": "61423c66-048f-4125-9844-6a15557cd345", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.206Z", "comment": "", "groups": ["cc5331db-4a80-45d9-88b9-62b7c164bcfd", "d2adba2e-73ac-4036-871e-db4b4c2a1a70", "09168b5c-4d5f-484b-8166-d9026063ab0b"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "2e83e252-b84c-4fab-b055-389d07c3acd8", "a08c8830-7838-4660-9072-fd038ecb02f4"]}}, {"model": "assets.asset", "pk": "eb8ead8e-7fa0-42f7-977b-938aa514235b", "fields": {"ip": "4.4.4.4", "hostname": "diana86", "port": 22, "admin_user": "61423c66-048f-4125-9844-6a15557cd345", "cluster": "5782020d-58a5-4e69-ae9f-157caf64e7f0", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.041Z", "comment": "", "groups": ["7f472514-ded2-4a09-8ff0-b9b91f85ca8e", "8182f741-e273-49e3-b0cc-c531391da513", "6c64d761-87e4-4277-8210-f63bdf6641c7"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "a08c8830-7838-4660-9072-fd038ecb02f4", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a"]}}, {"model": "assets.asset", "pk": "f1e5be58-0ddc-442a-be07-67e84b648e01", "fields": {"ip": "55.55.55.55", "hostname": "pamela70", "port": 22, "admin_user": "7f4d01fb-e8b7-471c-8cf8-ef1ea75e5bb5", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.724Z", "comment": "", "groups": ["e3063d5f-25a8-402a-9b46-51cfb8235db6", "cc5331db-4a80-45d9-88b9-62b7c164bcfd", "f5e7a82d-95a1-494d-91e0-8a56608b8c8e"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "587dbf83-2f91-4c8b-8d75-59807dfbcefd"]}}, {"model": "assets.asset", "pk": "f9d062aa-4cf8-4e02-8d7c-a3675f35288f", "fields": {"ip": "19.19.19.19", "hostname": "carol69", "port": 22, "admin_user": "7de29b0c-15ba-4471-9c51-96c3cf6a44e7", "cluster": "7cf2ee9e-9cea-4a5f-b822-38c37c449a97", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:53.521Z", "comment": "", "groups": ["913f9232-bd66-40f8-80cf-21593dddb59b", "c9a5c3b3-caf2-40c6-9282-83800a4a72c9", "29ad2563-c5eb-4963-9314-d1fc6a49f51a"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8", "a08c8830-7838-4660-9072-fd038ecb02f4", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "fb5a8c7d-1208-45d2-b07f-4d313050b6a4", "fields": {"ip": "69.69.69.69", "hostname": "lois64", "port": 22, "admin_user": "5c986676-bfd7-4ade-8b9d-3631a7b9b50e", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.207Z", "comment": "", "groups": ["67be35c1-440a-41ef-aa33-20c17ba1ecb6", "29ad2563-c5eb-4963-9314-d1fc6a49f51a", "1dd09ace-5b53-4a6e-90a7-fbb9c718d0f5"], "system_users": ["2e83e252-b84c-4fab-b055-389d07c3acd8", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "fc9b4ee5-4e5c-47bb-9f55-e144cd4b3027", "fields": {"ip": "74.74.74.74", "hostname": "susan87", "port": 22, "admin_user": "68d875b0-162f-4360-abcf-b10bfae3f451", "cluster": "6a75b014-2fb3-494c-910d-fd6f39a5e409", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:55.387Z", "comment": "", "groups": ["d7ba405e-5cc8-40e2-98c5-d2cdbfb2c1bb", "dec1d0de-875a-4930-b4c8-f17f60f9af2f", "37f2a85d-be6f-498e-9847-3a071fb22544"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "6ba87731-d4c4-4acc-bd97-c7be78d60b3a", "7540c5c1-6380-4928-ba1b-0eab77de20e9"]}}, {"model": "assets.asset", "pk": "fd61d29a-6513-4b26-94dc-63cf9d252770", "fields": {"ip": "36.36.36.36", "hostname": "carol94", "port": 22, "admin_user": "6617bb42-6281-4095-ad30-4cefa0e2231e", "cluster": "39db8373-d161-4832-83e3-6139d10e827b", "is_active": true, "type": "Server", "env": "Prod", "status": "In use", "public_ip": null, "remote_card_ip": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "vendor": null, "model": null, "sn": null, "cpu_model": null, "cpu_count": null, "cpu_cores": null, "memory": null, "disk_total": null, "disk_info": null, "platform": null, "os": null, "os_version": null, "os_arch": null, "hostname_raw": null, "created_by": "Fake", "date_created": "2017-12-07T08:20:54.068Z", "comment": "", "groups": ["fffe1e01-b3d8-43e6-a92c-a651eda567ec", "68aea94a-2a82-4a6a-87f4-1e280e1bbbe4", "c9a5c3b3-caf2-40c6-9282-83800a4a72c9"], "system_users": ["a7786710-df8c-4abd-9946-f7ceceaed688", "2e83e252-b84c-4fab-b055-389d07c3acd8", "a08c8830-7838-4660-9072-fd038ecb02f4"]}}, {"model": "users.user", "pk": "01545644-ae90-4a64-935a-04776b70c8c0", "fields": {"password": "pbkdf2_sha256$36000$ekPadeuXH0YD$B3MpYATjENErBYzMcKlaIN1pjAlctTQDe+6KGCYRelM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.888Z", "username": "robin91", "name": "Heather Nichols", "email": "kimberly@twitternation.name", "role": "App", "avatar": "", "wechat": "brenda93", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.888Z", "created_by": "ruth84", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "0174b307-b625-4734-9258-6d1c1a84af00", "fields": {"password": "pbkdf2_sha256$36000$jWY6Tjg0AbC5$lCJOQ8V6tDeefutsMx/ku+fEfOzPca5b05SllmTRdSY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.290Z", "username": "lisa90", "name": "Kelly Carpenter", "email": "anna@voolia.biz", "role": "App", "avatar": "", "wechat": "wanda93", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque eget nunc.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.290Z", "created_by": "christine83", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "03c53c8b-258d-4e25-9739-b511288d38e1", "fields": {"password": "pbkdf2_sha256$36000$OFR3TTgmcE15$bxK6/Y8U/O7uAfidX0tlouOVUpT1c6QWwNYgnKHOBZU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.215Z", "username": "kimberly70", "name": "Carol Thomas", "email": "jacqueline@thoughtbridge.org", "role": "Admin", "avatar": "", "wechat": "robin73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi a ipsum.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.215Z", "created_by": "cynthia70", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "05de0183-7c0b-41d1-9023-e0a2fcde256e", "fields": {"password": "pbkdf2_sha256$36000$ZEdnpLFBzY84$dA3O+/96yI+mzIjmwYaAO3Jf9Nt5NGsbGht3DnuaGDM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:44.938Z", "username": "cynthia70", "name": "Frances Alexander", "email": "carolyn@linktype.net", "role": "Admin", "avatar": "", "wechat": "marie70", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec semper sapien a libero.", "is_first_login": false, "date_expired": "2087-11-20T08:20:44.939Z", "created_by": "admin", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "0bfe154a-14df-4ddf-85b8-1df0d2ec91a2", "fields": {"password": "pbkdf2_sha256$36000$DI77WJQFbxNV$NfLn+H46T0ZNNtR5OegxGPLbYw61hpZeDt0rPsIm3UI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.357Z", "username": "maria71", "name": "Jacqueline Henry", "email": "kathryn@eire.org", "role": "User", "avatar": "", "wechat": "linda73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.357Z", "created_by": "brenda80", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "0fab488e-2237-4b61-811f-482a95580e05", "fields": {"password": "pbkdf2_sha256$36000$W0HfNiZd6mBZ$aht8c0BpMydvOawE6Rx66zlHoGno9wN/Jt2di7uAcIc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.080Z", "username": "doris76", "name": "Lois Brooks", "email": "diane@avaveo.org", "role": "User", "avatar": "", "wechat": "susan92", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis ac nibh.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.080Z", "created_by": "rachel76", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "106384fb-22d3-4380-853a-bfd112f3d9bf", "fields": {"password": "pbkdf2_sha256$36000$0OkKTb7jZsM3$EL5H0IgRclu/vJ2KRLBUTi7Zmr8X0wMQW4S1kBBVn9M=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:51.038Z", "username": "katherine67", "name": "Diana Hunter", "email": "doris@fadeo.mil", "role": "Admin", "avatar": "", "wechat": "joan79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean sit amet justo.", "is_first_login": false, "date_expired": "2087-11-20T08:20:51.038Z", "created_by": "judith70", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "11946ae8-f14e-4e35-8b80-431dd3e43c6a", "fields": {"password": "pbkdf2_sha256$36000$XDsnwsQKLSHU$rM3WVBBHaaTSlhKFb6zwhDPVzpGnRm8i1ZRc42pLgKw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.688Z", "username": "teresa94", "name": "Heather Cole", "email": "amanda@dabvine.edu", "role": "User", "avatar": "", "wechat": "ruth81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.688Z", "created_by": "cynthia75", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "129cfef8-32aa-4d30-a6ca-c591468b7b2f", "fields": {"password": "pbkdf2_sha256$36000$dUSbLiakjtuL$dJk6vp78lzsW8wYkUZU0sI3FD27jZmgW9Afj1S1n1Qg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.021Z", "username": "mary85", "name": "Teresa Payne", "email": "sandra@voomm.net", "role": "Admin", "avatar": "", "wechat": "frances82", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Praesent blandit.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.021Z", "created_by": "deborah79", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "13d4be0b-b02c-4e23-a7ed-3f2813a2d6f4", "fields": {"password": "pbkdf2_sha256$36000$eivp88seIbfP$2xP0MG8vEmuRz/UkgmAqbvN+UvEgWwYWvPnDnilSnrc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.813Z", "username": "cheryl72", "name": "Kathleen Jacobs", "email": "virginia@dabfeed.edu", "role": "Admin", "avatar": "", "wechat": "diana79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi ut odio.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.814Z", "created_by": "admin", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "19a40886-4756-4a98-a5f7-71205ebe7f9f", "fields": {"password": "pbkdf2_sha256$36000$JpQ7M699PJZE$T+TrPlf5TOO4T/R6wNL+5gmGcHSdxzTA/FSRtSgNmGk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.750Z", "username": "barbara67", "name": "Phyllis Reyes", "email": "beverly@avamm.mil", "role": "Admin", "avatar": "", "wechat": "nancy72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Praesent id massa id nisl venenatis lacinia.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.750Z", "created_by": "elizabeth84", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "19f072c2-ad1f-4437-be07-dcca2436e937", "fields": {"password": "pbkdf2_sha256$36000$w42gsygNqjBe$LUahp6/Un0oCF8tT5s+1CLZa3eMn0J7wKH42iJGvYJ0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:51.436Z", "username": "janice76", "name": "Paula Rivera", "email": "lori@eamia.net", "role": "User", "avatar": "", "wechat": "denise78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Mauris sit amet eros.", "is_first_login": false, "date_expired": "2087-11-20T08:20:51.436Z", "created_by": "doris76", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "1a1b6569-4f63-4c02-b3c5-ce83cbba32c7", "fields": {"password": "pbkdf2_sha256$36000$yqJuNTFxvcB2$UV4cASSnwfssde9aL32use1eejlxCj1U4G27eQNLAx0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.729Z", "username": "sandra90", "name": "Janice Johnson", "email": "katherine@tekfly.mil", "role": "User", "avatar": "", "wechat": "mary88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.729Z", "created_by": "admin", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "1bf05b47-b4e3-421b-a733-1cff53582818", "fields": {"password": "pbkdf2_sha256$36000$80X7Jk8wxsiI$DErHf832Y3dK9NwaX/fPqXwPVELjmpvIkZkPk/JaFBU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.613Z", "username": "deborah92", "name": "Ann Knight", "email": "jean@skaboo.info", "role": "Admin", "avatar": "", "wechat": "paul69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.613Z", "created_by": "helen87", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "2400a442-7509-4f15-b998-3adae95236cb", "fields": {"password": "pbkdf2_sha256$36000$0JwwziwRnWNz$UUctXyvVOCnwdOlt5l9s44eWTtFTiDWwIulv+J9i+8c=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.100Z", "username": "lisa94", "name": "Sandra Wells", "email": "rebecca@gigabox.biz", "role": "Admin", "avatar": "", "wechat": "patricia70", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin interdum mauris non ligula pellentesque ultrices.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.100Z", "created_by": "sandra90", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "254daec5-b5be-4ebc-9f91-b9cf694845db", "fields": {"password": "pbkdf2_sha256$36000$bIVONZZdpAcA$ZHNw+HzzVKCck8v1wGuwvWU2dXsYG8Pk3TsiKEZxbm0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.421Z", "username": "anna85", "name": "Doris Carr", "email": "sharon@zoonder.biz", "role": "App", "avatar": "", "wechat": "deborah94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec quis orci eget orci vehicula condimentum.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.422Z", "created_by": "margaret68", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "28900216-560f-4bea-ba8d-b0806efb1cd3", "fields": {"password": "pbkdf2_sha256$36000$Z452ZHWkW0rO$cWb6IKyFlUNge+G9pjU/hIgxRG4pac6SqQ5KQU6WH8c=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.834Z", "username": "mildred74", "name": "Barbara Evans", "email": "lillian@zoozzy.gov", "role": "Admin", "avatar": "", "wechat": "diane84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.834Z", "created_by": "jane91", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "293bec40-fa3a-43c4-b4e5-b0df85818a93", "fields": {"password": "pbkdf2_sha256$36000$5nr48OR1SqlE$mRqb8SV1YjU0VehQl+KjpwbBBPZncWNDtY5vju46qb0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.746Z", "username": "marie94", "name": "Norma Turner", "email": "carol@demivee.info", "role": "Admin", "avatar": "", "wechat": "doris67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Mauris ullamcorper purus sit amet nulla.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.746Z", "created_by": "ruth84", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "2dbdca73-6145-42ee-84ba-fd62d61f3837", "fields": {"password": "pbkdf2_sha256$36000$n3NvgEK3TGPH$YlfKknOdBngsAtfQ866vTHR5rcnAqMPi+/ekTPz0gmM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.882Z", "username": "doris86", "name": "Helen Peterson", "email": "betty@skipstorm.info", "role": "Admin", "avatar": "", "wechat": "stephanie85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.882Z", "created_by": "amy74", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "3a8ea16b-a521-4370-b5b1-94768fd0292b", "fields": {"password": "pbkdf2_sha256$36000$7lReZD1aqZ25$E021ZGjB2p9YPTQ3M2elMV7cBJrT4fexUybzOilEttg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.039Z", "username": "elizabeth84", "name": "Elizabeth Wright", "email": "marie@midel.net", "role": "App", "avatar": "", "wechat": "doris72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cras pellentesque volutpat dui.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.039Z", "created_by": "cheryl74", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "3b7ea257-76cd-4ac9-988d-2e633a819fcc", "fields": {"password": "pbkdf2_sha256$36000$XcVLJ00m76u4$kKbm0F47WAj++Xjhyv7SSuy6Qd5yYEWMfirLAcOtSj0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.952Z", "username": "helen87", "name": "Rachel Chavez", "email": "frances@shufflebeat.gov", "role": "App", "avatar": "", "wechat": "rebecca67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Praesent id massa id nisl venenatis lacinia.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.952Z", "created_by": "katherine74", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "3cc3641d-8a9a-47d0-bd2e-07a342ad25d1", "fields": {"password": "pbkdf2_sha256$36000$mE1B13oy3VqR$SLpFkzBYIUg+3snAua5n9qj51kDjpbYe8o7/cLpgc/Y=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.013Z", "username": "amanda67", "name": "Louise Hernandez", "email": "carol@thoughtstorm.name", "role": "User", "avatar": "", "wechat": "deborah66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.013Z", "created_by": "margaret68", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "3f285d25-1fb2-41aa-ad99-20aa9332053a", "fields": {"password": "pbkdf2_sha256$36000$HMffFit6jPUQ$n446iBJ1mxqijaUMtyFKyUNcT8af8mI/j3iKB/TFPrM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.147Z", "username": "lisa84", "name": "Norma Watkins", "email": "sarah@edgeclub.mil", "role": "App", "avatar": "", "wechat": "deborah87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean auctor gravida sem.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.147Z", "created_by": "denise86", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "3f58b94c-ae39-4f24-ab06-49ecda9ed96b", "fields": {"password": "pbkdf2_sha256$36000$GZQxdWAAfpLM$PSzrA2VNWpJ41zhK67Rc0cp9XAN0MXPvMjdDzzkiWwY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:44.998Z", "username": "gloria82", "name": "Marilyn Hansen", "email": "janice@meetz.gov", "role": "User", "avatar": "", "wechat": "mary71", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed sagittis.", "is_first_login": false, "date_expired": "2087-11-20T08:20:44.999Z", "created_by": "admin", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "43c468cf-ecc3-4d7b-b1fc-ff033a45f529", "fields": {"password": "pbkdf2_sha256$36000$FET05R16KsGU$30yYgWTJJ6g5gTaodnG8uFnwH0WlQNlrEXl6vrhVhmM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.547Z", "username": "sharon84", "name": "Brenda Hamilton", "email": "maria@twitterbeat.gov", "role": "User", "avatar": "", "wechat": "denise91", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.547Z", "created_by": "sarah64", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "46e736be-8937-47d1-8244-857106feff0b", "fields": {"password": "pbkdf2_sha256$36000$GQJtJua0fxpq$uZyJjo+MkO2tyHEwlr+ukbU9bLbxNjb1Z4KEK+1M4Ug=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.680Z", "username": "joan88", "name": "Kathryn Martinez", "email": "kathleen@miboo.biz", "role": "User", "avatar": "", "wechat": "bonnie94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In quis justo.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.680Z", "created_by": "sandra90", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "4df1d5a9-9627-431c-a079-b880fd21323e", "fields": {"password": "pbkdf2_sha256$36000$0djue4WLyNAC$qexjZ5iUzUmRZrJjBSJ9F+49HbQ0YcXUujF0jB7KAwE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.561Z", "username": "marilyn69", "name": "Betty Spencer", "email": "heather@riffpedia.biz", "role": "User", "avatar": "", "wechat": "wanda67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam varius.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.561Z", "created_by": "mary85", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "54d963e9-9712-435e-8d58-085fc6fc88b1", "fields": {"password": "pbkdf2_sha256$36000$cJDQogliyC6D$t4zTZasnmtp2XWrvg3WV4ztL0a3m7EZtVYPhIUPuz14=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:51.104Z", "username": "jennifer76", "name": "Diana Sanders", "email": "shirley@livez.net", "role": "Admin", "avatar": "", "wechat": "diana80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "is_first_login": false, "date_expired": "2087-11-20T08:20:51.104Z", "created_by": "emily88", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "5d130adc-4e26-4251-9175-818c65bea65f", "fields": {"password": "pbkdf2_sha256$36000$zklFW4UIlY5m$UfKnn+HTKfo1Luuqqh2TzPvh3hiolSBqEu8RRSCjEr0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.916Z", "username": "kathleen72", "name": "Norma Fuller", "email": "lori@camimbo.name", "role": "Admin", "avatar": "", "wechat": "deborah71", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam molestie nibh in lectus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.916Z", "created_by": "bonnie74", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "61196f61-b30e-4533-b190-8ebf9cb2016c", "fields": {"password": "pbkdf2_sha256$36000$Txvk8KyVUqjC$NfTgG1B2HSoBgerUeqgpXiaVGFGqkaGBV3MwcUKiryY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.153Z", "username": "alice65", "name": "Michelle Hicks", "email": "kimberly@leexo.edu", "role": "App", "avatar": "", "wechat": "doris81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In sagittis dui vel nisl.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.153Z", "created_by": "doris73", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "6508bcc6-1ca0-40d7-8feb-f0a371c26364", "fields": {"password": "pbkdf2_sha256$36000$3ULJd9tQzGv6$My0v36L+qhqP8J44ngW1FIwFUnCj3x5GzavMKW7rS7k=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.676Z", "username": "catherine91", "name": "Doris Willis", "email": "lisa@mymm.gov", "role": "Admin", "avatar": "", "wechat": "phyllis64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Mauris ullamcorper purus sit amet nulla.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.676Z", "created_by": "elizabeth84", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "658d9699-1f02-4237-ae63-f25337cd4c38", "fields": {"password": "pbkdf2_sha256$36000$3SD0C1qH16ej$ztF0l/soLgQm/dMPlOWxF+PQnAain/Oso7RViaGkMGU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.815Z", "username": "linda93", "name": "Lisa Palmer", "email": "denise@rhybox.com", "role": "Admin", "avatar": "", "wechat": "andrea94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ac est lacinia nisi venenatis tristique.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.815Z", "created_by": "doris86", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "67637b7f-1717-4f52-b07f-d8bdb4eeebdd", "fields": {"password": "pbkdf2_sha256$36000$KY3hpdOCLA9V$T1M618Ce/keRem5/+zu75WjBnJ43DbZqHXOqOqRnil4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:44.822Z", "username": "jean73", "name": "Dorothy Walker", "email": "michael@feednation.mil", "role": "User", "avatar": "", "wechat": "cheryl67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante.", "is_first_login": false, "date_expired": "2087-11-20T08:20:44.822Z", "created_by": "admin", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "6b9a5f80-1a91-4c4b-b088-003470c09959", "fields": {"password": "pbkdf2_sha256$36000$jXuvMOkXTKwn$Rg5hTIMvpDyv34NixRSvSYFzZpEiEqRLvIa6DdC7O+c=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.234Z", "username": "mildred72", "name": "Kelly Ruiz", "email": "lisa@browsedrive.mil", "role": "App", "avatar": "", "wechat": "louise79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.234Z", "created_by": "denise86", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "6dfb5d80-e8cf-404e-84f5-e42a56421990", "fields": {"password": "pbkdf2_sha256$36000$pE7DY2lLRGVr$f20EcKdtPmSs2v9JTd/EICXZMaAuH4wEpHNtWee71NE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.054Z", "username": "rachel86", "name": "Barbara Foster", "email": "lori@devpoint.net", "role": "App", "avatar": "", "wechat": "cynthia75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.054Z", "created_by": "bobby67", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "6ef7f455-500c-4ad0-b813-235822d037fa", "fields": {"password": "pbkdf2_sha256$36000$JQ9Ng8CvX3qw$JFEAn3ThP05iaQet1L9mmsLYdO8sxXJ+WN5rn3wm11c=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.222Z", "username": "kathryn81", "name": "Ruby Hawkins", "email": "tina@snaptags.info", "role": "Admin", "avatar": "", "wechat": "judith81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis at velit eu est congue elementum.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.222Z", "created_by": "amanda67", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "74e8a737-6499-4411-bce0-6170e609dc4b", "fields": {"password": "pbkdf2_sha256$36000$DUDY3gC963EF$A0swyBoH4+/v892DUjZshnK8aq5y2hN21R/usqu345c=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.560Z", "username": "shirley87", "name": "Ann Oliver", "email": "paula@quinu.name", "role": "User", "avatar": "", "wechat": "judith91", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.560Z", "created_by": "nancy94", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "76b83bc0-122b-4f65-8613-d49728e4f7c0", "fields": {"password": "pbkdf2_sha256$36000$IjBHf1wVhrVr$CzuNfhwTM11SCWBKMUvPhRVLqvHD8sQGiMW+lueeEJE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:51.305Z", "username": "gloria75", "name": "Sarah Barnes", "email": "carol@tazzy.name", "role": "App", "avatar": "", "wechat": "jennifer72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas ut massa quis augue luctus tincidunt.", "is_first_login": false, "date_expired": "2087-11-20T08:20:51.305Z", "created_by": "karen75", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "77d8bd16-a79d-46ab-b56b-1a2aeb2bb4e7", "fields": {"password": "pbkdf2_sha256$36000$e7dB98TLCYc0$njPZU/eJb79K8eQmYygA4ScIDudgz2D/w0gAqIEM6T8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.598Z", "username": "robin65", "name": "Julie Brown", "email": "teresa@brightdog.info", "role": "User", "avatar": "", "wechat": "carolyn68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed sagittis.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.598Z", "created_by": "christine83", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "84690e31-6c78-43b4-af27-d004eeea72c8", "fields": {"password": "pbkdf2_sha256$36000$S2kN49YESsQo$dhOcKIR4dZsv17saaBG5L5A6+2bURHyYNZkYQXQlMYU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.481Z", "username": "deborah79", "name": "Janice Berry", "email": "sarah@fivechat.com", "role": "App", "avatar": "", "wechat": "denise74", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.481Z", "created_by": "jane94", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "84a8e881-8baa-4048-9c36-906cfd768a73", "fields": {"password": "pbkdf2_sha256$36000$C00pW8X6PWLQ$r+sm+WxJtFzMOzr7j20ee0jrvTg6fNFBfO44mMF0uTQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.283Z", "username": "angela93", "name": "Julia Snyder", "email": "elizabeth@meedoo.mil", "role": "User", "avatar": "", "wechat": "susan74", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.283Z", "created_by": "wanda88", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "893efcfd-83b4-4391-93e8-1a439e83a78e", "fields": {"password": "pbkdf2_sha256$36000$dZuppxeYK2Wn$4y6SCVkq3YMv01e01yPTYRFFcxiPK5Cs+LkPsDHJsug=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.427Z", "username": "katherine74", "name": "Christine Rogers", "email": "kimberly@innotype.gov", "role": "Admin", "avatar": "", "wechat": "cynthia81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.427Z", "created_by": "melissa87", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "8ae47e89-b1aa-46c0-b889-f39ec7c9d524", "fields": {"password": "pbkdf2_sha256$36000$psKjG67S6RJ1$FTBpXPptZhxwa+MP1TOA+wxrSIEVPjKEqfMVRe7QC8o=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.172Z", "username": "michelle67", "name": "Laura Frazier", "email": "norma@demivee.name", "role": "User", "avatar": "", "wechat": "maria77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ac est lacinia nisi venenatis tristique.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.172Z", "created_by": "cynthia70", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "8f30a514-aade-4179-85be-dfde6fbf29ae", "fields": {"password": "pbkdf2_sha256$36000$FQX8iBKyklSD$/uXjllZXSbukeyPHQ6ANtqjkrxYwDdXx5fK8oCxiPbQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.088Z", "username": "andrea85", "name": "Cheryl Cooper", "email": "evelyn@babblestorm.net", "role": "User", "avatar": "", "wechat": "virginia75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.088Z", "created_by": "wanda88", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "900ad3c2-20ab-41c4-9073-0db26d9e7062", "fields": {"password": "pbkdf2_sha256$36000$Y2RhGz7QZ2iT$PuB1fTERaUcNKz0ALtgPafW8bMKYqN+SZVn6Hi6rbF4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.417Z", "username": "sarah64", "name": "Brenda Robinson", "email": "tina@rhynoodle.gov", "role": "User", "avatar": "", "wechat": "kathy88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam porttitor lacus at turpis.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.417Z", "created_by": "katherine74", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "95cdcde0-593a-4280-a954-1c66a064fdf2", "fields": {"password": "pbkdf2_sha256$36000$rzMzLpd6G1nO$TbNohXyfh4GiBV+hIiRiiOCzeDvshn0yFIQcw9mnqEk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.948Z", "username": "stephanie64", "name": "Amanda Bradley", "email": "louise@shufflester.edu", "role": "Admin", "avatar": "", "wechat": "sharon84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla suscipit ligula in lacus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.948Z", "created_by": "kelly79", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "976db0b2-6471-4e74-83bb-22d1edf9d07a", "fields": {"password": "pbkdf2_sha256$36000$zUEvDDyaWk0h$VbDEFx9DJc2jAIAuo1D2GGuNKWK8bHjD8dZfGeYj5Y8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.816Z", "username": "lisa75", "name": "Sandra Brooks", "email": "paula@flashdog.name", "role": "App", "avatar": "", "wechat": "betty65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla justo.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.816Z", "created_by": "amy74", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "988ed037-fbc7-49a5-8ed6-6ba21443adf9", "fields": {"password": "pbkdf2_sha256$36000$CzKIzoR8JKMg$AKw9eZo+svCzAo7328hgBAC9DS8jEPnky1xEGSchLGQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.764Z", "username": "theresa89", "name": "Elizabeth Jordan", "email": "ann@babbleopia.name", "role": "Admin", "avatar": "", "wechat": "martha68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.764Z", "created_by": "jean73", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "997fb6db-5319-4831-a930-a03b584bf231", "fields": {"password": "pbkdf2_sha256$36000$QthLyekDYiUV$llkyfwgHXmpey8ItJwJZgGap11gkHr427eY2rH0lkIY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.115Z", "username": "cheryl74", "name": "Nancy Rodriguez", "email": "judith@feedfish.edu", "role": "User", "avatar": "", "wechat": "louise85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec semper sapien a libero.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.115Z", "created_by": "rachel86", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "9ac9786b-9b27-423a-8461-df8bb351517e", "fields": {"password": "pbkdf2_sha256$36000$72qCogFSa5tJ$ioBGLjf2/bpaGtztTtfg41Je4Xnc7IazJGLUCqsrc20=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.967Z", "username": "linda78", "name": "Irene Howell", "email": "lori@skajo.biz", "role": "Admin", "avatar": "", "wechat": "nancy87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nunc purus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.967Z", "created_by": "deborah79", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "9ce5cb35-b73a-43df-8db3-b5b9da2cfb80", "fields": {"password": "pbkdf2_sha256$36000$MMWxi7JlGqpu$QOTCNcSkUtny58A1jR/8nZiA4Tn0O+yg7OlyRoBayvs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.295Z", "username": "christine83", "name": "Alice Johnston", "email": "tina@ooba.biz", "role": "User", "avatar": "", "wechat": "tammy69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cras in purus eu magna vulputate luctus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.295Z", "created_by": "emily88", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "9d96f826-82c8-48bb-8e66-41eacf413685", "fields": {"password": "pbkdf2_sha256$36000$kEus08UgzXZk$Ak5DWw0MvDPlv/dxZCj9Jeob+YzlbjUDba+VxUVy6qU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.604Z", "username": "amy74", "name": "Margaret Taylor", "email": "robin@rhyloo.edu", "role": "User", "avatar": "", "wechat": "martha79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas tincidunt lacus at velit.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.604Z", "created_by": "betty87", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "9e0e7c8e-553b-456a-b094-fda19397e3c2", "fields": {"password": "pbkdf2_sha256$36000$bN66TMdazmSv$ZrtIdvydQKk0dzN7BvWg2tfZUWxN5eo7laoAOtjKOZw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.689Z", "username": "christine86", "name": "Ann Clark", "email": "debra@skivee.info", "role": "App", "avatar": "", "wechat": "kathleen85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam porttitor lacus at turpis.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.690Z", "created_by": "ruth84", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "a1fc1d65-0b93-431e-90d0-2ee614a85ac5", "fields": {"password": "pbkdf2_sha256$36000$HkM2ryYWSC45$4GmctDFRnDgAPL6g4kOUvPZCJ8PZbwHOEtezF/kfamw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.885Z", "username": "janice65", "name": "Anne Crawford", "email": "katherine@lazzy.edu", "role": "Admin", "avatar": "", "wechat": "judith91", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin eu mi.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.885Z", "created_by": "christine83", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "a7e872b9-3996-4472-86e6-360472786a01", "fields": {"password": "pbkdf2_sha256$36000$Wrqb3zlqjgJj$FafGjmmEhYQZuKNXbzhsSLUBfYLVhe+VsEyMvrJ5mqI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.492Z", "username": "diane63", "name": "Kathryn Jordan", "email": "katherine@geba.edu", "role": "Admin", "avatar": "", "wechat": "carol74", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean lectus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.492Z", "created_by": "kathryn81", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "a918e434-49de-4d8e-a31c-b579ce5caac4", "fields": {"password": "pbkdf2_sha256$36000$NUM8iFHKTJNj$DC2PKnWoflXTaDA4oWOffSANvBVbJ/UPH58/txeSQLc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.492Z", "username": "cynthia75", "name": "Judith Diaz", "email": "heather@jabbersphere.com", "role": "Admin", "avatar": "", "wechat": "judith72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In sagittis dui vel nisl.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.492Z", "created_by": "marie94", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "a9ef8ad6-e8ff-4ff0-a52f-de9e60c7a538", "fields": {"password": "pbkdf2_sha256$36000$Y7SVa80wf4J2$Rg1aqJW1hDa7VVfL+kWHz/pyIq/0/ezTRwwYojBLE4M=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.410Z", "username": "tammy68", "name": "Laura Wood", "email": "julia@jaxspan.name", "role": "User", "avatar": "", "wechat": "irene65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.410Z", "created_by": "michelle67", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "abbd32ac-f1a8-42df-8cf8-bdb33de6a422", "fields": {"password": "pbkdf2_sha256$36000$nSps6waft4W6$BEtvLVbNzNdLt8EdVwocfgYWkQqfAlYvm1wbCWd/rfs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.899Z", "username": "catherine89", "name": "Tina Ray", "email": "linda@eare.edu", "role": "App", "avatar": "", "wechat": "bonnie66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.899Z", "created_by": "brenda85", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "adba40a0-d9e8-4f17-b61f-023f0efc5c71", "fields": {"password": "pbkdf2_sha256$36000$pE7q8btYLdBG$Li5n43ady+BPnogN9OyvMZP6H1WUcElhwDffY70iBjQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.622Z", "username": "jane94", "name": "Theresa Evans", "email": "janet@skilith.net", "role": "User", "avatar": "", "wechat": "jennifer72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus tortor.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.622Z", "created_by": "wanda88", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "aeeff980-5eca-4348-82fd-b728edad73df", "fields": {"password": "pbkdf2_sha256$36000$2W6LZl4pLNz9$7sd1/teKLDGYCa19oJS030Y/kbP8TxYT68HXEjUN8Yw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.456Z", "username": "wanda88", "name": "Linda Edwards", "email": "kathy@dablist.com", "role": "Admin", "avatar": "", "wechat": "sarah85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla mollis molestie lorem.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.456Z", "created_by": "doris73", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "b1305e47-a5fd-4a96-9ad4-1b42e1ff02ab", "fields": {"password": "pbkdf2_sha256$36000$ispYVWEwhld1$fBI4sKsYg1kN1GxAcpPWo2akYpYr+e4ZHJTBr9GGwvg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.964Z", "username": "wanda76", "name": "Linda Kennedy", "email": "diana@wikizz.com", "role": "Admin", "avatar": "", "wechat": "judith94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque eget nunc.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.964Z", "created_by": "cheryl74", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "b6ba2c18-4c1d-4bfc-b797-7b08a0716510", "fields": {"password": "pbkdf2_sha256$36000$qjlVpHgp4L3N$3JBdqZn2lUQAEW2iDj6P8G8UPnGtEdGJfZUVhEMa14c=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.363Z", "username": "deborah91", "name": "Patricia Kim", "email": "louise@skiptube.org", "role": "User", "avatar": "", "wechat": "christine89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.363Z", "created_by": "admin", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "b85ef060-fe34-439e-9ba1-80830c6b1154", "fields": {"password": "pbkdf2_sha256$36000$vXYezntEBYrO$yxVQbywPPzS6X739/FXf7jn0mOf9OV9QWB2rl2GjOPQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.884Z", "username": "jane91", "name": "Amanda Ward", "email": "heather@vinder.com", "role": "User", "avatar": "", "wechat": "jacqueline88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean fermentum.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.884Z", "created_by": "kimberly76", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "b999c5a8-bf0c-4b75-a947-7d2ebefe937a", "fields": {"password": "pbkdf2_sha256$36000$5iE8awzRgDmB$CrXjLEN4I1GZiXpGlW6LL2etCUnpw2cHM+rp0HGfdKI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.977Z", "username": "marilyn92", "name": "Margaret Cruz", "email": "denise@skimia.edu", "role": "Admin", "avatar": "", "wechat": "jean84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus vel nulla eget eros elementum pellentesque.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.977Z", "created_by": "michelle67", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "bac381b9-bc3d-405f-8ec2-fe63e38cf642", "fields": {"password": "pbkdf2_sha256$36000$ieFjMrLRH9D9$fvgRX8vuyXPTrh8qe95OGt5UDPHj3a/H9OTjGH6N9YQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.478Z", "username": "bonnie74", "name": "Debra Crawford", "email": "maria@devshare.info", "role": "User", "avatar": "", "wechat": "mildred93", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse potenti.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.478Z", "created_by": "cheryl74", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "baf87b84-f58e-4f7e-8237-305fb031fb42", "fields": {"password": "pbkdf2_sha256$36000$x4p6j1gtzDyh$sKywBUyC1CYsJZU/4N48KfMdxACnYJw15h6gUfCsSPM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:51.234Z", "username": "judith91", "name": "Andrea Diaz", "email": "lori@trilith.org", "role": "App", "avatar": "", "wechat": "pamela89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "is_first_login": false, "date_expired": "2087-11-20T08:20:51.234Z", "created_by": "mary85", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "bd5c73f2-d42e-4def-b032-1dde457eff9f", "fields": {"password": "pbkdf2_sha256$36000$tiZlhQDhDmM2$UE+GwjLORRbWu6/5XAVXE0vhLzrtLE4TFOSNUudneoI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.231Z", "username": "maria72", "name": "Sandra Owens", "email": "katherine@linkbuzz.com", "role": "App", "avatar": "", "wechat": "michelle66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi porttitor lorem id ligula.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.231Z", "created_by": "anna68", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "bf894606-81e4-4285-8f05-74a681b074e2", "fields": {"password": "pbkdf2_sha256$36000$3BnPvXORCEYA$wag/o7EnBJf+CR2W1byLqIAd56jAJKiKkn3pkpBL9XA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.287Z", "username": "betty87", "name": "Lillian Barnes", "email": "anne@gabspot.gov", "role": "User", "avatar": "", "wechat": "jane84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nunc nisl.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.287Z", "created_by": "cynthia70", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "c23e3afa-42a0-4336-b57c-c8bfdde80e8c", "fields": {"password": "pbkdf2_sha256$36000$4NcioMUKB3nf$KgDvjCpDccUTk5U6AQG2OyM7YzM0pX27tyrg3lmIrSc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.018Z", "username": "ruth67", "name": "Deborah Parker", "email": "katherine@riffpath.edu", "role": "Admin", "avatar": "", "wechat": "wanda74", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.018Z", "created_by": "jean73", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "c72887dd-2629-42ce-a781-719415dc2376", "fields": {"password": "pbkdf2_sha256$36000$Vl4z5b4ML07c$Fws7ChAspG1fhm5XYPoFaGPcx0phq+IImPj2PbA9OyI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.950Z", "username": "diane88", "name": "Sara Burns", "email": "angela@ainyx.edu", "role": "Admin", "avatar": "", "wechat": "amanda65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus vestibulum sagittis sapien.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.950Z", "created_by": "sharon84", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "c759f080-d06a-4266-9626-2b76d98f274c", "fields": {"password": "pbkdf2_sha256$36000$Eyilxpy2FODw$uFy7ZheueWfuQnI7JIj7draAlHJas7SMXqbgQZN/JG4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.792Z", "username": "anna68", "name": "Irene Andrews", "email": "brenda@dynabox.net", "role": "App", "avatar": "", "wechat": "amanda83", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam dui.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.792Z", "created_by": "bonnie74", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "c86f492a-7ba7-43cb-aa30-65217190056c", "fields": {"password": "pbkdf2_sha256$36000$lhH7D2Q9po5S$huBkHUy22xssZieRDnNuAZpIBIl/D+mEi0Z5OTp+qsk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.820Z", "username": "nancy94", "name": "Linda Lynch", "email": "debra@yabox.biz", "role": "Admin", "avatar": "", "wechat": "carolyn81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nunc purus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.820Z", "created_by": "wanda88", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "c88eaa6a-0991-4bbf-accd-01639316b5b7", "fields": {"password": "pbkdf2_sha256$36000$Q0baEgcoCokf$QJUjraa4FX1lhOpPPcl8n9zMrFPV/PyNjdIZ+BkiXTA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.230Z", "username": "phyllis92", "name": "Frances Wells", "email": "julia@vinte.name", "role": "User", "avatar": "", "wechat": "maria66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.230Z", "created_by": "admin", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "c9bd556f-5d95-40f7-b827-ce165a84a497", "fields": {"password": "pbkdf2_sha256$36000$aOKSaSe20zFK$De+cDQazS8vbI/K0E5emmD6PB5zqaaNfcuHlOG77UPE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:44.882Z", "username": "bobby67", "name": "Jane Perry", "email": "annie@jatri.gov", "role": "User", "avatar": "", "wechat": "stephanie78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec posuere metus vitae ipsum.", "is_first_login": false, "date_expired": "2087-11-20T08:20:44.882Z", "created_by": "jean73", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "ca62a021-f557-4158-969a-b14aafc30a55", "fields": {"password": "pbkdf2_sha256$36000$baahuyfFqrof$Q3xb+dKNlJfwDoLc06QgIeTruvV4g0LsWX2w9T7HsPc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.301Z", "username": "kelly79", "name": "Julia Moore", "email": "gloria@tagopia.info", "role": "User", "avatar": "", "wechat": "debra87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Praesent lectus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.302Z", "created_by": "gloria82", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "cbd5fcae-728e-4fce-9cff-e21279475db8", "fields": {"password": "pbkdf2_sha256$36000$EsdCABCYFCmk$4PKD08PlCDFS+B/eIjEf0OUwWGEy8UTB/eErANceBRA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.854Z", "username": "melissa87", "name": "Angela Wilson", "email": "sandra@brainverse.edu", "role": "App", "avatar": "", "wechat": "nancy89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam erat volutpat.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.854Z", "created_by": "margaret68", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "cc00cb90-3e2b-47ea-ac01-21a7c14b4010", "fields": {"password": "pbkdf2_sha256$36000$d4IV0ba51pDb$AoJIunbxHi83NLprK+cXuRohCvqKyjli2i7EGyE0MUU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.349Z", "username": "emily88", "name": "Laura Garcia", "email": "irene@trupe.com", "role": "App", "avatar": "", "wechat": "donna78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.349Z", "created_by": "admin", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "cc97024b-003d-4b10-8166-221a5a5c4ad4", "fields": {"password": "pbkdf2_sha256$36000$g4RAXiMBcQoq$UzocQ6FRPTSUs5NelpUMorVga29rHGMuEiGch2cRQtE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.627Z", "username": "brenda85", "name": "Linda Romero", "email": "sarah@gigabox.biz", "role": "User", "avatar": "", "wechat": "mildred66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas rhoncus aliquam lacus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.628Z", "created_by": "anna85", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "ccdc9718-ca0a-4cf9-bc6f-0b3294db3dd0", "fields": {"password": "pbkdf2_sha256$36000$cFhZPJr62jYU$2IMi4Zmz0DUkOWrcM6mrTi9rZ5VDGFswjOxUmla/h9o=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.557Z", "username": "kimberly76", "name": "Catherine Griffin", "email": "betty@midel.net", "role": "User", "avatar": "", "wechat": "phyllis79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse accumsan tortor quis turpis.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.557Z", "created_by": "emily88", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "d0df0f52-e192-48e1-abdd-76599036db0d", "fields": {"password": "pbkdf2_sha256$36000$5CIt1BMId38U$DOUs3pzqsdLyNCU7n+JkhUyhbMNq10xDirEREHBTj0Q=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.166Z", "username": "brenda80", "name": "Teresa Crawford", "email": "jacqueline@wikizz.org", "role": "App", "avatar": "", "wechat": "debra93", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin risus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.166Z", "created_by": "melissa87", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "d3be688a-57ed-42c3-941c-bf64b337ff1a", "fields": {"password": "pbkdf2_sha256$36000$MKJYXuqE9zsA$+0LCYWZ2YDoEzcVIDiOhxKDtMdn1WHjzVeePh8v/EN0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.164Z", "username": "doris73", "name": "Stephanie Stevens", "email": "lillian@chatterbridge.info", "role": "Admin", "avatar": "", "wechat": "ann83", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin at turpis a pede posuere nonummy.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.164Z", "created_by": "anna68", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "dc98b1fe-814f-4aa4-b2ef-816d4dcd0cd8", "fields": {"password": "pbkdf2_sha256$36000$sTyK1iWh1Phq$shM3tDQxsHTkxmqa0V6L2ya59oCe4J9ybhpxqO96Rto=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.427Z", "username": "kimberly82", "name": "Jacqueline Greene", "email": "sandra@thoughtmix.org", "role": "App", "avatar": "", "wechat": "sarah63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.427Z", "created_by": "melissa79", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "ddf3ad0c-da0e-4c17-9700-b3280721c936", "fields": {"password": "pbkdf2_sha256$36000$7CEJewV0ogIh$0g9IgP/DVu3uZiEcrs8SLGcL+DOvKl5QujvDc8Fb4VA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.090Z", "username": "ruth71", "name": "Norma Martinez", "email": "tina@skaboo.mil", "role": "Admin", "avatar": "", "wechat": "judy64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur gravida nisi at nibh.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.090Z", "created_by": "wanda88", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "df237a5b-5c4d-43ea-ab81-de884bba2c59", "fields": {"password": "pbkdf2_sha256$36000$jGI2I4XD11MZ$9ESz8XB/fLX45r1Z92nLr1MKOx2atRIowtTP6S42ymU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.363Z", "username": "karen75", "name": "Wanda Kelley", "email": "donna@npath.gov", "role": "App", "avatar": "", "wechat": "cynthia63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin risus.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.363Z", "created_by": "doris73", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "df4c346e-2813-4e70-8b75-ae22c615c0d7", "fields": {"password": "pbkdf2_sha256$36000$cXwp6rlD0xcr$XlHVK8SKPUmek6w8RwiBiaTfXFvpaen9kh64Wc97C3I=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.495Z", "username": "rachel76", "name": "Heather Alvarez", "email": "katherine@kanoodle.name", "role": "Admin", "avatar": "", "wechat": "sarah84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque porta volutpat erat.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.495Z", "created_by": "karen75", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "e00a494e-8a75-4a32-a3d4-8146d5943383", "fields": {"password": "pbkdf2_sha256$36000$DMD8RAEYTMni$XSXVQ7yHM+3YEpe8vtyMU37On9EBPkoQuD8W+SUzhOE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.352Z", "username": "joan86", "name": "Diane Moreno", "email": "andrea@feedmix.org", "role": "Admin", "avatar": "", "wechat": "nancy80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur convallis.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.352Z", "created_by": "gloria82", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "e2419c14-bad8-41c2-b0a6-6af0647d9861", "fields": {"password": "pbkdf2_sha256$36000$VG90MjpKpZq9$HD5qgv/+VCJWL9whQePuhOqGWvIk812WZoSE7Xw75lQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.623Z", "username": "sara67", "name": "Carol Harrison", "email": "judith@reallinks.mil", "role": "User", "avatar": "", "wechat": "louise74", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed sagittis.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.623Z", "created_by": "brenda80", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "e2bb5ed2-7ef9-4645-841d-622e8600ba10", "fields": {"password": "pbkdf2_sha256$36000$pWyXKcODSv1S$BaJvNB0wGxH/2EivCZ98gx44uxM/pgwiNTy9n7vxQRE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.215Z", "username": "frances91", "name": "Sara Harrison", "email": "joan@teklist.net", "role": "Admin", "avatar": "", "wechat": "beverly90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla mollis molestie lorem.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.215Z", "created_by": "janice65", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "e5c687d5-2287-483d-850a-49a2fc50fb62", "fields": {"password": "pbkdf2_sha256$36000$YZf2tNqNLcnO$sCkn27Co5bVcjxm9Vf4zBkYwOoXfDQoXDhYHjV8cPQA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:51.368Z", "username": "christina73", "name": "Wanda Bradley", "email": "judith@jabbertype.gov", "role": "Admin", "avatar": "", "wechat": "diane84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "is_first_login": false, "date_expired": "2087-11-20T08:20:51.368Z", "created_by": "judy68", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "e8c3b8f8-fa07-4612-abc0-6027449da1e2", "fields": {"password": "pbkdf2_sha256$36000$eZ4yYmSXYUiS$iTM47iUrc9vMmO37bhmvNA4OlVZ2pKAOIHLWMB0pR4w=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:51.169Z", "username": "sarah87", "name": "Susan Fields", "email": "julie@gabtune.edu", "role": "Admin", "avatar": "", "wechat": "diane90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "is_first_login": false, "date_expired": "2087-11-20T08:20:51.170Z", "created_by": "admin", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "edc529d5-0377-4456-831f-ec42cf5b34d2", "fields": {"password": "pbkdf2_sha256$36000$3VcSL8Ap6zHd$14Y4+uZHRU8gwFgEXdIEZZ2+NWV15sRBV2YWgWbdyhY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:09.494Z", "username": "admin", "name": "Administrator", "email": "admin@jumpserver.org", "role": "Admin", "avatar": "", "wechat": "", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Administrator is the super user of system", "is_first_login": false, "date_expired": "2087-11-20T08:20:09.494Z", "created_by": "System", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "ee6783eb-e28a-46de-af4d-5f141b5d00ff", "fields": {"password": "pbkdf2_sha256$36000$PE8tb0ELw96J$eVcNnYpmeItf5IxmQ6SzxyE37WgY+sCTsxKuNrswqfw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.696Z", "username": "jennifer88", "name": "Frances Lawson", "email": "brenda@twitterwire.biz", "role": "User", "avatar": "", "wechat": "helen80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi a ipsum.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.696Z", "created_by": "ruth84", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "eec71fff-0071-4540-abd7-c04e5f4c1253", "fields": {"password": "pbkdf2_sha256$36000$sRs2tOHUXeOf$Sv08+zpL65DatVkLKvmFQzXuuetmD/8VTFJEvDoT074=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.667Z", "username": "theresa73", "name": "Ruby Wilson", "email": "michelle@centimia.mil", "role": "App", "avatar": "", "wechat": "judy63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse potenti.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.667Z", "created_by": "phyllis92", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "eee9d142-acf6-47c0-ac34-753b8fe6a79a", "fields": {"password": "pbkdf2_sha256$36000$PDgyhClJSgk5$54bSRv/LASscHDwEaa21531m3mWKU6gnI1Q/r2v2tZw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.361Z", "username": "denise86", "name": "Teresa Anderson", "email": "norma@gevee.mil", "role": "App", "avatar": "", "wechat": "donna94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.361Z", "created_by": "elizabeth84", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "f5c41b9b-506f-425e-a2ba-7e671888e6be", "fields": {"password": "pbkdf2_sha256$36000$3pLuPgNpQKcf$oMNe1NkI9JWnqQQQ3HGgwzGd5LPdsaApOimTxa1Dqp8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:49.747Z", "username": "judith70", "name": "Paula Little", "email": "lori@feedspan.gov", "role": "Admin", "avatar": "", "wechat": "debra86", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.", "is_first_login": false, "date_expired": "2087-11-20T08:20:49.747Z", "created_by": "rachel86", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "f6dcb401-6db4-4f35-b430-1e57bb042ab6", "fields": {"password": "pbkdf2_sha256$36000$ERbzYcpezZ1B$CuvGMj7LhEcVaNouIi3nocUEzbpL1RVLvAQZH8vLLhE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:45.540Z", "username": "margaret68", "name": "Rachel White", "email": "wanda@edgeclub.com", "role": "App", "avatar": "", "wechat": "rebecca67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam nulla.", "is_first_login": false, "date_expired": "2087-11-20T08:20:45.540Z", "created_by": "jean73", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "f921ca32-0cfe-4e42-8c94-7d6b3625d402", "fields": {"password": "pbkdf2_sha256$36000$qn44GrsBcawS$YYlPQrCcHV1YblGlt3rqHC6dU16VhDd8HcWu3hH+g6I=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:46.528Z", "username": "ruth84", "name": "Stephanie Lopez", "email": "heather@gigazoom.info", "role": "User", "avatar": "", "wechat": "melissa83", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Ut at dolor quis odio consequat varius.", "is_first_login": false, "date_expired": "2087-11-20T08:20:46.528Z", "created_by": "margaret68", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "f956dff0-53a4-4ece-a245-9e046e50abdc", "fields": {"password": "pbkdf2_sha256$36000$3MYJAB1Ck8xG$jhxDJGKJRbSskDKAv52OC4U9WjcizaLArpMHFAnv1Dk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:50.156Z", "username": "judy68", "name": "Laura Evans", "email": "deborah@feedfire.edu", "role": "App", "avatar": "", "wechat": "rose81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "is_first_login": false, "date_expired": "2087-11-20T08:20:50.156Z", "created_by": "anna68", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "fc46c58e-b3e4-49ce-baed-cd316dc8f5cb", "fields": {"password": "pbkdf2_sha256$36000$BDLiryRYnwLq$IUnDvbsiAJPtLosybtjZ7GGPNV8UlFhlZfyN87nb7Qs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.754Z", "username": "margaret94", "name": "Irene Phillips", "email": "pamela@quimm.com", "role": "App", "avatar": "", "wechat": "bonnie73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.754Z", "created_by": "michelle67", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "fc50d1b3-e794-4ada-9380-72d74f232a24", "fields": {"password": "pbkdf2_sha256$36000$vg4IGE06ODw4$an5eZ5ffmXbTfWWjW+lLNgmmL6I2Lb5t0hA86+8cf9c=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:47.094Z", "username": "stephanie79", "name": "Tina Cook", "email": "mary@aimbo.name", "role": "App", "avatar": "", "wechat": "joyce91", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Ut at dolor quis odio consequat varius.", "is_first_login": false, "date_expired": "2087-11-20T08:20:47.095Z", "created_by": "doris73", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}, {"model": "users.user", "pk": "fe868e28-5c1d-4c79-b56b-7631b6c7793f", "fields": {"password": "pbkdf2_sha256$36000$0PVjqtfrlrJt$xmJUXi2oK8NpDtFTmnF6V38FvB8AFU9kaK2KkH5kx1I=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:48.285Z", "username": "melissa79", "name": "Jessica Morris", "email": "maria@divape.name", "role": "App", "avatar": "", "wechat": "ruth89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "is_first_login": false, "date_expired": "2087-11-20T08:20:48.286Z", "created_by": "jane94", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}] \ No newline at end of file diff --git a/apps/fixtures/init.json b/apps/fixtures/init.json index b8404ff01..5b946acd5 100644 --- a/apps/fixtures/init.json +++ b/apps/fixtures/init.json @@ -1 +1 @@ -[{"model": "users.usergroup", "pk": "0460a32e-59c9-42cc-81a5-7e0a13fc0085", "fields": {"is_discard": false, "discard_time": null, "name": "Default", "comment": "Default user group", "date_created": "2017-11-23T03:59:09.875Z", "created_by": "System"}}, {"model": "assets.idc", "pk": "937922e3-e2b7-42aa-b460-6b276901f53a", "fields": {"name": "Default", "bandwidth": "", "contact": "", "phone": "", "address": "", "intranet": "", "extranet": "", "date_created": "2017-11-23T03:59:09.882Z", "operator": "", "created_by": "System", "comment": "Default IDC"}}, {"model": "assets.assetgroup", "pk": "f758dc94-b979-4edf-9afc-f9171f9d2d6a", "fields": {"name": "Default", "created_by": "", "date_created": "2017-11-23T03:59:09.883Z", "comment": "Default asset group", "system_users": []}}, {"model": "users.user", "pk": "bb318c48-4f50-483e-a165-89d7f18e9e95", "fields": {"password": "pbkdf2_sha256$36000$kHqN5uCVaAk9$SXWzKLwBg68/2W8NLSNJIaVBJc60F26p8RO9E3oSskI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-11-23T03:59:09.828Z", "username": "admin", "name": "Administrator", "email": "admin@jumpserver.org", "role": "Admin", "avatar": "", "wechat": "", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Administrator is the super user of system", "is_first_login": false, "date_expired": "2087-11-06T03:59:09.829Z", "created_by": "System", "user_permissions": [], "groups": ["0460a32e-59c9-42cc-81a5-7e0a13fc0085"]}}] \ No newline at end of file +[{"model": "users.usergroup", "pk": "2e0b2a25-b32f-44a0-b087-f0f17de66e26", "fields": {"is_discard": false, "discard_time": null, "name": "Default", "comment": "Default user group", "date_created": "2017-12-07T08:20:09.593Z", "created_by": "System"}}, {"model": "assets.cluster", "pk": "c0df1aa0-bde7-4226-a69a-d02976888456", "fields": {"name": "Default", "bandwidth": "", "contact": "", "phone": "", "address": "", "intranet": "", "extranet": "", "date_created": "2017-12-07T08:20:09.606Z", "operator": "", "created_by": "System", "comment": "Default Cluster"}}, {"model": "assets.assetgroup", "pk": "881a0460-7989-42af-a588-957efe57fb8e", "fields": {"name": "Default", "created_by": "", "date_created": "2017-12-07T08:20:09.610Z", "comment": "Default asset group", "system_users": []}}, {"model": "users.user", "pk": "edc529d5-0377-4456-831f-ec42cf5b34d2", "fields": {"password": "pbkdf2_sha256$36000$3VcSL8Ap6zHd$14Y4+uZHRU8gwFgEXdIEZZ2+NWV15sRBV2YWgWbdyhY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-12-07T08:20:09.494Z", "username": "admin", "name": "Administrator", "email": "admin@jumpserver.org", "role": "Admin", "avatar": "", "wechat": "", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Administrator is the super user of system", "is_first_login": false, "date_expired": "2087-11-20T08:20:09.494Z", "created_by": "System", "user_permissions": [], "groups": ["2e0b2a25-b32f-44a0-b087-f0f17de66e26"]}}] \ No newline at end of file diff --git a/apps/locale/zh/LC_MESSAGES/django.po b/apps/locale/zh/LC_MESSAGES/django.po index dfe09da5a..6b9ed4a08 100644 --- a/apps/locale/zh/LC_MESSAGES/django.po +++ b/apps/locale/zh/LC_MESSAGES/django.po @@ -467,7 +467,7 @@ msgstr "系统用户" #: assets/models/asset.py:52 assets/templates/assets/asset_detail.html:85 #: templates/_nav.html:23 -msgid "IDC" +msgid "Cluster" msgstr "机房" #: assets/models/asset.py:53 assets/templates/assets/asset_detail.html:129 @@ -618,8 +618,8 @@ msgid "System" msgstr "系统" #: assets/models/idc.py:43 -msgid "Default IDC" -msgstr "默认IDC" +msgid "Default Cluster" +msgstr "默认Cluster" #: assets/models/user.py:24 #, python-format @@ -1080,8 +1080,8 @@ msgstr "您确定删除吗?" #: assets/templates/assets/idc_assets.html:23 #: assets/templates/assets/idc_assets.html:31 #: assets/templates/assets/idc_detail.html:21 -msgid "IDC assets" -msgstr "IDC资产" +msgid "Cluster assets" +msgstr "Cluster资产" #: assets/templates/assets/idc_assets.html:68 #, fuzzy @@ -1104,25 +1104,25 @@ msgid "Asset Updated" msgstr "更新" #: assets/templates/assets/idc_list.html:10 assets/views/idc.py:39 -msgid "Create IDC" -msgstr "创建IDC" +msgid "Create Cluster" +msgstr "创建Cluster" #: assets/templates/assets/idc_list.html:95 msgid "This will delete the selected idc" -msgstr "删除选择IDC" +msgstr "删除选择Cluster" #: assets/templates/assets/idc_list.html:103 -msgid "IDC Deleted." +msgid "Cluster Deleted." msgstr "已被删除" #: assets/templates/assets/idc_list.html:104 #: assets/templates/assets/idc_list.html:109 -msgid "IDC Delete" +msgid "Cluster Delete" msgstr "删除" #: assets/templates/assets/idc_list.html:108 -msgid "IDC Deleting failed." -msgstr "IDC删除失败" +msgid "Cluster Deleting failed." +msgstr "Cluster删除失败" #: assets/templates/assets/system_user_asset.html:20 #: assets/templates/assets/system_user_detail.html:22 @@ -1208,8 +1208,8 @@ msgid "Asset group detail" msgstr "资产组详情" #: assets/views/idc.py:23 -msgid "IDC list" -msgstr "IDC列表" +msgid "Cluster list" +msgstr "Cluster列表" #: assets/views/idc.py:38 assets/views/idc.py:65 #: ops/templates/ops/task_detail.html:84 @@ -1217,8 +1217,8 @@ msgid "assets" msgstr "资产管理" #: assets/views/idc.py:66 -msgid "Update IDC" -msgstr "更新IDC" +msgid "Update Cluster" +msgstr "更新Cluster" #: assets/views/system_user.py:31 msgid "System user list" diff --git a/apps/ops/ansible/runner.py b/apps/ops/ansible/runner.py index ffe35935c..6fa765a67 100644 --- a/apps/ops/ansible/runner.py +++ b/apps/ops/ansible/runner.py @@ -29,7 +29,7 @@ Options = namedtuple('Options', [ 'ssh_common_args', 'ssh_extra_args', 'sftp_extra_args', 'scp_extra_args', 'become', 'become_method', 'become_user', 'verbosity', 'check', 'extra_vars', 'playbook_path', 'passwords', - 'diff', + 'diff', 'gathering' ]) @@ -58,6 +58,7 @@ def get_default_options(): playbook_path='/etc/ansible/', passwords=None, diff=False, + gathering='implicit', ) return options diff --git a/apps/ops/models.py b/apps/ops/models.py index f1238ee3f..736189f41 100644 --- a/apps/ops/models.py +++ b/apps/ops/models.py @@ -6,8 +6,9 @@ import uuid from django.db import models from django.utils.translation import ugettext_lazy as _ +from common.utils import signer -__all__ = ["AdHoc", "History"] +__all__ = ["AdHoc", "AdHocRunHistory"] logger = logging.getLogger(__name__) @@ -16,6 +17,8 @@ logger = logging.getLogger(__name__) class AdHoc(models.Model): id = models.UUIDField(default=uuid.uuid4, primary_key=True) name = models.CharField(max_length=128, blank=True, verbose_name=_('Name')) + is_deleted = models.BooleanField(default=False) + date_create = models.DateTimeField(auto_created=True) @property def short_id(self): @@ -39,7 +42,7 @@ class AdHocData(models.Model): become = models.BooleanField(default=False, verbose_name=_("Become")) become_method = models.CharField(choices=BECOME_METHOD_CHOICES, default='sudo', max_length=4) become_user = models.CharField(default='root', max_length=64) - become_pass = models.CharField(default='', max_length=128) + _become_pass = models.CharField(default='', max_length=128) pattern = models.CharField(max_length=64, default='', verbose_name=_('Pattern')) created_by = models.CharField(max_length=64, verbose_name=_('Create by')) date_created = models.DateTimeField(auto_created=True) @@ -60,15 +63,29 @@ class AdHocData(models.Model): def hosts(self, item): self._hosts = json.dumps(item) + @property + def become_pass(self): + return signer.unsign(self._become_pass) + + @become_pass.setter + def become_pass(self, password): + self._become_pass = signer.sign(password) + @property def short_version(self): return str(self.version).split('-')[-1] + def run(self): + pass + def __str__(self): return "{} of {}".format(self.subject.name, self.short_version) + class Meta: + db_table = "ops_adhoc_data" + -class AdHocHistory(models.Model): +class AdHocRunHistory(models.Model): uuid = models.UUIDField(default=uuid.uuid4, primary_key=True) adhoc = models.ForeignKey(AdHocData, on_delete=models.CASCADE) date_start = models.DateTimeField(auto_now_add=True, verbose_name=_('Start time')) @@ -85,3 +102,6 @@ class AdHocHistory(models.Model): def __str__(self): return self.short_id + + class Meta: + db_table = "ops_adhoc_history" diff --git a/apps/ops/utils.py b/apps/ops/utils.py index 34fc79f0a..a20db96b0 100644 --- a/apps/ops/utils.py +++ b/apps/ops/utils.py @@ -9,77 +9,16 @@ import uuid from django.utils import timezone -from assets.models import Asset -from common.utils import get_logger -from .ansible.runner import AdHocRunner +from common.utils import get_logger, get_object_or_none +from .ansible import AdHocRunner +from assets.utils import get_assets_by_hostname_list logger = get_logger(__file__) +UUID_PATTERN = re.compile(r'[0-9a-zA-Z\-]{36}') -def run_AdHoc(task_tuple, assets, - task_name='Ansible AdHoc runner', - task_id=None, pattern='all', - record=True, verbose=True): - """ - :param task_tuple: (('module_name', 'module_args'), ('module_name', 'module_args')) - :param assets: [asset1, asset2] - :param task_name: - :param task_id: - :param pattern: - :param record: - :param verbose: - :return: summary: {'success': [], 'failed': [{'192.168.1.1': 'msg'}]} - result: {'contacted': {'hostname': [{''}, {''}], 'dark': []} - """ - - if not assets: - logger.warning('Empty assets, runner cancel') - return - if isinstance(assets[0], Asset): - assets = [asset._to_secret_json() for asset in assets] - if task_id is None: - task_id = str(uuid.uuid4()) - - runner = AdHocRunner(assets) - if record: - from .models import Playbook - if not Playbook.objects.filter(uuid=task_id): - record = Playbook(uuid=task_id, - name=task_name, - assets=','.join(str(asset['id']) for asset in assets), - module_args=task_tuple, - pattern=pattern) - record.save() - else: - record = Playbook.objects.get(uuid=task_id) - record.date_start = timezone.now() - record.date_finished = None - record.timedelta = None - record.is_finished = False - record.is_success = False - record.save() - ts_start = time.time() - if verbose: - logger.debug('Start runner {}'.format(task_name)) - result = runner.run(task_tuple, pattern=pattern, task_name=task_name) - timedelta = round(time.time() - ts_start, 2) - summary = runner.clean_result() - if record: - record.date_finished = timezone.now() - record.is_finished = True - if verbose: - record.result = json.dumps(result, indent=4, sort_keys=True) - record.summary = json.dumps(summary) - record.timedelta = timedelta - if len(summary['failed']) == 0: - record.is_success = True - else: - record.is_success = False - record.save() - return summary, result - - -UUID_PATTERN = re.compile(r'[0-9a-zA-Z\-]{36}') +def run_AdHoc(): + pass def is_uuid(s): @@ -99,3 +38,60 @@ def asset_to_dict_with_credential(asset): def system_user_to_dict_with_credential(system_user): return system_user._to_secret_json() + + +def get_hosts_with_admin(hostname_list): + assets = get_assets_by_hostname_list(hostname_list) + return [asset._to_secret_json for asset in assets] + + +def get_hosts(hostname_list): + assets = get_assets_by_hostname_list(hostname_list) + return [asset.to_json for asset in assets] + + +def get_run_user(name): + from assets.models import SystemUser + system_user = get_object_or_none(SystemUser, name=name) + if system_user is None: + return {} + else: + return system_user._to_secret_json() + + +def get_hosts_with_run_user(hostname_list, run_as): + hosts_dict = get_hosts(hostname_list) + system_user_dct = get_run_user(run_as) + + for host in hosts_dict: + host.update(system_user_dct) + return hosts_dict + + +def hosts_add_become(hosts, adhoc_data): + if adhoc_data.become: + become_data = { + "become": { + "method": adhoc_data.become_method, + "user": adhoc_data.become_user, + "pass": adhoc_data.become_pass, + } + } + for host in hosts: + host.update(become_data) + return hosts + + +def run_adhoc(adhoc_data, forks=10): + tasks = adhoc_data.tasks + hostname_list = adhoc_data.hosts + adhoc_name = adhoc_data.subject.name + + if adhoc_data.run_as_admin: + hosts = get_hosts_with_admin(adhoc_data.hosts) + else: + hosts = get_hosts_with_run_user(hostname_list, adhoc_data.run_as) + hosts_add_become(hosts, adhoc_data) # admin user 自带become + + runner = AdHocRunner(hosts) + runner.set_option('forks', forks) diff --git a/apps/ops/views.py b/apps/ops/views.py index 628bce065..8f2afbb0e 100644 --- a/apps/ops/views.py +++ b/apps/ops/views.py @@ -9,7 +9,7 @@ from django.views.generic import ListView, DetailView, View from django.utils import timezone from django.shortcuts import redirect, reverse -from .models import AdHoc, AdHocData, AdHocHistory +from .models import AdHoc, AdHocData, AdHocRunHistory from ops.tasks import rerun_task @@ -63,7 +63,7 @@ class TaskListView(ListView): class TaskDetailView(DetailView): - model = AdHocHistory + model = AdHocRunHistory template_name = 'ops/task_detail.html' def get_context_data(self, **kwargs): diff --git a/apps/templates/_nav.html b/apps/templates/_nav.html index 770911a82..748aa2640 100644 --- a/apps/templates/_nav.html +++ b/apps/templates/_nav.html @@ -21,7 +21,7 @@ diff --git a/utils/export_fake_data.sh b/utils/export_fake_data.sh index cd4b462d5..7ae080d82 100644 --- a/utils/export_fake_data.sh +++ b/utils/export_fake_data.sh @@ -9,8 +9,8 @@ generate_fake() EOF python ../apps/manage.py dbshell << EOF -delete from django_content_type; delete from auth_permission; +delete from django_content_type; EOF diff --git a/utils/export_init_data.sh b/utils/export_init_data.sh index 90121868c..f305475e1 100644 --- a/utils/export_init_data.sh +++ b/utils/export_init_data.sh @@ -8,14 +8,11 @@ init_model() from assets.models import * init_model() -from audits.models import LoginLog -LoginLog.objects.all().delete() EOF - python ../apps/manage.py dbshell << EOF -delete from django_content_type; delete from auth_permission; +delete from django_content_type; EOF python ../apps/manage.py dumpdata > ../apps/fixtures/init.json